From a5f31528b6c4fff0a98bcdd0c4cf9fc937c65d34 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Date: Thu, 25 Oct 2018 22:43:33 +0200 Subject: [PATCH 01/11] Use monospace font for numbers in the message widget to reduce his movement and better read --- share/ui/style.css | 3 +++ src/seltrans.cpp | 12 ++++++------ src/ui/tools/arc-tool.cpp | 4 ++-- src/ui/tools/gradient-tool.cpp | 26 +++++++++++++------------- src/ui/tools/mesh-tool.cpp | 24 ++++++++++++------------ src/ui/tools/node-tool.cpp | 4 ++-- src/ui/tools/pen-tool.cpp | 14 +++++++------- src/ui/tools/rect-tool.cpp | 8 ++++---- src/ui/tools/spiral-tool.cpp | 2 +- src/ui/tools/spray-tool.cpp | 2 +- src/ui/tools/star-tool.cpp | 4 ++-- src/ui/tools/text-tool.cpp | 6 +++--- src/ui/tools/tweak-tool.cpp | 2 +- src/ui/widget/selected-style.cpp | 12 +++++++----- 14 files changed, 64 insertions(+), 59 deletions(-) diff --git a/share/ui/style.css b/share/ui/style.css index 4c40bc8c67..9072d2e1fd 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -180,3 +180,6 @@ spinbutton undershoot { color:rgb(0,0,0); } +#monoStrokeWidth{ + font-family:monospace; +} \ No newline at end of file diff --git a/src/seltrans.cpp b/src/seltrans.cpp index 84fdbe85cc..cbdd6387c0 100644 --- a/src/seltrans.cpp +++ b/src/seltrans.cpp @@ -969,7 +969,7 @@ gboolean Inkscape::SelTrans::scaleRequest(Geom::Point &pt, guint state) /* Status text */ _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, - _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), + _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); return TRUE; @@ -1073,7 +1073,7 @@ gboolean Inkscape::SelTrans::stretchRequest(SPSelTransHandle const &handle, Geom // status text _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, - _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), + _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); return TRUE; @@ -1210,7 +1210,7 @@ gboolean Inkscape::SelTrans::skewRequest(SPSelTransHandle const &handle, Geom::P _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) - _("Skew: %0.2f°; with Ctrl to snap angle"), + _("Skew: %0.2f°; with Ctrl to snap angle"), degrees); return TRUE; @@ -1286,7 +1286,7 @@ gboolean Inkscape::SelTrans::rotateRequest(Geom::Point &pt, guint state) _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) - _("Rotate: %0.2f°; with Ctrl to snap angle"), degrees); + _("Rotate: %0.2f°; with Ctrl to snap angle"), degrees); return TRUE; } @@ -1323,7 +1323,7 @@ gboolean Inkscape::SelTrans::centerRequest(Geom::Point &pt, guint state) Inkscape::Util::Quantity y_q = Inkscape::Util::Quantity(pt[Geom::Y], "px"); Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); - _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), + _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), xs.c_str(), ys.c_str()); return TRUE; } @@ -1470,7 +1470,7 @@ void Inkscape::SelTrans::moveTo(Geom::Point const &xy, guint state) Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); _message_context.setF(Inkscape::NORMAL_MESSAGE, - _("Move by %s, %s; with Ctrl to restrict to horizontal/vertical; with Shift to disable snapping"), + _("Move by %s, %s; with Ctrl to restrict to horizontal/vertical; with Shift to disable snapping"), xs.c_str(), ys.c_str()); } diff --git a/src/ui/tools/arc-tool.cpp b/src/ui/tools/arc-tool.cpp index bd3567df70..ed92dc4fc3 100644 --- a/src/ui/tools/arc-tool.cpp +++ b/src/ui/tools/arc-tool.cpp @@ -400,9 +400,9 @@ void ArcTool::drag(Geom::Point pt, guint state) { ratio_y = (int) rint (rdimy / rdimx); } - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Ellipse: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point"), xs.c_str(), ys.c_str(), ratio_x, ratio_y); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Ellipse: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point"), xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Ellipse: %s × %s; with Ctrl to make square or integer-ratio ellipse; with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Ellipse: %s × %s; with Ctrl to make square or integer-ratio ellipse; with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } } diff --git a/src/ui/tools/gradient-tool.cpp b/src/ui/tools/gradient-tool.cpp index 8b85f8854f..a7151c6c6e 100644 --- a/src/ui/tools/gradient-tool.cpp +++ b/src/ui/tools/gradient-tool.cpp @@ -116,32 +116,32 @@ void GradientTool::selection_changed(Inkscape::Selection*) { if (drag->singleSelectedDraggerNumDraggables() == 1) { gchar * message = g_strconcat( //TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a compound message - _("%s selected"), + _("%s selected"), //TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d gradient handle"," out of %d gradient handles",n_tot), - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + ngettext(" out of %d gradient handle"," out of %d gradient handles",n_tot), + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(gr_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { gchar * message = g_strconcat( //TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count & object count) - ngettext("One handle merging %d stop (drag with Shift to separate) selected", - "One handle merging %d stops (drag with Shift to separate) selected",drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d gradient handle"," out of %d gradient handles",n_tot), - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + ngettext("One handle merging %d stop (drag with Shift to separate) selected", + "One handle merging %d stops (drag with Shift to separate) selected",drag->singleSelectedDraggerNumDraggables()), + ngettext(" out of %d gradient handle"," out of %d gradient handles",n_tot), + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected gradient handles. This is part of a compound message (part two indicates selected object count) - gchar * message = g_strconcat(ngettext("%d gradient handle selected out of %d","%d gradient handles selected out of %d",n_sel), + gchar * message = g_strconcat(ngettext("%d gradient handle selected out of %d","%d gradient handles selected out of %d",n_sel), //TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of a compound message - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { rc->message_context->setF(Inkscape::NORMAL_MESSAGE, //TRANSLATORS: The plural refers to number of selected objects - ngettext("No gradient handles selected out of %d on %d selected object", - "No gradient handles selected out of %d on %d selected objects",n_obj), n_tot, n_obj); + ngettext("No gradient handles selected out of %d on %d selected object", + "No gradient handles selected out of %d on %d selected objects",n_obj), n_tot, n_obj); } } @@ -940,8 +940,8 @@ static void sp_gradient_drag(GradientTool &rc, Geom::Point const pt, guint /*sta // during drag int n_objects = (int) boost::distance(selection->items()); rc.message_context->setF(Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", n_objects), + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", n_objects), n_objects); } else { desktop->getMessageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select objects on which to create gradient.")); diff --git a/src/ui/tools/mesh-tool.cpp b/src/ui/tools/mesh-tool.cpp index 41f2938c2b..8675453ba1 100644 --- a/src/ui/tools/mesh-tool.cpp +++ b/src/ui/tools/mesh-tool.cpp @@ -134,33 +134,33 @@ void MeshTool::selection_changed(Inkscape::Selection* /*sel*/) { //TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a compound message _("%s selected"), //TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d mesh handle"," out of %d mesh handles",n_tot), - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + ngettext(" out of %d mesh handle"," out of %d mesh handles",n_tot), + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(ms_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { gchar * message = g_strconcat( //TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count & object count) - ngettext("One handle merging %d stop (drag with Shift to separate) selected", - "One handle merging %d stops (drag with Shift to separate) selected", + ngettext("One handle merging %d stop (drag with Shift to separate) selected", + "One handle merging %d stops (drag with Shift to separate) selected", drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d mesh handle"," out of %d mesh handles",n_tot), - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + ngettext(" out of %d mesh handle"," out of %d mesh handles",n_tot), + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected mesh handles. This is part of a compound message (part two indicates selected object count) gchar * message = - g_strconcat(ngettext("%d mesh handle selected out of %d","%d mesh handles selected out of %d",n_sel), + g_strconcat(ngettext("%d mesh handle selected out of %d","%d mesh handles selected out of %d",n_sel), //TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of a compound message - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { this->message_context->setF(Inkscape::NORMAL_MESSAGE, //TRANSLATORS: The plural refers to number of selected objects - ngettext("No mesh handles selected out of %d on %d selected object", - "No mesh handles selected out of %d on %d selected objects",n_obj), n_tot, n_obj); + ngettext("No mesh handles selected out of %d on %d selected object", + "No mesh handles selected out of %d on %d selected objects",n_obj), n_tot, n_obj); } // FIXME @@ -1120,8 +1120,8 @@ static void sp_mesh_new_default(MeshTool &rc) { // during drag int n_objects = (int) boost::distance(selection->items()); rc.message_context->setF(Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", n_objects), + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", n_objects), n_objects); } else { desktop->getMessageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select objects on which to create gradient.")); diff --git a/src/ui/tools/node-tool.cpp b/src/ui/tools/node-tool.cpp index 4f5ed44be6..b3234c5c9e 100644 --- a/src/ui/tools/node-tool.cpp +++ b/src/ui/tools/node-tool.cpp @@ -681,11 +681,11 @@ void NodeTool::update_tip(GdkEvent *event) { } g_assert(positions.size() == 2); const double angle = Geom::deg_from_rad(Geom::Line(positions[0], positions[1]).angle()); - nodestring = g_strdup_printf("%u of %u nodes selected, angle: %.2f°.", sz, total, angle); + nodestring = g_strdup_printf("%u of %u nodes selected, angle: %.2f°.", sz, total, angle); } else { nodestring = g_strdup_printf( - ngettext("%u of %u node selected.", "%u of %u nodes selected.", total), + ngettext("%u of %u node selected.", "%u of %u nodes selected.", total), sz, total); } diff --git a/src/ui/tools/pen-tool.cpp b/src/ui/tools/pen-tool.cpp index 7fbc08d333..9c2806c510 100644 --- a/src/ui/tools/pen-tool.cpp +++ b/src/ui/tools/pen-tool.cpp @@ -1801,13 +1801,13 @@ void PenTool::_setSubsequentPoint(Geom::Point const p, bool statusbar, guint sta gchar *message; if(this->spiro || this->bspline){ message = is_curve ? - _("Curve segment: angle %3.2f°; with Shift+Click cusp node,ALT move previous, Enter or Shift+Enter to finish" ): - _("Line segment: angle %3.2f°; with Shift+Click cusp node,ALT move previous, Enter or Shift+Enter to finish"); + _("Curve segment: angle %3.2f°; with Shift+Click cusp node,ALT move previous, Enter or Shift+Enter to finish" ): + _("Line segment: angle %3.2f°; with Shift+Click cusp node,ALT move previous, Enter or Shift+Enter to finish"); this->_setAngleDistanceStatusMessage(p, 0, message); } else { message = is_curve ? - _("Curve segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter or Shift+Enter to finish the path" ): - _("Line segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter or Shift+Enter to finish the path"); + _("Curve segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter or Shift+Enter to finish the path" ): + _("Line segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter or Shift+Enter to finish the path"); this->_setAngleDistanceStatusMessage(p, 0, message); } @@ -1825,7 +1825,7 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { sp_canvas_item_hide(this->cl0); SP_CTRL(this->c1)->moveto(this->p[1]); this->cl1->setCoords(this->p[0], this->p[1]); - this->_setAngleDistanceStatusMessage(p, 0, _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle")); + this->_setAngleDistanceStatusMessage(p, 0, _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle")); } else if ( this->npoints == 5 ) { this->p[4] = p; sp_canvas_item_show(this->c0); @@ -1849,8 +1849,8 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { gchar *message = is_symm ? - _("Curve handle, symmetric: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only") : - _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only"); + _("Curve handle, symmetric: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only") : + _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only"); this->_setAngleDistanceStatusMessage(p, 3, message); } else { g_warning("Something bad happened - npoints is %d", this->npoints); diff --git a/src/ui/tools/rect-tool.cpp b/src/ui/tools/rect-tool.cpp index 3edbf4f5c1..aae26b28b8 100644 --- a/src/ui/tools/rect-tool.cpp +++ b/src/ui/tools/rect-tool.cpp @@ -427,22 +427,22 @@ void RectTool::drag(Geom::Point const pt, guint state) { if (!is_golden_ratio) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point"), + _("Rectangle: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point"), xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { if (ratio_y == 1) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden ratio 1.618 : 1); with Shift to draw around the starting point"), + _("Rectangle: %s × %s (constrained to golden ratio 1.618 : 1); with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } else { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden ratio 1 : 1.618); with Shift to draw around the starting point"), + _("Rectangle: %s × %s (constrained to golden ratio 1 : 1.618); with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } } } else { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio rectangle; with Shift to draw around the starting point"), + _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio rectangle; with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } } diff --git a/src/ui/tools/spiral-tool.cpp b/src/ui/tools/spiral-tool.cpp index 29cf408b82..de090ecc56 100644 --- a/src/ui/tools/spiral-tool.cpp +++ b/src/ui/tools/spiral-tool.cpp @@ -378,7 +378,7 @@ void SpiralTool::drag(Geom::Point const &p, guint state) { Inkscape::Util::Quantity q = Inkscape::Util::Quantity(rad, "px"); Glib::ustring rads = q.string(desktop->namedview->display_units); this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Spiral: radius %s, angle %5g°; with Ctrl to snap angle"), + _("Spiral: radius %s, angle %5g°; with Ctrl to snap angle"), rads.c_str(), sp_round((arg + 2.0*M_PI*this->spiral->revo)*180/M_PI, 0.0001)); } diff --git a/src/ui/tools/spray-tool.cpp b/src/ui/tools/spray-tool.cpp index f590be0596..57eb1b6e69 100644 --- a/src/ui/tools/spray-tool.cpp +++ b/src/ui/tools/spray-tool.cpp @@ -194,7 +194,7 @@ void SprayTool::update_cursor(bool /*with_shift*/) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); - sel_message = g_strdup_printf(ngettext("%i object selected","%i objects selected",num), num); + sel_message = g_strdup_printf(ngettext("%i object selected","%i objects selected",num), num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/tools/star-tool.cpp b/src/ui/tools/star-tool.cpp index d19cc1b27b..f3aa90c4c7 100644 --- a/src/ui/tools/star-tool.cpp +++ b/src/ui/tools/star-tool.cpp @@ -391,8 +391,8 @@ void StarTool::drag(Geom::Point p, guint state) Glib::ustring rads = q.string(desktop->namedview->display_units); this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, ( this->isflatsided? - _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") - : _("Star: radius %s, angle %5g°; with Ctrl to snap angle") ), + _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") + : _("Star: radius %s, angle %5g°; with Ctrl to snap angle") ), rads.c_str(), sp_round((arg1) * 180 / M_PI, 0.0001)); } diff --git a/src/ui/tools/text-tool.cpp b/src/ui/tools/text-tool.cpp index 6f4acc3678..2a66e45a91 100644 --- a/src/ui/tools/text-tool.cpp +++ b/src/ui/tools/text-tool.cpp @@ -577,7 +577,7 @@ bool TextTool::root_handler(GdkEvent* event) { Inkscape::Util::Quantity y_q = Inkscape::Util::Quantity(fabs((p - this->p0)[Geom::Y]), "px"); Glib::ustring xs = x_q.string(desktop->namedview->display_units); Glib::ustring ys = y_q.string(desktop->namedview->display_units); - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Flowed text frame: %s × %s"), xs.c_str(), ys.c_str()); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Flowed text frame: %s × %s"), xs.c_str(), ys.c_str()); } else if (!this->sp_event_context_knot_mouseover()) { SnapManager &m = desktop->namedview->snap_manager; m.setup(desktop); @@ -1613,9 +1613,9 @@ static void sp_text_context_update_cursor(TextTool *tc, bool scroll_to_see) } } - SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit flowed text (%d character%s); Enter to start new paragraph.", "Type or edit flowed text (%d characters%s); Enter to start new paragraph.", nChars), nChars, trunc); + SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit flowed text (%d character%s); Enter to start new paragraph.", "Type or edit flowed text (%d characters%s); Enter to start new paragraph.", nChars), nChars, trunc); } else { - SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit text (%d character%s); Enter to start new line.", "Type or edit text (%d characters%s); Enter to start new line.", nChars), nChars, trunc); + SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit text (%d character%s); Enter to start new line.", "Type or edit text (%d characters%s); Enter to start new line.", nChars), nChars, trunc); } } else { diff --git a/src/ui/tools/tweak-tool.cpp b/src/ui/tools/tweak-tool.cpp index 4f5834836f..6a44a982a4 100644 --- a/src/ui/tools/tweak-tool.cpp +++ b/src/ui/tools/tweak-tool.cpp @@ -144,7 +144,7 @@ void TweakTool::update_cursor (bool with_shift) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); - sel_message = g_strdup_printf(ngettext("%i object selected","%i objects selected",num), num); + sel_message = g_strdup_printf(ngettext("%i object selected","%i objects selected",num), num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 0fc19e2823..6452d12410 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -159,6 +159,8 @@ SelectedStyle::SelectedStyle(bool /*layout*/) _opacity_label.set_valign(Gtk::ALIGN_CENTER); _opacity_label.set_margin_top(0); _opacity_label.set_margin_bottom(0); + _stroke_width.set_name("monoStrokeWidth"); + #if GTK_CHECK_VERSION(3,12,0) _fill_label.set_margin_start(0); @@ -1325,25 +1327,25 @@ RotateableSwatch::do_motion(double by, guint modifier) { DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust alpha"))); double ch = hsla[3]; - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting alpha: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Shift to adjust saturation, without modifiers to adjust hue"), ch - diff, ch, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting alpha: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Shift to adjust saturation, without modifiers to adjust hue"), ch - diff, ch, diff); } else if (modifier == 2) { // saturation DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust saturation"))); double ch = hsla[1]; - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting saturation: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting saturation: was %.3gv, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); } else if (modifier == 1) { // lightness DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust lightness"))); double ch = hsla[2]; - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); } else { // hue DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust hue"))); double ch = hsla[0]; - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting hue: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, with Ctrl to adjust lightness"), ch - diff, ch, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting hue: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, with Ctrl to adjust lightness"), ch - diff, ch, diff); } } @@ -1453,7 +1455,7 @@ RotateableStrokeWidth::do_motion(double by, guint modifier) { double diff = value_adjust(startvalue, by, modifier, false); DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust stroke width"))); - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), startvalue, startvalue + diff, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), startvalue, startvalue + diff, diff); } } -- GitLab From f337c09541b1965ce19c415feadc262fcfb34b47 Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Fri, 26 Oct 2018 10:59:58 +0200 Subject: [PATCH 02/11] Improvemets to reduce movements on widgets --- share/ui/style.css | 6 ++++-- src/ui/widget/selected-style.cpp | 7 ++++++- src/ui/widget/selected-style.h | 2 ++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/share/ui/style.css b/share/ui/style.css index 9072d2e1fd..f084f1bea6 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -180,6 +180,8 @@ spinbutton undershoot { color:rgb(0,0,0); } -#monoStrokeWidth{ +#monoStrokeWidth, +#fillEmptySpace{ font-family:monospace; -} \ No newline at end of file + min-width:55px; +} diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 6452d12410..148115d021 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -137,9 +137,11 @@ SelectedStyle::SelectedStyle(bool /*layout*/) _opacity_adjustment(Gtk::Adjustment::create(100, 0.0, 100, 1.0, 10.0)), _opacity_sb (0.02, 0), + _fill (), _stroke (), _stroke_width_place(this), _stroke_width (""), + _fill_emty_space (""), _opacity_blocked (false) { @@ -160,6 +162,7 @@ SelectedStyle::SelectedStyle(bool /*layout*/) _opacity_label.set_margin_top(0); _opacity_label.set_margin_bottom(0); _stroke_width.set_name("monoStrokeWidth"); + _fill_emty_space.set_name("fillEmptySpace"); #if GTK_CHECK_VERSION(3,12,0) @@ -373,6 +376,8 @@ SelectedStyle::SelectedStyle(bool /*layout*/) _fill_place.add(_na[SS_FILL]); _fill_place.set_tooltip_text(__na[SS_FILL]); + _fill_place.add(_fill_emty_space); + _fill.pack_start(_fill_place, Gtk::PACK_SHRINK); _stroke_place.add(_na[SS_STROKE]); _stroke_place.set_tooltip_text(__na[SS_STROKE]); @@ -392,7 +397,7 @@ SelectedStyle::SelectedStyle(bool /*layout*/) _table.attach(_fill_flag_place, 1, 0, 1, 1); _table.attach(_stroke_flag_place, 1, 1, 1, 1); - _table.attach(_fill_place, 2, 0, 1, 1); + _table.attach(_fill, 2, 0, 1, 1); _table.attach(_stroke, 2, 1, 1, 1); _opacity_place.add(_opacity_label); diff --git a/src/ui/widget/selected-style.h b/src/ui/widget/selected-style.h index f65680242c..7ad497a568 100644 --- a/src/ui/widget/selected-style.h +++ b/src/ui/widget/selected-style.h @@ -191,9 +191,11 @@ protected: Gtk::Label _multiple[2]; Glib::ustring __multiple[2]; + Gtk::HBox _fill; Gtk::HBox _stroke; RotateableStrokeWidth _stroke_width_place; Gtk::Label _stroke_width; + Gtk::Label _fill_emty_space; Glib::ustring _paintserver_id[2]; -- GitLab From 42f360af9585ab2d09bd3e5299ec88fdd03756fb Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Fri, 26 Oct 2018 11:41:21 +0200 Subject: [PATCH 03/11] Fix coding style --- src/seltrans.cpp | 11 ++-- src/ui/tools/arc-tool.cpp | 10 +++- src/ui/tools/gradient-tool.cpp | 49 ++++++++------- src/ui/tools/mesh-tool.cpp | 54 +++++++++-------- src/ui/tools/node-tool.cpp | 9 +-- src/ui/tools/pen-tool.cpp | 25 ++++---- src/ui/tools/rect-tool.cpp | 23 ++++--- src/ui/tools/spiral-tool.cpp | 7 ++- src/ui/tools/spray-tool.cpp | 3 +- src/ui/tools/star-tool.cpp | 11 ++-- src/ui/tools/text-tool.cpp | 17 +++++- src/ui/tools/tweak-tool.cpp | 3 +- src/ui/widget/selected-style.cpp | 100 +++++++++++++++++++------------ 13 files changed, 196 insertions(+), 126 deletions(-) diff --git a/src/seltrans.cpp b/src/seltrans.cpp index cbdd6387c0..8bf99c8bda 100644 --- a/src/seltrans.cpp +++ b/src/seltrans.cpp @@ -1210,8 +1210,7 @@ gboolean Inkscape::SelTrans::skewRequest(SPSelTransHandle const &handle, Geom::P _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) - _("Skew: %0.2f°; with Ctrl to snap angle"), - degrees); + _("Skew: %0.2f°; with Ctrl to snap angle"), degrees); return TRUE; } @@ -1323,8 +1322,7 @@ gboolean Inkscape::SelTrans::centerRequest(Geom::Point &pt, guint state) Inkscape::Util::Quantity y_q = Inkscape::Util::Quantity(pt[Geom::Y], "px"); Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); - _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), - xs.c_str(), ys.c_str()); + _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), xs.c_str(), ys.c_str()); return TRUE; } @@ -1470,8 +1468,9 @@ void Inkscape::SelTrans::moveTo(Geom::Point const &xy, guint state) Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); _message_context.setF(Inkscape::NORMAL_MESSAGE, - _("Move by %s, %s; with Ctrl to restrict to horizontal/vertical; with Shift to disable snapping"), - xs.c_str(), ys.c_str()); + _("Move by %s, %s; with Ctrl to restrict to " + "horizontal/vertical; with Shift to disable snapping"), + xs.c_str(), ys.c_str()); } // Given a location of a handle at the visual bounding box, find the corresponding location at the diff --git a/src/ui/tools/arc-tool.cpp b/src/ui/tools/arc-tool.cpp index ed92dc4fc3..ed5434b3b1 100644 --- a/src/ui/tools/arc-tool.cpp +++ b/src/ui/tools/arc-tool.cpp @@ -400,9 +400,15 @@ void ArcTool::drag(Geom::Point pt, guint state) { ratio_y = (int) rint (rdimy / rdimx); } - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Ellipse: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point"), xs.c_str(), ys.c_str(), ratio_x, ratio_y); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, + _("Ellipse: %s × %s (constrained to ratio " + "%d:%d); with Shift to draw around the starting point"), + xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Ellipse: %s × %s; with Ctrl to make square or integer-ratio ellipse; with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, + _("Ellipse: %s × %s; with Ctrl to make square " + "or integer-ratio ellipse; with Shift to draw around the starting point"), + xs.c_str(), ys.c_str()); } } diff --git a/src/ui/tools/gradient-tool.cpp b/src/ui/tools/gradient-tool.cpp index a7151c6c6e..439de9a661 100644 --- a/src/ui/tools/gradient-tool.cpp +++ b/src/ui/tools/gradient-tool.cpp @@ -114,34 +114,42 @@ void GradientTool::selection_changed(Inkscape::Selection*) { //The use of ngettext in the following code is intentional even if the English singular form would never be used if (n_sel == 1) { if (drag->singleSelectedDraggerNumDraggables() == 1) { - gchar * message = g_strconcat( - //TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a compound message + gchar *message = g_strconcat( + // TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a + // compound message _("%s selected"), - //TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d gradient handle"," out of %d gradient handles",n_tot), - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + // TRANSLATORS: Mind the space in front. This is part of a compound message + ngettext(" out of %d gradient handle", " out of %d gradient handles", n_tot), + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(gr_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { - gchar * message = g_strconcat( - //TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count & object count) + gchar *message = g_strconcat( + // TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count + // & object count) ngettext("One handle merging %d stop (drag with Shift to separate) selected", - "One handle merging %d stops (drag with Shift to separate) selected",drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d gradient handle"," out of %d gradient handles",n_tot), - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + "One handle merging %d stops (drag with Shift to separate) selected", + drag->singleSelectedDraggerNumDraggables()), + ngettext(" out of %d gradient handle", " out of %d gradient handles", n_tot), + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected gradient handles. This is part of a compound message (part two indicates selected object count) - gchar * message = g_strconcat(ngettext("%d gradient handle selected out of %d","%d gradient handles selected out of %d",n_sel), - //TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of a compound message - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + gchar *message = + g_strconcat(ngettext("%d gradient handle selected out of %d", + "%d gradient handles selected out of %d", n_sel), + // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of + // a compound message + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { - rc->message_context->setF(Inkscape::NORMAL_MESSAGE, - //TRANSLATORS: The plural refers to number of selected objects - ngettext("No gradient handles selected out of %d on %d selected object", - "No gradient handles selected out of %d on %d selected objects",n_obj), n_tot, n_obj); + rc->message_context->setF( + Inkscape::NORMAL_MESSAGE, + // TRANSLATORS: The plural refers to number of selected objects + ngettext("No gradient handles selected out of %d on %d selected object", + "No gradient handles selected out of %d on %d selected objects", n_obj), + n_tot, n_obj); } } @@ -940,9 +948,10 @@ static void sp_gradient_drag(GradientTool &rc, Geom::Point const pt, guint /*sta // during drag int n_objects = (int) boost::distance(selection->items()); rc.message_context->setF(Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", n_objects), - n_objects); + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", + n_objects), + n_objects); } else { desktop->getMessageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select objects on which to create gradient.")); } diff --git a/src/ui/tools/mesh-tool.cpp b/src/ui/tools/mesh-tool.cpp index 8675453ba1..9a9006ae4b 100644 --- a/src/ui/tools/mesh-tool.cpp +++ b/src/ui/tools/mesh-tool.cpp @@ -130,37 +130,42 @@ void MeshTool::selection_changed(Inkscape::Selection* /*sel*/) { //The use of ngettext in the following code is intentional even if the English singular form would never be used if (n_sel == 1) { if (drag->singleSelectedDraggerNumDraggables() == 1) { - gchar * message = g_strconcat( - //TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a compound message + gchar *message = g_strconcat( + // TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a + // compound message _("%s selected"), - //TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d mesh handle"," out of %d mesh handles",n_tot), - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + // TRANSLATORS: Mind the space in front. This is part of a compound message + ngettext(" out of %d mesh handle", " out of %d mesh handles", n_tot), + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(ms_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { - gchar * message = - g_strconcat( - //TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count & object count) - ngettext("One handle merging %d stop (drag with Shift to separate) selected", - "One handle merging %d stops (drag with Shift to separate) selected", - drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d mesh handle"," out of %d mesh handles",n_tot), - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + gchar *message = g_strconcat( + // TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count + // & object count) + ngettext("One handle merging %d stop (drag with Shift to separate) selected", + "One handle merging %d stops (drag with Shift to separate) selected", + drag->singleSelectedDraggerNumDraggables()), + ngettext(" out of %d mesh handle", " out of %d mesh handles", n_tot), + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected mesh handles. This is part of a compound message (part two indicates selected object count) - gchar * message = - g_strconcat(ngettext("%d mesh handle selected out of %d","%d mesh handles selected out of %d",n_sel), - //TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of a compound message - ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); + gchar *message = + g_strconcat(ngettext("%d mesh handle selected out of %d", + "%d mesh handles selected out of %d", n_sel), + // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of + // a compound message + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { - this->message_context->setF(Inkscape::NORMAL_MESSAGE, - //TRANSLATORS: The plural refers to number of selected objects - ngettext("No mesh handles selected out of %d on %d selected object", - "No mesh handles selected out of %d on %d selected objects",n_obj), n_tot, n_obj); + this->message_context->setF( + Inkscape::NORMAL_MESSAGE, + // TRANSLATORS: The plural refers to number of selected objects + ngettext("No mesh handles selected out of %d on %d selected object", + "No mesh handles selected out of %d on %d selected objects", n_obj), + n_tot, n_obj); } // FIXME @@ -1120,9 +1125,10 @@ static void sp_mesh_new_default(MeshTool &rc) { // during drag int n_objects = (int) boost::distance(selection->items()); rc.message_context->setF(Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", n_objects), - n_objects); + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", + n_objects), + n_objects); } else { desktop->getMessageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select objects on which to create gradient.")); } diff --git a/src/ui/tools/node-tool.cpp b/src/ui/tools/node-tool.cpp index b3234c5c9e..b541454dca 100644 --- a/src/ui/tools/node-tool.cpp +++ b/src/ui/tools/node-tool.cpp @@ -681,12 +681,13 @@ void NodeTool::update_tip(GdkEvent *event) { } g_assert(positions.size() == 2); const double angle = Geom::deg_from_rad(Geom::Line(positions[0], positions[1]).angle()); - nodestring = g_strdup_printf("%u of %u nodes selected, angle: %.2f°.", sz, total, angle); + nodestring = g_strdup_printf("%u of %u nodes selected, angle: %.2f°.", sz, + total, angle); } else { - nodestring = g_strdup_printf( - ngettext("%u of %u node selected.", "%u of %u nodes selected.", total), - sz, total); + nodestring = g_strdup_printf(ngettext("%u of %u node selected.", + "%u of %u nodes selected.", total), + sz, total); } if (this->_last_over) { diff --git a/src/ui/tools/pen-tool.cpp b/src/ui/tools/pen-tool.cpp index 9c2806c510..9c521a0f68 100644 --- a/src/ui/tools/pen-tool.cpp +++ b/src/ui/tools/pen-tool.cpp @@ -1800,14 +1800,16 @@ void PenTool::_setSubsequentPoint(Geom::Point const p, bool statusbar, guint sta if (statusbar) { gchar *message; if(this->spiro || this->bspline){ - message = is_curve ? - _("Curve segment: angle %3.2f°; with Shift+Click cusp node,ALT move previous, Enter or Shift+Enter to finish" ): - _("Line segment: angle %3.2f°; with Shift+Click cusp node,ALT move previous, Enter or Shift+Enter to finish"); + message = is_curve ? _("Curve segment: angle %3.2f°; with Shift+Click cusp " + "node,ALT move previous, Enter or Shift+Enter to finish") + : _("Line segment: angle %3.2f°; with Shift+Click cusp " + "node,ALT move previous, Enter or Shift+Enter to finish"); this->_setAngleDistanceStatusMessage(p, 0, message); } else { - message = is_curve ? - _("Curve segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter or Shift+Enter to finish the path" ): - _("Line segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter or Shift+Enter to finish the path"); + message = is_curve ? _("Curve segment: angle %3.2f°, distance %s; with " + "Ctrl to snap angle, Enter or Shift+Enter to finish the path") + : _("Line segment: angle %3.2f°, distance %s; with " + "Ctrl to snap angle, Enter or Shift+Enter to finish the path"); this->_setAngleDistanceStatusMessage(p, 0, message); } @@ -1825,7 +1827,9 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { sp_canvas_item_hide(this->cl0); SP_CTRL(this->c1)->moveto(this->p[1]); this->cl1->setCoords(this->p[0], this->p[1]); - this->_setAngleDistanceStatusMessage(p, 0, _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle")); + this->_setAngleDistanceStatusMessage( + p, 0, + _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle")); } else if ( this->npoints == 5 ) { this->p[4] = p; sp_canvas_item_show(this->c0); @@ -1848,9 +1852,10 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { - gchar *message = is_symm ? - _("Curve handle, symmetric: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only") : - _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only"); + gchar *message = is_symm ? _("Curve handle, symmetric: angle %3.2f°, length %s; " + "with Ctrl to snap angle, with Shift to move this handle only") + : _("Curve handle: angle %3.2f°, length %s; with " + "Ctrl to snap angle, with Shift to move this handle only"); this->_setAngleDistanceStatusMessage(p, 3, message); } else { g_warning("Something bad happened - npoints is %d", this->npoints); diff --git a/src/ui/tools/rect-tool.cpp b/src/ui/tools/rect-tool.cpp index aae26b28b8..5f1ef6baeb 100644 --- a/src/ui/tools/rect-tool.cpp +++ b/src/ui/tools/rect-tool.cpp @@ -427,23 +427,28 @@ void RectTool::drag(Geom::Point const pt, guint state) { if (!is_golden_ratio) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point"), - xs.c_str(), ys.c_str(), ratio_x, ratio_y); + _("Rectangle: %s × %s (constrained to ratio " + "%d:%d); with Shift to draw around the starting point"), + xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { if (ratio_y == 1) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden ratio 1.618 : 1); with Shift to draw around the starting point"), - xs.c_str(), ys.c_str()); + _("Rectangle: %s × %s (constrained to golden " + "ratio 1.618 : 1); with Shift to draw around the starting point"), + xs.c_str(), ys.c_str()); } else { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden ratio 1 : 1.618); with Shift to draw around the starting point"), - xs.c_str(), ys.c_str()); + _("Rectangle: %s × %s (constrained to golden " + "ratio 1 : 1.618); with Shift to draw around the starting point"), + xs.c_str(), ys.c_str()); } } } else { - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio rectangle; with Shift to draw around the starting point"), - xs.c_str(), ys.c_str()); + this->message_context->setF( + Inkscape::IMMEDIATE_MESSAGE, + _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio " + "rectangle; with Shift to draw around the starting point"), + xs.c_str(), ys.c_str()); } } diff --git a/src/ui/tools/spiral-tool.cpp b/src/ui/tools/spiral-tool.cpp index de090ecc56..377b1aeea0 100644 --- a/src/ui/tools/spiral-tool.cpp +++ b/src/ui/tools/spiral-tool.cpp @@ -377,9 +377,10 @@ void SpiralTool::drag(Geom::Point const &p, guint state) { /* status text */ Inkscape::Util::Quantity q = Inkscape::Util::Quantity(rad, "px"); Glib::ustring rads = q.string(desktop->namedview->display_units); - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Spiral: radius %s, angle %5g°; with Ctrl to snap angle"), - rads.c_str(), sp_round((arg + 2.0*M_PI*this->spiral->revo)*180/M_PI, 0.0001)); + this->message_context->setF( + Inkscape::IMMEDIATE_MESSAGE, + _("Spiral: radius %s, angle %5g°; with Ctrl to snap angle"), rads.c_str(), + sp_round((arg + 2.0 * M_PI * this->spiral->revo) * 180 / M_PI, 0.0001)); } void SpiralTool::finishItem() { diff --git a/src/ui/tools/spray-tool.cpp b/src/ui/tools/spray-tool.cpp index 57eb1b6e69..b04759cd54 100644 --- a/src/ui/tools/spray-tool.cpp +++ b/src/ui/tools/spray-tool.cpp @@ -194,7 +194,8 @@ void SprayTool::update_cursor(bool /*with_shift*/) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); - sel_message = g_strdup_printf(ngettext("%i object selected","%i objects selected",num), num); + sel_message = g_strdup_printf( + ngettext("%i object selected", "%i objects selected", num), num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/tools/star-tool.cpp b/src/ui/tools/star-tool.cpp index f3aa90c4c7..4683c2ae39 100644 --- a/src/ui/tools/star-tool.cpp +++ b/src/ui/tools/star-tool.cpp @@ -389,11 +389,12 @@ void StarTool::drag(Geom::Point p, guint state) /* status text */ Inkscape::Util::Quantity q = Inkscape::Util::Quantity(r1, "px"); Glib::ustring rads = q.string(desktop->namedview->display_units); - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - ( this->isflatsided? - _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") - : _("Star: radius %s, angle %5g°; with Ctrl to snap angle") ), - rads.c_str(), sp_round((arg1) * 180 / M_PI, 0.0001)); + this->message_context->setF( + Inkscape::IMMEDIATE_MESSAGE, + (this->isflatsided + ? _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") + : _("Star: radius %s, angle %5g°; with Ctrl to snap angle")), + rads.c_str(), sp_round((arg1)*180 / M_PI, 0.0001)); } void StarTool::finishItem() { diff --git a/src/ui/tools/text-tool.cpp b/src/ui/tools/text-tool.cpp index 2a66e45a91..b89fc8ba4d 100644 --- a/src/ui/tools/text-tool.cpp +++ b/src/ui/tools/text-tool.cpp @@ -577,7 +577,9 @@ bool TextTool::root_handler(GdkEvent* event) { Inkscape::Util::Quantity y_q = Inkscape::Util::Quantity(fabs((p - this->p0)[Geom::Y]), "px"); Glib::ustring xs = x_q.string(desktop->namedview->display_units); Glib::ustring ys = y_q.string(desktop->namedview->display_units); - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Flowed text frame: %s × %s"), xs.c_str(), ys.c_str()); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, + _("Flowed text frame: %s × %s"), xs.c_str(), + ys.c_str()); } else if (!this->sp_event_context_knot_mouseover()) { SnapManager &m = desktop->namedview->snap_manager; m.setup(desktop); @@ -1613,9 +1615,18 @@ static void sp_text_context_update_cursor(TextTool *tc, bool scroll_to_see) } } - SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit flowed text (%d character%s); Enter to start new paragraph.", "Type or edit flowed text (%d characters%s); Enter to start new paragraph.", nChars), nChars, trunc); + SP_EVENT_CONTEXT(tc)->message_context->setF( + Inkscape::NORMAL_MESSAGE, + ngettext("Type or edit flowed text (%d character%s); Enter to start new paragraph.", + "Type or edit flowed text (%d characters%s); Enter to start new paragraph.", + nChars), + nChars, trunc); } else { - SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit text (%d character%s); Enter to start new line.", "Type or edit text (%d characters%s); Enter to start new line.", nChars), nChars, trunc); + SP_EVENT_CONTEXT(tc)->message_context->setF( + Inkscape::NORMAL_MESSAGE, + ngettext("Type or edit text (%d character%s); Enter to start new line.", + "Type or edit text (%d characters%s); Enter to start new line.", nChars), + nChars, trunc); } } else { diff --git a/src/ui/tools/tweak-tool.cpp b/src/ui/tools/tweak-tool.cpp index 6a44a982a4..48fce011eb 100644 --- a/src/ui/tools/tweak-tool.cpp +++ b/src/ui/tools/tweak-tool.cpp @@ -144,7 +144,8 @@ void TweakTool::update_cursor (bool with_shift) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); - sel_message = g_strdup_printf(ngettext("%i object selected","%i objects selected",num), num); + sel_message = g_strdup_printf( + ngettext("%i object selected", "%i objects selected", num), num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 148115d021..461faf74c3 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -116,34 +116,40 @@ static guint nui_drop_target_entries = G_N_ELEMENTS(ui_drop_target_entries); static Dialog::FillAndStroke *get_fill_and_stroke_panel(SPDesktop *desktop); SelectedStyle::SelectedStyle(bool /*layout*/) - : - current_stroke_width(0), - - _sw_unit(nullptr), - - _desktop (nullptr), - _table(), - _fill_label (_("Fill:")), - _stroke_label (_("Stroke:")), - _opacity_label (_("O:")), - - _fill_place(this, SS_FILL), - _stroke_place(this, SS_STROKE), - - _fill_flag_place (), - _stroke_flag_place (), - - _opacity_place (), - _opacity_adjustment(Gtk::Adjustment::create(100, 0.0, 100, 1.0, 10.0)), - _opacity_sb (0.02, 0), - - _fill (), - _stroke (), - _stroke_width_place(this), - _stroke_width (""), - _fill_emty_space (""), - - _opacity_blocked (false) + : current_stroke_width(0) + , + + _sw_unit(nullptr) + , + + _desktop(nullptr) + , _table() + , _fill_label(_("Fill:")) + , _stroke_label(_("Stroke:")) + , _opacity_label(_("O:")) + , + + _fill_place(this, SS_FILL) + , _stroke_place(this, SS_STROKE) + , + + _fill_flag_place() + , _stroke_flag_place() + , + + _opacity_place() + , _opacity_adjustment(Gtk::Adjustment::create(100, 0.0, 100, 1.0, 10.0)) + , _opacity_sb(0.02, 0) + , + + _fill() + , _stroke() + , _stroke_width_place(this) + , _stroke_width("") + , _fill_emty_space("") + , + + _opacity_blocked(false) { set_name("SelectedStyle"); _drop[0] = _drop[1] = nullptr; @@ -162,8 +168,8 @@ SelectedStyle::SelectedStyle(bool /*layout*/) _opacity_label.set_margin_top(0); _opacity_label.set_margin_bottom(0); _stroke_width.set_name("monoStrokeWidth"); - _fill_emty_space.set_name("fillEmptySpace"); - + _fill_emty_space.set_name("fillEmptySpace"); + #if GTK_CHECK_VERSION(3,12,0) _fill_label.set_margin_start(0); @@ -1332,25 +1338,40 @@ RotateableSwatch::do_motion(double by, guint modifier) { DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust alpha"))); double ch = hsla[3]; - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting alpha: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Shift to adjust saturation, without modifiers to adjust hue"), ch - diff, ch, diff); - + parent->getDesktop()->event_context->message_context->setF( + Inkscape::IMMEDIATE_MESSAGE, + _("Adjusting alpha: was %.3g, now %.3g (diff %.3g); with " + "Ctrl to adjust lightness, with Shift to adjust saturation, without modifiers to adjust " + "hue"), + ch - diff, ch, diff); } else if (modifier == 2) { // saturation DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust saturation"))); double ch = hsla[1]; - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting saturation: was %.3gv, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); - + parent->getDesktop()->event_context->message_context->setF( + Inkscape::IMMEDIATE_MESSAGE, + _("Adjusting saturation: was %.3gv, now %.3g (diff %.3g); with " + "Ctrl to adjust lightness, with Alt to adjust alpha, without modifiers to adjust hue"), + ch - diff, ch, diff); } else if (modifier == 1) { // lightness DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust lightness"))); double ch = hsla[2]; - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); - + parent->getDesktop()->event_context->message_context->setF( + Inkscape::IMMEDIATE_MESSAGE, + _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with " + "Shift to adjust saturation, with Alt to adjust alpha, without modifiers to adjust hue"), + ch - diff, ch, diff); } else { // hue DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust hue"))); double ch = hsla[0]; - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting hue: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, with Ctrl to adjust lightness"), ch - diff, ch, diff); + parent->getDesktop()->event_context->message_context->setF( + Inkscape::IMMEDIATE_MESSAGE, + _("Adjusting hue: was %.3g, now %.3g (diff %.3g); with " + "Shift to adjust saturation, with Alt to adjust alpha, with Ctrl to adjust " + "lightness"), + ch - diff, ch, diff); } } @@ -1460,7 +1481,10 @@ RotateableStrokeWidth::do_motion(double by, guint modifier) { double diff = value_adjust(startvalue, by, modifier, false); DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust stroke width"))); - parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), startvalue, startvalue + diff, diff); + parent->getDesktop()->event_context->message_context->setF( + Inkscape::IMMEDIATE_MESSAGE, + _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), + startvalue, startvalue + diff, diff); } } -- GitLab From fcd8321e1d507ce200439f06e3c2b7b73cd89e29 Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Fri, 26 Oct 2018 14:17:37 +0200 Subject: [PATCH 04/11] Add monospaceDigit font --- share/fonts/LiberationSansMonospaceDigits.ttf | Bin 0 -> 401648 bytes share/ui/style.css | 4 +-- src/seltrans.cpp | 12 ++++---- src/ui/tools/arc-tool.cpp | 6 ++-- src/ui/tools/gradient-tool.cpp | 26 +++++++++--------- src/ui/tools/mesh-tool.cpp | 26 +++++++++--------- src/ui/tools/node-tool.cpp | 6 ++-- src/ui/tools/pen-tool.cpp | 14 +++++----- src/ui/tools/rect-tool.cpp | 8 +++--- src/ui/tools/spiral-tool.cpp | 2 +- src/ui/tools/spray-tool.cpp | 2 +- src/ui/tools/star-tool.cpp | 4 +-- src/ui/tools/text-tool.cpp | 10 +++---- src/ui/tools/tweak-tool.cpp | 2 +- src/ui/widget/selected-style.cpp | 10 +++---- 15 files changed, 66 insertions(+), 66 deletions(-) create mode 100644 share/fonts/LiberationSansMonospaceDigits.ttf diff --git a/share/fonts/LiberationSansMonospaceDigits.ttf b/share/fonts/LiberationSansMonospaceDigits.ttf new file mode 100644 index 0000000000000000000000000000000000000000..a580ff44793d977801beb065c9aed3cebd0ad5e1 GIT binary patch literal 401648 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: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), + _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); return TRUE; @@ -1073,7 +1073,7 @@ gboolean Inkscape::SelTrans::stretchRequest(SPSelTransHandle const &handle, Geom // status text _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, - _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), + _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); return TRUE; @@ -1210,7 +1210,7 @@ gboolean Inkscape::SelTrans::skewRequest(SPSelTransHandle const &handle, Geom::P _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) - _("Skew: %0.2f°; with Ctrl to snap angle"), degrees); + _("Skew: %0.2f°; with Ctrl to snap angle"), degrees); return TRUE; } @@ -1285,7 +1285,7 @@ gboolean Inkscape::SelTrans::rotateRequest(Geom::Point &pt, guint state) _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) - _("Rotate: %0.2f°; with Ctrl to snap angle"), degrees); + _("Rotate: %0.2f°; with Ctrl to snap angle"), degrees); return TRUE; } @@ -1322,7 +1322,7 @@ gboolean Inkscape::SelTrans::centerRequest(Geom::Point &pt, guint state) Inkscape::Util::Quantity y_q = Inkscape::Util::Quantity(pt[Geom::Y], "px"); Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); - _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), xs.c_str(), ys.c_str()); + _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), xs.c_str(), ys.c_str()); return TRUE; } @@ -1468,7 +1468,7 @@ void Inkscape::SelTrans::moveTo(Geom::Point const &xy, guint state) Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); _message_context.setF(Inkscape::NORMAL_MESSAGE, - _("Move by %s, %s; with Ctrl to restrict to " + _("Move by %s, %s; with Ctrl to restrict to " "horizontal/vertical; with Shift to disable snapping"), xs.c_str(), ys.c_str()); } diff --git a/src/ui/tools/arc-tool.cpp b/src/ui/tools/arc-tool.cpp index ed5434b3b1..594330c242 100644 --- a/src/ui/tools/arc-tool.cpp +++ b/src/ui/tools/arc-tool.cpp @@ -401,12 +401,12 @@ void ArcTool::drag(Geom::Point pt, guint state) { } this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Ellipse: %s × %s (constrained to ratio " - "%d:%d); with Shift to draw around the starting point"), + _("Ellipse: %s × %s (constrained to ratio " + "%d:%d); with Shift to draw around the starting point"), xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Ellipse: %s × %s; with Ctrl to make square " + _("Ellipse: %s × %s; with Ctrl to make square " "or integer-ratio ellipse; with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } diff --git a/src/ui/tools/gradient-tool.cpp b/src/ui/tools/gradient-tool.cpp index 439de9a661..0aa3091eaf 100644 --- a/src/ui/tools/gradient-tool.cpp +++ b/src/ui/tools/gradient-tool.cpp @@ -117,38 +117,38 @@ void GradientTool::selection_changed(Inkscape::Selection*) { gchar *message = g_strconcat( // TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a // compound message - _("%s selected"), + _("%s selected"), // TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d gradient handle", " out of %d gradient handles", n_tot), - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" out of %d gradient handle", " out of %d gradient handles", n_tot), + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(gr_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { gchar *message = g_strconcat( // TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count // & object count) - ngettext("One handle merging %d stop (drag with Shift to separate) selected", - "One handle merging %d stops (drag with Shift to separate) selected", + ngettext("One handle merging %d stop (drag with Shift to separate) selected", + "One handle merging %d stops (drag with Shift to separate) selected", drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d gradient handle", " out of %d gradient handles", n_tot), - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" out of %d gradient handle", " out of %d gradient handles", n_tot), + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected gradient handles. This is part of a compound message (part two indicates selected object count) gchar *message = - g_strconcat(ngettext("%d gradient handle selected out of %d", + g_strconcat(ngettext("%d gradient handle selected out of %d", "%d gradient handles selected out of %d", n_sel), // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of // a compound message - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { rc->message_context->setF( Inkscape::NORMAL_MESSAGE, // TRANSLATORS: The plural refers to number of selected objects - ngettext("No gradient handles selected out of %d on %d selected object", - "No gradient handles selected out of %d on %d selected objects", n_obj), + ngettext("No gradient handles selected out of %d on %d selected object", + "No gradient handles selected out of %d on %d selected objects", n_obj), n_tot, n_obj); } } @@ -948,8 +948,8 @@ static void sp_gradient_drag(GradientTool &rc, Geom::Point const pt, guint /*sta // during drag int n_objects = (int) boost::distance(selection->items()); rc.message_context->setF(Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", n_objects), n_objects); } else { diff --git a/src/ui/tools/mesh-tool.cpp b/src/ui/tools/mesh-tool.cpp index 9a9006ae4b..a57aa1c839 100644 --- a/src/ui/tools/mesh-tool.cpp +++ b/src/ui/tools/mesh-tool.cpp @@ -135,36 +135,36 @@ void MeshTool::selection_changed(Inkscape::Selection* /*sel*/) { // compound message _("%s selected"), // TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d mesh handle", " out of %d mesh handles", n_tot), - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" out of %d mesh handle", " out of %d mesh handles", n_tot), + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(ms_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { gchar *message = g_strconcat( // TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count // & object count) - ngettext("One handle merging %d stop (drag with Shift to separate) selected", - "One handle merging %d stops (drag with Shift to separate) selected", + ngettext("One handle merging %d stop (drag with Shift to separate) selected", + "One handle merging %d stops (drag with Shift to separate) selected", drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d mesh handle", " out of %d mesh handles", n_tot), - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" out of %d mesh handle", " out of %d mesh handles", n_tot), + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected mesh handles. This is part of a compound message (part two indicates selected object count) gchar *message = - g_strconcat(ngettext("%d mesh handle selected out of %d", - "%d mesh handles selected out of %d", n_sel), + g_strconcat(ngettext("%d mesh handle selected out of %d", + "%d mesh handles selected out of %d", n_sel), // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of // a compound message - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { this->message_context->setF( Inkscape::NORMAL_MESSAGE, // TRANSLATORS: The plural refers to number of selected objects - ngettext("No mesh handles selected out of %d on %d selected object", - "No mesh handles selected out of %d on %d selected objects", n_obj), + ngettext("No mesh handles selected out of %d on %d selected object", + "No mesh handles selected out of %d on %d selected objects", n_obj), n_tot, n_obj); } @@ -1125,8 +1125,8 @@ static void sp_mesh_new_default(MeshTool &rc) { // during drag int n_objects = (int) boost::distance(selection->items()); rc.message_context->setF(Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", n_objects), n_objects); } else { diff --git a/src/ui/tools/node-tool.cpp b/src/ui/tools/node-tool.cpp index b541454dca..11f109ef2a 100644 --- a/src/ui/tools/node-tool.cpp +++ b/src/ui/tools/node-tool.cpp @@ -681,12 +681,12 @@ void NodeTool::update_tip(GdkEvent *event) { } g_assert(positions.size() == 2); const double angle = Geom::deg_from_rad(Geom::Line(positions[0], positions[1]).angle()); - nodestring = g_strdup_printf("%u of %u nodes selected, angle: %.2f°.", sz, + nodestring = g_strdup_printf("%u of %u nodes selected, angle: %.2f°.", sz, total, angle); } else { - nodestring = g_strdup_printf(ngettext("%u of %u node selected.", - "%u of %u nodes selected.", total), + nodestring = g_strdup_printf(ngettext("%u of %u node selected.", + "%u of %u nodes selected.", total), sz, total); } diff --git a/src/ui/tools/pen-tool.cpp b/src/ui/tools/pen-tool.cpp index 9c521a0f68..806eec4bc1 100644 --- a/src/ui/tools/pen-tool.cpp +++ b/src/ui/tools/pen-tool.cpp @@ -1800,15 +1800,15 @@ void PenTool::_setSubsequentPoint(Geom::Point const p, bool statusbar, guint sta if (statusbar) { gchar *message; if(this->spiro || this->bspline){ - message = is_curve ? _("Curve segment: angle %3.2f°; with Shift+Click cusp " + message = is_curve ? _("Curve segment: angle %3.2f°; with Shift+Click cusp " "node,ALT move previous, Enter or Shift+Enter to finish") - : _("Line segment: angle %3.2f°; with Shift+Click cusp " + : _("Line segment: angle %3.2f°; with Shift+Click cusp " "node,ALT move previous, Enter or Shift+Enter to finish"); this->_setAngleDistanceStatusMessage(p, 0, message); } else { - message = is_curve ? _("Curve segment: angle %3.2f°, distance %s; with " + message = is_curve ? _("Curve segment: angle %3.2f°, distance %s; with " "Ctrl to snap angle, Enter or Shift+Enter to finish the path") - : _("Line segment: angle %3.2f°, distance %s; with " + : _("Line segment: angle %3.2f°, distance %s; with " "Ctrl to snap angle, Enter or Shift+Enter to finish the path"); this->_setAngleDistanceStatusMessage(p, 0, message); } @@ -1829,7 +1829,7 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { this->cl1->setCoords(this->p[0], this->p[1]); this->_setAngleDistanceStatusMessage( p, 0, - _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle")); + _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle")); } else if ( this->npoints == 5 ) { this->p[4] = p; sp_canvas_item_show(this->c0); @@ -1852,9 +1852,9 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { - gchar *message = is_symm ? _("Curve handle, symmetric: angle %3.2f°, length %s; " + gchar *message = is_symm ? _("Curve handle, symmetric: angle %3.2f°, length %s; " "with Ctrl to snap angle, with Shift to move this handle only") - : _("Curve handle: angle %3.2f°, length %s; with " + : _("Curve handle: angle %3.2f°, length %s; with " "Ctrl to snap angle, with Shift to move this handle only"); this->_setAngleDistanceStatusMessage(p, 3, message); } else { diff --git a/src/ui/tools/rect-tool.cpp b/src/ui/tools/rect-tool.cpp index 5f1ef6baeb..e2e0074171 100644 --- a/src/ui/tools/rect-tool.cpp +++ b/src/ui/tools/rect-tool.cpp @@ -427,18 +427,18 @@ void RectTool::drag(Geom::Point const pt, guint state) { if (!is_golden_ratio) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to ratio " + _("Rectangle: %s × %s (constrained to ratio " "%d:%d); with Shift to draw around the starting point"), xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { if (ratio_y == 1) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden " + _("Rectangle: %s × %s (constrained to golden " "ratio 1.618 : 1); with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } else { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden " + _("Rectangle: %s × %s (constrained to golden " "ratio 1 : 1.618); with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } @@ -446,7 +446,7 @@ void RectTool::drag(Geom::Point const pt, guint state) { } else { this->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio " + _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio " "rectangle; with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } diff --git a/src/ui/tools/spiral-tool.cpp b/src/ui/tools/spiral-tool.cpp index 377b1aeea0..751087c13c 100644 --- a/src/ui/tools/spiral-tool.cpp +++ b/src/ui/tools/spiral-tool.cpp @@ -379,7 +379,7 @@ void SpiralTool::drag(Geom::Point const &p, guint state) { Glib::ustring rads = q.string(desktop->namedview->display_units); this->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Spiral: radius %s, angle %5g°; with Ctrl to snap angle"), rads.c_str(), + _("Spiral: radius %s, angle %5g°; with Ctrl to snap angle"), rads.c_str(), sp_round((arg + 2.0 * M_PI * this->spiral->revo) * 180 / M_PI, 0.0001)); } diff --git a/src/ui/tools/spray-tool.cpp b/src/ui/tools/spray-tool.cpp index b04759cd54..a381a916f1 100644 --- a/src/ui/tools/spray-tool.cpp +++ b/src/ui/tools/spray-tool.cpp @@ -195,7 +195,7 @@ void SprayTool::update_cursor(bool /*with_shift*/) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); sel_message = g_strdup_printf( - ngettext("%i object selected", "%i objects selected", num), num); + ngettext("%i object selected", "%i objects selected", num), num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/tools/star-tool.cpp b/src/ui/tools/star-tool.cpp index 4683c2ae39..0b6f25b8d9 100644 --- a/src/ui/tools/star-tool.cpp +++ b/src/ui/tools/star-tool.cpp @@ -392,8 +392,8 @@ void StarTool::drag(Geom::Point p, guint state) this->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, (this->isflatsided - ? _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") - : _("Star: radius %s, angle %5g°; with Ctrl to snap angle")), + ? _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") + : _("Star: radius %s, angle %5g°; with Ctrl to snap angle")), rads.c_str(), sp_round((arg1)*180 / M_PI, 0.0001)); } diff --git a/src/ui/tools/text-tool.cpp b/src/ui/tools/text-tool.cpp index b89fc8ba4d..c39a8e3151 100644 --- a/src/ui/tools/text-tool.cpp +++ b/src/ui/tools/text-tool.cpp @@ -578,7 +578,7 @@ bool TextTool::root_handler(GdkEvent* event) { Glib::ustring xs = x_q.string(desktop->namedview->display_units); Glib::ustring ys = y_q.string(desktop->namedview->display_units); this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Flowed text frame: %s × %s"), xs.c_str(), + _("Flowed text frame: %s × %s"), xs.c_str(), ys.c_str()); } else if (!this->sp_event_context_knot_mouseover()) { SnapManager &m = desktop->namedview->snap_manager; @@ -1617,15 +1617,15 @@ static void sp_text_context_update_cursor(TextTool *tc, bool scroll_to_see) SP_EVENT_CONTEXT(tc)->message_context->setF( Inkscape::NORMAL_MESSAGE, - ngettext("Type or edit flowed text (%d character%s); Enter to start new paragraph.", - "Type or edit flowed text (%d characters%s); Enter to start new paragraph.", + ngettext("Type or edit flowed text (%d character%s); Enter to start new paragraph.", + "Type or edit flowed text (%d characters%s); Enter to start new paragraph.", nChars), nChars, trunc); } else { SP_EVENT_CONTEXT(tc)->message_context->setF( Inkscape::NORMAL_MESSAGE, - ngettext("Type or edit text (%d character%s); Enter to start new line.", - "Type or edit text (%d characters%s); Enter to start new line.", nChars), + ngettext("Type or edit text (%d character%s); Enter to start new line.", + "Type or edit text (%d characters%s); Enter to start new line.", nChars), nChars, trunc); } diff --git a/src/ui/tools/tweak-tool.cpp b/src/ui/tools/tweak-tool.cpp index 48fce011eb..e133dce5c2 100644 --- a/src/ui/tools/tweak-tool.cpp +++ b/src/ui/tools/tweak-tool.cpp @@ -145,7 +145,7 @@ void TweakTool::update_cursor (bool with_shift) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); sel_message = g_strdup_printf( - ngettext("%i object selected", "%i objects selected", num), num); + ngettext("%i object selected", "%i objects selected", num), num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 461faf74c3..ea355c32ff 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -1340,7 +1340,7 @@ RotateableSwatch::do_motion(double by, guint modifier) { double ch = hsla[3]; parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting alpha: was %.3g, now %.3g (diff %.3g); with " + _("Adjusting alpha: was %.3g, now %.3g (diff %.3g); with " "Ctrl to adjust lightness, with Shift to adjust saturation, without modifiers to adjust " "hue"), ch - diff, ch, diff); @@ -1350,7 +1350,7 @@ RotateableSwatch::do_motion(double by, guint modifier) { double ch = hsla[1]; parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting saturation: was %.3gv, now %.3g (diff %.3g); with " + _("Adjusting saturation: was %.3gv, now %.3g (diff %.3g); with " "Ctrl to adjust lightness, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); } else if (modifier == 1) { // lightness @@ -1359,7 +1359,7 @@ RotateableSwatch::do_motion(double by, guint modifier) { double ch = hsla[2]; parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with " + _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with " "Shift to adjust saturation, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); } else { // hue @@ -1368,7 +1368,7 @@ RotateableSwatch::do_motion(double by, guint modifier) { double ch = hsla[0]; parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting hue: was %.3g, now %.3g (diff %.3g); with " + _("Adjusting hue: was %.3g, now %.3g (diff %.3g); with " "Shift to adjust saturation, with Alt to adjust alpha, with Ctrl to adjust " "lightness"), ch - diff, ch, diff); @@ -1483,7 +1483,7 @@ RotateableStrokeWidth::do_motion(double by, guint modifier) { SP_VERB_DIALOG_FILL_STROKE, (_("Adjust stroke width"))); parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), + _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), startvalue, startvalue + diff, diff); } } -- GitLab From e20b2fb7c13378a2cc5b6d2806ecf9978192f47c Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Fri, 26 Oct 2018 15:14:36 +0200 Subject: [PATCH 05/11] Add digitMonospace font to widjets --- share/fonts/LiberationSansMonospaceDigits.ttf | Bin 401648 -> 401636 bytes share/ui/style.css | 4 ++++ src/widgets/desktop-widget.cpp | 4 ++-- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/share/fonts/LiberationSansMonospaceDigits.ttf b/share/fonts/LiberationSansMonospaceDigits.ttf index a580ff44793d977801beb065c9aed3cebd0ad5e1..b001ec7bf4308d86d162deca1f5de317671b3677 100644 GIT binary patch delta 10620 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 diff --git a/share/ui/style.css b/share/ui/style.css index 6e712b56cc..659e3cd402 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -63,6 +63,10 @@ spinbutton.entry { padding-left: 2px; } +#DesktopMainTable spinbutton { + font-family:"LSMD"; /*Liberation Sans MonoDigits renamed TODO: based in Liberation sans and monospaced view licenses...*/ +} + SPRuler { background-color: @theme_bg_color; color: @theme_fg_color; diff --git a/src/widgets/desktop-widget.cpp b/src/widgets/desktop-widget.cpp index 1b717f351c..4960761d9e 100644 --- a/src/widgets/desktop-widget.cpp +++ b/src/widgets/desktop-widget.cpp @@ -1273,11 +1273,11 @@ void SPDesktopWidget::setCoordinateStatus(Geom::Point p) { gchar *cstr; - cstr = g_strdup_printf("%7.2f ", dt2r * p[Geom::X]); + cstr = g_strdup_printf("%7.2f ", dt2r * p[Geom::X]); gtk_label_set_markup( GTK_LABEL(this->coord_status_x), cstr ); g_free(cstr); - cstr = g_strdup_printf("%7.2f ", dt2r * p[Geom::Y]); + cstr = g_strdup_printf("%7.2f ", dt2r * p[Geom::Y]); gtk_label_set_markup( GTK_LABEL(this->coord_status_y), cstr ); g_free(cstr); } -- GitLab From 7f4389ac44ae74403112fe0938161acc569f83ae Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Fri, 26 Oct 2018 15:42:48 +0200 Subject: [PATCH 06/11] Fix coding style --- src/seltrans.cpp | 18 ++++++---- src/ui/tools/arc-tool.cpp | 9 +++-- src/ui/tools/gradient-tool.cpp | 60 ++++++++++++++++++++------------ src/ui/tools/mesh-tool.cpp | 60 ++++++++++++++++++++------------ src/ui/tools/node-tool.cpp | 13 ++++--- src/ui/tools/pen-tool.cpp | 24 ++++++++----- src/ui/tools/rect-tool.cpp | 19 +++++----- src/ui/tools/spiral-tool.cpp | 8 ++--- src/ui/tools/spray-tool.cpp | 5 +-- src/ui/tools/star-tool.cpp | 13 +++---- src/ui/tools/text-tool.cpp | 19 ++++++---- src/ui/tools/tweak-tool.cpp | 5 +-- src/ui/widget/selected-style.cpp | 15 +++++--- 13 files changed, 165 insertions(+), 103 deletions(-) diff --git a/src/seltrans.cpp b/src/seltrans.cpp index befe46db74..39bdf8abb5 100644 --- a/src/seltrans.cpp +++ b/src/seltrans.cpp @@ -969,7 +969,8 @@ gboolean Inkscape::SelTrans::scaleRequest(Geom::Point &pt, guint state) /* Status text */ _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, - _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), + _("Scale: %0.2f%% x %0.2f%%; " + "with Ctrl to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); return TRUE; @@ -1073,7 +1074,8 @@ gboolean Inkscape::SelTrans::stretchRequest(SPSelTransHandle const &handle, Geom // status text _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, - _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), + _("Scale: %0.2f%% x %0.2f%%; " + "with Ctrl to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); return TRUE; @@ -1210,7 +1212,8 @@ gboolean Inkscape::SelTrans::skewRequest(SPSelTransHandle const &handle, Geom::P _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) - _("Skew: %0.2f°; with Ctrl to snap angle"), degrees); + _("Skew: %0.2f°; with Ctrl to snap angle"), + degrees); return TRUE; } @@ -1285,7 +1288,8 @@ gboolean Inkscape::SelTrans::rotateRequest(Geom::Point &pt, guint state) _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) - _("Rotate: %0.2f°; with Ctrl to snap angle"), degrees); + _("Rotate: %0.2f°; with Ctrl to snap angle"), + degrees); return TRUE; } @@ -1322,7 +1326,8 @@ gboolean Inkscape::SelTrans::centerRequest(Geom::Point &pt, guint state) Inkscape::Util::Quantity y_q = Inkscape::Util::Quantity(pt[Geom::Y], "px"); Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); - _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), xs.c_str(), ys.c_str()); + _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), + xs.c_str(), ys.c_str()); return TRUE; } @@ -1468,7 +1473,8 @@ void Inkscape::SelTrans::moveTo(Geom::Point const &xy, guint state) Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); _message_context.setF(Inkscape::NORMAL_MESSAGE, - _("Move by %s, %s; with Ctrl to restrict to " + _("Move by %s, %s; with " + "Ctrl to restrict to " "horizontal/vertical; with Shift to disable snapping"), xs.c_str(), ys.c_str()); } diff --git a/src/ui/tools/arc-tool.cpp b/src/ui/tools/arc-tool.cpp index 594330c242..ee6fac6f40 100644 --- a/src/ui/tools/arc-tool.cpp +++ b/src/ui/tools/arc-tool.cpp @@ -401,12 +401,15 @@ void ArcTool::drag(Geom::Point pt, guint state) { } this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Ellipse: %s × %s (constrained to ratio " - "%d:%d); with Shift to draw around the starting point"), + _("Ellipse: %s × %s (constrained to ratio " + "%d:%d); with Shift " + "to draw around the starting point"), xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Ellipse: %s × %s; with Ctrl to make square " + _("Ellipse: %s × %s; with Ctrl to make square " "or integer-ratio ellipse; with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } diff --git a/src/ui/tools/gradient-tool.cpp b/src/ui/tools/gradient-tool.cpp index 0aa3091eaf..7dffe75e89 100644 --- a/src/ui/tools/gradient-tool.cpp +++ b/src/ui/tools/gradient-tool.cpp @@ -119,37 +119,50 @@ void GradientTool::selection_changed(Inkscape::Selection*) { // compound message _("%s selected"), // TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d gradient handle", " out of %d gradient handles", n_tot), - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" out of %d gradient handle", + " out of %d gradient handles", n_tot), + ngettext(" on %d selected object", + " on %d selected objects", n_obj), + NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(gr_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { gchar *message = g_strconcat( // TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count // & object count) - ngettext("One handle merging %d stop (drag with Shift to separate) selected", - "One handle merging %d stops (drag with Shift to separate) selected", + ngettext("One handle merging %d stop (drag with Shift to separate) " + "selected", + "One handle merging %d stops (drag with Shift to separate) " + "selected", drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d gradient handle", " out of %d gradient handles", n_tot), - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" out of %d gradient handle", + " out of %d gradient handles", n_tot), + ngettext(" on %d selected object", + " on %d selected objects", n_obj), + NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected gradient handles. This is part of a compound message (part two indicates selected object count) - gchar *message = - g_strconcat(ngettext("%d gradient handle selected out of %d", - "%d gradient handles selected out of %d", n_sel), - // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of - // a compound message - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + gchar *message = g_strconcat( + ngettext( + "%d gradient handle selected out of %d", + "%d gradient handles selected out of %d", n_sel), + // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of + // a compound message + ngettext(" on %d selected object", + " on %d selected objects", n_obj), + NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { - rc->message_context->setF( - Inkscape::NORMAL_MESSAGE, - // TRANSLATORS: The plural refers to number of selected objects - ngettext("No gradient handles selected out of %d on %d selected object", - "No gradient handles selected out of %d on %d selected objects", n_obj), - n_tot, n_obj); + rc->message_context->setF(Inkscape::NORMAL_MESSAGE, + // TRANSLATORS: The plural refers to number of selected objects + ngettext("No gradient handles selected out of %d " + "on %d selected object", + "No gradient handles selected out of %d " + "on %d selected objects", + n_obj), + n_tot, n_obj); } } @@ -947,11 +960,12 @@ static void sp_gradient_drag(GradientTool &rc, Geom::Point const pt, guint /*sta // status text; we do not track coords because this branch is run once, not all the time // during drag int n_objects = (int) boost::distance(selection->items()); - rc.message_context->setF(Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", - n_objects), - n_objects); + rc.message_context->setF( + Inkscape::NORMAL_MESSAGE, + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", + n_objects), + n_objects); } else { desktop->getMessageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select objects on which to create gradient.")); } diff --git a/src/ui/tools/mesh-tool.cpp b/src/ui/tools/mesh-tool.cpp index a57aa1c839..7d13bfef70 100644 --- a/src/ui/tools/mesh-tool.cpp +++ b/src/ui/tools/mesh-tool.cpp @@ -135,37 +135,50 @@ void MeshTool::selection_changed(Inkscape::Selection* /*sel*/) { // compound message _("%s selected"), // TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d mesh handle", " out of %d mesh handles", n_tot), - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" out of %d mesh handle", + " out of %d mesh handles", n_tot), + ngettext(" on %d selected object", + " on %d selected objects", n_obj), + NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(ms_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { gchar *message = g_strconcat( // TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count // & object count) - ngettext("One handle merging %d stop (drag with Shift to separate) selected", - "One handle merging %d stops (drag with Shift to separate) selected", + ngettext("One handle merging %d stop (drag with Shift to separate) " + "selected", + "One handle merging %d stops (drag with Shift to separate) " + "selected", drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d mesh handle", " out of %d mesh handles", n_tot), - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + ngettext(" out of %d mesh handle", + " out of %d mesh handles", n_tot), + ngettext(" on %d selected object", + " on %d selected objects", n_obj), + NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected mesh handles. This is part of a compound message (part two indicates selected object count) - gchar *message = - g_strconcat(ngettext("%d mesh handle selected out of %d", - "%d mesh handles selected out of %d", n_sel), - // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of - // a compound message - ngettext(" on %d selected object", " on %d selected objects", n_obj), NULL); + gchar *message = g_strconcat( + ngettext("%d mesh handle selected out of %d", + "%d mesh handles selected out of %d", + n_sel), + // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of + // a compound message + ngettext(" on %d selected object", + " on %d selected objects", n_obj), + NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { - this->message_context->setF( - Inkscape::NORMAL_MESSAGE, - // TRANSLATORS: The plural refers to number of selected objects - ngettext("No mesh handles selected out of %d on %d selected object", - "No mesh handles selected out of %d on %d selected objects", n_obj), - n_tot, n_obj); + this->message_context->setF(Inkscape::NORMAL_MESSAGE, + // TRANSLATORS: The plural refers to number of selected objects + ngettext("No mesh handles selected out of %d on " + "%d selected object", + "No mesh handles selected out of %d on " + "%d selected objects", + n_obj), + n_tot, n_obj); } // FIXME @@ -1124,11 +1137,12 @@ static void sp_mesh_new_default(MeshTool &rc) { // status text; we do not track coords because this branch is run once, not all the time // during drag int n_objects = (int) boost::distance(selection->items()); - rc.message_context->setF(Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", - n_objects), - n_objects); + rc.message_context->setF( + Inkscape::NORMAL_MESSAGE, + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", + n_objects), + n_objects); } else { desktop->getMessageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select objects on which to create gradient.")); } diff --git a/src/ui/tools/node-tool.cpp b/src/ui/tools/node-tool.cpp index 11f109ef2a..5546b732cf 100644 --- a/src/ui/tools/node-tool.cpp +++ b/src/ui/tools/node-tool.cpp @@ -681,13 +681,16 @@ void NodeTool::update_tip(GdkEvent *event) { } g_assert(positions.size() == 2); const double angle = Geom::deg_from_rad(Geom::Line(positions[0], positions[1]).angle()); - nodestring = g_strdup_printf("%u of %u nodes selected, angle: %.2f°.", sz, - total, angle); + nodestring = g_strdup_printf("%u of %u nodes " + "selected, angle: %.2f°.", + sz, total, angle); } else { - nodestring = g_strdup_printf(ngettext("%u of %u node selected.", - "%u of %u nodes selected.", total), - sz, total); + nodestring = g_strdup_printf( + ngettext("%u of %u node selected.", + "%u of %u nodes selected.", + total), + sz, total); } if (this->_last_over) { diff --git a/src/ui/tools/pen-tool.cpp b/src/ui/tools/pen-tool.cpp index 806eec4bc1..4374c6b7ae 100644 --- a/src/ui/tools/pen-tool.cpp +++ b/src/ui/tools/pen-tool.cpp @@ -1800,15 +1800,19 @@ void PenTool::_setSubsequentPoint(Geom::Point const p, bool statusbar, guint sta if (statusbar) { gchar *message; if(this->spiro || this->bspline){ - message = is_curve ? _("Curve segment: angle %3.2f°; with Shift+Click cusp " + message = is_curve ? _("Curve segment: angle %3.2f°; with " + "Shift+Click cusp " "node,ALT move previous, Enter or Shift+Enter to finish") - : _("Line segment: angle %3.2f°; with Shift+Click cusp " + : _("Line segment: angle %3.2f°; with " + "Shift+Click cusp " "node,ALT move previous, Enter or Shift+Enter to finish"); this->_setAngleDistanceStatusMessage(p, 0, message); } else { - message = is_curve ? _("Curve segment: angle %3.2f°, distance %s; with " + message = is_curve ? _("Curve segment: angle %3.2f°, distance %s; with " "Ctrl to snap angle, Enter or Shift+Enter to finish the path") - : _("Line segment: angle %3.2f°, distance %s; with " + : _("Line segment: angle %3.2f°, distance %s; with " "Ctrl to snap angle, Enter or Shift+Enter to finish the path"); this->_setAngleDistanceStatusMessage(p, 0, message); } @@ -1827,9 +1831,9 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { sp_canvas_item_hide(this->cl0); SP_CTRL(this->c1)->moveto(this->p[1]); this->cl1->setCoords(this->p[0], this->p[1]); - this->_setAngleDistanceStatusMessage( - p, 0, - _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle")); + this->_setAngleDistanceStatusMessage(p, 0, + _("Curve handle: angle %3.2f°, " + "length %s; with Ctrl to snap angle")); } else if ( this->npoints == 5 ) { this->p[4] = p; sp_canvas_item_show(this->c0); @@ -1852,9 +1856,11 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { - gchar *message = is_symm ? _("Curve handle, symmetric: angle %3.2f°, length %s; " + gchar *message = is_symm ? _("Curve handle, symmetric: angle %3.2f°, " + "length %s; " "with Ctrl to snap angle, with Shift to move this handle only") - : _("Curve handle: angle %3.2f°, length %s; with " + : _("Curve handle: angle %3.2f°, length %s; with " "Ctrl to snap angle, with Shift to move this handle only"); this->_setAngleDistanceStatusMessage(p, 3, message); } else { diff --git a/src/ui/tools/rect-tool.cpp b/src/ui/tools/rect-tool.cpp index e2e0074171..f7cbfc8077 100644 --- a/src/ui/tools/rect-tool.cpp +++ b/src/ui/tools/rect-tool.cpp @@ -427,28 +427,31 @@ void RectTool::drag(Geom::Point const pt, guint state) { if (!is_golden_ratio) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to ratio " + _("Rectangle: %s × %s (constrained to ratio " "%d:%d); with Shift to draw around the starting point"), xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { if (ratio_y == 1) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden " + _("Rectangle: %s × %s (constrained to golden " "ratio 1.618 : 1); with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } else { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden " + _("Rectangle: %s × %s (constrained to golden " "ratio 1 : 1.618); with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } } } else { - this->message_context->setF( - Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio " - "rectangle; with Shift to draw around the starting point"), - xs.c_str(), ys.c_str()); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, + _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio " + "rectangle; with Shift to draw around the starting point"), + xs.c_str(), ys.c_str()); } } diff --git a/src/ui/tools/spiral-tool.cpp b/src/ui/tools/spiral-tool.cpp index 751087c13c..c716040d82 100644 --- a/src/ui/tools/spiral-tool.cpp +++ b/src/ui/tools/spiral-tool.cpp @@ -377,10 +377,10 @@ void SpiralTool::drag(Geom::Point const &p, guint state) { /* status text */ Inkscape::Util::Quantity q = Inkscape::Util::Quantity(rad, "px"); Glib::ustring rads = q.string(desktop->namedview->display_units); - this->message_context->setF( - Inkscape::IMMEDIATE_MESSAGE, - _("Spiral: radius %s, angle %5g°; with Ctrl to snap angle"), rads.c_str(), - sp_round((arg + 2.0 * M_PI * this->spiral->revo) * 180 / M_PI, 0.0001)); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, + _("Spiral: radius %s, angle %5g°; " + "with Ctrl to snap angle"), + rads.c_str(), sp_round((arg + 2.0 * M_PI * this->spiral->revo) * 180 / M_PI, 0.0001)); } void SpiralTool::finishItem() { diff --git a/src/ui/tools/spray-tool.cpp b/src/ui/tools/spray-tool.cpp index a381a916f1..f5b79dcf31 100644 --- a/src/ui/tools/spray-tool.cpp +++ b/src/ui/tools/spray-tool.cpp @@ -194,8 +194,9 @@ void SprayTool::update_cursor(bool /*with_shift*/) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); - sel_message = g_strdup_printf( - ngettext("%i object selected", "%i objects selected", num), num); + sel_message = g_strdup_printf(ngettext("%i object selected", + "%i objects selected", num), + num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/tools/star-tool.cpp b/src/ui/tools/star-tool.cpp index 0b6f25b8d9..7d80dec8c7 100644 --- a/src/ui/tools/star-tool.cpp +++ b/src/ui/tools/star-tool.cpp @@ -389,12 +389,13 @@ void StarTool::drag(Geom::Point p, guint state) /* status text */ Inkscape::Util::Quantity q = Inkscape::Util::Quantity(r1, "px"); Glib::ustring rads = q.string(desktop->namedview->display_units); - this->message_context->setF( - Inkscape::IMMEDIATE_MESSAGE, - (this->isflatsided - ? _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") - : _("Star: radius %s, angle %5g°; with Ctrl to snap angle")), - rads.c_str(), sp_round((arg1)*180 / M_PI, 0.0001)); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, + (this->isflatsided + ? _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") + : _("Star: radius %s, angle %5g°; with Ctrl to snap angle")), + rads.c_str(), sp_round((arg1)*180 / M_PI, 0.0001)); } void StarTool::finishItem() { diff --git a/src/ui/tools/text-tool.cpp b/src/ui/tools/text-tool.cpp index c39a8e3151..9f74e42266 100644 --- a/src/ui/tools/text-tool.cpp +++ b/src/ui/tools/text-tool.cpp @@ -577,9 +577,10 @@ bool TextTool::root_handler(GdkEvent* event) { Inkscape::Util::Quantity y_q = Inkscape::Util::Quantity(fabs((p - this->p0)[Geom::Y]), "px"); Glib::ustring xs = x_q.string(desktop->namedview->display_units); Glib::ustring ys = y_q.string(desktop->namedview->display_units); - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Flowed text frame: %s × %s"), xs.c_str(), - ys.c_str()); + this->message_context->setF( + Inkscape::IMMEDIATE_MESSAGE, + _("Flowed text frame: %s × %s"), + xs.c_str(), ys.c_str()); } else if (!this->sp_event_context_knot_mouseover()) { SnapManager &m = desktop->namedview->snap_manager; m.setup(desktop); @@ -1617,15 +1618,19 @@ static void sp_text_context_update_cursor(TextTool *tc, bool scroll_to_see) SP_EVENT_CONTEXT(tc)->message_context->setF( Inkscape::NORMAL_MESSAGE, - ngettext("Type or edit flowed text (%d character%s); Enter to start new paragraph.", - "Type or edit flowed text (%d characters%s); Enter to start new paragraph.", + ngettext("Type or edit flowed text (%d character%s); Enter to start " + "new paragraph.", + "Type or edit flowed text (%d characters%s); Enter to start " + "new paragraph.", nChars), nChars, trunc); } else { SP_EVENT_CONTEXT(tc)->message_context->setF( Inkscape::NORMAL_MESSAGE, - ngettext("Type or edit text (%d character%s); Enter to start new line.", - "Type or edit text (%d characters%s); Enter to start new line.", nChars), + ngettext( + "Type or edit text (%d character%s); Enter to start new line.", + "Type or edit text (%d characters%s); Enter to start new line.", + nChars), nChars, trunc); } diff --git a/src/ui/tools/tweak-tool.cpp b/src/ui/tools/tweak-tool.cpp index e133dce5c2..ca09911965 100644 --- a/src/ui/tools/tweak-tool.cpp +++ b/src/ui/tools/tweak-tool.cpp @@ -144,8 +144,9 @@ void TweakTool::update_cursor (bool with_shift) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); - sel_message = g_strdup_printf( - ngettext("%i object selected", "%i objects selected", num), num); + sel_message = g_strdup_printf(ngettext("%i object selected", + "%i objects selected", num), + num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index ea355c32ff..919bcb8e85 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -1340,7 +1340,8 @@ RotateableSwatch::do_motion(double by, guint modifier) { double ch = hsla[3]; parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting alpha: was %.3g, now %.3g (diff %.3g); with " + _("Adjusting alpha: was %.3g, now %.3g " + "(diff %.3g); with " "Ctrl to adjust lightness, with Shift to adjust saturation, without modifiers to adjust " "hue"), ch - diff, ch, diff); @@ -1350,7 +1351,8 @@ RotateableSwatch::do_motion(double by, guint modifier) { double ch = hsla[1]; parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting saturation: was %.3gv, now %.3g (diff %.3g); with " + _("Adjusting saturation: was %.3gv, now %.3g " + "(diff %.3g); with " "Ctrl to adjust lightness, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); } else if (modifier == 1) { // lightness @@ -1359,7 +1361,8 @@ RotateableSwatch::do_motion(double by, guint modifier) { double ch = hsla[2]; parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with " + _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with " "Shift to adjust saturation, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); } else { // hue @@ -1368,7 +1371,8 @@ RotateableSwatch::do_motion(double by, guint modifier) { double ch = hsla[0]; parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting hue: was %.3g, now %.3g (diff %.3g); with " + _("Adjusting hue: was %.3g, now %.3g " + "(diff %.3g); with " "Shift to adjust saturation, with Alt to adjust alpha, with Ctrl to adjust " "lightness"), ch - diff, ch, diff); @@ -1483,7 +1487,8 @@ RotateableStrokeWidth::do_motion(double by, guint modifier) { SP_VERB_DIALOG_FILL_STROKE, (_("Adjust stroke width"))); parent->getDesktop()->event_context->message_context->setF( Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), + _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), startvalue, startvalue + diff, diff); } } -- GitLab From 318710e4a87f015e85f760855aef7a95b9ac4274 Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Fri, 26 Oct 2018 16:23:48 +0200 Subject: [PATCH 07/11] Refator MR to simplify and relay more in CSS --- share/fonts/LiberationSansMonoDigits.sfd | 193070 +++++++++++++++ share/fonts/LiberationSansMonospaceDigits.ttf | Bin 401636 -> 401696 bytes share/ui/style.css | 20 +- src/seltrans.cpp | 21 +- src/ui/tools/arc-tool.cpp | 13 +- src/ui/tools/gradient-tool.cpp | 67 +- src/ui/tools/mesh-tool.cpp | 68 +- src/ui/tools/node-tool.cpp | 8 +- src/ui/tools/pen-tool.cpp | 31 +- src/ui/tools/rect-tool.cpp | 24 +- src/ui/tools/spiral-tool.cpp | 5 +- src/ui/tools/spray-tool.cpp | 4 +- src/ui/tools/star-tool.cpp | 10 +- src/ui/tools/text-tool.cpp | 22 +- src/ui/tools/tweak-tool.cpp | 4 +- src/ui/widget/selected-style.cpp | 41 +- src/widgets/desktop-widget.cpp | 10 +- 17 files changed, 193185 insertions(+), 233 deletions(-) create mode 100644 share/fonts/LiberationSansMonoDigits.sfd diff --git a/share/fonts/LiberationSansMonoDigits.sfd b/share/fonts/LiberationSansMonoDigits.sfd new file mode 100644 index 0000000000..525791c2d6 --- /dev/null +++ b/share/fonts/LiberationSansMonoDigits.sfd @@ -0,0 +1,193070 @@ +SplineFontDB: 3.0 +FontName: LiberationSansMonospaceDigits +FullName: Liberation Sans Monospace Digits +FamilyName: Liberation Sans MonoDigits +Weight: Book +Copyright: Digitized data copyright (c) 2010 Google Corporation. \nCopyright (c) 2012 Red Hat, Inc. +Version: 2.00.3 +ItalicAngle: 0 +UnderlinePosition: -292 +UnderlineWidth: 150 +Ascent: 1638 +Descent: 410 +InvalidEm: 0 +sfntRevision: 0x00020000 +LayerCount: 2 +Layer: 0 1 "Back" 1 +Layer: 1 1 "Fore" 0 +XUID: [1021 525 2134040670 14036128] +StyleMap: 0x0040 +FSType: 0 +OS2Version: 3 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 0 +CreationTime: 1276856602 +ModificationTime: 1540563224 +PfmFamily: 17 +TTFWeight: 400 +TTFWidth: 5 +LineGap: 67 +VLineGap: 0 +Panose: 2 11 6 4 2 2 2 2 2 4 +OS2TypoAscent: 1491 +OS2TypoAOffset: 0 +OS2TypoDescent: -431 +OS2TypoDOffset: 0 +OS2TypoLinegap: 307 +OS2WinAscent: 1854 +OS2WinAOffset: 0 +OS2WinDescent: 434 +OS2WinDOffset: 0 +HheadAscent: 1854 +HheadAOffset: 0 +HheadDescent: -434 +HheadDOffset: 0 +OS2SubXSize: 1434 +OS2SubYSize: 1331 +OS2SubXOff: 0 +OS2SubYOff: 283 +OS2SupXSize: 1434 +OS2SupYSize: 1331 +OS2SupXOff: 0 +OS2SupYOff: 977 +OS2StrikeYSize: 102 +OS2StrikeYPos: 530 +OS2CapHeight: 1409 +OS2XHeight: 1082 +OS2FamilyClass: 2053 +OS2Vendor: '1ASC' +OS2CodePages: 600001bf.dff70000 +OS2UnicodeRanges: e0000aff.500078ff.00000021.00000000 +Lookup: 1 0 0 "'locl' Localized Forms in Cyrillic lookup 0" { "'locl' Localized Forms in Cyrillic lookup 0 subtable" } ['locl' ('cyrl' <'MKD ' 'SRB ' > ) ] +Lookup: 4 1 0 "'dlig' Discretionary Ligatures in Hebrew lookup 1" { "'dlig' Discretionary Ligatures in Hebrew lookup 1 subtable" } ['dlig' ('hebr' <'dflt' > ) ] +Lookup: 4 1 0 "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2" { "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" } ['ccmp' ('hebr' <'dflt' > ) ] +Lookup: 6 1 0 "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 3" { "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 3 subtable" } ['ccmp' ('hebr' <'dflt' > ) ] +Lookup: 4 0 0 "'ccmp' Glyph Composition/Decomposition lookup 4" { "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" } ['ccmp' ('grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 4 1 0 "Ligature Substitution lookup 5" { "Ligature Substitution lookup 5 subtable" } [] +Lookup: 258 9 0 "'kern' Horizontal Kerning in Hebrew lookup 0" { "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" } ['kern' ('hebr' <'dflt' > ) ] +Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 1" { "'mark' Mark Positioning in Hebrew lookup 1 subtable" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 2" { "'mark' Mark Positioning in Hebrew lookup 2 subtable" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 260 7 0 "'mark' Mark Positioning in Hebrew lookup 3" { "'mark' Mark Positioning in Hebrew lookup 3 subtable" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 4" { "'mark' Mark Positioning in Hebrew lookup 4 subtable" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 5" { "'mark' Mark Positioning in Hebrew lookup 5 subtable" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 6" { "'mark' Mark Positioning in Hebrew lookup 6 subtable" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 7" { "'mark' Mark Positioning in Hebrew lookup 7 contextual 0" "'mark' Mark Positioning in Hebrew lookup 7 contextual 1" "'mark' Mark Positioning in Hebrew lookup 7 contextual 2" "'mark' Mark Positioning in Hebrew lookup 7 contextual 3" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 8" { "'mark' Mark Positioning in Hebrew lookup 8 contextual 0" "'mark' Mark Positioning in Hebrew lookup 8 contextual 1" "'mark' Mark Positioning in Hebrew lookup 8 contextual 2" "'mark' Mark Positioning in Hebrew lookup 8 contextual 3" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 9" { "'mark' Mark Positioning in Hebrew lookup 9 contextual 0" "'mark' Mark Positioning in Hebrew lookup 9 contextual 1" "'mark' Mark Positioning in Hebrew lookup 9 contextual 2" "'mark' Mark Positioning in Hebrew lookup 9 contextual 3" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 10" { "'mark' Mark Positioning in Hebrew lookup 10 contextual 0" "'mark' Mark Positioning in Hebrew lookup 10 contextual 1" "'mark' Mark Positioning in Hebrew lookup 10 contextual 2" "'mark' Mark Positioning in Hebrew lookup 10 contextual 3" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 11" { "'mark' Mark Positioning in Hebrew lookup 11 subtable" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 12" { "'mark' Mark Positioning in Hebrew lookup 12 subtable" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 13" { "'mark' Mark Positioning in Hebrew lookup 13 subtable" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 14" { "'mark' Mark Positioning in Hebrew lookup 14 contextual 0" "'mark' Mark Positioning in Hebrew lookup 14 contextual 1" "'mark' Mark Positioning in Hebrew lookup 14 contextual 2" "'mark' Mark Positioning in Hebrew lookup 14 contextual 3" "'mark' Mark Positioning in Hebrew lookup 14 contextual 4" "'mark' Mark Positioning in Hebrew lookup 14 contextual 5" "'mark' Mark Positioning in Hebrew lookup 14 contextual 6" "'mark' Mark Positioning in Hebrew lookup 14 contextual 7" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 15" { "'mark' Mark Positioning in Hebrew lookup 15 contextual 0" "'mark' Mark Positioning in Hebrew lookup 15 contextual 1" "'mark' Mark Positioning in Hebrew lookup 15 contextual 2" "'mark' Mark Positioning in Hebrew lookup 15 contextual 3" "'mark' Mark Positioning in Hebrew lookup 15 contextual 4" "'mark' Mark Positioning in Hebrew lookup 15 contextual 5" "'mark' Mark Positioning in Hebrew lookup 15 contextual 6" "'mark' Mark Positioning in Hebrew lookup 15 contextual 7" "'mark' Mark Positioning in Hebrew lookup 15 contextual 8" "'mark' Mark Positioning in Hebrew lookup 15 contextual 9" "'mark' Mark Positioning in Hebrew lookup 15 contextual 10" "'mark' Mark Positioning in Hebrew lookup 15 contextual 11" "'mark' Mark Positioning in Hebrew lookup 15 contextual 12" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 16" { "'mark' Mark Positioning in Hebrew lookup 16 contextual 0" "'mark' Mark Positioning in Hebrew lookup 16 contextual 1" } ['mark' ('hebr' <'dflt' > ) ] +Lookup: 258 8 0 "'kern' Horizontal Kerning lookup 17" { "'kern' Horizontal Kerning lookup 17 subtable" } ['kern' ('cyrl' <'MKD ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 257 1 0 "Single Positioning lookup 18" { "Single Positioning lookup 18 subtable" } [] +Lookup: 260 1 0 "Mark to base attachment lookup 19" { "Mark to base attachment lookup 19 subtable" } [] +Lookup: 260 1 0 "Mark to base attachment lookup 20" { "Mark to base attachment lookup 20 subtable" } [] +Lookup: 260 1 0 "Mark to base attachment lookup 21" { "Mark to base attachment lookup 21 subtable" } [] +Lookup: 260 1 0 "Mark to base attachment lookup 22" { "Mark to base attachment lookup 22 subtable" } [] +Lookup: 257 1 0 "Single Positioning lookup 23" { "Single Positioning lookup 23 subtable" } [] +Lookup: 257 1 0 "Single Positioning lookup 24" { "Single Positioning lookup 24 subtable" } [] +Lookup: 258 1 0 "Pairwise Positioning (kerning) lookup 25" { "Pairwise Positioning (kerning) lookup 25 subtable" } [] +Lookup: 260 0 0 "'mark' Mark Positioning lookup 26" { "'mark' Mark Positioning lookup 26 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 260 0 0 "'mark' Mark Positioning lookup 27" { "'mark' Mark Positioning lookup 27 subtable" } ['mark' ('cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 260 0 0 "'mark' Mark Positioning lookup 28" { "'mark' Mark Positioning lookup 28 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 260 0 0 "'mark' Mark Positioning lookup 29" { "'mark' Mark Positioning lookup 29 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 260 0 0 "'mark' Mark Positioning lookup 30" { "'mark' Mark Positioning lookup 30 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 260 256 0 "'mark' Mark Positioning lookup 31" { "'mark' Mark Positioning lookup 31 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 260 0 0 "'mark' Mark Positioning lookup 32" { "'mark' Mark Positioning lookup 32 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 260 0 0 "'mark' Mark Positioning lookup 33" { "'mark' Mark Positioning lookup 33 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 260 0 0 "Mark to base attachment lookup 34" { "Mark to base attachment lookup 34 subtable" } [] +Lookup: 262 512 0 "'mkmk' Mark to Mark lookup 35" { "'mkmk' Mark to Mark lookup 35 subtable" } ['mkmk' ('cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] +Lookup: 262 768 0 "'mkmk' Mark to Mark lookup 36" { "'mkmk' Mark to Mark lookup 36 subtable" } ['mkmk' ('cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] +MarkAttachClasses: 4 +"MarkClass-1" 31 uniFE20 uniFE21 uniFE22 uniFE23 +"MarkClass-2" 523 gravecomb acutecomb uni0302 tildecomb uni0304 uni0305 uni0306 uni0307 uni0308 hookabovecomb uni030A uni030B uni030C uni030D uni030E uni030F uni0310 uni0311 uni0312 uni0313 uni0314 uni031A uni033D uni033E uni033F uni0342 uni0343 uni0344 uni0346 uni034A uni034B uni034C uni0350 uni0351 uni0352 uni0357 uni035B uni0363 uni0364 uni0365 uni0366 uni0367 uni0368 uni0369 uni036A uni036B uni036C uni036D uni036E uni036F uni0483 uni0484 uni0485 uni0486 uni1DC0 uni1DC1 uni1DC3 uni1DC4 uni1DC5 uni1DC6 uni1DC7 uni1DC8 uni1DC9 uni1DFE +"MarkClass-3" 348 uni0316 uni0317 uni0318 uni0319 uni031C uni031D uni031E uni031F uni0320 dotbelowcomb uni0324 uni0325 uni0326 uni0329 uni032A uni032B uni032C uni032D uni032E uni032F uni0330 uni0331 uni0332 uni0333 uni0339 uni033A uni033B uni033C uni0345 uni0347 uni0348 uni0349 uni034D uni034E uni0353 uni0354 uni0355 uni0356 uni0359 uni035A uni1DC2 uni1DCA uni1DFF +DEI: 91125 +ChainSub2: coverage "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 3 subtable" 0 0 0 1 + 2 0 1 + Coverage: 22 alef bet kaf pe yodyod + Coverage: 17 patah qamats rafe + FCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + 1 + SeqLookup: 0 "Ligature Substitution lookup 5" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 16 contextual 1" 0 0 0 1 + 2 2 0 + Coverage: 7 uni05A4 + Coverage: 7 uni05A5 + BCoverage: 6 dagesh + BCoverage: 4 ayin + 1 + SeqLookup: 0 "Pairwise Positioning (kerning) lookup 25" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 16 contextual 0" 0 0 0 1 + 2 2 0 + Coverage: 7 uni05A4 + Coverage: 7 uni05A5 + BCoverage: 5 holam + BCoverage: 4 ayin + 1 + SeqLookup: 0 "Pairwise Positioning (kerning) lookup 25" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 12" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 5 meteg + BCoverage: 6 qamats + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 11" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 7 uni05A4 + BCoverage: 6 qamats + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 10" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 7 uni05A3 + BCoverage: 6 qamats + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 9" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 7 uni059A + BCoverage: 6 qamats + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 8" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 7 uni0596 + BCoverage: 6 qamats + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 7" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 5 hiriq + BCoverage: 6 qamats + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 6" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 5 sheva + BCoverage: 6 qamats + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 5" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 7 uni0596 + BCoverage: 5 patah + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 4" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 7 uni059A + BCoverage: 5 segol + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 3" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 7 uni05A3 + BCoverage: 5 segol + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 2" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 5 meteg + BCoverage: 5 tsere + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 1" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 7 uni05A3 + BCoverage: 5 tsere + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 0" 0 0 0 1 + 1 2 0 + Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg + BCoverage: 5 meteg + BCoverage: 5 hiriq + 1 + SeqLookup: 0 "Single Positioning lookup 24" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 7" 0 0 0 1 + 1 2 0 + Coverage: 15 uni059A uni05AD + BCoverage: 5 meteg + BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam + 1 + SeqLookup: 0 "Single Positioning lookup 23" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 6" 0 0 0 1 + 1 3 0 + Coverage: 15 uni059A uni05AD + BCoverage: 5 meteg + BCoverage: 6 qamats + BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam + 1 + SeqLookup: 0 "Single Positioning lookup 23" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 5" 0 0 0 1 + 1 3 0 + Coverage: 15 uni059A uni05AD + BCoverage: 5 meteg + BCoverage: 5 patah + BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam + 1 + SeqLookup: 0 "Single Positioning lookup 23" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 4" 0 0 0 1 + 1 3 0 + Coverage: 15 uni059A uni05AD + BCoverage: 5 meteg + BCoverage: 5 tsere + BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam + 1 + SeqLookup: 0 "Single Positioning lookup 23" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 3" 0 0 0 1 + 1 3 0 + Coverage: 15 uni059A uni05AD + BCoverage: 5 meteg + BCoverage: 5 hiriq + BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam + 1 + SeqLookup: 0 "Single Positioning lookup 23" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 2" 0 0 0 1 + 1 3 0 + Coverage: 15 uni059A uni05AD + BCoverage: 5 meteg + BCoverage: 5 sheva + BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam + 1 + SeqLookup: 0 "Single Positioning lookup 23" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 1" 0 0 0 1 + 1 3 0 + Coverage: 15 uni059A uni05AD + BCoverage: 5 hiriq + BCoverage: 5 sheva + BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam + 1 + SeqLookup: 0 "Single Positioning lookup 23" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 0" 0 0 0 1 + 1 2 0 + Coverage: 15 uni059A uni05AD + BCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam + 1 + SeqLookup: 0 "Single Positioning lookup 23" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 10 contextual 3" 0 0 0 1 + 1 2 0 + Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 79 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA + BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva + 1 + SeqLookup: 0 "Mark to base attachment lookup 22" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 10 contextual 2" 0 0 0 1 + 1 2 0 + Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva + 1 + SeqLookup: 0 "Mark to base attachment lookup 22" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 10 contextual 1" 0 0 0 1 + 1 2 0 + Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 79 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA + BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + 1 + SeqLookup: 0 "Mark to base attachment lookup 22" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 10 contextual 0" 0 0 0 1 + 1 2 0 + Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + 1 + SeqLookup: 0 "Mark to base attachment lookup 22" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 9 contextual 3" 0 0 0 1 + 1 1 1 + Coverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF + BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva + FCoverage: 12 rafe uniFB1E + 1 + SeqLookup: 0 "Mark to base attachment lookup 21" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 9 contextual 2" 0 0 0 1 + 1 2 0 + Coverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF + BCoverage: 12 rafe uniFB1E + BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva + 1 + SeqLookup: 0 "Mark to base attachment lookup 21" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 9 contextual 1" 0 0 0 1 + 1 1 1 + Coverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF + BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + FCoverage: 12 rafe uniFB1E + 1 + SeqLookup: 0 "Mark to base attachment lookup 21" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 9 contextual 0" 0 0 0 1 + 1 2 0 + Coverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF + BCoverage: 12 rafe uniFB1E + BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + 1 + SeqLookup: 0 "Mark to base attachment lookup 21" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 8 contextual 3" 0 0 0 1 + 1 1 1 + Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva + FCoverage: 79 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA + 1 + SeqLookup: 0 "Mark to base attachment lookup 20" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 8 contextual 2" 0 0 0 1 + 1 1 1 + Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva + FCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + 1 + SeqLookup: 0 "Mark to base attachment lookup 20" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 8 contextual 1" 0 0 0 1 + 1 1 1 + Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + FCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + 1 + SeqLookup: 0 "Mark to base attachment lookup 20" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 8 contextual 0" 0 0 0 1 + 1 1 1 + Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD + BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + FCoverage: 79 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA + 1 + SeqLookup: 0 "Mark to base attachment lookup 20" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 7 contextual 3" 0 0 0 1 + 1 2 0 + Coverage: 12 rafe uniFB1E + BCoverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF + BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva + 1 + SeqLookup: 0 "Mark to base attachment lookup 19" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 7 contextual 2" 0 0 0 1 + 1 1 1 + Coverage: 12 rafe uniFB1E + BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva + FCoverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF + 1 + SeqLookup: 0 "Mark to base attachment lookup 19" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 7 contextual 1" 0 0 0 1 + 1 2 0 + Coverage: 12 rafe uniFB1E + BCoverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF + BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + 1 + SeqLookup: 0 "Mark to base attachment lookup 19" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 7 contextual 0" 0 0 0 1 + 1 1 1 + Coverage: 12 rafe uniFB1E + BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + FCoverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF + 1 + SeqLookup: 0 "Mark to base attachment lookup 19" +EndFPST +ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 2 subtable" 0 0 0 1 + 1 1 0 + Coverage: 5 holam + BCoverage: 232 alef bet gimel dalet he zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavyod yodyod alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide + 1 + SeqLookup: 0 "Single Positioning lookup 18" +EndFPST +TtTable: prep +NPUSHW + 33 + 9 + 319 + 1 + 313 + 85 + 318 + 1 + 313 + 85 + 322 + 320 + 20 + 31 + 321 + 320 + 31 + 31 + 315 + 51 + 314 + 85 + 312 + 51 + 313 + 85 + 64 + 263 + 1 + 31 + 263 + 1 + 159 + 260 +NPUSHB + 170 + 1 + 192 + 253 + 1 + 175 + 253 + 1 + 0 + 253 + 1 + 10 + 79 + 251 + 1 + 32 + 251 + 1 + 245 + 80 + 40 + 31 + 242 + 70 + 40 + 31 + 241 + 70 + 42 + 31 + 240 + 70 + 43 + 31 + 95 + 239 + 127 + 239 + 2 + 15 + 239 + 79 + 239 + 95 + 239 + 143 + 239 + 175 + 239 + 5 + 11 + 229 + 228 + 30 + 31 + 227 + 226 + 70 + 31 + 15 + 226 + 1 + 64 + 226 + 70 + 22 + 31 + 225 + 224 + 70 + 31 + 207 + 224 + 223 + 224 + 239 + 224 + 3 + 64 + 224 + 51 + 54 + 70 + 224 + 70 + 24 + 31 + 238 + 237 + 255 + 31 + 237 + 1 + 232 + 85 + 236 + 72 + 235 + 85 + 234 + 50 + 0 + 85 + 233 + 232 + 232 + 85 + 231 + 72 + 0 + 85 + 230 + 0 + 255 + 31 + 221 + 61 + 223 + 85 + 223 + 1 + 3 + 85 + 222 + 61 + 3 + 85 + 220 + 3 + 255 + 31 + 15 + 213 + 31 + 213 + 2 + 15 + 213 + 31 + 213 + 2 + 64 + 202 + 24 + 27 + 70 + 207 + 194 + 1 + 189 + 192 + 60 + 31 + 193 + 80 + 38 + 31 + 188 + 190 + 40 + 31 + 255 + 185 + 1 + 80 + 184 + 112 + 184 + 128 + 184 + 3 +PUSHW_1 + -64 +NPUSHB + 255 + 184 + 18 + 50 + 70 + 31 + 183 + 63 + 183 + 79 + 183 + 111 + 183 + 127 + 183 + 159 + 183 + 175 + 183 + 7 + 24 + 182 + 1 + 112 + 178 + 160 + 178 + 176 + 178 + 3 + 15 + 178 + 1 + 144 + 181 + 1 + 176 + 181 + 1 + 15 + 181 + 1 + 8 + 15 + 179 + 63 + 179 + 239 + 179 + 3 + 128 + 176 + 144 + 176 + 2 + 176 + 176 + 192 + 176 + 208 + 176 + 3 + 47 + 175 + 63 + 175 + 2 + 160 + 173 + 176 + 173 + 2 + 192 + 173 + 208 + 173 + 2 + 47 + 172 + 63 + 172 + 2 + 159 + 171 + 1 + 192 + 170 + 208 + 170 + 2 + 79 + 169 + 143 + 169 + 2 + 47 + 169 + 111 + 169 + 191 + 169 + 255 + 169 + 4 + 156 + 155 + 36 + 31 + 80 + 155 + 1 + 111 + 150 + 1 + 191 + 150 + 1 + 150 + 70 + 29 + 31 + 149 + 148 + 23 + 31 + 15 + 148 + 31 + 148 + 127 + 148 + 143 + 148 + 255 + 148 + 5 + 48 + 145 + 64 + 145 + 2 + 128 + 145 + 1 + 112 + 143 + 128 + 143 + 2 + 144 + 143 + 1 + 192 + 143 + 208 + 143 + 2 + 79 + 140 + 95 + 140 + 111 + 140 + 3 + 134 + 70 + 255 + 31 + 159 + 133 + 1 + 132 + 131 + 49 + 31 + 116 + 115 + 63 + 31 + 115 + 80 + 38 + 31 + 111 + 110 + 60 + 31 + 110 + 70 + 53 + 31 + 26 + 1 + 24 + 85 + 25 + 51 + 24 + 85 + 7 + 51 + 3 + 85 + 6 + 3 + 255 + 31 + 96 + 80 + 38 + 31 + 95 + 80 + 38 + 31 + 92 + 70 + 49 + 31 + 91 + 90 + 72 + 31 + 90 + 70 + 49 + 31 + 19 + 50 + 18 + 85 + 5 + 1 + 3 + 85 + 4 + 50 + 3 + 85 + 108 + 3 + 1 + 12 + 3 + 60 + 3 + 76 + 3 + 108 + 3 + 124 + 3 + 5 + 239 + 81 + 255 +NPUSHB + 100 + 81 + 2 + 64 + 81 + 53 + 56 + 70 + 64 + 81 + 37 + 40 + 70 + 207 + 80 + 1 + 73 + 70 + 32 + 31 + 72 + 70 + 53 + 31 + 71 + 70 + 53 + 31 + 175 + 70 + 1 + 223 + 70 + 239 + 70 + 2 + 128 + 70 + 1 + 22 + 50 + 21 + 85 + 17 + 1 + 15 + 85 + 16 + 50 + 15 + 85 + 2 + 1 + 0 + 85 + 1 + 0 + 1 + 31 + 31 + 15 + 63 + 15 + 95 + 15 + 127 + 15 + 4 + 15 + 15 + 47 + 15 + 79 + 15 + 111 + 15 + 143 + 15 + 223 + 15 + 255 + 15 + 7 + 63 + 15 + 127 + 15 + 239 + 15 + 3 + 111 + 0 + 1 + 79 + 0 + 1 + 128 + 22 + 1 + 5 + 1 +PUSHW_1 + 400 +PUSHB_2 + 84 + 83 +CALL +CALL +MPPEM +PUSHW_1 + 2047 +GT +MPPEM +PUSHB_1 + 7 +LT +OR +PUSHB_1 + 1 +GETINFO +PUSHB_1 + 37 +GTEQ +PUSHB_1 + 1 +GETINFO +PUSHB_1 + 64 +LTEQ +AND +PUSHB_1 + 6 +GETINFO +PUSHB_1 + 0 +NEQ +AND +OR +IF +PUSHB_2 + 1 + 1 +INSTCTRL +EIF +SCANCTRL +SCANTYPE +SCANTYPE +SVTCA[y-axis] +WS +SCVTCI +MPPEM +PUSHB_1 + 50 +GTEQ +IF +PUSHB_1 + 96 +SCVTCI +EIF +MPPEM +PUSHB_1 + 100 +GTEQ +IF +PUSHB_1 + 64 +SCVTCI +EIF +MPPEM +PUSHB_1 + 128 +GTEQ +IF +PUSHB_1 + 16 +SCVTCI +PUSHB_2 + 22 + 0 +WS +EIF +DELTAC1 +DELTAC2 +DELTAC1 +DELTAC2 +DELTAC3 +CALL +CALL +CALL +CALL +CALL +SVTCA[x-axis] +DELTAC1 +DELTAC2 +DELTAC3 +CALL +CALL +CALL +SVTCA[y-axis] +DELTAC2 +CALL +CALL +DELTAC1 +DELTAC1 +DELTAC3 +CALL +CALL +CALL +SVTCA[x-axis] +CALL +CALL +CALL +SVTCA[y-axis] +CALL +CALL +CALL +CALL +CALL +CALL +SVTCA[x-axis] +CALL +CALL +SVTCA[y-axis] +CALL +CALL +SVTCA[x-axis] +CALL +DELTAC1 +CALL +SVTCA[y-axis] +DELTAC2 +DELTAC1 +DELTAC2 +DELTAC3 +DELTAC1 +DELTAC2 +DELTAC1 +CALL +SVTCA[x-axis] +CALL +DELTAC2 +DELTAC3 +SVTCA[y-axis] +DELTAC1 +CALL +DELTAC1 +DELTAC2 +SVTCA[x-axis] +DELTAC1 +DELTAC1 +DELTAC2 +SVTCA[y-axis] +DELTAC1 +DELTAC2 +DELTAC2 +DELTAC1 +DELTAC2 +DELTAC1 +SVTCA[x-axis] +SDB +DELTAC1 +DELTAC1 +DELTAC2 +DELTAC1 +DELTAC1 +SVTCA[y-axis] +DELTAC1 +DELTAC1 +CALL +DELTAC1 +DELTAC1 +SVTCA[x-axis] +CALL +SVTCA[y-axis] +CALL +SVTCA[x-axis] +CALL +SVTCA[y-axis] +DELTAC1 +CALL +DELTAC2 +DELTAC3 +CALL +CALL +CALL +CALL +CALL +CALL +CALL +CALL +CALL +CALL +CALL +SVTCA[x-axis] +CALL +CALL +DELTAC2 +CALL +CALL +SDB +DELTAC1 +CALL +SVTCA[y-axis] +CALL +SDB +DELTAC1 +DELTAC2 +SVTCA[x-axis] +CALL +CALL +CALL +SVTCA[y-axis] +CALL +DELTAC1 +DELTAC1 +SDB +DELTAC1 +DELTAC1 +DELTAC1 +SVTCA[x-axis] +DELTAC1 +DELTAC1 +DELTAC1 +SVTCA[y-axis] +CALL +CALL +CALL +CALL +CALL +CALL +RTG +SDB +EndTTInstrs +TtTable: fpgm +NPUSHB + 71 + 91 + 90 + 89 + 88 + 85 + 84 + 83 + 82 + 81 + 80 + 79 + 78 + 77 + 76 + 75 + 74 + 73 + 72 + 71 + 70 + 69 + 68 + 67 + 66 + 65 + 64 + 63 + 62 + 61 + 60 + 59 + 58 + 57 + 56 + 55 + 54 + 53 + 49 + 48 + 47 + 46 + 45 + 44 + 40 + 39 + 38 + 37 + 36 + 35 + 34 + 33 + 31 + 24 + 20 + 17 + 16 + 15 + 14 + 13 + 11 + 10 + 9 + 8 + 7 + 6 + 5 + 4 + 3 + 2 + 1 + 0 +FDEF +DUP +PUSHB_1 + 1 +ADD +RCVT +PUSHB_1 + 3 +CINDEX +DUP +SRP1 +GC[cur] +SUB +SWAP +RCVT +SWAP +SUB +SCFS +ENDF +FDEF +DUP +RCVT +RTG +ROUND[Grey] +WCVTP +ENDF +FDEF +RCVT +SWAP +GC[cur] +ADD +PUSHB_1 + 32 +SUB +DUP +PUSHB_1 + 70 +ADD +PUSHB_1 + 4 +MINDEX +SWAP +SCFS +SCFS +ENDF +FDEF +RCVT +SWAP +GC[cur] +SWAP +SUB +PUSHB_1 + 32 +ADD +DUP +PUSHB_1 + 38 +SUB +PUSHB_1 + 32 +SUB +PUSHB_1 + 4 +MINDEX +SWAP +SCFS +SCFS +ENDF +FDEF +RCVT +SWAP +GC[cur] +ADD +PUSHB_1 + 64 +SUB +DUP +PUSHB_1 + 102 +ADD +PUSHB_1 + 4 +MINDEX +SWAP +SCFS +SCFS +ENDF +FDEF +RCVT +SWAP +GC[cur] +SWAP +SUB +PUSHB_1 + 64 +ADD +DUP +PUSHB_1 + 38 +SUB +PUSHB_1 + 64 +SUB +PUSHB_1 + 4 +MINDEX +SWAP +SCFS +SCFS +ENDF +FDEF +SVTCA[x-axis] +SRP0 +DUP +ALIGNRP +SVTCA[y-axis] +ALIGNRP +ENDF +FDEF +DUP +RCVT +SWAP +DUP +PUSHB_1 + 205 +WCVTP +SWAP +DUP +PUSHW_1 + 346 +LTEQ +IF +SWAP +DUP +PUSHB_1 + 141 +WCVTP +SWAP +EIF +DUP +PUSHB_1 + 237 +LTEQ +IF +SWAP +DUP +PUSHB_1 + 77 +WCVTP +SWAP +EIF +DUP +PUSHB_1 + 4 +MINDEX +LTEQ +IF +SWAP +DUP +PUSHB_1 + 13 +WCVTP +SWAP +EIF +POP +POP +ENDF +FDEF +DUP +DUP +RCVT +RTG +ROUND[Grey] +WCVTP +DUP +PUSHB_1 + 1 +ADD +DUP +RCVT +PUSHB_1 + 70 +SROUND +ROUND[Grey] +ROLL +RCVT +ADD +WCVTP +ENDF +FDEF +SVTCA[x-axis] +PUSHB_2 + 11 + 10 +RS +SWAP +RS +NEG +SPVFS +ENDF +FDEF +SVTCA[y-axis] +PUSHB_2 + 10 + 11 +RS +SWAP +RS +SFVFS +ENDF +FDEF +SVTCA[y-axis] +PUSHB_1 + 40 +SWAP +WCVTF +PUSHB_2 + 1 + 40 +MIAP[no-rnd] +SVTCA[x-axis] +PUSHB_1 + 40 +SWAP +WCVTF +PUSHB_2 + 2 + 40 +RCVT +MSIRP[no-rp0] +PUSHB_2 + 2 + 0 +SFVTL[parallel] +GFV +ENDF +FDEF +DUP +RCVT +PUSHB_1 + 3 +CINDEX +RCVT +SUB +ABS +PUSHB_1 + 80 +LTEQ +IF +RCVT +WCVTP +ELSE +POP +POP +EIF +ENDF +FDEF +MD[grid] +PUSHB_1 + 14 +SWAP +WCVTP +ENDF +FDEF +DUP +RCVT +PUSHB_1 + 0 +RS +ADD +WCVTP +ENDF +FDEF +SVTCA[x-axis] +PUSHB_1 + 6 +RS +PUSHB_1 + 7 +RS +NEG +SPVFS +ENDF +FDEF +DUP +ROUND[Black] +PUSHB_1 + 64 +SUB +PUSHB_1 + 0 +MAX +DUP +PUSHB_2 + 44 + 192 +ROLL +MIN +PUSHW_1 + 4096 +DIV +ADD +CALL +GPV +ABS +SWAP +ABS +SUB +NOT +IF +PUSHB_1 + 3 +SUB +EIF +ENDF +FDEF +ROLL +SPVTCA[x-axis] +RCVT +ROLL +ROLL +SDPVTL[orthog] +PUSHB_1 + 17 +CALL +PUSHB_1 + 41 +SWAP +WCVTP +PUSHB_1 + 41 +ROFF +MIRP[rnd,grey] +RTG +ENDF +FDEF +RCVT +NEG +PUSHB_1 + 44 +SWAP +WCVTP +RCVT +PUSHB_1 + 43 +SWAP +WCVTP +ENDF +FDEF +MPPEM +GT +IF +RCVT +WCVTP +ELSE +POP +POP +EIF +ENDF +FDEF +MPPEM +LTEQ +IF +RCVT +WCVTP +ELSE +POP +POP +EIF +ENDF +FDEF +SVTCA[x-axis] +PUSHB_1 + 5 +CINDEX +SRP0 +SWAP +DUP +ROLL +MIRP[rp0,rnd,black] +SVTCA[y-axis] +PUSHB_1 + 1 +ADD +SWAP +MIRP[min,rnd,black] +MIRP[min,rnd,grey] +ENDF +FDEF +SVTCA[x-axis] +PUSHB_1 + 5 +CINDEX +SRP0 +SWAP +DUP +ROLL +MIRP[rp0,rnd,black] +SVTCA[y-axis] +PUSHB_1 + 1 +SUB +SWAP +MIRP[min,rnd,black] +MIRP[min,rnd,grey] +ENDF +FDEF +SVTCA[x-axis] +PUSHB_1 + 6 +CINDEX +SRP0 +MIRP[rp0,rnd,black] +SVTCA[y-axis] +MIRP[min,rnd,black] +MIRP[min,rnd,grey] +ENDF +FDEF +PUSHB_1 + 2 +RS +PUSHB_1 + 1 +GT +IF +POP +POP +POP +POP +POP +ELSE +GC[cur] +SWAP +GC[cur] +ADD +ROLL +ROLL +GC[cur] +SWAP +DUP +GC[cur] +ROLL +ADD +ROLL +SUB +PUSHW_1 + -128 +DIV +SWAP +DUP +SRP0 +SWAP +ROLL +PUSHB_2 + 12 + 12 +ROLL +WCVTF +RCVT +ADD +DUP +PUSHB_1 + 0 +LT +IF +PUSHB_1 + 1 +SUB +PUSHW_1 + -70 +MAX +ELSE +PUSHB_1 + 70 +MIN +EIF +PUSHB_1 + 16 +ADD +ROUND[Grey] +SVTCA[x-axis] +MSIRP[no-rp0] +EIF +ENDF +FDEF +DUP +RCVT +PUSHB_1 + 3 +CINDEX +GC[cur] +GT +MPPEM +PUSHB_1 + 19 +LTEQ +OR +IF +PUSHB_1 + 2 +CINDEX +GC[cur] +DUP +ROUND[Grey] +SUB +PUSHB_1 + 3 +CINDEX +PUSHB_1 + 3 +CINDEX +MIAP[rnd] +SWAP +POP +SHPIX +ELSE +POP +SRP1 +EIF +ENDF +FDEF +DUP +RCVT +PUSHB_1 + 3 +CINDEX +GC[cur] +LT +IF +PUSHB_1 + 2 +CINDEX +GC[cur] +DUP +ROUND[Grey] +SUB +PUSHB_1 + 3 +CINDEX +PUSHB_1 + 3 +CINDEX +MIAP[rnd] +SWAP +POP +SHPIX +ELSE +POP +SRP1 +EIF +ENDF +FDEF +SVTCA[y-axis] +PUSHB_1 + 7 +RS +PUSHB_1 + 6 +RS +SFVFS +ENDF +FDEF +POP +POP +GPV +ABS +SWAP +ABS +MAX +PUSHW_1 + 16384 +DIV +ENDF +FDEF +POP +PUSHB_1 + 128 +LTEQ +IF +GPV +ABS +SWAP +ABS +MAX +PUSHW_1 + 8192 +DIV +ELSE +PUSHB_3 + 0 + 64 + 47 +CALL +EIF +PUSHB_1 + 2 +ADD +ENDF +FDEF +POP +PUSHB_1 + 192 +LTEQ +IF +GPV +ABS +SWAP +ABS +MAX +PUSHW_1 + 5461 +DIV +ELSE +PUSHB_3 + 0 + 128 + 47 +CALL +EIF +PUSHB_1 + 2 +ADD +ENDF +FDEF +GPV +ABS +SWAP +ABS +MAX +PUSHW_1 + 16384 +DIV +ADD +SWAP +POP +ENDF +FDEF +MPPEM +GTEQ +IF +ROLL +PUSHB_1 + 4 +CINDEX +MD[grid] +ABS +SWAP +RCVT +ROUND[Black] +PUSHB_1 + 64 +MAX +SUB +PUSHB_1 + 128 +DIV +PUSHB_1 + 32 +SUB +ROUND[White] +PUSHB_1 + 14 +SWAP +WCVTP +SWAP +SRP0 +PUSHB_1 + 14 +MIRP[rp0,rnd,white] +ELSE +POP +SWAP +ROLL +SRP2 +SRP1 +DUP +IP +MDAP[rnd] +EIF +ENDF +FDEF +MPPEM +GTEQ +IF +DUP +PUSHB_1 + 3 +CINDEX +MD[grid] +ABS +ROUND[Black] +DUP +PUSHB_1 + 5 +MINDEX +PUSHB_1 + 6 +CINDEX +MD[grid] +ABS +SWAP +SUB +PUSHB_1 + 128 +DIV +PUSHB_1 + 32 +SUB +ROUND[White] +PUSHB_1 + 14 +SWAP +WCVTP +PUSHB_1 + 4 +MINDEX +SRP0 +PUSHB_1 + 14 +MIRP[rp0,rnd,white] +ROLL +SRP0 +PUSHB_1 + 14 +SWAP +WCVTP +PUSHB_1 + 14 +MIRP[rp0,rnd,white] +PUSHB_1 + 14 +SWAP +WCVTP +PUSHB_1 + 14 +MIRP[min,rnd,black] +ELSE +ROLL +PUSHB_1 + 4 +MINDEX +SRP1 +SRP2 +DUP +IP +SWAP +DUP +IP +MDAP[rnd] +MDAP[rnd] +EIF +ENDF +FDEF +RCVT +SWAP +RCVT +ADD +SWAP +RCVT +ADD +SWAP +RCVT +ADD +SWAP +SROUND +ROUND[Grey] +RTG +PUSHB_1 + 128 +DIV +DUP +ENDF +FDEF +PUSHB_1 + 72 +CALL +ENDF +FDEF +DUP +RCVT +PUSHB_1 + 0 +EQ +IF +PUSHB_1 + 64 +WCVTP +DUP +RCVT +PUSHB_1 + 64 +SUB +WCVTP +ELSE +POP +POP +EIF +ENDF +FDEF +RCVT +PUSHB_2 + 48 + 47 +RCVT +SWAP +RCVT +SUB +ADD +PUSHB_1 + 1 +ADD +ROUND[Black] +WCVTP +ENDF +FDEF +MPPEM +LTEQ +IF +PUSHB_1 + 47 +SWAP +WCVTF +PUSHB_1 + 20 +SWAP +WS +ELSE +POP +POP +EIF +ENDF +FDEF +MPPEM +LTEQ +IF +DUP +PUSHB_1 + 3 +CINDEX +RCVT +ROUND[Black] +GTEQ +IF +WCVTP +ELSE +POP +POP +EIF +ELSE +POP +POP +EIF +ENDF +FDEF +RCVT +PUSHB_1 + 20 +RS +PUSHB_1 + 0 +ADD +MUL +PUSHB_1 + 1 +ADD +ROUND[Black] +WCVTP +ENDF +FDEF +PUSHB_1 + 47 +RCVT +WCVTP +ENDF +FDEF +RCVT +SWAP +DUP +RCVT +ROLL +ADD +WCVTP +ENDF +FDEF +RCVT +SWAP +RCVT +ADD +WCVTP +ENDF +FDEF +MPPEM +SWAP +LTEQ +IF +PUSHW_2 + 51 + -32 +PUSHB_2 + 52 + 32 +ELSE +PUSHB_4 + 51 + 0 + 52 + 0 +EIF +WCVTP +WCVTP +ENDF +FDEF +PUSHB_1 + 22 +RS +IF +PUSHB_1 + 3 +MINDEX +RCVT +ROLL +IF +ABS +FLOOR +PUSHB_1 + 31 +ADD +ELSE +ABS +PUSHB_1 + 32 +ADD +FLOOR +DUP +IF +ELSE +POP +PUSHB_1 + 64 +EIF +PUSHB_1 + 1 +SUB +EIF +SWAP +IF +NEG +EIF +PUSHB_1 + 41 +SWAP +WCVTP +SWAP +SRP0 +PUSHB_1 + 41 +MIRP[grey] +ELSE +POP +POP +POP +POP +POP +EIF +ENDF +FDEF +PUSHB_1 + 2 +RS +EQ +IF +MPPEM +GTEQ +SWAP +MPPEM +LTEQ +AND +IF +SHPIX +ELSE +POP +POP +EIF +ELSE +POP +POP +POP +POP +EIF +ENDF +FDEF +PUSHB_1 + 22 +RS +IF +PUSHB_1 + 4 +CINDEX +RCVT +ABS +PUSHB_1 + 32 +ADD +FLOOR +DUP +IF +ELSE +POP +PUSHB_1 + 64 +EIF +PUSHB_1 + 1 +SUB +SWAP +IF +ELSE +NEG +EIF +PUSHB_1 + 41 +SWAP +WCVTP +PUSHB_1 + 5 +CINDEX +PUSHB_1 + 8 +CINDEX +SFVTL[parallel] +DUP +IF +SPVTCA[y-axis] +ELSE +SPVTCA[x-axis] +EIF +PUSHB_1 + 4 +CINDEX +SRP0 +PUSHB_1 + 5 +CINDEX +DUP +GC[cur] +PUSHB_1 + 4 +CINDEX +SWAP +WS +ALIGNRP +PUSHB_1 + 4 +CINDEX +PUSHB_1 + 7 +CINDEX +SFVTL[parallel] +PUSHB_1 + 7 +CINDEX +SRP0 +PUSHB_1 + 6 +CINDEX +DUP +GC[cur] +PUSHB_1 + 4 +CINDEX +PUSHB_1 + 1 +ADD +SWAP +WS +ALIGNRP +DUP +IF +SVTCA[x-axis] +ELSE +SVTCA[y-axis] +EIF +PUSHB_1 + 4 +CINDEX +SRP0 +PUSHB_1 + 5 +CINDEX +PUSHB_1 + 41 +MIRP[grey] +PUSHB_1 + 41 +DUP +RCVT +NEG +WCVTP +PUSHB_1 + 7 +CINDEX +SRP0 +PUSHB_1 + 6 +CINDEX +PUSHB_1 + 41 +MIRP[grey] +PUSHB_1 + 5 +CINDEX +PUSHB_1 + 8 +CINDEX +SFVTL[parallel] +DUP +IF +SPVTCA[y-axis] +ELSE +SPVTCA[x-axis] +EIF +PUSHB_1 + 5 +CINDEX +PUSHB_1 + 3 +CINDEX +RS +SCFS +PUSHB_1 + 4 +CINDEX +PUSHB_1 + 7 +CINDEX +SFVTL[parallel] +PUSHB_1 + 6 +CINDEX +PUSHB_1 + 3 +CINDEX +PUSHB_1 + 1 +ADD +RS +SCFS +ELSE +POP +EIF +POP +POP +POP +POP +POP +POP +POP +ENDF +FDEF +SPVTCA[y-axis] +PUSHB_1 + 4 +CINDEX +DUP +DUP +GC[cur] +PUSHB_1 + 4 +CINDEX +SWAP +WS +PUSHB_1 + 5 +CINDEX +SFVTL[parallel] +PUSHB_1 + 3 +CINDEX +RCVT +SCFS +POP +POP +POP +POP +ENDF +FDEF +SPVTCA[y-axis] +PUSHB_1 + 3 +CINDEX +DUP +PUSHB_1 + 4 +CINDEX +SFVTL[parallel] +PUSHB_1 + 2 +CINDEX +RS +SCFS +POP +POP +POP +ENDF +FDEF +RCVT +SWAP +DUP +RCVT +RTG +DUP +PUSHB_1 + 0 +LT +DUP +IF +SWAP +NEG +SWAP +EIF +SWAP +ROUND[Grey] +DUP +PUSHB_1 + 64 +LT +IF +POP +PUSHB_1 + 64 +EIF +SWAP +IF +NEG +EIF +ROLL +ADD +WCVTP +ENDF +FDEF +MPPEM +GTEQ +SWAP +MPPEM +LTEQ +AND +IF +DUP +RCVT +ROLL +ADD +WCVTP +ELSE +POP +POP +EIF +ENDF +FDEF +MPPEM +EQ +IF +DUP +RCVT +ROLL +ADD +WCVTP +ELSE +POP +POP +EIF +ENDF +FDEF +MPPEM +GTEQ +SWAP +MPPEM +LTEQ +AND +IF +SHPIX +ELSE +POP +POP +EIF +ENDF +FDEF +PUSHB_1 + 0 +POP +MPPEM +EQ +IF +SHPIX +ELSE +POP +POP +EIF +ENDF +FDEF +PUSHB_1 + 2 +RS +EQ +IF +PUSHB_1 + 70 +CALL +ELSE +POP +POP +POP +POP +EIF +ENDF +FDEF +PUSHB_1 + 2 +RS +EQ +IF +PUSHB_1 + 71 +CALL +ELSE +POP +POP +POP +EIF +ENDF +FDEF +PUSHB_1 + 2 +RS +EQ +IF +PUSHB_1 + 72 +CALL +ELSE +POP +POP +POP +POP +EIF +ENDF +FDEF +PUSHB_1 + 2 +RS +EQ +IF +PUSHB_1 + 73 +CALL +ELSE +POP +POP +POP +EIF +ENDF +FDEF +DUP +ROLL +SFVTL[parallel] +SWAP +MPPEM +GTEQ +ROLL +MPPEM +LTEQ +AND +IF +SWAP +SHPIX +ELSE +POP +POP +EIF +ENDF +FDEF +SVTCA[y-axis] +PUSHB_1 + 2 +CINDEX +MD[grid] +PUSHB_1 + 0 +GTEQ +IF +DUP +PUSHB_1 + 64 +SHPIX +SRP1 +ELSE +POP +EIF +ENDF +FDEF +SVTCA[x-axis] +GC[cur] +SWAP +GC[cur] +ADD +SWAP +GC[cur] +SUB +SWAP +DUP +SRP0 +DUP +GC[cur] +ROLL +SUB +PUSHW_1 + -128 +DIV +ROLL +PUSHB_2 + 64 + 64 +ROLL +WCVTF +RCVT +ADD +ROUND[Grey] +MSIRP[no-rp0] +ENDF +FDEF +DUP +ROLL +SWAP +MD[grid] +ABS +ROLL +SWAP +GTEQ +IF +ALIGNRP +ELSE +POP +EIF +ENDF +FDEF +MPPEM +GT +IF +RDTG +ELSE +ROFF +EIF +ENDF +FDEF +PUSHB_1 + 18 +SVTCA[y-axis] +MPPEM +SVTCA[x-axis] +MPPEM +EQ +WS +ENDF +FDEF +PUSHB_2 + 2 + 0 +WS +PUSHB_2 + 35 + 1 +GETINFO +LTEQ +PUSHB_2 + 64 + 1 +GETINFO +GTEQ +AND +IF +PUSHW_2 + 4096 + 32 +GETINFO +EQ +IF +PUSHB_3 + 2 + 1 + 2 +RS +ADD +WS +EIF +PUSHB_2 + 36 + 1 +GETINFO +LTEQ +IF +PUSHW_2 + 8192 + 64 +GETINFO +EQ +IF +PUSHB_3 + 2 + 2 + 2 +RS +ADD +WS +PUSHB_2 + 36 + 1 +GETINFO +EQ +IF +PUSHB_3 + 2 + 32 + 2 +RS +ADD +WS +SVTCA[y-axis] +MPPEM +SVTCA[x-axis] +MPPEM +GT +IF +PUSHB_3 + 2 + 8 + 2 +RS +ADD +WS +EIF +ELSE +PUSHW_2 + 16384 + 128 +GETINFO +EQ +IF +PUSHB_3 + 2 + 4 + 2 +RS +ADD +WS +EIF +PUSHW_2 + 16384 + 128 +MUL +PUSHW_1 + 256 +GETINFO +EQ +IF +PUSHB_3 + 2 + 8 + 2 +RS +ADD +WS +EIF +PUSHW_2 + 16384 + 256 +MUL +PUSHW_1 + 512 +GETINFO +EQ +IF +PUSHB_3 + 2 + 16 + 2 +RS +ADD +WS +EIF +PUSHB_2 + 38 + 1 +GETINFO +LTEQ +IF +PUSHW_2 + 16384 + 512 +MUL +PUSHW_1 + 1024 +GETINFO +EQ +IF +PUSHB_3 + 2 + 64 + 2 +RS +ADD +WS +EIF +PUSHW_2 + 16384 + 1024 +MUL +PUSHW_1 + 2048 +GETINFO +EQ +IF +PUSHB_3 + 2 + 128 + 2 +RS +ADD +WS +EIF +EIF +EIF +EIF +EIF +EIF +PUSHB_2 + 0 + 2 +RS +EQ +IF +NPUSHB + 10 + 5 + 64 + 8 + 64 + 9 + 64 + 12 + 2 + 13 + 2 +ELSE +PUSHB_2 + 1 + 2 +RS +EQ +IF +PUSHB_3 + 5 + 64 + 8 +PUSHW_3 + 256 + 9 + 256 +PUSHB_4 + 12 + 1 + 13 + 1 +ELSE +PUSHB_2 + 128 + 2 +RS +GT +IF +PUSHB_3 + 5 + 64 + 8 +PUSHW_1 + 384 +PUSHB_2 + 9 + 64 +ELSE +PUSHB_3 + 5 + 64 + 8 +PUSHW_3 + 384 + 9 + 320 +EIF +PUSHW_2 + 16384 + 128 +GETINFO +NEQ +PUSHW_2 + 16384 + 512 +MUL +PUSHW_1 + 1024 +GETINFO +NEQ +AND +IF +PUSHB_4 + 12 + 0 + 13 + 1 +ELSE +PUSHB_4 + 12 + 0 + 13 + 1 +EIF +EIF +EIF +WS +WS +WS +WS +WS +ENDF +FDEF +RCVT +RTG +ROUND[Grey] +SWAP +MPPEM +LTEQ +IF +SWAP +DUP +RCVT +DUP +ABS +PUSHB_1 + 64 +LT +IF +RUTG +EIF +ROUND[Grey] +ROLL +ADD +EIF +WCVTP +ENDF +FDEF +PUSHB_1 + 0 +SZPS +PUSHB_1 + 2 +CINDEX +PUSHB_1 + 2 +CINDEX +SVTCA[x-axis] +PUSHB_1 + 1 +SWAP +MIAP[no-rnd] +SVTCA[y-axis] +PUSHB_1 + 2 +SWAP +MIAP[no-rnd] +PUSHB_2 + 1 + 2 +SPVTL[parallel] +GPV +PUSHB_1 + 10 +SWAP +NEG +WS +PUSHB_1 + 11 +SWAP +WS +SVTCA[x-axis] +PUSHB_1 + 1 +SWAP +MIAP[rnd] +SVTCA[y-axis] +PUSHB_1 + 2 +SWAP +MIAP[rnd] +PUSHB_2 + 1 + 2 +SPVTL[parallel] +GPV +PUSHB_1 + 6 +SWAP +NEG +WS +PUSHB_1 + 7 +SWAP +WS +PUSHB_1 + 1 +SZPS +SVTCA[x-axis] +ENDF +FDEF +PUSHB_1 + 128 +PUSHB_1 + 2 +RS +LT +PUSHB_1 + 1 +PUSHB_1 + 2 +RS +EQ +OR +IF +POP +SWAP +SRP0 +PUSHB_1 + 32 +SMD +MDRP[min,black] +ELSE +ROLL +SRP0 +MIRP[min,rnd,black] +EIF +ENDF +FDEF +PUSHB_1 + 89 +CALL +ENDF +FDEF +ROLL +SRP0 +MIRP[rnd,black] +ENDF +EndTTInstrs +ShortTable: cvt 324 + 1484 + 1484 + 125 + 1409 + 21 + 121 + 1409 + 21 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 1082 + 20 + 119 + 0 + -20 + 0 + 0 + -20 + 0 + 0 + -20 + 0 + -425 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 2048 + 0 + 0 + 180 + 189 + 175 + 160 + 0 + 0 + 0 + 0 + 0 + 0 + 136 + 126 + 0 + 172 + 0 + 0 + 0 + 0 + 0 + 0 + 191 + 195 + 171 + 0 + 0 + 155 + 141 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 185 + 170 + 0 + 0 + 0 + 148 + 153 + 135 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 106 + 131 + 141 + 164 + 180 + 0 + 0 + 0 + 0 + 0 + 96 + 106 + 121 + 152 + 172 + 184 + 167 + 0 + 290 + 307 + 195 + 107 + 0 + 0 + 0 + 219 + 201 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 481 + 457 + 146 + 168 + 107 + 146 + 183 + 107 + 155 + 0 + 635 + 754 + 146 + 594 + 110 + 727 + 897 + 130 + 137 + 160 + 159 + 361 + 143 + 0 + 352 + 164 + 347 + 94 + 130 + 0 + 0 + 0 + 94 + 101 + 111 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 138 + 144 + 165 + 122 + 128 + 0 + 0 + 0 + 0 + 0 + 1409 + -13 + 13 + -845 + 131 + 137 + 143 + 150 + 105 + 113 + 1484 + 15 + -994 + -14 + 52 + 1254 + 13 + -300 + 191 + 799 + 167 + 174 + 181 + 0 + 0 + 129 + 0 + 0 + 0 + 0 + 1864 + 874 + 694 + 514 + -621 + 0 + 145 + 103 + 145 + 97 + 473 + 0 + 653 + 833 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 1665 + 1128 + 20 + 1227 + 0 + -20 + -45 + -385 + 131 + 219 + 170 + 186 + 160 + 207 +EndShort +ShortTable: maxp 16 + 1 + 0 + 2588 + 338 + 84 + 92 + 6 + 2 + 16 + 47 + 92 + 0 + 676 + 516 + 4 + 1 +EndShort +LangName: 1033 "" "" "Regular" "Ascender - Liberation Sans" "" "Version 2.00.3" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial+ISIA. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL" +GaspTable: 3 8 2 17 1 65535 3 0 +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: AGL For New Fonts +DisplaySize: -48 +AntiAlias: 1 +FitToEm: 0 +WinInfo: 38 38 14 +BeginPrivate: 0 +EndPrivate +TeXData: 1 0 0 291328 145664 97109 553984 -1048576 97109 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144 +AnchorClass2: "Anchor-0" "'mark' Mark Positioning in Hebrew lookup 1 subtable" "Anchor-1" "'mark' Mark Positioning in Hebrew lookup 3 subtable" "Anchor-2" "'mark' Mark Positioning in Hebrew lookup 4 subtable" "Anchor-3" "'mark' Mark Positioning in Hebrew lookup 5 subtable" "Anchor-4" "'mark' Mark Positioning in Hebrew lookup 5 subtable" "Anchor-5" "'mark' Mark Positioning in Hebrew lookup 6 subtable" "Anchor-6" "'mark' Mark Positioning in Hebrew lookup 6 subtable" "Anchor-7" "'mark' Mark Positioning in Hebrew lookup 11 subtable" "Anchor-8" "'mark' Mark Positioning in Hebrew lookup 12 subtable" "Anchor-9" "'mark' Mark Positioning in Hebrew lookup 13 subtable" "Anchor-10" "Mark to base attachment lookup 19 subtable" "Anchor-11" "Mark to base attachment lookup 20 subtable" "Anchor-12" "Mark to base attachment lookup 21 subtable" "Anchor-13" "Mark to base attachment lookup 22 subtable" "Anchor-14" "'mark' Mark Positioning lookup 26 subtable" "Anchor-15" "'mark' Mark Positioning lookup 26 subtable" "Anchor-16" "'mark' Mark Positioning lookup 26 subtable" "Anchor-17" "'mark' Mark Positioning lookup 27 subtable" "Anchor-18" "'mark' Mark Positioning lookup 28 subtable" "Anchor-19" "'mark' Mark Positioning lookup 29 subtable" "Anchor-20" "'mark' Mark Positioning lookup 30 subtable" "Anchor-21" "'mark' Mark Positioning lookup 30 subtable" "Anchor-22" "'mark' Mark Positioning lookup 31 subtable" "Anchor-23" "'mark' Mark Positioning lookup 31 subtable" "Anchor-24" "'mark' Mark Positioning lookup 32 subtable" "Anchor-25" "'mark' Mark Positioning lookup 33 subtable" "Anchor-26" "Mark to base attachment lookup 34 subtable" "Anchor-27" "'mkmk' Mark to Mark lookup 35 subtable" "Anchor-28" "'mkmk' Mark to Mark lookup 36 subtable" +BeginChars: 65829 2588 + +StartChar: .notdef +Encoding: 65536 -1 0 +Width: 1536 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 6 + 5 + 3 + 6 + 3 + 9 + 8 + 5 + 3 + 4 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +205 1409 m 1,0,-1 + 1330 1409 l 1,1,-1 + 1330 0 l 1,2,-1 + 205 0 l 1,3,-1 + 205 1409 l 1,0,-1 +281 1333 m 1,4,-1 + 281 76 l 1,5,-1 + 1254 76 l 1,6,-1 + 1254 1333 l 1,7,-1 + 281 1333 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: .null +Encoding: 65537 -1 1 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: nonmarkingreturn +Encoding: 65538 -1 2 +Width: 569 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: space +Encoding: 32 32 3 +Width: 569 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Kerns2: 861 -37 "'kern' Horizontal Kerning lookup 17 subtable" 855 -37 "'kern' Horizontal Kerning lookup 17 subtable" 854 -37 "'kern' Horizontal Kerning lookup 17 subtable" 846 -113 "'kern' Horizontal Kerning lookup 17 subtable" 839 -113 "'kern' Horizontal Kerning lookup 17 subtable" 836 -113 "'kern' Horizontal Kerning lookup 17 subtable" 827 -113 "'kern' Horizontal Kerning lookup 17 subtable" 60 -37 "'kern' Horizontal Kerning lookup 17 subtable" 55 -37 "'kern' Horizontal Kerning lookup 17 subtable" 36 -113 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: exclam +Encoding: 33 33 4 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 3 + 7 + 7 + 2 + 4 + 4 + 9 + 8 + 32 + 1 + 1 + 15 + 1 + 1 + 14 + 3 + 1 + 5 + 64 + 4 + 5 + 156 + 91 + 4 + 2 + 3 + 146 + 9 + 1 + 132 + 9 + 1 + 114 + 9 + 1 + 98 + 9 + 1 + 84 + 9 + 1 + 68 + 9 + 1 + 50 + 9 + 1 + 34 + 9 + 1 + 20 + 9 + 1 + 4 + 9 + 1 + 242 + 9 + 1 + 226 + 9 + 1 + 212 + 9 + 1 + 196 + 9 + 1 + 178 + 9 + 1 + 164 + 9 + 1 + 148 + 9 + 1 + 132 + 9 + 1 + 114 + 9 + 1 + 100 + 9 + 1 + 84 + 9 + 1 + 68 + 9 + 1 + 52 + 9 + 1 + 36 + 9 + 1 + 20 + 9 + 1 + 4 + 9 + 1 + 103 + 244 + 9 + 1 + 185 + 9 + 1 + 169 + 9 + 1 + 153 + 9 + 1 + 137 + 9 + 1 + 121 + 9 + 1 + 73 + 9 + 1 + 61 + 9 + 1 + 45 + 9 + 1 + 31 + 9 + 1 + 15 + 9 + 1 + 255 + 9 + 1 + 239 + 9 + 1 + 219 + 9 + 1 + 203 + 9 + 1 + 187 + 9 + 1 + 171 + 9 + 1 + 157 + 9 + 1 + 141 + 9 + 1 + 125 + 9 + 1 + 111 + 9 + 1 + 95 + 9 + 1 + 75 + 9 + 1 + 59 + 9 + 1 + 43 + 9 + 1 + 27 + 9 + 1 + 11 + 9 + 1 + 253 + 9 + 1 + 237 + 9 + 1 + 221 + 9 + 1 + 205 + 9 + 1 + 187 + 9 + 1 + 171 + 9 + 1 + 155 + 9 + 1 + 139 + 9 + 1 + 125 + 9 + 1 + 107 + 9 + 1 + 91 + 9 + 1 + 77 + 9 + 1 + 61 + 9 + 1 + 41 + 9 + 1 + 25 + 9 + 1 + 11 + 9 + 1 + 55 + 251 + 9 + 1 + 235 + 9 + 1 + 221 + 9 + 1 + 205 + 9 + 1 + 187 + 9 + 1 + 171 + 9 + 1 + 153 + 9 +NPUSHB + 91 + 1 + 137 + 9 + 1 + 121 + 9 + 1 + 105 + 9 + 1 + 91 + 9 + 1 + 75 + 9 + 1 + 59 + 9 + 1 + 45 + 9 + 1 + 29 + 9 + 1 + 1 + 235 + 9 + 1 + 219 + 9 + 1 + 203 + 9 + 1 + 191 + 9 + 1 + 175 + 9 + 1 + 159 + 9 + 1 + 123 + 9 + 1 + 107 + 9 + 1 + 59 + 9 + 1 + 43 + 9 + 1 + 27 + 9 + 1 + 15 + 9 + 1 + 2 + 207 + 9 + 1 + 191 + 9 + 1 + 159 + 9 + 1 + 143 + 9 + 1 + 127 + 9 + 1 + 96 + 9 + 1 + 64 + 9 + 1 + 31 + 9 + 1 + 15 + 9 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SDS +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +MDAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,white] +SDS +SDB +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +359 397 m 1,0,-1 + 211 397 l 1,1,-1 + 187 1409 l 1,2,-1 + 383 1409 l 1,3,-1 + 359 397 l 1,0,-1 +185 0 m 1,4,-1 + 185 201 l 1,5,-1 + 379 201 l 1,6,-1 + 379 0 l 1,7,-1 + 185 0 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: quotedbl +Encoding: 34 34 5 +Width: 727 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 3 + 2 + 7 + 6 + 2 + 6 + 9 + 8 + 5 + 32 + 0 + 1 + 0 + 6 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +618 966 m 1,0,-1 + 476 966 l 1,1,-1 + 456 1409 l 1,2,-1 + 640 1409 l 1,3,-1 + 618 966 l 1,0,-1 +249 966 m 1,4,-1 + 108 966 l 1,5,-1 + 87 1409 l 1,6,-1 + 271 1409 l 1,7,-1 + 249 966 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: numbersign +Encoding: 35 35 6 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 104 + 4 + 1 + 0 + 25 + 4 + 24 + 5 + 7 + 30 + 31 + 22 + 4 + 23 + 6 + 8 + 29 + 28 + 21 + 4 + 20 + 9 + 11 + 14 + 15 + 18 + 4 + 19 + 10 + 23 + 24 + 6 + 5 + 20 + 19 + 9 + 10 + 10 + 19 + 24 + 5 + 4 + 26 + 12 + 12 + 29 + 31 + 26 + 4 + 33 + 32 + 11 + 8 + 7 + 4 + 12 + 13 + 30 + 29 + 14 + 1 + 13 + 31 + 28 + 15 + 0 + 16 + 17 + 25 + 22 + 21 + 18 + 17 + 16 + 13 + 1 + 208 + 13 + 1 + 79 + 17 + 143 + 17 + 159 + 17 + 3 + 63 + 17 + 79 + 17 + 2 + 13 + 17 + 13 + 17 + 5 + 24 + 23 + 20 + 19 + 3 + 10 + 9 + 6 + 5 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SRP2 +SLOOP +IP +SRP1 +SRP2 +SLOOP +IP +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +896 885 m 1,0,-1 + 818 516 l 1,1,-1 + 1078 516 l 1,2,-1 + 1078 408 l 1,3,-1 + 795 408 l 1,4,-1 + 707 0 l 1,5,-1 + 597 0 l 1,6,-1 + 683 408 l 1,7,-1 + 320 408 l 1,8,-1 + 236 0 l 1,9,-1 + 126 0 l 1,10,-1 + 210 408 l 1,11,-1 + 9 408 l 1,12,-1 + 9 516 l 1,13,-1 + 234 516 l 1,14,-1 + 312 885 l 1,15,-1 + 60 885 l 1,16,-1 + 60 993 l 1,17,-1 + 334 993 l 1,18,-1 + 423 1401 l 1,19,-1 + 533 1401 l 1,20,-1 + 445 993 l 1,21,-1 + 808 993 l 1,22,-1 + 896 1401 l 1,23,-1 + 1006 1401 l 1,24,-1 + 918 993 l 1,25,-1 + 1129 993 l 1,26,-1 + 1129 885 l 1,27,-1 + 896 885 l 1,0,-1 +425 885 m 1,28,-1 + 345 516 l 1,29,-1 + 707 516 l 1,30,-1 + 785 885 l 1,31,-1 + 425 885 l 1,28,-1 +EndSplineSet +EndChar + +StartChar: dollar +Encoding: 36 36 7 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 140 + 3 + 2 + 45 + 12 + 18 + 26 + 26 + 41 + 41 + 35 + 35 + 36 + 15 + 49 + 49 + 7 + 7 + 36 + 22 + 21 + 37 + 31 + 31 + 21 + 36 + 12 + 2 + 5 + 52 + 53 + 25 + 50 + 15 + 50 + 115 + 89 + 207 + 41 + 1 + 157 + 41 + 1 + 5 + 136 + 41 + 1 + 120 + 7 + 216 + 7 + 2 + 199 + 26 + 215 + 26 + 2 + 182 + 26 + 1 + 135 + 26 + 167 + 26 + 2 + 215 + 49 + 1 + 166 + 49 + 1 + 119 + 49 + 1 + 45 + 12 + 49 + 26 + 7 + 41 + 31 + 37 + 8 + 0 + 125 + 22 + 141 + 22 + 2 + 26 + 22 + 1 + 22 + 18 + 16 + 64 + 19 + 23 + 72 + 16 + 64 + 15 + 15 + 1 + 9 + 3 + 15 + 64 + 11 + 16 + 72 + 15 + 42 + 6 + 0 + 6 + 115 + 89 + 35 + 34 + 148 + 3 + 164 + 3 + 2 + 112 + 3 + 128 + 3 + 2 + 5 + 3 + 21 + 3 + 85 + 3 + 101 + 3 + 4 + 3 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +DELTAP1 +DELTAP1 +DELTAP1 +SHP[rp2] +MDRP[min,rnd,black] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SDS +SDB +DELTAP1 +SMD +MDRP[min,rnd,black] +CALL +SHP[rp1] +SHP[rp1] +DELTAP1 +DELTAP1 +SRP2 +SLOOP +IP +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +518 20 m 1,0,1 + 92 38 92 38 22 379 c 1,2,-1 + 192 416 l 1,3,4 + 217 297 217 297 296.5 237 c 128,-1,5 + 376 177 376 177 518 168 c 1,6,-1 + 518 664 l 1,7,8 + 341 708 341 708 273.5 743 c 128,-1,9 + 206 778 206 778 164.5 823.5 c 128,-1,10 + 123 869 123 869 104.5 921 c 128,-1,11 + 86 973 86 973 86 1046 c 0,12,13 + 86 1201 86 1201 198.5 1288.5 c 128,-1,14 + 311 1376 311 1376 518 1385 c 1,15,-1 + 518 1516 l 1,16,-1 + 642 1516 l 1,17,-1 + 642 1385 l 1,18,19 + 829 1376 829 1376 931 1300.5 c 128,-1,20 + 1033 1225 1033 1225 1075 1065 c 1,21,-1 + 901 1032 l 1,22,23 + 881 1126 881 1126 820 1178.5 c 128,-1,24 + 759 1231 759 1231 642 1242 c 1,25,-1 + 642 797 l 1,26,27 + 821 755 821 755 896.5 720 c 128,-1,28 + 972 685 972 685 1016 641 c 128,-1,29 + 1060 597 1060 597 1083 537 c 128,-1,30 + 1106 477 1106 477 1106 396 c 0,31,32 + 1106 231 1106 231 985 131 c 128,-1,33 + 864 31 864 31 642 20 c 1,34,-1 + 642 -142 l 1,35,-1 + 518 -142 l 1,36,-1 + 518 20 l 1,0,1 +934 394 m 0,37,38 + 934 459 934 459 908 501 c 128,-1,39 + 882 543 882 543 833 570.5 c 128,-1,40 + 784 598 784 598 642 635 c 1,41,-1 + 642 167 l 1,42,43 + 783 176 783 176 858.5 234 c 128,-1,44 + 934 292 934 292 934 394 c 0,37,38 +258 1048 m 0,45,46 + 258 989 258 989 283 948 c 128,-1,47 + 308 907 308 907 357.5 879 c 128,-1,48 + 407 851 407 851 518 823 c 1,49,-1 + 518 1244 l 1,50,51 + 258 1230 258 1230 258 1048 c 0,45,46 +EndSplineSet +EndChar + +StartChar: percent +Encoding: 37 37 8 +Width: 1821 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 53 + 28 + 0 + 34 + 6 + 14 + 15 + 12 + 13 + 40 + 19 + 46 + 25 + 25 + 19 + 13 + 15 + 6 + 0 + 6 + 53 + 52 + 22 + 49 + 182 + 89 + 16 + 22 + 184 + 91 + 16 + 43 + 182 + 89 + 16 + 4 + 14 + 3 + 13 + 18 + 9 + 31 + 182 + 89 + 3 + 9 + 184 + 91 + 3 + 37 + 182 + 89 + 3 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1748 434 m 0,0,1 + 1748 219 1748 219 1667 103.5 c 128,-1,2 + 1586 -12 1586 -12 1428 -12 c 0,3,4 + 1272 -12 1272 -12 1192.5 100.5 c 128,-1,5 + 1113 213 1113 213 1113 434 c 0,6,7 + 1113 662 1113 662 1189.5 773.5 c 128,-1,8 + 1266 885 1266 885 1432 885 c 0,9,10 + 1596 885 1596 885 1672 770.5 c 128,-1,11 + 1748 656 1748 656 1748 434 c 0,0,1 +527 0 m 1,12,-1 + 372 0 l 1,13,-1 + 1294 1409 l 1,14,-1 + 1451 1409 l 1,15,-1 + 527 0 l 1,12,-1 +394 1421 m 0,16,17 + 553 1421 553 1421 630 1309 c 128,-1,18 + 707 1197 707 1197 707 975 c 0,19,20 + 707 758 707 758 627.5 641 c 128,-1,21 + 548 524 548 524 390 524 c 256,22,23 + 232 524 232 524 152.5 640 c 128,-1,24 + 73 756 73 756 73 975 c 0,25,26 + 73 1198 73 1198 150 1309.5 c 128,-1,27 + 227 1421 227 1421 394 1421 c 0,16,17 +1600 434 m 0,28,29 + 1600 613 1600 613 1561.5 693.5 c 128,-1,30 + 1523 774 1523 774 1432 774 c 256,31,32 + 1341 774 1341 774 1300.5 695 c 128,-1,33 + 1260 616 1260 616 1260 434 c 0,34,35 + 1260 263 1260 263 1299.5 180.5 c 128,-1,36 + 1339 98 1339 98 1430 98 c 0,37,38 + 1518 98 1518 98 1559 181.5 c 128,-1,39 + 1600 265 1600 265 1600 434 c 0,28,29 +560 975 m 0,40,41 + 560 1151 560 1151 522 1232 c 128,-1,42 + 484 1313 484 1313 394 1313 c 0,43,44 + 300 1313 300 1313 260 1233.5 c 128,-1,45 + 220 1154 220 1154 220 975 c 0,46,47 + 220 802 220 802 260 719.5 c 128,-1,48 + 300 637 300 637 392 637 c 0,49,50 + 479 637 479 637 519.5 721 c 128,-1,51 + 560 805 560 805 560 975 c 0,40,41 +EndSplineSet +EndChar + +StartChar: ampersand +Encoding: 38 38 9 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 70 + 52 + 8 + 42 + 13 + 36 + 19 + 26 + 27 + 33 + 27 + 19 + 29 + 24 + 2 + 48 + 22 + 44 + 50 + 10 + 13 + 8 + 13 + 58 + 59 + 22 + 50 + 39 + 5 + 16 + 39 + 81 + 89 + 44 + 10 + 16 + 55 + 2 + 48 + 29 + 24 + 4 + 26 + 26 + 5 + 144 + 16 + 1 + 192 + 16 + 1 + 15 + 16 + 63 + 16 + 2 + 9 + 3 + 16 + 5 + 55 + 81 + 89 + 5 + 22 + 0 + 31 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +SRP2 +IP +MDAP[rnd] +SLOOP +IP +SRP1 +SRP2 +IP +IP +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1193 -12 m 0,0,1 + 1016 -12 1016 -12 895 115 c 1,2,3 + 820 50 820 50 724 15 c 128,-1,4 + 628 -20 628 -20 523 -20 c 0,5,6 + 308 -20 308 -20 190 83.5 c 128,-1,7 + 72 187 72 187 72 371 c 0,8,9 + 72 649 72 649 415 800 c 1,10,11 + 382 862 382 862 358 947 c 128,-1,12 + 334 1032 334 1032 334 1102 c 0,13,14 + 334 1252 334 1252 425.5 1334.5 c 128,-1,15 + 517 1417 517 1417 685 1417 c 0,16,17 + 836 1417 836 1417 928.5 1341 c 128,-1,18 + 1021 1265 1021 1265 1021 1133 c 0,19,20 + 1021 1015 1021 1015 929.5 923 c 128,-1,21 + 838 831 838 831 612 741 c 1,22,23 + 723 536 723 536 905 329 c 1,24,25 + 1018 495 1018 495 1076 739 c 1,26,-1 + 1221 696 l 1,27,28 + 1158 447 1158 447 1009 227 c 1,29,30 + 1105 129 1105 129 1217 129 c 0,31,32 + 1288 129 1288 129 1334 145 c 1,33,-1 + 1334 10 l 1,34,35 + 1278 -12 1278 -12 1193 -12 c 0,0,1 +869 1133 m 0,36,37 + 869 1205 869 1205 819 1250.5 c 128,-1,38 + 769 1296 769 1296 683 1296 c 0,39,40 + 587 1296 587 1296 537 1244.5 c 128,-1,41 + 487 1193 487 1193 487 1102 c 0,42,43 + 487 988 487 988 552 858 c 1,44,45 + 683 911 683 911 744.5 950 c 128,-1,46 + 806 989 806 989 837.5 1034 c 128,-1,47 + 869 1079 869 1079 869 1133 c 0,36,37 +795 217 m 1,48,49 + 597 451 597 451 476 674 c 1,50,51 + 240 574 240 574 240 373 c 0,52,53 + 240 252 240 252 317.5 181.5 c 128,-1,54 + 395 111 395 111 529 111 c 0,55,56 + 600 111 600 111 671 138.5 c 128,-1,57 + 742 166 742 166 795 217 c 1,48,49 +EndSplineSet +EndChar + +StartChar: quotesingle +Encoding: 39 39 10 +Width: 391 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 3 + 2 + 2 + 4 + 5 + 32 + 0 + 1 + 0 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +266 966 m 1,0,-1 + 125 966 l 1,1,-1 + 104 1409 l 1,2,-1 + 288 1409 l 1,3,-1 + 266 966 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: parenleft +Encoding: 40 40 11 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 7 + 0 + 11 + 10 + 3 + 4 + 10 + 4 + 0 + 3 + 15 + 16 + 10 + 27 + 3 + 0 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +127 532 m 2,0,1 + 127 821 127 821 217.5 1051 c 128,-1,2 + 308 1281 308 1281 496 1484 c 1,3,-1 + 670 1484 l 1,4,5 + 483 1276 483 1276 395.5 1042 c 128,-1,6 + 308 808 308 808 308 530 c 0,7,8 + 308 253 308 253 394.5 20 c 128,-1,9 + 481 -213 481 -213 670 -424 c 1,10,-1 + 496 -424 l 1,11,12 + 307 -220 307 -220 217 10.5 c 128,-1,13 + 127 241 127 241 127 528 c 2,14,-1 + 127 532 l 2,0,1 +EndSplineSet +EndChar + +StartChar: parenright +Encoding: 41 41 12 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 7 + 0 + 3 + 4 + 11 + 10 + 0 + 4 + 10 + 3 + 15 + 16 + 10 + 0 + 3 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +555 528 m 2,0,1 + 555 239 555 239 464.5 9 c 128,-1,2 + 374 -221 374 -221 186 -424 c 1,3,-1 + 12 -424 l 1,4,5 + 200 -214 200 -214 287 18.5 c 128,-1,6 + 374 251 374 251 374 530 c 256,7,8 + 374 809 374 809 286.5 1042 c 128,-1,9 + 199 1275 199 1275 12 1484 c 1,10,-1 + 186 1484 l 1,11,12 + 375 1280 375 1280 465 1049.5 c 128,-1,13 + 555 819 555 819 555 532 c 2,14,-1 + 555 528 l 2,0,1 +EndSplineSet +EndChar + +StartChar: asterisk +Encoding: 42 42 13 +Width: 797 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 12 + 0 + 3 + 6 + 9 + 5 + 10 + 5 + 4 + 11 + 4 + 1 + 26 + 4 + 42 + 4 + 2 + 7 + 8 + 22 + 8 + 1 + 5 + 8 + 37 + 8 + 2 + 4 + 8 + 10 + 14 + 13 + 13 + 2 + 10 + 10 + 2 + 15 + 16 + 223 + 5 + 1 + 0 + 5 + 240 + 5 + 2 + 5 + 14 + 3 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +IP +IP +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +SRP1 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +456 1114 m 1,0,-1 + 720 1217 l 1,1,-1 + 765 1085 l 1,2,-1 + 483 1012 l 1,3,-1 + 668 762 l 1,4,-1 + 549 690 l 1,5,-1 + 399 948 l 1,6,-1 + 243 692 l 1,7,-1 + 124 764 l 1,8,-1 + 313 1012 l 1,9,-1 + 33 1085 l 1,10,-1 + 78 1219 l 1,11,-1 + 345 1112 l 1,12,-1 + 333 1409 l 1,13,-1 + 469 1409 l 1,14,-1 + 456 1114 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: plus +Encoding: 43 43 14 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 9 + 0 + 0 + 6 + 3 + 3 + 13 + 12 + 169 + 2 + 1 + 3 + 15 + 2 + 95 + 2 + 2 + 12 + 6 + 2 + 0 + 4 + 5 + 4 + 173 + 89 + 9 + 214 + 7 + 1 + 55 + 7 + 135 + 7 + 2 + 7 + 5 + 179 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +DELTAP1 +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SDS +SDB +DELTAP1 +SDS +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +671 608 m 1,0,-1 + 671 180 l 1,1,-1 + 524 180 l 1,2,-1 + 524 608 l 1,3,-1 + 100 608 l 1,4,-1 + 100 754 l 1,5,-1 + 524 754 l 1,6,-1 + 524 1182 l 1,7,-1 + 671 1182 l 1,8,-1 + 671 754 l 1,9,-1 + 1095 754 l 1,10,-1 + 1095 608 l 1,11,-1 + 671 608 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: comma +Encoding: 44 44 15 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 4 + 5 + 0 + 8 + 5 + 8 + 10 + 11 + 0 + 5 + 168 + 91 + 8 + 0 + 155 + 91 + 8 +SVTCA[y-axis] +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +385 219 m 1,0,-1 + 385 51 l 2,1,2 + 385 -55 385 -55 366 -126 c 128,-1,3 + 347 -197 347 -197 307 -262 c 1,4,-1 + 184 -262 l 1,5,6 + 278 -126 278 -126 278 0 c 1,7,-1 + 190 0 l 1,8,-1 + 190 219 l 1,9,-1 + 385 219 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: hyphen +Encoding: 45 45 16 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 0 + 3 + 4 + 5 + 1 + 0 + 187 + 89 + 159 + 1 + 207 + 1 + 2 + 47 + 1 + 1 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +91 464 m 1,0,-1 + 91 624 l 1,1,-1 + 591 624 l 1,2,-1 + 591 464 l 1,3,-1 + 91 464 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: period +Encoding: 46 46 17 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 3 + 0 + 0 + 4 + 5 + 0 + 1 + 155 + 91 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +187 0 m 1,0,-1 + 187 219 l 1,1,-1 + 382 219 l 1,2,-1 + 382 0 l 1,3,-1 + 187 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: slash +Encoding: 47 47 18 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 5 + 0 + 4 + 1 + 0 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +0 -20 m 1,0,-1 + 411 1484 l 1,1,-1 + 569 1484 l 1,2,-1 + 162 -20 l 1,3,-1 + 0 -20 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: zero +Encoding: 48 48 19 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1103 675 m 0,0,1 + 1103 337 1103 337 978.5 158.5 c 128,-1,2 + 854 -20 854 -20 611 -20 c 256,3,4 + 368 -20 368 -20 246 157.5 c 128,-1,5 + 124 335 124 335 124 675 c 0,6,7 + 124 1024 124 1024 243 1197 c 128,-1,8 + 362 1370 362 1370 617 1370 c 0,9,10 + 866 1370 866 1370 984.5 1195.5 c 128,-1,11 + 1103 1021 1103 1021 1103 675 c 0,0,1 +920 675 m 0,12,13 + 920 965 920 965 849.5 1094.5 c 128,-1,14 + 779 1224 779 1224 617 1224 c 0,15,16 + 451 1224 451 1224 378.5 1096 c 128,-1,17 + 306 968 306 968 306 675 c 0,18,19 + 306 390 306 390 379.5 258.5 c 128,-1,20 + 453 127 453 127 613 127 c 0,21,22 + 772 127 772 127 846 262 c 128,-1,23 + 920 397 920 397 920 675 c 0,12,13 +EndSplineSet +EndChar + +StartChar: one +Encoding: 49 49 20 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +157 0 m 1,0,-1 + 157 145 l 1,1,-1 + 596 145 l 1,2,-1 + 596 1166 l 1,3,4 + 559 1088 559 1088 420.5 1030 c 128,-1,5 + 282 972 282 972 148 972 c 1,6,-1 + 148 1120 l 1,7,8 + 296 1120 296 1120 427.5 1185 c 128,-1,9 + 559 1250 559 1250 611 1349 c 1,10,-1 + 777 1349 l 1,11,-1 + 777 145 l 1,12,-1 + 1130 145 l 1,13,-1 + 1130 0 l 1,14,-1 + 157 0 l 1,0,-1 +EndSplineSet +Kerns2: 20 -152 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: two +Encoding: 50 50 21 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +144 0 m 1,0,-1 + 144 117 l 1,1,2 + 193 226 193 226 296.5 336.5 c 128,-1,3 + 400 447 400 447 578 589 c 0,4,5 + 737 716 737 716 807 810 c 128,-1,6 + 877 904 877 904 877 991 c 0,7,8 + 877 1102 877 1102 808 1162 c 128,-1,9 + 739 1222 739 1222 611 1222 c 0,10,11 + 497 1222 497 1222 426.5 1159.5 c 128,-1,12 + 356 1097 356 1097 343 984 c 1,13,-1 + 159 1001 l 1,14,15 + 179 1171 179 1171 298 1270.5 c 128,-1,16 + 417 1370 417 1370 611 1370 c 0,17,18 + 824 1370 824 1370 943 1274 c 128,-1,19 + 1062 1178 1062 1178 1062 1002 c 0,20,21 + 1062 887 1062 887 986 772.5 c 128,-1,22 + 910 658 910 658 759 538 c 0,23,24 + 553 374 553 374 473.5 296.5 c 128,-1,25 + 394 219 394 219 361 146 c 1,26,-1 + 1084 146 l 1,27,-1 + 1084 0 l 1,28,-1 + 144 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: three +Encoding: 51 51 22 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1099 370 m 0,0,1 + 1099 184 1099 184 973 82 c 128,-1,2 + 847 -20 847 -20 621 -20 c 0,3,4 + 407 -20 407 -20 279 77 c 128,-1,5 + 151 174 151 174 128 362 c 1,6,-1 + 314 379 l 1,7,8 + 350 129 350 129 621 129 c 0,9,10 + 757 129 757 129 834.5 192 c 128,-1,11 + 912 255 912 255 912 376 c 0,12,13 + 912 451 912 451 866.5 502.5 c 128,-1,14 + 821 554 821 554 743 581.5 c 128,-1,15 + 665 609 665 609 568 609 c 2,16,-1 + 466 609 l 1,17,-1 + 466 765 l 1,18,-1 + 564 765 l 2,19,20 + 650 765 650 765 721.5 793.5 c 128,-1,21 + 793 822 793 822 834 874 c 128,-1,22 + 875 926 875 926 875 997 c 0,23,24 + 875 1103 875 1103 808.5 1162.5 c 128,-1,25 + 742 1222 742 1222 611 1222 c 0,26,27 + 492 1222 492 1222 418.5 1161 c 128,-1,28 + 345 1100 345 1100 333 989 c 1,29,-1 + 152 1003 l 1,30,31 + 172 1176 172 1176 295.5 1273 c 128,-1,32 + 419 1370 419 1370 613 1370 c 0,33,34 + 825 1370 825 1370 942.5 1276.5 c 128,-1,35 + 1060 1183 1060 1183 1060 1016 c 0,36,37 + 1060 897 1060 897 981 809 c 128,-1,38 + 902 721 902 721 765 693 c 1,39,-1 + 765 689 l 1,40,41 + 916 672 916 672 1007.5 583 c 128,-1,42 + 1099 494 1099 494 1099 370 c 0,0,1 +EndSplineSet +EndChar + +StartChar: four +Encoding: 52 52 23 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +937 319 m 1,0,-1 + 937 0 l 1,1,-1 + 757 0 l 1,2,-1 + 757 319 l 1,3,-1 + 103 319 l 1,4,-1 + 103 459 l 1,5,-1 + 738 1349 l 1,6,-1 + 937 1349 l 1,7,-1 + 937 461 l 1,8,-1 + 1125 461 l 1,9,-1 + 1125 319 l 1,10,-1 + 937 319 l 1,0,-1 +757 1154 m 1,11,-1 + 257 461 l 1,12,-1 + 757 461 l 1,13,-1 + 757 1154 l 1,11,-1 +EndSplineSet +EndChar + +StartChar: five +Encoding: 53 53 24 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1099 444 m 0,0,1 + 1099 305 1099 305 1040 200 c 128,-1,2 + 981 95 981 95 867.5 37.5 c 128,-1,3 + 754 -20 754 -20 599 -20 c 0,4,5 + 402 -20 402 -20 281 66 c 128,-1,6 + 160 152 160 152 128 315 c 1,7,-1 + 310 336 l 1,8,9 + 367 127 367 127 603 127 c 0,10,11 + 744 127 744 127 828 211 c 128,-1,12 + 912 295 912 295 912 440 c 0,13,14 + 912 564 912 564 829 643 c 128,-1,15 + 746 722 746 722 607 722 c 0,16,17 + 534 722 534 722 471 699 c 128,-1,18 + 408 676 408 676 345 621 c 1,19,-1 + 169 621 l 1,20,-1 + 216 1349 l 1,21,-1 + 1017 1349 l 1,22,-1 + 1017 1204 l 1,23,-1 + 382 1204 l 1,24,-1 + 353 779 l 1,25,26 + 470 869 470 869 644 869 c 0,27,28 + 848 869 848 869 973.5 751.5 c 128,-1,29 + 1099 634 1099 634 1099 444 c 0,0,1 +EndSplineSet +EndChar + +StartChar: six +Encoding: 54 54 25 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1096 446 m 0,0,1 + 1096 234 1096 234 974.5 107 c 128,-1,2 + 853 -20 853 -20 641 -20 c 0,3,4 + 405 -20 405 -20 278 152.5 c 128,-1,5 + 151 325 151 325 151 642 c 0,6,7 + 151 990 151 990 283 1180 c 128,-1,8 + 415 1370 415 1370 655 1370 c 0,9,10 + 974 1370 974 1370 1057 1083 c 1,11,-1 + 885 1052 l 1,12,13 + 832 1224 832 1224 653 1224 c 0,14,15 + 500 1224 500 1224 415 1085 c 128,-1,16 + 330 946 330 946 330 695 c 1,17,18 + 379 786 379 786 468 833.5 c 128,-1,19 + 557 881 557 881 672 881 c 0,20,21 + 864 881 864 881 980 762.5 c 128,-1,22 + 1096 644 1096 644 1096 446 c 0,0,1 +913 438 m 0,23,24 + 913 582 913 582 836.5 662 c 128,-1,25 + 760 742 760 742 629 742 c 0,26,27 + 555 742 555 742 489 708.5 c 128,-1,28 + 423 675 423 675 385.5 615.5 c 128,-1,29 + 348 556 348 556 348 481 c 0,30,31 + 348 329 348 329 428.5 227 c 128,-1,32 + 509 125 509 125 635 125 c 0,33,34 + 762 125 762 125 837.5 209 c 128,-1,35 + 913 293 913 293 913 438 c 0,23,24 +EndSplineSet +EndChar + +StartChar: seven +Encoding: 55 55 26 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1069 1210 m 1,0,1 + 596 530 596 530 596 0 c 1,2,-1 + 408 0 l 1,3,4 + 408 263 408 263 530.5 567.5 c 128,-1,5 + 653 872 653 872 895 1204 c 1,6,-1 + 158 1204 l 1,7,-1 + 158 1349 l 1,8,-1 + 1069 1349 l 1,9,-1 + 1069 1210 l 1,0,1 +EndSplineSet +EndChar + +StartChar: eight +Encoding: 56 56 27 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1094 378 m 0,0,1 + 1094 194 1094 194 969.5 87 c 128,-1,2 + 845 -20 845 -20 614 -20 c 0,3,4 + 388 -20 388 -20 260.5 85 c 128,-1,5 + 133 190 133 190 133 376 c 0,6,7 + 133 505 133 505 212 595.5 c 128,-1,8 + 291 686 291 686 414 707 c 1,9,-1 + 414 711 l 1,10,11 + 302 738 302 738 234 825 c 128,-1,12 + 166 912 166 912 166 1024 c 0,13,14 + 166 1122 166 1122 221.5 1202 c 128,-1,15 + 277 1282 277 1282 378 1326 c 128,-1,16 + 479 1370 479 1370 610 1370 c 0,17,18 + 747 1370 747 1370 849 1325.5 c 128,-1,19 + 951 1281 951 1281 1005 1202 c 128,-1,20 + 1059 1123 1059 1123 1059 1022 c 0,21,22 + 1059 909 1059 909 990 822 c 128,-1,23 + 921 735 921 735 809 713 c 1,24,-1 + 809 709 l 1,25,26 + 939 688 939 688 1016.5 599.5 c 128,-1,27 + 1094 511 1094 511 1094 378 c 0,0,1 +872 1012 m 0,28,29 + 872 1123 872 1123 804.5 1179.5 c 128,-1,30 + 737 1236 737 1236 610 1236 c 0,31,32 + 487 1236 487 1236 418.5 1179 c 128,-1,33 + 350 1122 350 1122 350 1012 c 0,34,35 + 350 901 350 901 419 840 c 128,-1,36 + 488 779 488 779 612 779 c 0,37,38 + 872 779 872 779 872 1012 c 0,28,29 +907 395 m 0,39,40 + 907 515 907 515 829 579.5 c 128,-1,41 + 751 644 751 644 610 644 c 0,42,43 + 474 644 474 644 396.5 574.5 c 128,-1,44 + 319 505 319 505 319 391 c 0,45,46 + 319 256 319 256 394.5 185.5 c 128,-1,47 + 470 115 470 115 616 115 c 0,48,49 + 763 115 763 115 835 184 c 128,-1,50 + 907 253 907 253 907 395 c 0,39,40 +EndSplineSet +EndChar + +StartChar: nine +Encoding: 57 57 28 +Width: 1229 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1087 703 m 0,0,1 + 1087 357 1087 357 954 168.5 c 128,-1,2 + 821 -20 821 -20 577 -20 c 0,3,4 + 412 -20 412 -20 312.5 49.5 c 128,-1,5 + 213 119 213 119 170 274 c 1,6,-1 + 342 301 l 1,7,8 + 396 125 396 125 580 125 c 0,9,10 + 734 125 734 125 820.5 264.5 c 128,-1,11 + 907 404 907 404 909 650 c 1,12,13 + 869 560 869 560 772 505.5 c 128,-1,14 + 675 451 675 451 559 451 c 0,15,16 + 370 451 370 451 255.5 578.5 c 128,-1,17 + 141 706 141 706 141 911 c 0,18,19 + 141 1123 141 1123 266.5 1246.5 c 128,-1,20 + 392 1370 392 1370 610 1370 c 0,21,22 + 1087 1370 1087 1370 1087 703 c 0,0,1 +891 862 m 0,23,24 + 891 1023 891 1023 811 1123.5 c 128,-1,25 + 731 1224 731 1224 604 1224 c 0,26,27 + 474 1224 474 1224 399 1137 c 128,-1,28 + 324 1050 324 1050 324 911 c 0,29,30 + 324 768 324 768 399 680.5 c 128,-1,31 + 474 593 474 593 602 593 c 0,32,33 + 678 593 678 593 745.5 627.5 c 128,-1,34 + 813 662 813 662 852 723.5 c 128,-1,35 + 891 785 891 785 891 862 c 0,23,24 +EndSplineSet +EndChar + +StartChar: colon +Encoding: 58 58 29 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 3 + 7 + 7 + 4 + 0 + 4 + 9 + 8 + 4 + 5 + 156 + 91 + 4 + 1 + 0 + 156 + 91 + 1 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +187 875 m 1,0,-1 + 187 1082 l 1,1,-1 + 382 1082 l 1,2,-1 + 382 875 l 1,3,-1 + 187 875 l 1,0,-1 +187 0 m 1,4,-1 + 187 207 l 1,5,-1 + 382 207 l 1,6,-1 + 382 0 l 1,7,-1 + 187 0 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: semicolon +Encoding: 59 59 30 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 13 + 0 + 0 + 8 + 10 + 8 + 5 + 3 + 14 + 15 + 11 + 10 + 156 + 91 + 11 + 15 + 0 + 5 + 168 + 91 + 8 + 0 + 156 + 91 + 8 +SVTCA[y-axis] +MDAP[rnd] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +385 207 m 1,0,-1 + 385 51 l 2,1,2 + 385 -55 385 -55 366 -126 c 128,-1,3 + 347 -197 347 -197 307 -262 c 1,4,-1 + 184 -262 l 1,5,6 + 278 -126 278 -126 278 0 c 1,7,-1 + 190 0 l 1,8,-1 + 190 207 l 1,9,-1 + 385 207 l 1,0,-1 +190 875 m 1,10,-1 + 190 1082 l 1,11,-1 + 385 1082 l 1,12,-1 + 385 875 l 1,13,-1 + 190 875 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: less +Encoding: 60 60 31 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 3 + 6 + 4 + 0 + 4 + 7 + 8 + 5 + 63 + 6 + 127 + 6 + 143 + 6 + 3 + 6 + 3 + 48 + 2 + 112 + 2 + 128 + 2 + 3 + 2 + 1 + 0 + 15 + 4 + 63 + 4 + 111 + 4 + 159 + 4 + 207 + 4 + 5 + 4 +SVTCA[y-axis] +RTHG +MDAP[rnd] +DELTAP1 +SHP[rp1] +SHP[rp1] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +101 571 m 1,0,-1 + 101 776 l 1,1,-1 + 1096 1194 l 1,2,-1 + 1096 1040 l 1,3,-1 + 238 674 l 1,4,-1 + 1096 307 l 1,5,-1 + 1096 154 l 1,6,-1 + 101 571 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: equal +Encoding: 61 61 32 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 7 + 3 + 0 + 4 + 4 + 8 + 9 + 5 + 4 + 173 + 89 + 15 + 5 + 31 + 5 + 79 + 5 + 95 + 5 + 207 + 5 + 5 + 10 + 3 + 5 + 1 + 64 + 1 + 0 + 173 + 89 + 80 + 1 + 208 + 1 + 2 + 15 + 1 + 1 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,white] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 856 m 1,0,-1 + 100 1004 l 1,1,-1 + 1095 1004 l 1,2,-1 + 1095 856 l 1,3,-1 + 100 856 l 1,0,-1 +100 344 m 1,4,-1 + 100 492 l 1,5,-1 + 1095 492 l 1,6,-1 + 1095 344 l 1,7,-1 + 100 344 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: greater +Encoding: 62 62 33 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 6 + 2 + 0 + 3 + 4 + 7 + 8 + 3 + 48 + 4 + 112 + 4 + 128 + 4 + 3 + 4 + 1 + 63 + 0 + 127 + 0 + 143 + 0 + 3 + 0 + 6 + 5 + 15 + 2 + 63 + 2 + 111 + 2 + 159 + 2 + 207 + 2 + 5 + 2 +SVTCA[y-axis] +RTHG +MDAP[rnd] +DELTAP1 +SHP[rp1] +SHP[rp1] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +101 154 m 1,0,-1 + 101 307 l 1,1,-1 + 959 674 l 1,2,-1 + 101 1040 l 1,3,-1 + 101 1194 l 1,4,-1 + 1096 776 l 1,5,-1 + 1096 571 l 1,6,-1 + 101 154 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: question +Encoding: 63 63 34 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 33 + 32 + 24 + 25 + 8 + 9 + 18 + 0 + 0 + 9 + 32 + 25 + 4 + 35 + 36 + 18 + 28 + 15 + 9 + 63 + 9 + 2 + 14 + 3 + 9 + 32 + 31 + 32 + 156 + 91 + 31 + 12 + 24 + 1 + 13 + 3 + 24 + 28 + 28 + 21 + 95 + 89 + 28 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SDS +SDB +DELTAP1 +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +SDS +SDB +DELTAP1 +SRP1 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1063 1032 m 0,0,1 + 1063 957 1063 957 1041 898 c 128,-1,2 + 1019 839 1019 839 978 789 c 128,-1,3 + 937 739 937 739 844 671 c 2,4,-1 + 764 612 l 2,5,6 + 692 560 692 560 657 502.5 c 128,-1,7 + 622 445 622 445 621 377 c 1,8,-1 + 446 377 l 1,9,10 + 448 446 448 446 467.5 498 c 128,-1,11 + 487 550 487 550 518 590 c 128,-1,12 + 549 630 549 630 588 661.5 c 128,-1,13 + 627 693 627 693 667 721.5 c 128,-1,14 + 707 750 707 750 745.5 778.5 c 128,-1,15 + 784 807 784 807 814 842 c 128,-1,16 + 844 877 844 877 862.5 921 c 128,-1,17 + 881 965 881 965 881 1024 c 0,18,19 + 881 1138 881 1138 803.5 1204 c 128,-1,20 + 726 1270 726 1270 586 1270 c 256,21,22 + 446 1270 446 1270 364 1200 c 128,-1,23 + 282 1130 282 1130 268 1008 c 1,24,-1 + 84 1020 l 1,25,26 + 110 1218 110 1218 240 1324 c 128,-1,27 + 370 1430 370 1430 584 1430 c 0,28,29 + 807 1430 807 1430 935 1324.5 c 128,-1,30 + 1063 1219 1063 1219 1063 1032 c 0,0,1 +438 0 m 1,31,-1 + 438 201 l 1,32,-1 + 633 201 l 1,33,-1 + 633 0 l 1,34,-1 + 438 0 l 1,31,-1 +EndSplineSet +EndChar + +StartChar: at +Encoding: 64 64 35 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 70 + 27 + 7 + 41 + 56 + 71 + 15 + 7 + 64 + 64 + 23 + 23 + 24 + 33 + 0 + 0 + 49 + 24 + 15 + 56 + 5 + 79 + 80 + 4 + 29 + 213 + 89 + 4 + 4 + 12 + 12 + 74 + 214 + 89 + 19 + 67 + 214 + 89 + 23 + 19 + 15 + 12 + 31 + 12 + 2 + 11 + 3 + 12 + 19 + 12 + 19 + 52 + 60 + 60 + 37 + 214 + 89 + 60 + 0 + 2 + 48 + 1 + 18 + 4 + 48 + 52 + 52 + 45 + 214 + 89 + 52 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SDS +SDB +DELTAP1 +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SHP[rp1] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1902 755 m 0,0,1 + 1902 569 1902 569 1844.5 418.5 c 128,-1,2 + 1787 268 1787 268 1684.5 186 c 128,-1,3 + 1582 104 1582 104 1455 104 c 0,4,5 + 1356 104 1356 104 1302 148 c 128,-1,6 + 1248 192 1248 192 1248 280 c 2,7,-1 + 1251 350 l 1,8,-1 + 1245 350 l 1,9,10 + 1179 227 1179 227 1081.5 165.5 c 128,-1,11 + 984 104 984 104 871 104 c 0,12,13 + 714 104 714 104 627.5 206 c 128,-1,14 + 541 308 541 308 541 489 c 0,15,16 + 541 653 541 653 605.5 794 c 128,-1,17 + 670 935 670 935 786 1018 c 128,-1,18 + 902 1101 902 1101 1043 1101 c 0,19,20 + 1262 1101 1262 1101 1344 919 c 1,21,-1 + 1350 919 l 1,22,-1 + 1389 1079 l 1,23,-1 + 1545 1079 l 1,24,-1 + 1429 573 l 2,25,26 + 1392 409 1392 409 1392 320 c 0,27,28 + 1392 226 1392 226 1473 226 c 0,29,30 + 1553 226 1553 226 1620.5 295 c 128,-1,31 + 1688 364 1688 364 1727 485 c 128,-1,32 + 1766 606 1766 606 1766 753 c 0,33,34 + 1766 932 1766 932 1689 1070.5 c 128,-1,35 + 1612 1209 1612 1209 1467 1283.5 c 128,-1,36 + 1322 1358 1322 1358 1128 1358 c 0,37,38 + 886 1358 886 1358 700 1251 c 128,-1,39 + 514 1144 514 1144 408 942.5 c 128,-1,40 + 302 741 302 741 302 491 c 0,41,42 + 302 298 302 298 380.5 150.5 c 128,-1,43 + 459 3 459 3 607.5 -76 c 128,-1,44 + 756 -155 756 -155 954 -155 c 0,45,46 + 1099 -155 1099 -155 1248 -117.5 c 128,-1,47 + 1397 -80 1397 -80 1557 7 c 1,48,-1 + 1612 -105 l 1,49,50 + 1467 -192 1467 -192 1297.5 -237.5 c 128,-1,51 + 1128 -283 1128 -283 954 -283 c 0,52,53 + 713 -283 713 -283 532.5 -187.5 c 128,-1,54 + 352 -92 352 -92 256.5 84.5 c 128,-1,55 + 161 261 161 261 161 491 c 0,56,57 + 161 771 161 771 285.5 1000 c 128,-1,58 + 410 1229 410 1229 631 1356.5 c 128,-1,59 + 852 1484 852 1484 1126 1484 c 0,60,61 + 1367 1484 1367 1484 1542 1393.5 c 128,-1,62 + 1717 1303 1717 1303 1809.5 1138 c 128,-1,63 + 1902 973 1902 973 1902 755 c 0,0,1 +1296 747 m 0,64,65 + 1296 849 1296 849 1230 911.5 c 128,-1,66 + 1164 974 1164 974 1054 974 c 0,67,68 + 953 974 953 974 874.5 910.5 c 128,-1,69 + 796 847 796 847 751 734.5 c 128,-1,70 + 706 622 706 622 706 491 c 0,71,72 + 706 371 706 371 753.5 303 c 128,-1,73 + 801 235 801 235 900 235 c 0,74,75 + 1025 235 1025 235 1129 340 c 128,-1,76 + 1233 445 1233 445 1273 602 c 0,77,78 + 1296 694 1296 694 1296 747 c 0,64,65 +EndSplineSet +EndChar + +StartChar: A +Encoding: 65 65 36 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 54 + 13 + 1 + 0 + 12 + 2 + 3 + 6 + 5 + 8 + 0 + 3 + 4 + 4 + 8 + 7 + 3 + 18 + 17 + 12 + 2 + 95 + 89 + 12 + 12 + 8 + 5 + 3 + 4 + 0 + 18 + 176 + 18 + 1 + 80 + 18 + 1 + 240 + 18 + 1 + 192 + 18 + 1 + 144 + 18 + 1 + 96 + 18 + 1 + 48 + 18 + 1 + 47 + 18 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-24" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1336 1540 basechar 0 +AnchorPoint: "Anchor-20" 1336 -380 basechar 0 +AnchorPoint: "Anchor-19" 740 1300 basechar 0 +AnchorPoint: "Anchor-18" 800 1420 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1167 0 m 1,0,-1 + 1006 412 l 1,1,-1 + 364 412 l 1,2,-1 + 202 0 l 1,3,-1 + 4 0 l 1,4,-1 + 579 1409 l 1,5,-1 + 796 1409 l 1,6,-1 + 1362 0 l 1,7,-1 + 1167 0 l 1,0,-1 +685 1265 m 1,8,-1 + 676 1237 l 2,9,10 + 651 1154 651 1154 602 1024 c 2,11,-1 + 422 561 l 1,12,-1 + 949 561 l 1,13,-1 + 768 1026 l 2,14,15 + 740 1095 740 1095 712 1182 c 2,16,-1 + 685 1265 l 1,8,-1 +EndSplineSet +Kerns2: 2021 -152 "'kern' Horizontal Kerning lookup 17 subtable" 92 -37 "'kern' Horizontal Kerning lookup 17 subtable" 90 -37 "'kern' Horizontal Kerning lookup 17 subtable" 89 -37 "'kern' Horizontal Kerning lookup 17 subtable" 60 -152 "'kern' Horizontal Kerning lookup 17 subtable" 58 -76 "'kern' Horizontal Kerning lookup 17 subtable" 57 -152 "'kern' Horizontal Kerning lookup 17 subtable" 55 -152 "'kern' Horizontal Kerning lookup 17 subtable" 3 -113 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: B +Encoding: 66 66 37 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 58 + 11 + 19 + 8 + 19 + 27 + 27 + 4 + 14 + 8 + 23 + 0 + 0 + 8 + 4 + 3 + 31 + 32 + 11 + 19 + 26 + 19 + 26 + 95 + 89 + 19 + 36 + 19 + 2 + 77 + 15 + 19 + 1 + 3 + 62 + 19 + 1 + 4 + 15 + 19 + 1 + 16 + 5 + 19 + 19 + 4 + 5 + 5 + 18 + 95 + 89 + 5 + 3 + 4 + 27 + 95 + 89 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SDS +DELTAP1 +SDS +DELTAP2 +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 760 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-19" 880 1300 basechar 0 +AnchorPoint: "Anchor-18" 1166 1150 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1258 397 m 0,0,1 + 1258 209 1258 209 1121 104.5 c 128,-1,2 + 984 0 984 0 740 0 c 2,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 680 1409 l 2,6,7 + 1176 1409 1176 1409 1176 1067 c 0,8,9 + 1176 942 1176 942 1106 857 c 128,-1,10 + 1036 772 1036 772 908 743 c 1,11,12 + 1076 723 1076 723 1167 630.5 c 128,-1,13 + 1258 538 1258 538 1258 397 c 0,0,1 +984 1044 m 0,14,15 + 984 1158 984 1158 906 1207 c 128,-1,16 + 828 1256 828 1256 680 1256 c 2,17,-1 + 359 1256 l 1,18,-1 + 359 810 l 1,19,-1 + 680 810 l 2,20,21 + 833 810 833 810 908.5 867.5 c 128,-1,22 + 984 925 984 925 984 1044 c 0,14,15 +1065 412 m 0,23,24 + 1065 661 1065 661 715 661 c 2,25,-1 + 359 661 l 1,26,-1 + 359 153 l 1,27,-1 + 730 153 l 2,28,29 + 905 153 905 153 985 218 c 128,-1,30 + 1065 283 1065 283 1065 412 c 0,23,24 +EndSplineSet +EndChar + +StartChar: C +Encoding: 67 67 38 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 57 + 3 + 16 + 23 + 22 + 8 + 9 + 9 + 22 + 16 + 3 + 26 + 27 + 15 + 23 + 1 + 13 + 3 + 23 + 23 + 19 + 19 + 0 + 95 + 89 + 19 + 4 + 0 + 8 + 16 + 8 + 64 + 8 + 80 + 8 + 144 + 8 + 160 + 8 + 208 + 8 + 224 + 8 + 8 + 12 + 3 + 8 + 8 + 12 + 12 + 6 + 95 + 89 + 12 + 19 + 32 + 27 + 1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 890 0 basechar 0 +AnchorPoint: "Anchor-24" 800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1100 1300 basechar 0 +AnchorPoint: "Anchor-18" 1324 1200 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +792 1274 m 0,0,1 + 558 1274 558 1274 428 1123.5 c 128,-1,2 + 298 973 298 973 298 711 c 0,3,4 + 298 452 298 452 433.5 294.5 c 128,-1,5 + 569 137 569 137 800 137 c 0,6,7 + 1096 137 1096 137 1245 430 c 1,8,-1 + 1401 352 l 1,9,10 + 1314 170 1314 170 1156.5 75 c 128,-1,11 + 999 -20 999 -20 791 -20 c 0,12,13 + 578 -20 578 -20 422.5 68.5 c 128,-1,14 + 267 157 267 157 185.5 321.5 c 128,-1,15 + 104 486 104 486 104 711 c 0,16,17 + 104 1048 104 1048 286 1239 c 128,-1,18 + 468 1430 468 1430 790 1430 c 0,19,20 + 1015 1430 1015 1430 1166 1342 c 128,-1,21 + 1317 1254 1317 1254 1388 1081 c 1,22,-1 + 1207 1021 l 1,23,24 + 1158 1144 1158 1144 1049.5 1209 c 128,-1,25 + 941 1274 941 1274 792 1274 c 0,0,1 +EndSplineSet +EndChar + +StartChar: D +Encoding: 68 68 39 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 15 + 5 + 10 + 0 + 5 + 0 + 20 + 21 + 6 + 14 + 95 + 89 + 6 + 3 + 5 + 15 + 95 + 89 + 5 + 18 + 32 + 21 + 1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 670 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 968 1300 basechar 0 +AnchorPoint: "Anchor-18" 1261 1150 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1381 719 m 0,0,1 + 1381 501 1381 501 1296 337.5 c 128,-1,2 + 1211 174 1211 174 1055 87 c 128,-1,3 + 899 0 899 0 695 0 c 2,4,-1 + 168 0 l 1,5,-1 + 168 1409 l 1,6,-1 + 634 1409 l 2,7,8 + 992 1409 992 1409 1186.5 1229.5 c 128,-1,9 + 1381 1050 1381 1050 1381 719 c 0,0,1 +1189 719 m 0,10,11 + 1189 981 1189 981 1045.5 1118.5 c 128,-1,12 + 902 1256 902 1256 630 1256 c 2,13,-1 + 359 1256 l 1,14,-1 + 359 153 l 1,15,-1 + 673 153 l 2,16,17 + 828 153 828 153 945.5 221 c 128,-1,18 + 1063 289 1063 289 1126 417 c 128,-1,19 + 1189 545 1189 545 1189 719 c 0,10,11 +EndSplineSet +EndChar + +StartChar: E +Encoding: 69 69 40 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 5 + 9 + 9 + 0 + 10 + 3 + 7 + 0 + 4 + 12 + 13 + 5 + 8 + 95 + 89 + 143 + 5 + 1 + 186 + 5 + 1 + 121 + 5 + 137 + 5 + 2 + 15 + 5 + 1 + 8 + 3 + 5 + 5 + 0 + 1 + 1 + 4 + 95 + 89 + 1 + 3 + 0 + 9 + 95 + 89 + 0 + 18 + 32 + 13 + 1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-24" 700 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-19" 1155 1300 basechar 0 +AnchorPoint: "Anchor-18" 1215 1420 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +168 0 m 1,0,-1 + 168 1409 l 1,1,-1 + 1237 1409 l 1,2,-1 + 1237 1253 l 1,3,-1 + 359 1253 l 1,4,-1 + 359 801 l 1,5,-1 + 1177 801 l 1,6,-1 + 1177 647 l 1,7,-1 + 359 647 l 1,8,-1 + 359 156 l 1,9,-1 + 1278 156 l 1,10,-1 + 1278 0 l 1,11,-1 + 168 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: F +Encoding: 70 70 41 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 1 + 5 + 5 + 6 + 8 + 2 + 6 + 3 + 10 + 11 + 1 + 4 + 95 + 89 + 1 + 1 + 5 + 7 + 7 + 0 + 95 + 89 + 7 + 3 + 5 + 18 + 32 + 11 + 1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 190 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-19" 1100 1300 basechar 0 +AnchorPoint: "Anchor-18" 1143 1420 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +359 1253 m 1,0,-1 + 359 729 l 1,1,-1 + 1145 729 l 1,2,-1 + 1145 571 l 1,3,-1 + 359 571 l 1,4,-1 + 359 0 l 1,5,-1 + 168 0 l 1,6,-1 + 168 1409 l 1,7,-1 + 1169 1409 l 1,8,-1 + 1169 1253 l 1,9,-1 + 359 1253 l 1,0,-1 +EndSplineSet +Kerns2: 36 -113 "'kern' Horizontal Kerning lookup 17 subtable" 17 -227 "'kern' Horizontal Kerning lookup 17 subtable" 15 -227 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: G +Encoding: 71 71 42 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 59 + 7 + 6 + 13 + 0 + 19 + 24 + 24 + 6 + 21 + 0 + 4 + 31 + 32 + 22 + 21 + 95 + 89 + 0 + 22 + 1 + 24 + 3 + 22 + 22 + 27 + 3 + 27 + 16 + 95 + 89 + 27 + 19 + 3 + 10 + 95 + 89 + 48 + 7 + 64 + 7 + 2 + 144 + 7 + 224 + 7 + 2 + 7 + 7 + 3 + 4 + 128 + 32 + 1 + 96 + 32 + 1 + 32 + 32 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-24" 820 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-19" 1100 1300 basechar 0 +AnchorPoint: "Anchor-18" 1371 1200 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +103 711 m 0,0,1 + 103 1054 103 1054 287 1242 c 128,-1,2 + 471 1430 471 1430 804 1430 c 0,3,4 + 1038 1430 1038 1430 1184 1351 c 128,-1,5 + 1330 1272 1330 1272 1409 1098 c 1,6,-1 + 1227 1044 l 1,7,8 + 1167 1164 1167 1164 1061.5 1219 c 128,-1,9 + 956 1274 956 1274 799 1274 c 0,10,11 + 555 1274 555 1274 426 1126.5 c 128,-1,12 + 297 979 297 979 297 711 c 0,13,14 + 297 444 297 444 434 289.5 c 128,-1,15 + 571 135 571 135 813 135 c 0,16,17 + 951 135 951 135 1070.5 177 c 128,-1,18 + 1190 219 1190 219 1264 291 c 1,19,-1 + 1264 545 l 1,20,-1 + 843 545 l 1,21,-1 + 843 705 l 1,22,-1 + 1440 705 l 1,23,-1 + 1440 219 l 1,24,25 + 1328 105 1328 105 1165.5 42.5 c 128,-1,26 + 1003 -20 1003 -20 813 -20 c 0,27,28 + 592 -20 592 -20 432 68 c 128,-1,29 + 272 156 272 156 187.5 321.5 c 128,-1,30 + 103 487 103 487 103 711 c 0,0,1 +EndSplineSet +EndChar + +StartChar: H +Encoding: 72 72 43 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 3 + 3 + 4 + 8 + 0 + 0 + 11 + 4 + 11 + 12 + 13 + 7 + 2 + 95 + 89 + 80 + 7 + 1 + 224 + 7 + 1 + 7 +PUSHW_1 + -31 +NPUSHB + 46 + 19 + 73 + 121 + 7 + 137 + 7 + 2 + 15 + 7 + 1 + 8 + 7 + 7 + 9 + 5 + 3 + 4 + 0 + 18 + 32 + 13 + 1 + 192 + 13 + 1 + 176 + 13 + 1 + 160 + 13 + 1 + 128 + 13 + 1 + 112 + 13 + 1 + 96 + 13 + 1 + 80 + 13 + 1 + 32 + 13 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +IP +MDAP[rnd] +SDB +DELTAP1 +DELTAP1 +CALL +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1150 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1199 1300 basechar 0 +AnchorPoint: "Anchor-18" 1300 1420 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1121 0 m 1,0,-1 + 1121 653 l 1,1,-1 + 359 653 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 359 1409 l 1,6,-1 + 359 813 l 1,7,-1 + 1121 813 l 1,8,-1 + 1121 1409 l 1,9,-1 + 1312 1409 l 1,10,-1 + 1312 0 l 1,11,-1 + 1121 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: I +Encoding: 73 73 44 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 97 + 3 + 0 + 0 + 4 + 5 + 1 + 3 + 0 + 18 + 64 + 5 + 1 + 48 + 5 + 1 + 32 + 5 + 1 + 16 + 5 + 1 + 0 + 5 + 1 + 57 + 240 + 5 + 1 + 176 + 5 + 1 + 160 + 5 + 1 + 112 + 5 + 1 + 96 + 5 + 1 + 80 + 5 + 1 + 64 + 5 + 1 + 0 + 5 + 1 + 240 + 5 + 1 + 192 + 5 + 1 + 176 + 5 + 1 + 160 + 5 + 1 + 80 + 5 + 1 + 64 + 5 + 1 + 16 + 5 + 1 + 0 + 5 + 1 + 240 + 5 + 1 + 175 + 5 + 1 + 144 + 5 + 1 + 112 + 5 + 1 + 96 + 5 + 1 + 80 + 5 + 1 + 64 + 5 + 1 + 32 + 5 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-24" 285 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-19" 286 1300 basechar 0 +AnchorPoint: "Anchor-18" 380 1420 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +189 0 m 1,0,-1 + 189 1409 l 1,1,-1 + 380 1409 l 1,2,-1 + 380 0 l 1,3,-1 + 189 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: J +Encoding: 74 74 45 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 3 + 2 + 9 + 14 + 14 + 11 + 2 + 3 + 17 + 18 + 12 + 11 + 95 + 89 + 12 + 3 + 0 + 6 + 95 + 89 + 64 + 3 + 1 + 3 + 3 + 0 + 19 + 32 + 18 + 1 + 96 + 18 + 1 + 80 + 18 + 1 + 64 + 18 + 1 + 32 + 18 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 460 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-19" 781 1300 basechar 0 +AnchorPoint: "Anchor-18" 860 1420 basechar 0 +AnchorPoint: "Anchor-16" 660 1540 basechar 0 +AnchorPoint: "Anchor-15" 880 1540 basechar 0 +AnchorPoint: "Anchor-14" 460 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +457 -20 m 0,0,1 + 99 -20 99 -20 32 350 c 1,2,-1 + 219 381 l 1,3,4 + 237 265 237 265 300 200 c 128,-1,5 + 363 135 363 135 458 135 c 0,6,7 + 562 135 562 135 622 206.5 c 128,-1,8 + 682 278 682 278 682 416 c 2,9,-1 + 682 1253 l 1,10,-1 + 411 1253 l 1,11,-1 + 411 1409 l 1,12,-1 + 872 1409 l 1,13,-1 + 872 420 l 2,14,15 + 872 215 872 215 761 97.5 c 128,-1,16 + 650 -20 650 -20 457 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: K +Encoding: 75 75 46 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 0 + 11 + 8 + 9 + 7 + 3 + 3 + 4 + 11 + 9 + 10 + 4 + 4 + 12 + 13 + 10 + 7 + 1 + 2 + 4 + 4 + 8 + 5 + 3 + 0 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 0 basechar 0 +AnchorPoint: "Anchor-24" 660 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-19" 1067 1300 basechar 0 +AnchorPoint: "Anchor-18" 1179 1420 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1106 0 m 1,0,-1 + 543 680 l 1,1,-1 + 359 540 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 359 1409 l 1,6,-1 + 359 703 l 1,7,-1 + 1038 1409 l 1,8,-1 + 1263 1409 l 1,9,-1 + 663 797 l 1,10,-1 + 1343 0 l 1,11,-1 + 1106 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: L +Encoding: 76 76 47 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 0 + 0 + 4 + 6 + 7 + 1 + 3 + 0 + 3 + 95 + 89 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-24" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 253 1300 basechar 0 +AnchorPoint: "Anchor-18" 360 1420 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +168 0 m 1,0,-1 + 168 1409 l 1,1,-1 + 359 1409 l 1,2,-1 + 359 156 l 1,3,-1 + 1071 156 l 1,4,-1 + 1071 0 l 1,5,-1 + 168 0 l 1,0,-1 +EndSplineSet +Kerns2: 2021 -113 "'kern' Horizontal Kerning lookup 17 subtable" 92 -76 "'kern' Horizontal Kerning lookup 17 subtable" 60 -152 "'kern' Horizontal Kerning lookup 17 subtable" 58 -152 "'kern' Horizontal Kerning lookup 17 subtable" 57 -152 "'kern' Horizontal Kerning lookup 17 subtable" 55 -152 "'kern' Horizontal Kerning lookup 17 subtable" 3 -76 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: M +Encoding: 77 77 48 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 239 + 24 + 0 + 26 + 16 + 13 + 14 + 26 + 14 + 28 + 27 + 3 + 10 + 24 + 10 + 15 + 3 + 0 + 7 + 20 + 3 + 14 + 18 + 144 + 28 + 1 + 132 + 28 + 1 + 112 + 28 + 1 + 100 + 28 + 1 + 68 + 28 + 1 + 52 + 28 + 1 + 32 + 28 + 1 + 20 + 28 + 1 + 244 + 28 + 1 + 208 + 28 + 1 + 196 + 28 + 1 + 164 + 28 + 1 + 132 + 28 + 1 + 116 + 28 + 1 + 96 + 28 + 1 + 84 + 28 + 1 + 52 + 28 + 1 + 16 + 28 + 1 + 4 + 28 + 1 + 103 + 228 + 28 + 1 + 196 + 28 + 1 + 180 + 28 + 1 + 148 + 28 + 1 + 116 + 28 + 1 + 80 + 28 + 1 + 68 + 28 + 1 + 36 + 28 + 1 + 4 + 28 + 1 + 244 + 28 + 1 + 212 + 28 + 1 + 180 + 28 + 1 + 132 + 28 + 1 + 100 + 28 + 1 + 68 + 28 + 1 + 52 + 28 + 1 + 20 + 28 + 1 + 244 + 28 + 1 + 196 + 28 + 1 + 164 + 28 + 1 + 139 + 28 + 1 + 116 + 28 + 1 + 84 + 28 + 1 + 52 + 28 + 1 + 4 + 28 + 1 + 55 + 228 + 28 + 1 + 203 + 28 + 1 + 180 + 28 + 1 + 148 + 28 + 1 + 116 + 28 + 1 + 68 + 28 + 1 + 36 + 28 + 1 + 11 + 28 + 1 + 244 + 28 + 1 + 212 + 28 + 1 + 187 + 28 + 1 + 132 + 28 + 1 + 100 + 28 + 1 + 75 + 28 + 1 + 52 + 28 + 1 + 20 + 28 + 1 + 251 + 28 + 1 + 228 + 28 + 1 + 196 + 28 + 1 + 164 + 28 + 1 + 128 + 28 + 1 + 2 + 112 + 28 + 1 + 80 + 28 + 1 + 64 + 28 + 1 + 63 + 28 + 1 + 32 + 28 + 1 + 0 + 28 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SLOOP +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-19" 1452 1300 basechar 0 +AnchorPoint: "Anchor-18" 1540 1420 basechar 0 +AnchorPoint: "Anchor-16" 860 1540 basechar 0 +AnchorPoint: "Anchor-15" 1540 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1366 0 m 1,0,-1 + 1366 940 l 2,1,2 + 1366 1096 1366 1096 1375 1240 c 1,3,4 + 1326 1061 1326 1061 1287 960 c 2,5,-1 + 923 0 l 1,6,-1 + 789 0 l 1,7,-1 + 420 960 l 1,8,-1 + 364 1130 l 1,9,-1 + 331 1240 l 1,10,-1 + 334 1129 l 1,11,-1 + 338 940 l 1,12,-1 + 338 0 l 1,13,-1 + 168 0 l 1,14,-1 + 168 1409 l 1,15,-1 + 419 1409 l 1,16,-1 + 794 432 l 2,17,18 + 814 373 814 373 832.5 305.5 c 128,-1,19 + 851 238 851 238 857 208 c 1,20,21 + 865 248 865 248 890.5 329.5 c 128,-1,22 + 916 411 916 411 925 432 c 2,23,-1 + 1293 1409 l 1,24,-1 + 1538 1409 l 1,25,-1 + 1538 0 l 1,26,-1 + 1366 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: N +Encoding: 78 78 49 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 47 + 0 + 10 + 10 + 13 + 7 + 4 + 4 + 5 + 13 + 5 + 15 + 14 + 11 + 1 + 6 + 3 + 8 + 0 + 5 + 18 + 32 + 15 + 1 + 192 + 15 + 1 + 176 + 15 + 1 + 160 + 15 + 1 + 128 + 15 + 1 + 112 + 15 + 1 + 96 + 15 + 1 + 80 + 15 + 1 + 32 + 15 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-24" 740 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1210 1300 basechar 0 +AnchorPoint: "Anchor-18" 1300 1420 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1082 0 m 1,0,-1 + 328 1200 l 1,1,-1 + 333 1103 l 1,2,-1 + 338 936 l 1,3,-1 + 338 0 l 1,4,-1 + 168 0 l 1,5,-1 + 168 1409 l 1,6,-1 + 390 1409 l 1,7,-1 + 1152 201 l 1,8,9 + 1140 397 1140 397 1140 485 c 2,10,-1 + 1140 1409 l 1,11,-1 + 1312 1409 l 1,12,-1 + 1312 0 l 1,13,-1 + 1082 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: O +Encoding: 79 79 50 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 21 + 8 + 15 + 0 + 8 + 0 + 27 + 28 + 11 + 18 + 95 + 89 + 11 + 4 + 4 + 24 + 95 + 89 + 4 + 19 + 128 + 28 + 1 + 32 + 28 + 1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-24" 810 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-19" 1100 1300 basechar 0 +AnchorPoint: "Anchor-18" 1400 1150 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1495 711 m 0,0,1 + 1495 490 1495 490 1410.5 324 c 128,-1,2 + 1326 158 1326 158 1168 69 c 128,-1,3 + 1010 -20 1010 -20 795 -20 c 0,4,5 + 578 -20 578 -20 420.5 68 c 128,-1,6 + 263 156 263 156 180 322.5 c 128,-1,7 + 97 489 97 489 97 711 c 0,8,9 + 97 1049 97 1049 282 1239.5 c 128,-1,10 + 467 1430 467 1430 797 1430 c 0,11,12 + 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 + 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 + 1495 933 1495 933 1495 711 c 0,0,1 +1300 711 m 0,15,16 + 1300 974 1300 974 1168.5 1124 c 128,-1,17 + 1037 1274 1037 1274 797 1274 c 0,18,19 + 555 1274 555 1274 423 1126 c 128,-1,20 + 291 978 291 978 291 711 c 0,21,22 + 291 446 291 446 424.5 290.5 c 128,-1,23 + 558 135 558 135 795 135 c 0,24,25 + 1039 135 1039 135 1169.5 285.5 c 128,-1,26 + 1300 436 1300 436 1300 711 c 0,15,16 +EndSplineSet +EndChar + +StartChar: P +Encoding: 80 80 51 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 15 + 5 + 5 + 6 + 11 + 0 + 6 + 0 + 18 + 19 + 15 + 4 + 95 + 89 + 15 + 15 + 5 + 7 + 7 + 14 + 95 + 89 + 7 + 3 + 5 + 18 + 32 + 19 + 1 + 32 + 19 + 1 +DELTAP1 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-19" 1012 1300 basechar 0 +AnchorPoint: "Anchor-18" 1218 1150 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1258 985 m 0,0,1 + 1258 785 1258 785 1127.5 667 c 128,-1,2 + 997 549 997 549 773 549 c 2,3,-1 + 359 549 l 1,4,-1 + 359 0 l 1,5,-1 + 168 0 l 1,6,-1 + 168 1409 l 1,7,-1 + 761 1409 l 2,8,9 + 998 1409 998 1409 1128 1298 c 128,-1,10 + 1258 1187 1258 1187 1258 985 c 0,0,1 +1066 983 m 0,11,12 + 1066 1256 1066 1256 738 1256 c 2,13,-1 + 359 1256 l 1,14,-1 + 359 700 l 1,15,-1 + 746 700 l 2,16,17 + 1066 700 1066 700 1066 983 c 0,11,12 +EndSplineSet +Kerns2: 36 -152 "'kern' Horizontal Kerning lookup 17 subtable" 17 -264 "'kern' Horizontal Kerning lookup 17 subtable" 15 -264 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Q +Encoding: 81 81 52 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 31 + 18 + 25 + 0 + 0 + 8 + 3 + 14 + 18 + 5 + 37 + 38 + 21 + 28 + 95 + 89 + 21 + 4 + 14 + 34 + 95 + 89 + 3 + 14 + 19 + 11 + 6 + 95 + 89 + 11 + 128 + 38 + 1 + 32 + 38 + 1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 640 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-19" 1100 1300 basechar 0 +AnchorPoint: "Anchor-18" 1400 1150 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1495 711 m 0,0,1 + 1495 413 1495 413 1345 221 c 128,-1,2 + 1195 29 1195 29 928 -6 c 1,3,4 + 969 -132 969 -132 1035.5 -188 c 128,-1,5 + 1102 -244 1102 -244 1204 -244 c 0,6,7 + 1259 -244 1259 -244 1319 -231 c 1,8,-1 + 1319 -365 l 1,9,10 + 1226 -387 1226 -387 1141 -387 c 0,11,12 + 990 -387 990 -387 892.5 -301.5 c 128,-1,13 + 795 -216 795 -216 733 -16 c 1,14,15 + 535 -6 535 -6 391.5 84.5 c 128,-1,16 + 248 175 248 175 172.5 336.5 c 128,-1,17 + 97 498 97 498 97 711 c 0,18,19 + 97 1049 97 1049 282 1239.5 c 128,-1,20 + 467 1430 467 1430 797 1430 c 0,21,22 + 1012 1430 1012 1430 1170 1344.5 c 128,-1,23 + 1328 1259 1328 1259 1411.5 1096 c 128,-1,24 + 1495 933 1495 933 1495 711 c 0,0,1 +1300 711 m 0,25,26 + 1300 974 1300 974 1168.5 1124 c 128,-1,27 + 1037 1274 1037 1274 797 1274 c 0,28,29 + 555 1274 555 1274 423 1126 c 128,-1,30 + 291 978 291 978 291 711 c 0,31,32 + 291 446 291 446 424.5 290.5 c 128,-1,33 + 558 135 558 135 795 135 c 0,34,35 + 1039 135 1039 135 1169.5 285.5 c 128,-1,36 + 1300 436 1300 436 1300 711 c 0,25,26 +EndSplineSet +EndChar + +StartChar: R +Encoding: 82 82 53 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 47 + 1 + 12 + 12 + 19 + 9 + 19 + 3 + 3 + 4 + 14 + 9 + 0 + 13 + 13 + 9 + 4 + 3 + 23 + 24 + 12 + 2 + 19 + 2 + 95 + 89 + 19 + 19 + 0 + 5 + 5 + 18 + 95 + 89 + 5 + 3 + 4 + 0 + 18 + 128 + 24 + 1 + 112 + 24 + 1 + 32 + 24 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-24" 690 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1067 1300 basechar 0 +AnchorPoint: "Anchor-18" 1293 1150 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1164 0 m 1,0,-1 + 798 585 l 1,1,-1 + 359 585 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 831 1409 l 2,6,7 + 1069 1409 1069 1409 1198.5 1302.5 c 128,-1,8 + 1328 1196 1328 1196 1328 1006 c 0,9,10 + 1328 849 1328 849 1236.5 742 c 128,-1,11 + 1145 635 1145 635 984 607 c 1,12,-1 + 1384 0 l 1,13,-1 + 1164 0 l 1,0,-1 +1136 1004 m 0,14,15 + 1136 1127 1136 1127 1052.5 1191.5 c 128,-1,16 + 969 1256 969 1256 812 1256 c 2,17,-1 + 359 1256 l 1,18,-1 + 359 736 l 1,19,-1 + 820 736 l 2,20,21 + 971 736 971 736 1053.5 806.5 c 128,-1,22 + 1136 877 1136 877 1136 1004 c 0,14,15 +EndSplineSet +Kerns2: 60 -37 "'kern' Horizontal Kerning lookup 17 subtable" 58 -37 "'kern' Horizontal Kerning lookup 17 subtable" 57 -37 "'kern' Horizontal Kerning lookup 17 subtable" 55 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: S +Encoding: 83 83 54 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 12 + 0 + 29 + 28 + 35 + 22 + 6 + 5 + 5 + 22 + 28 + 0 + 4 + 47 + 46 + 12 + 16 + 19 + 22 + 72 + 73 + 12 + 89 + 12 + 105 + 12 + 3 + 15 + 12 + 1 + 35 +PUSHW_1 + -16 +NPUSHB + 57 + 19 + 22 + 72 + 70 + 35 + 86 + 35 + 102 + 35 + 3 + 13 + 35 + 1 + 12 + 4 + 12 + 35 + 3 + 25 + 25 + 32 + 95 + 89 + 111 + 29 + 1 + 89 + 29 + 1 + 75 + 29 + 1 + 3 + 0 + 29 + 1 + 9 + 5 + 29 + 25 + 4 + 3 + 9 + 95 + 89 + 96 + 6 + 1 + 82 + 6 + 1 + 68 + 6 + 1 + 6 + 3 + 19 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +DELTAP1 +DELTAP1 +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SDS +SDB +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SDS +SDB +DELTAP1 +DELTAP1 +CALL +DELTAP1 +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 0 basechar 0 +AnchorPoint: "Anchor-24" 700 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-19" 1001 1300 basechar 0 +AnchorPoint: "Anchor-18" 1160 1200 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1272 389 m 0,0,1 + 1272 194 1272 194 1119.5 87 c 128,-1,2 + 967 -20 967 -20 690 -20 c 0,3,4 + 175 -20 175 -20 93 338 c 1,5,-1 + 278 375 l 1,6,7 + 310 248 310 248 414 188.5 c 128,-1,8 + 518 129 518 129 697 129 c 0,9,10 + 882 129 882 129 982.5 192.5 c 128,-1,11 + 1083 256 1083 256 1083 379 c 0,12,13 + 1083 448 1083 448 1051.5 491 c 128,-1,14 + 1020 534 1020 534 963 562 c 128,-1,15 + 906 590 906 590 827 609 c 128,-1,16 + 748 628 748 628 652 650 c 0,17,18 + 485 687 485 687 398.5 724 c 128,-1,19 + 312 761 312 761 262 806.5 c 128,-1,20 + 212 852 212 852 185.5 913 c 128,-1,21 + 159 974 159 974 159 1053 c 0,22,23 + 159 1234 159 1234 297.5 1332 c 128,-1,24 + 436 1430 436 1430 694 1430 c 0,25,26 + 934 1430 934 1430 1061 1356.5 c 128,-1,27 + 1188 1283 1188 1283 1239 1106 c 1,28,-1 + 1051 1073 l 1,29,30 + 1020 1185 1020 1185 933 1235.5 c 128,-1,31 + 846 1286 846 1286 692 1286 c 0,32,33 + 523 1286 523 1286 434 1230 c 128,-1,34 + 345 1174 345 1174 345 1063 c 0,35,36 + 345 998 345 998 379.5 955.5 c 128,-1,37 + 414 913 414 913 479 883.5 c 128,-1,38 + 544 854 544 854 738 811 c 0,39,40 + 803 796 803 796 867.5 780.5 c 128,-1,41 + 932 765 932 765 991 743.5 c 128,-1,42 + 1050 722 1050 722 1101.5 693 c 128,-1,43 + 1153 664 1153 664 1191 622 c 128,-1,44 + 1229 580 1229 580 1250.5 523 c 128,-1,45 + 1272 466 1272 466 1272 389 c 0,0,1 +EndSplineSet +EndChar + +StartChar: T +Encoding: 84 84 55 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 217 + 1 + 2 + 4 + 2 + 7 + 3 + 9 + 8 + 0 + 4 + 5 + 4 + 95 + 89 + 5 + 3 + 1 + 18 + 123 + 9 + 1 + 75 + 9 + 1 + 59 + 9 + 1 + 36 + 9 + 1 + 251 + 9 + 1 + 203 + 9 + 1 + 187 + 9 + 1 + 155 + 9 + 1 + 139 + 9 + 1 + 127 + 9 + 1 + 2 + 95 + 9 + 1 + 79 + 9 + 1 + 48 + 9 + 1 + 15 + 9 + 1 + 103 + 223 + 9 + 1 + 207 + 9 + 1 + 176 + 9 + 1 + 143 + 9 + 1 + 95 + 9 + 1 + 79 + 9 + 1 + 15 + 9 + 1 + 240 + 9 + 1 + 223 + 9 + 1 + 207 + 9 + 1 + 175 + 9 + 1 + 159 + 9 + 1 + 112 + 9 + 1 + 95 + 9 + 1 + 64 + 9 + 1 + 31 + 9 + 1 + 239 + 9 + 1 + 223 + 9 + 1 + 159 + 9 + 1 + 111 + 9 + 1 + 95 + 9 + 1 + 63 + 9 + 1 + 31 + 9 + 1 + 0 + 9 + 1 + 55 + 239 + 9 + 1 + 208 + 9 + 1 + 144 + 9 + 1 + 128 + 9 + 1 + 111 + 9 + 1 + 80 + 9 + 1 + 47 + 9 + 1 + 0 + 9 + 1 + 208 + 9 + 1 + 175 + 9 + 1 + 144 + 9 + 1 + 127 + 9 + 1 + 111 + 9 + 1 + 80 + 9 + 1 + 64 + 9 + 1 + 32 + 9 + 1 + 16 + 9 + 1 + 255 + 9 + 1 + 224 + 9 + 1 + 191 + 9 + 1 + 160 + 9 + 1 + 144 + 9 + 1 + 96 + 9 + 1 + 64 + 9 + 1 + 63 + 9 + 1 + 32 + 9 + 1 + 15 + 9 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-24" 620 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-19" 1100 1300 basechar 0 +AnchorPoint: "Anchor-18" 1180 1420 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +720 1253 m 1,0,-1 + 720 0 l 1,1,-1 + 530 0 l 1,2,-1 + 530 1253 l 1,3,-1 + 46 1253 l 1,4,-1 + 46 1409 l 1,5,-1 + 1204 1409 l 1,6,-1 + 1204 1253 l 1,7,-1 + 720 1253 l 1,0,-1 +EndSplineSet +Kerns2: 92 -113 "'kern' Horizontal Kerning lookup 17 subtable" 90 -113 "'kern' Horizontal Kerning lookup 17 subtable" 88 -76 "'kern' Horizontal Kerning lookup 17 subtable" 86 -227 "'kern' Horizontal Kerning lookup 17 subtable" 85 -76 "'kern' Horizontal Kerning lookup 17 subtable" 82 -227 "'kern' Horizontal Kerning lookup 17 subtable" 76 -76 "'kern' Horizontal Kerning lookup 17 subtable" 72 -227 "'kern' Horizontal Kerning lookup 17 subtable" 70 -227 "'kern' Horizontal Kerning lookup 17 subtable" 68 -227 "'kern' Horizontal Kerning lookup 17 subtable" 50 -37 "'kern' Horizontal Kerning lookup 17 subtable" 36 -152 "'kern' Horizontal Kerning lookup 17 subtable" 30 -227 "'kern' Horizontal Kerning lookup 17 subtable" 29 -227 "'kern' Horizontal Kerning lookup 17 subtable" 17 -227 "'kern' Horizontal Kerning lookup 17 subtable" 16 -113 "'kern' Horizontal Kerning lookup 17 subtable" 15 -227 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: U +Encoding: 85 85 56 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 13 + 16 + 7 + 4 + 16 + 4 + 21 + 20 + 14 + 5 + 3 + 0 + 10 + 95 + 89 + 0 + 19 + 32 + 21 + 1 + 192 + 21 + 1 + 176 + 21 + 1 + 160 + 21 + 1 + 128 + 21 + 1 + 112 + 21 + 1 + 96 + 21 + 1 + 80 + 21 + 1 + 32 + 21 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-24" 730 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1260 1300 basechar 0 +AnchorPoint: "Anchor-18" 1300 1420 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +731 -20 m 0,0,1 + 558 -20 558 -20 429 43 c 128,-1,2 + 300 106 300 106 229 226 c 128,-1,3 + 158 346 158 346 158 512 c 2,4,-1 + 158 1409 l 1,5,-1 + 349 1409 l 1,6,-1 + 349 528 l 2,7,8 + 349 335 349 335 447 235 c 128,-1,9 + 545 135 545 135 730 135 c 0,10,11 + 920 135 920 135 1025.5 238.5 c 128,-1,12 + 1131 342 1131 342 1131 541 c 2,13,-1 + 1131 1409 l 1,14,-1 + 1321 1409 l 1,15,-1 + 1321 530 l 2,16,17 + 1321 359 1321 359 1248.5 235 c 128,-1,18 + 1176 111 1176 111 1043.5 45.5 c 128,-1,19 + 911 -20 911 -20 731 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: V +Encoding: 86 86 57 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 7 + 8 + 1 + 0 + 5 + 3 + 2 + 2 + 5 + 8 + 3 + 10 + 9 + 32 + 10 + 80 + 10 + 2 + 48 + 10 + 96 + 10 + 144 + 10 + 192 + 10 + 240 + 10 + 5 + 47 + 10 + 1 + 7 + 2 + 3 + 5 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 620 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-19" 1210 1300 basechar 0 +AnchorPoint: "Anchor-18" 1300 1420 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +782 0 m 1,0,-1 + 584 0 l 1,1,-1 + 9 1409 l 1,2,-1 + 210 1409 l 1,3,-1 + 600 417 l 1,4,-1 + 684 168 l 1,5,-1 + 768 417 l 1,6,-1 + 1156 1409 l 1,7,-1 + 1357 1409 l 1,8,-1 + 782 0 l 1,0,-1 +EndSplineSet +Kerns2: 92 -76 "'kern' Horizontal Kerning lookup 17 subtable" 88 -76 "'kern' Horizontal Kerning lookup 17 subtable" 85 -76 "'kern' Horizontal Kerning lookup 17 subtable" 82 -113 "'kern' Horizontal Kerning lookup 17 subtable" 76 -37 "'kern' Horizontal Kerning lookup 17 subtable" 72 -113 "'kern' Horizontal Kerning lookup 17 subtable" 68 -152 "'kern' Horizontal Kerning lookup 17 subtable" 36 -152 "'kern' Horizontal Kerning lookup 17 subtable" 30 -76 "'kern' Horizontal Kerning lookup 17 subtable" 29 -76 "'kern' Horizontal Kerning lookup 17 subtable" 17 -188 "'kern' Horizontal Kerning lookup 17 subtable" 16 -113 "'kern' Horizontal Kerning lookup 17 subtable" 15 -188 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: W +Encoding: 87 87 58 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 24 + 25 + 8 + 1 + 1 + 1 + 0 + 20 + 7 + 17 + 1 + 8 + 16 + 1 + 17 + 16 + 4 + 8 + 7 + 7 + 1 + 11 + 3 + 7 + 13 + 10 + 9 + 9 + 13 + 4 + 20 + 25 + 5 + 27 + 26 + 139 + 27 + 1 + 27 + 192 + 124 + 127 + 72 + 57 + 27 + 1 + 42 + 27 + 1 + 25 + 27 + 1 + 10 + 27 + 1 + 249 + 27 + 1 + 234 + 27 + 1 + 217 + 27 + 1 + 202 + 27 + 1 + 184 + 27 + 1 + 137 + 27 + 153 + 27 + 169 + 27 + 3 + 120 + 27 + 1 + 105 + 27 + 1 + 58 + 27 + 74 + 27 + 90 + 27 + 3 + 41 + 27 + 1 + 26 + 27 + 1 + 12 + 27 + 1 + 104 + 253 + 27 + 1 + 236 + 27 + 1 + 221 + 27 + 1 + 204 + 27 + 1 + 189 + 27 + 1 + 171 + 27 + 1 + 156 + 27 + 1 + 139 + 27 + 1 + 124 + 27 + 1 + 107 + 27 + 1 + 92 + 27 + 1 + 75 + 27 + 1 + 60 + 27 + 1 + 43 + 27 + 1 + 28 + 27 + 1 + 11 + 27 + 1 + 252 + 27 + 1 + 235 + 27 + 1 + 220 + 27 + 1 + 203 + 27 + 1 + 188 + 27 + 1 + 171 + 27 + 1 + 156 + 27 + 1 + 0 + 141 + 27 + 1 + 127 + 27 + 1 + 109 + 27 + 1 + 95 + 27 + 1 + 77 + 27 + 1 + 47 + 27 + 63 + 27 + 2 + 29 + 27 + 1 + 15 + 27 + 1 + 253 + 27 + 1 + 239 + 27 + 1 + 221 + 27 + 1 + 207 + 27 + 1 + 189 + 27 + 1 + 175 + 27 + 1 + 157 + 27 + 1 + 143 + 27 + 1 + 109 + 27 + 125 + 27 + 2 + 91 + 27 + 1 + 77 + 27 + 1 + 59 + 27 + 1 + 45 + 27 + 1 + 27 + 27 + 1 + 13 + 27 + 1 + 56 + 251 + 27 + 1 + 237 + 27 + 1 + 219 + 27 + 1 + 205 + 27 +NPUSHB + 111 + 1 + 187 + 27 + 1 + 173 + 27 + 1 + 155 + 27 + 1 + 141 + 27 + 1 + 123 + 27 + 1 + 109 + 27 + 1 + 75 + 27 + 91 + 27 + 2 + 57 + 27 + 1 + 43 + 27 + 1 + 25 + 27 + 1 + 11 + 27 + 1 + 249 + 27 + 1 + 235 + 27 + 1 + 221 + 27 + 1 + 203 + 27 + 1 + 189 + 27 + 1 + 171 + 27 + 1 + 157 + 27 + 1 + 139 + 27 + 1 + 125 + 27 + 1 + 107 + 27 + 1 + 93 + 27 + 1 + 75 + 27 + 1 + 61 + 27 + 1 + 1 + 43 + 27 + 1 + 31 + 27 + 1 + 2 + 95 + 27 + 127 + 27 + 159 + 27 + 191 + 27 + 223 + 27 + 255 + 27 + 6 + 0 + 27 + 1 + 8 + 24 + 16 + 4 + 9 + 3 + 20 + 13 + 13 + 1 + 8 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SVTCA[x-axis] +SDB +DELTAP1 +DELTAP1 +SDS +DELTAP2 +DELTAP2 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +CALL +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SDS +SDB +DELTAP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +SHP[rp1] +DELTAP1 +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1300 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1933 1540 basechar 0 +AnchorPoint: "Anchor-20" 1933 -380 basechar 0 +AnchorPoint: "Anchor-19" 1782 1300 basechar 0 +AnchorPoint: "Anchor-18" 1880 1420 basechar 0 +AnchorPoint: "Anchor-16" 970 1540 basechar 0 +AnchorPoint: "Anchor-15" 1900 1540 basechar 0 +AnchorPoint: "Anchor-14" 970 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1511 0 m 1,0,-1 + 1283 0 l 1,1,-1 + 1039 895 l 2,2,3 + 1015 979 1015 979 969 1196 c 1,4,5 + 943 1080 943 1080 925 1002 c 128,-1,6 + 907 924 907 924 652 0 c 1,7,-1 + 424 0 l 1,8,-1 + 9 1409 l 1,9,-1 + 208 1409 l 1,10,-1 + 461 514 l 2,11,12 + 506 346 506 346 544 168 c 1,13,14 + 568 278 568 278 599.5 408 c 128,-1,15 + 631 538 631 538 877 1409 c 1,16,-1 + 1060 1409 l 1,17,-1 + 1305 532 l 2,18,19 + 1361 317 1361 317 1393 168 c 1,20,-1 + 1402 203 l 2,21,22 + 1429 318 1429 318 1446 390.5 c 128,-1,23 + 1463 463 1463 463 1727 1409 c 1,24,-1 + 1926 1409 l 1,25,-1 + 1511 0 l 1,0,-1 +EndSplineSet +Kerns2: 92 -18 "'kern' Horizontal Kerning lookup 17 subtable" 88 -37 "'kern' Horizontal Kerning lookup 17 subtable" 85 -37 "'kern' Horizontal Kerning lookup 17 subtable" 82 -37 "'kern' Horizontal Kerning lookup 17 subtable" 72 -37 "'kern' Horizontal Kerning lookup 17 subtable" 68 -76 "'kern' Horizontal Kerning lookup 17 subtable" 36 -76 "'kern' Horizontal Kerning lookup 17 subtable" 30 -37 "'kern' Horizontal Kerning lookup 17 subtable" 29 -37 "'kern' Horizontal Kerning lookup 17 subtable" 17 -113 "'kern' Horizontal Kerning lookup 17 subtable" 16 -37 "'kern' Horizontal Kerning lookup 17 subtable" 15 -113 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: X +Encoding: 88 88 59 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 197 + 8 + 9 + 6 + 5 + 2 + 3 + 0 + 11 + 3 + 5 + 4 + 10 + 9 + 11 + 6 + 13 + 12 + 27 + 13 + 75 + 13 + 2 + 139 + 13 + 187 + 13 + 235 + 13 + 3 + 4 + 13 + 20 + 13 + 52 + 13 + 68 + 13 + 4 + 106 + 84 + 13 + 100 + 13 + 132 + 13 + 148 + 13 + 180 + 13 + 196 + 13 + 228 + 13 + 244 + 13 + 8 + 59 + 13 + 1 + 36 + 13 + 1 + 11 + 13 + 1 + 244 + 13 + 1 + 219 + 13 + 1 + 196 + 13 + 1 + 171 + 13 + 1 + 148 + 13 + 1 + 123 + 13 + 1 + 100 + 13 + 1 + 48 + 13 + 1 + 36 + 13 + 1 + 0 + 13 + 1 + 244 + 13 + 1 + 208 + 13 + 1 + 196 + 13 + 1 + 160 + 13 + 1 + 148 + 13 + 1 + 112 + 13 + 1 + 100 + 13 + 1 + 64 + 13 + 1 + 52 + 13 + 1 + 16 + 13 + 1 + 4 + 13 + 1 + 57 + 224 + 13 + 1 + 212 + 13 + 1 + 176 + 13 + 1 + 164 + 13 + 1 + 128 + 13 + 1 + 20 + 13 + 68 + 13 + 116 + 13 + 3 + 36 + 13 + 84 + 13 + 132 + 13 + 180 + 13 + 228 + 13 + 5 + 84 + 13 + 100 + 13 + 148 + 13 + 244 + 13 + 4 + 64 + 13 + 1 + 2 + 0 + 13 + 48 + 13 + 2 + 119 + 7 + 1 + 120 + 1 + 1 + 1 + 4 + 10 + 7 + 4 + 8 + 5 + 3 + 3 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +SLOOP +IP +DELTAP1 +DELTAP1 +SVTCA[x-axis] +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-19" 1089 1300 basechar 0 +AnchorPoint: "Anchor-18" 1200 1420 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1112 0 m 1,0,-1 + 689 616 l 1,1,-1 + 257 0 l 1,2,-1 + 46 0 l 1,3,-1 + 582 732 l 1,4,-1 + 87 1409 l 1,5,-1 + 298 1409 l 1,6,-1 + 690 856 l 1,7,-1 + 1071 1409 l 1,8,-1 + 1282 1409 l 1,9,-1 + 800 739 l 1,10,-1 + 1323 0 l 1,11,-1 + 1112 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: Y +Encoding: 89 89 60 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 6 + 1 + 1 + 2 + 2 + 4 + 7 + 8 + 5 + 4 + 8 + 4 + 10 + 9 + 6 + 0 + 3 + 8 + 3 + 24 + 3 + 72 + 3 + 3 + 12 + 3 + 1 + 8 + 4 + 3 + 1 + 18 + 118 + 10 + 1 + 98 + 10 + 1 + 84 + 10 + 1 + 70 + 10 + 1 + 54 + 10 + 1 + 36 + 10 + 1 + 22 + 10 + 1 + 4 + 10 + 1 + 242 + 10 + 1 + 1 + 224 + 10 + 1 + 208 + 10 + 1 + 196 + 10 + 1 + 176 + 10 + 1 + 160 + 10 + 1 + 148 + 10 + 1 + 112 + 10 + 1 + 100 + 10 + 1 + 64 + 10 + 1 + 52 + 10 + 1 + 36 + 10 + 1 + 20 + 10 + 1 + 0 + 10 + 1 + 105 + 244 + 10 + 1 + 228 + 10 + 1 + 208 + 10 + 1 + 196 + 10 + 1 + 180 + 10 + 1 + 164 + 10 + 1 + 144 + 10 + 1 + 128 + 10 + 1 + 116 + 10 + 1 + 96 + 10 + 1 + 80 + 10 + 1 + 68 + 10 + 1 + 32 + 10 + 1 + 20 + 10 + 1 + 4 + 10 + 1 + 244 + 10 + 1 + 224 + 10 + 1 + 212 + 10 + 1 + 196 + 10 + 1 + 176 + 10 + 1 + 164 + 10 + 1 + 148 + 10 + 1 + 116 + 10 + 1 + 100 + 10 + 1 + 84 + 10 + 1 + 64 + 10 + 1 + 48 + 10 + 1 + 36 + 10 + 1 + 0 + 10 + 1 + 244 + 10 + 1 + 196 + 10 + 1 + 144 + 10 + 1 + 132 + 10 + 1 + 116 + 10 + 1 + 84 + 10 + 1 + 68 + 10 + 1 + 36 + 10 + 1 + 20 + 10 + 1 + 4 + 10 + 1 + 57 + 224 + 10 + 1 + 212 + 10 + 1 + 164 + 10 + 1 + 132 + 10 + 1 + 112 + 10 + 1 + 100 + 10 + 1 + 84 + 10 + 1 + 52 + 10 + 1 + 36 + 10 + 1 + 4 + 10 + 1 + 244 + 10 + 1 + 228 + 10 + 1 + 192 +NPUSHB + 51 + 10 + 1 + 180 + 10 + 1 + 144 + 10 + 1 + 132 + 10 + 1 + 84 + 10 + 1 + 52 + 10 + 1 + 20 + 10 + 1 + 4 + 10 + 1 + 228 + 10 + 1 + 212 + 10 + 1 + 187 + 10 + 1 + 164 + 10 + 1 + 112 + 10 + 1 + 2 + 96 + 10 + 1 + 48 + 10 + 1 + 47 + 10 + 1 + 15 + 10 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +SDB +DELTAP1 +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-19" 1133 1300 basechar 0 +AnchorPoint: "Anchor-18" 1251 1420 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +777 584 m 1,0,-1 + 777 0 l 1,1,-1 + 587 0 l 1,2,-1 + 587 584 l 1,3,-1 + 45 1409 l 1,4,-1 + 255 1409 l 1,5,-1 + 684 738 l 1,6,-1 + 1111 1409 l 1,7,-1 + 1321 1409 l 1,8,-1 + 777 584 l 1,0,-1 +EndSplineSet +Kerns2: 89 -113 "'kern' Horizontal Kerning lookup 17 subtable" 88 -113 "'kern' Horizontal Kerning lookup 17 subtable" 84 -188 "'kern' Horizontal Kerning lookup 17 subtable" 83 -152 "'kern' Horizontal Kerning lookup 17 subtable" 82 -188 "'kern' Horizontal Kerning lookup 17 subtable" 76 -76 "'kern' Horizontal Kerning lookup 17 subtable" 72 -188 "'kern' Horizontal Kerning lookup 17 subtable" 68 -152 "'kern' Horizontal Kerning lookup 17 subtable" 36 -152 "'kern' Horizontal Kerning lookup 17 subtable" 30 -133 "'kern' Horizontal Kerning lookup 17 subtable" 29 -113 "'kern' Horizontal Kerning lookup 17 subtable" 17 -264 "'kern' Horizontal Kerning lookup 17 subtable" 16 -188 "'kern' Horizontal Kerning lookup 17 subtable" 15 -264 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Z +Encoding: 90 90 61 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 8 + 2 + 3 + 7 + 9 + 7 + 4 + 2 + 4 + 10 + 11 + 7 + 3 + 4 + 5 + 4 + 95 + 89 + 5 + 3 + 2 + 8 + 1 + 8 + 95 + 89 + 1 + 18 + 128 + 11 + 1 + 112 + 11 + 1 + 96 + 11 + 1 + 80 + 11 + 1 + 64 + 11 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1030 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-19" 1056 1300 basechar 0 +AnchorPoint: "Anchor-18" 1130 1420 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1187 0 m 1,0,-1 + 65 0 l 1,1,-1 + 65 143 l 1,2,-1 + 923 1253 l 1,3,-1 + 138 1253 l 1,4,-1 + 138 1409 l 1,5,-1 + 1140 1409 l 1,6,-1 + 1140 1270 l 1,7,-1 + 282 156 l 1,8,-1 + 1187 156 l 1,9,-1 + 1187 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: bracketleft +Encoding: 91 91 62 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 5 + 0 + 6 + 3 + 0 + 3 + 8 + 9 + 1 + 4 + 245 + 89 + 1 + 0 + 0 + 5 + 245 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +146 -425 m 1,0,-1 + 146 1484 l 1,1,-1 + 553 1484 l 1,2,-1 + 553 1355 l 1,3,-1 + 320 1355 l 1,4,-1 + 320 -296 l 1,5,-1 + 553 -296 l 1,6,-1 + 553 -425 l 1,7,-1 + 146 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: backslash +Encoding: 92 92 63 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 5 + 1 + 4 + 1 + 0 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +407 -20 m 1,0,-1 + 0 1484 l 1,1,-1 + 158 1484 l 1,2,-1 + 569 -20 l 1,3,-1 + 407 -20 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: bracketright +Encoding: 93 93 64 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 2 + 7 + 4 + 1 + 7 + 3 + 9 + 8 + 5 + 4 + 245 + 89 + 5 + 0 + 0 + 1 + 245 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +16 -425 m 1,0,-1 + 16 -296 l 1,1,-1 + 249 -296 l 1,2,-1 + 249 1355 l 1,3,-1 + 16 1355 l 1,4,-1 + 16 1484 l 1,5,-1 + 423 1484 l 1,6,-1 + 423 -425 l 1,7,-1 + 16 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: asciicircum +Encoding: 94 94 65 +Width: 961 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 111 + 5 + 4 + 1 + 0 + 6 + 2 + 3 + 3 + 1 + 6 + 3 + 8 + 7 + 3 + 4 + 3 + 9 + 8 + 25 + 8 + 41 + 8 + 105 + 8 + 201 + 8 + 217 + 8 + 6 + 22 + 6 + 8 + 1 + 126 + 70 + 8 + 86 + 8 + 166 + 8 + 3 + 134 + 8 + 150 + 8 + 246 + 8 + 3 + 6 + 8 + 22 + 8 + 86 + 8 + 102 + 8 + 182 + 8 + 198 + 8 + 6 + 78 + 38 + 8 + 54 + 8 + 102 + 8 + 134 + 8 + 150 + 8 + 166 + 8 + 214 + 8 + 230 + 8 + 8 + 54 + 8 + 118 + 8 + 134 + 8 + 150 + 8 + 230 + 8 + 246 + 8 + 6 + 6 + 8 + 22 + 8 + 70 + 8 + 86 + 8 + 134 + 8 + 150 + 8 + 166 + 8 + 198 + 8 + 8 + 8 + 8 +PUSHW_1 + -64 +PUSHB_4 + 72 + 75 + 72 + 8 +PUSHW_1 + -64 +NPUSHB + 76 + 66 + 69 + 72 + 4 + 8 + 20 + 8 + 68 + 8 + 84 + 8 + 164 + 8 + 180 + 8 + 6 + 117 + 116 + 8 + 132 + 8 + 164 + 8 + 180 + 8 + 212 + 8 + 228 + 8 + 6 + 4 + 8 + 20 + 8 + 164 + 8 + 180 + 8 + 228 + 8 + 244 + 8 + 6 + 4 + 8 + 84 + 8 + 180 + 8 + 244 + 8 + 4 + 65 + 84 + 8 + 148 + 8 + 164 + 8 + 3 + 228 + 8 + 244 + 8 + 2 + 4 + 8 + 20 + 8 + 84 + 8 + 116 + 8 + 4 + 14 + 8 +PUSHW_1 + -128 +PUSHB_4 + 85 + 88 + 72 + 8 +PUSHW_1 + -128 +NPUSHB + 45 + 59 + 62 + 72 + 2 + 8 + 18 + 8 + 114 + 8 + 178 + 8 + 194 + 8 + 210 + 8 + 6 + 112 + 66 + 8 + 82 + 8 + 130 + 8 + 146 + 8 + 162 + 8 + 5 + 2 + 8 + 18 + 8 + 98 + 8 + 114 + 8 + 4 + 57 + 0 + 8 + 96 + 8 + 2 + 100 + 1 +SDS +SDB +DELTAP1 +SDB +DELTAP1 +DELTAP3 +SDB +DELTAP1 +CALL +CALL +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +CALL +CALL +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +SDB +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +787 673 m 1,0,-1 + 478 1306 l 1,1,-1 + 172 673 l 1,2,-1 + 10 673 l 1,3,-1 + 378 1409 l 1,4,-1 + 581 1409 l 1,5,-1 + 951 673 l 1,6,-1 + 787 673 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: underscore +Encoding: 95 95 66 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 5 + 0 + 4 + 1 + 0 + 186 + 89 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-31 -407 m 1,0,-1 + -31 -277 l 1,1,-1 + 1162 -277 l 1,2,-1 + 1162 -407 l 1,3,-1 + -31 -407 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: grave +Encoding: 96 96 67 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 0 + 5 + 3 + 2 + 4 + 2 + 7 + 6 + 0 + 2 + 149 + 91 + 15 + 0 + 47 + 0 + 63 + 0 + 127 + 0 + 239 + 0 + 5 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +436 1201 m 1,0,-1 + 106 1479 l 1,1,-1 + 106 1508 l 1,2,-1 + 313 1508 l 1,3,-1 + 530 1221 l 1,4,-1 + 530 1201 l 1,5,-1 + 436 1201 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: a +Encoding: 97 97 68 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 86 + 32 + 41 + 41 + 7 + 7 + 21 + 14 + 15 + 46 + 3 + 3 + 15 + 21 + 26 + 4 + 50 + 49 + 29 + 24 + 81 + 89 + 29 + 22 + 32 + 0 + 17 + 7 + 41 + 81 + 89 + 7 + 7 + 17 + 0 + 63 + 14 + 1 + 15 + 14 + 111 + 14 + 2 + 11 + 3 + 14 + 14 + 17 + 17 + 11 + 80 + 89 + 17 + 16 + 0 + 36 + 80 + 89 + 0 + 22 + 192 + 50 + 1 + 160 + 50 + 1 + 144 + 50 + 1 + 128 + 50 + 1 + 112 + 50 + 1 + 96 + 50 + 1 + 80 + 50 + 1 + 48 + 50 + 1 + 160 + 50 + 1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-24" 480 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1220 basechar 0 +AnchorPoint: "Anchor-20" 1139 -180 basechar 0 +AnchorPoint: "Anchor-19" 860 800 basechar 0 +AnchorPoint: "Anchor-18" 950 900 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +414 -20 m 0,0,1 + 251 -20 251 -20 169 66 c 128,-1,2 + 87 152 87 152 87 302 c 0,3,4 + 87 470 87 470 197.5 560 c 128,-1,5 + 308 650 308 650 554 656 c 2,6,-1 + 797 660 l 1,7,-1 + 797 719 l 2,8,9 + 797 851 797 851 741 908 c 128,-1,10 + 685 965 685 965 565 965 c 0,11,12 + 444 965 444 965 389 924 c 128,-1,13 + 334 883 334 883 323 793 c 1,14,-1 + 135 810 l 1,15,16 + 181 1102 181 1102 569 1102 c 0,17,18 + 773 1102 773 1102 876 1008.5 c 128,-1,19 + 979 915 979 915 979 738 c 2,20,-1 + 979 272 l 2,21,22 + 979 192 979 192 1000 151.5 c 128,-1,23 + 1021 111 1021 111 1080 111 c 0,24,25 + 1106 111 1106 111 1139 118 c 1,26,-1 + 1139 6 l 1,27,28 + 1071 -10 1071 -10 1000 -10 c 0,29,30 + 900 -10 900 -10 854.5 42.5 c 128,-1,31 + 809 95 809 95 803 207 c 1,32,-1 + 797 207 l 1,33,34 + 728 83 728 83 636.5 31.5 c 128,-1,35 + 545 -20 545 -20 414 -20 c 0,0,1 +455 115 m 0,36,37 + 554 115 554 115 631 160 c 128,-1,38 + 708 205 708 205 752.5 283.5 c 128,-1,39 + 797 362 797 362 797 445 c 2,40,-1 + 797 534 l 1,41,-1 + 600 530 l 2,42,43 + 473 528 473 528 407.5 504 c 128,-1,44 + 342 480 342 480 307 430 c 128,-1,45 + 272 380 272 380 272 299 c 0,46,47 + 272 211 272 211 319.5 163 c 128,-1,48 + 367 115 367 115 455 115 c 0,36,37 +EndSplineSet +EndChar + +StartChar: b +Encoding: 98 98 69 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 30 + 5 + 14 + 14 + 13 + 24 + 0 + 13 + 0 + 36 + 37 + 5 + 17 + 2 + 21 + 21 + 27 + 80 + 89 + 21 + 16 + 13 + 0 + 10 + 21 + 2 + 33 + 80 + 89 + 2 + 22 + 176 + 37 + 1 + 63 + 37 + 1 + 144 + 37 + 1 + 112 + 37 + 1 + 31 + 37 + 1 + 255 + 37 + 1 + 224 + 37 + 1 + 192 + 37 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 880 120 basechar 0 +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -150 basechar 0 +AnchorPoint: "Anchor-19" 930 800 basechar 0 +AnchorPoint: "Anchor-18" 1010 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 -20 1053 -20 655 -20 c 0,2,3 + 532 -20 532 -20 450.5 24.5 c 128,-1,4 + 369 69 369 69 318 168 c 1,5,-1 + 316 168 l 1,6,7 + 316 137 316 137 312 73.5 c 128,-1,8 + 308 10 308 10 306 0 c 1,9,-1 + 132 0 l 1,10,11 + 138 54 138 54 138 223 c 2,12,-1 + 138 1484 l 1,13,-1 + 318 1484 l 1,14,-1 + 318 1061 l 2,15,16 + 318 996 318 996 314 908 c 1,17,-1 + 318 908 l 1,18,19 + 368 1012 368 1012 450.5 1057 c 128,-1,20 + 533 1102 533 1102 655 1102 c 0,21,22 + 860 1102 860 1102 956.5 964 c 128,-1,23 + 1053 826 1053 826 1053 546 c 0,0,1 +864 540 m 0,24,25 + 864 767 864 767 804 865 c 128,-1,26 + 744 963 744 963 609 963 c 0,27,28 + 457 963 457 963 387.5 859 c 128,-1,29 + 318 755 318 755 318 529 c 0,30,31 + 318 316 318 316 386 214.5 c 128,-1,32 + 454 113 454 113 607 113 c 0,33,34 + 743 113 743 113 803.5 213.5 c 128,-1,35 + 864 314 864 314 864 540 c 0,24,25 +EndSplineSet +EndChar + +StartChar: c +Encoding: 99 99 70 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 69 + 0 + 13 + 20 + 19 + 6 + 7 + 7 + 19 + 13 + 3 + 26 + 27 + 16 + 23 + 80 + 89 + 31 + 20 + 127 + 20 + 143 + 20 + 223 + 20 + 4 + 20 + 20 + 16 + 16 + 32 + 6 + 112 + 6 + 128 + 6 + 208 + 6 + 224 + 6 + 5 + 0 + 6 + 16 + 6 + 96 + 6 + 112 + 6 + 128 + 6 + 192 + 6 + 208 + 6 + 7 + 9 + 3 + 6 + 6 + 10 + 10 + 3 + 80 + 89 + 10 + 22 + 31 + 27 + 1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 800 120 basechar 0 +AnchorPoint: "Anchor-25" 580 0 basechar 0 +AnchorPoint: "Anchor-24" 560 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1210 basechar 0 +AnchorPoint: "Anchor-20" 1024 -90 basechar 0 +AnchorPoint: "Anchor-19" 860 800 basechar 0 +AnchorPoint: "Anchor-18" 900 900 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +275 546 m 0,0,1 + 275 330 275 330 343 226 c 128,-1,2 + 411 122 411 122 548 122 c 0,3,4 + 644 122 644 122 708.5 174 c 128,-1,5 + 773 226 773 226 788 334 c 1,6,-1 + 970 322 l 1,7,8 + 949 166 949 166 837 73 c 128,-1,9 + 725 -20 725 -20 553 -20 c 0,10,11 + 326 -20 326 -20 206.5 123.5 c 128,-1,12 + 87 267 87 267 87 542 c 0,13,14 + 87 815 87 815 207 958.5 c 128,-1,15 + 327 1102 327 1102 551 1102 c 0,16,17 + 717 1102 717 1102 826.5 1016 c 128,-1,18 + 936 930 936 930 964 779 c 1,19,-1 + 779 765 l 1,20,21 + 765 855 765 855 708 908 c 128,-1,22 + 651 961 651 961 546 961 c 0,23,24 + 403 961 403 961 339 866 c 128,-1,25 + 275 771 275 771 275 546 c 0,0,1 +EndSplineSet +EndChar + +StartChar: d +Encoding: 100 100 71 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 49 + 29 + 0 + 14 + 14 + 15 + 23 + 6 + 15 + 6 + 36 + 35 + 18 + 21 + 14 + 0 + 0 + 11 + 3 + 8 + 8 + 32 + 80 + 89 + 8 + 16 + 3 + 26 + 80 + 89 + 3 + 22 + 144 + 36 + 1 + 112 + 36 + 1 + 31 + 36 + 1 + 255 + 36 + 1 + 224 + 36 + 1 + 192 + 36 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 920 0 basechar 0 +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -90 basechar 0 +AnchorPoint: "Anchor-19" 904 1400 basechar 0 +AnchorPoint: "Anchor-18" 981 1500 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +821 174 m 1,0,1 + 771 70 771 70 688.5 25 c 128,-1,2 + 606 -20 606 -20 484 -20 c 0,3,4 + 279 -20 279 -20 182.5 118 c 128,-1,5 + 86 256 86 256 86 536 c 0,6,7 + 86 1102 86 1102 484 1102 c 0,8,9 + 607 1102 607 1102 689 1057 c 128,-1,10 + 771 1012 771 1012 821 914 c 1,11,-1 + 823 914 l 1,12,-1 + 821 1035 l 1,13,-1 + 821 1484 l 1,14,-1 + 1001 1484 l 1,15,-1 + 1001 223 l 2,16,17 + 1001 54 1001 54 1007 0 c 1,18,-1 + 835 0 l 1,19,20 + 832 16 832 16 828.5 74 c 128,-1,21 + 825 132 825 132 825 174 c 1,22,-1 + 821 174 l 1,0,1 +275 542 m 0,23,24 + 275 315 275 315 335 217 c 128,-1,25 + 395 119 395 119 530 119 c 0,26,27 + 683 119 683 119 752 225 c 128,-1,28 + 821 331 821 331 821 554 c 0,29,30 + 821 769 821 769 752 869 c 128,-1,31 + 683 969 683 969 532 969 c 0,32,33 + 396 969 396 969 335.5 868.5 c 128,-1,34 + 275 768 275 768 275 542 c 0,23,24 +EndSplineSet +EndChar + +StartChar: e +Encoding: 101 101 72 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 70 + 19 + 17 + 6 + 7 + 25 + 0 + 0 + 12 + 12 + 7 + 17 + 3 + 27 + 26 + 6 + 6 + 0 + 3 + 25 + 0 + 80 + 89 + 13 + 25 + 1 + 20 + 4 + 25 + 25 + 9 + 15 + 15 + 22 + 80 + 89 + 15 + 16 + 9 + 3 + 80 + 89 + 9 + 22 + 208 + 27 + 1 + 192 + 27 + 1 + 160 + 27 + 1 + 144 + 27 + 1 + 128 + 27 + 1 + 112 + 27 + 1 + 96 + 27 + 1 + 80 + 27 + 1 + 48 + 27 + 1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-24" 580 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1180 basechar 0 +AnchorPoint: "Anchor-20" 1139 -90 basechar 0 +AnchorPoint: "Anchor-19" 930 800 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +276 503 m 1,0,1 + 276 317 276 317 353 216 c 128,-1,2 + 430 115 430 115 578 115 c 0,3,4 + 695 115 695 115 765.5 162 c 128,-1,5 + 836 209 836 209 861 281 c 1,6,-1 + 1019 236 l 1,7,8 + 922 -20 922 -20 578 -20 c 0,9,10 + 338 -20 338 -20 212.5 123 c 128,-1,11 + 87 266 87 266 87 548 c 0,12,13 + 87 816 87 816 212.5 959 c 128,-1,14 + 338 1102 338 1102 571 1102 c 0,15,16 + 1048 1102 1048 1102 1048 527 c 2,17,-1 + 1048 503 l 1,18,-1 + 276 503 l 1,0,1 +862 641 m 1,19,20 + 847 812 847 812 775 890.5 c 128,-1,21 + 703 969 703 969 568 969 c 0,22,23 + 437 969 437 969 360.5 881.5 c 128,-1,24 + 284 794 284 794 278 641 c 1,25,-1 + 862 641 l 1,19,20 +EndSplineSet +EndChar + +StartChar: f +Encoding: 102 102 73 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 104 + 13 + 19 + 1 + 6 + 1 + 2 + 2 + 21 + 4 + 21 + 4 + 23 + 22 + 10 + 15 + 80 + 89 + 10 + 0 + 0 + 3 + 6 + 3 + 80 + 89 + 19 + 6 + 15 + 1 + 21 + 31 + 23 + 47 + 23 + 79 + 23 + 95 + 23 + 127 + 23 + 143 + 23 + 159 + 23 + 7 + 15 + 23 + 63 + 23 + 127 + 23 + 175 + 23 + 191 + 23 + 223 + 23 + 239 + 23 + 7 + 59 + 95 + 23 + 191 + 23 + 2 + 127 + 23 + 143 + 23 + 159 + 23 + 3 + 15 + 23 + 47 + 23 + 175 + 23 + 223 + 23 + 239 + 23 + 5 + 23 + 64 + 86 + 100 + 72 + 23 + 64 + 39 + 44 + 72 + 32 + 23 + 48 + 23 + 96 + 23 + 3 + 64 + 23 + 1 +DELTAP1 +DELTAP2 +CALL +CALL +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SHP[rp2] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 270 0 basechar 0 +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -90 basechar 0 +AnchorPoint: "Anchor-19" 450 1400 basechar 0 +AnchorPoint: "Anchor-18" 560 1500 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +361 951 m 1,0,-1 + 361 0 l 1,1,-1 + 181 0 l 1,2,-1 + 181 951 l 1,3,-1 + 29 951 l 1,4,-1 + 29 1082 l 1,5,-1 + 181 1082 l 1,6,-1 + 181 1204 l 2,7,8 + 181 1352 181 1352 246 1417 c 128,-1,9 + 311 1482 311 1482 445 1482 c 0,10,11 + 520 1482 520 1482 572 1470 c 1,12,-1 + 572 1333 l 1,13,14 + 527 1341 527 1341 492 1341 c 0,15,16 + 423 1341 423 1341 392 1306 c 128,-1,17 + 361 1271 361 1271 361 1179 c 2,18,-1 + 361 1082 l 1,19,-1 + 572 1082 l 1,20,-1 + 572 951 l 1,21,-1 + 361 951 l 1,0,-1 +EndSplineSet +Kerns2: 2021 37 "'kern' Horizontal Kerning lookup 17 subtable" 73 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: g +Encoding: 103 103 74 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 100 + 33 + 23 + 9 + 9 + 31 + 4 + 3 + 40 + 17 + 17 + 3 + 31 + 3 + 48 + 47 + 28 + 15 + 23 + 10 + 20 + 14 + 20 + 37 + 80 + 89 + 20 + 16 + 14 + 43 + 80 + 89 + 14 + 22 + 0 + 7 + 80 + 89 + 21 + 4 + 1 + 6 + 4 + 1 + 11 + 4 + 0 + 27 + 64 + 48 + 1 + 32 + 48 + 1 + 207 + 48 + 1 + 176 + 48 + 1 + 144 + 48 + 1 + 32 + 48 + 1 + 0 + 48 + 1 + 80 + 223 + 48 + 1 + 192 + 48 + 1 + 79 + 48 + 1 + 160 + 48 + 1 + 128 + 48 + 1 + 47 + 48 + 1 + 15 + 48 + 1 + 240 + 48 + 1 + 208 + 48 + 1 + 15 + 48 + 1 + 8 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +SDB +DELTAP1 +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 790 -300 basechar 0 +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-24" 550 -420 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1200 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 1000 basechar 0 +AnchorPoint: "Anchor-18" 1000 1100 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +548 -425 m 0,0,1 + 371 -425 371 -425 266 -355.5 c 128,-1,2 + 161 -286 161 -286 131 -158 c 1,3,-1 + 312 -132 l 1,4,5 + 330 -207 330 -207 391.5 -247.5 c 128,-1,6 + 453 -288 453 -288 553 -288 c 0,7,8 + 822 -288 822 -288 822 27 c 2,9,-1 + 822 201 l 1,10,-1 + 820 201 l 1,11,12 + 769 97 769 97 680 44.5 c 128,-1,13 + 591 -8 591 -8 472 -8 c 0,14,15 + 273 -8 273 -8 179.5 124 c 128,-1,16 + 86 256 86 256 86 539 c 0,17,18 + 86 826 86 826 186.5 962.5 c 128,-1,19 + 287 1099 287 1099 492 1099 c 0,20,21 + 607 1099 607 1099 691.5 1046.5 c 128,-1,22 + 776 994 776 994 822 897 c 1,23,-1 + 824 897 l 1,24,25 + 824 927 824 927 828 1001 c 128,-1,26 + 832 1075 832 1075 836 1082 c 1,27,-1 + 1007 1082 l 1,28,29 + 1001 1028 1001 1028 1001 858 c 2,30,-1 + 1001 31 l 2,31,32 + 1001 -425 1001 -425 548 -425 c 0,0,1 +822 541 m 0,33,34 + 822 673 822 673 786 768.5 c 128,-1,35 + 750 864 750 864 684.5 914.5 c 128,-1,36 + 619 965 619 965 536 965 c 0,37,38 + 398 965 398 965 335 865 c 128,-1,39 + 272 765 272 765 272 541 c 0,40,41 + 272 319 272 319 331 222 c 128,-1,42 + 390 125 390 125 533 125 c 0,43,44 + 618 125 618 125 684 175 c 128,-1,45 + 750 225 750 225 786 318.5 c 128,-1,46 + 822 412 822 412 822 541 c 0,33,34 +EndSplineSet +EndChar + +StartChar: h +Encoding: 104 104 75 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 59 + 21 + 17 + 17 + 18 + 8 + 7 + 18 + 7 + 25 + 26 + 19 + 0 + 0 + 3 + 18 + 7 + 21 + 3 + 13 + 80 + 89 + 3 + 16 + 208 + 26 + 1 + 192 + 26 + 1 + 176 + 26 + 1 + 240 + 26 + 1 + 176 + 26 + 1 + 255 + 26 + 1 + 224 + 26 + 1 + 208 + 26 + 1 + 192 + 26 + 1 + 176 + 26 + 1 + 160 + 26 + 1 + 112 + 26 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 910 0 basechar 0 +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -110 basechar 0 +AnchorPoint: "Anchor-19" 915 800 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +317 897 m 1,0,1 + 375 1003 375 1003 456.5 1052.5 c 128,-1,2 + 538 1102 538 1102 663 1102 c 0,3,4 + 839 1102 839 1102 922.5 1014.5 c 128,-1,5 + 1006 927 1006 927 1006 721 c 2,6,-1 + 1006 0 l 1,7,-1 + 825 0 l 1,8,-1 + 825 686 l 2,9,10 + 825 800 825 800 804 855.5 c 128,-1,11 + 783 911 783 911 735 937 c 128,-1,12 + 687 963 687 963 602 963 c 0,13,14 + 475 963 475 963 398.5 875 c 128,-1,15 + 322 787 322 787 322 638 c 2,16,-1 + 322 0 l 1,17,-1 + 142 0 l 1,18,-1 + 142 1484 l 1,19,-1 + 322 1484 l 1,20,-1 + 322 1098 l 2,21,22 + 322 1037 322 1037 318.5 972 c 128,-1,23 + 315 907 315 907 314 897 c 1,24,-1 + 317 897 l 1,0,1 +EndSplineSet +EndChar + +StartChar: i +Encoding: 105 105 76 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 72 + 3 + 7 + 7 + 0 + 4 + 4 + 8 + 9 + 5 + 15 + 4 + 21 + 1 + 0 + 83 + 89 + 1 + 0 + 255 + 9 + 1 + 224 + 9 + 1 + 223 + 9 + 1 + 192 + 9 + 1 + 176 + 9 + 1 + 159 + 9 + 1 + 128 + 9 + 1 + 112 + 9 + 1 + 31 + 9 + 1 + 0 + 9 + 1 + 240 + 9 + 1 + 223 + 9 + 1 + 192 + 9 + 1 + 176 + 9 + 1 + 160 + 9 + 1 + 144 + 9 + 1 + 79 + 9 + 1 + 31 + 9 + 1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-24" 230 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -90 basechar 0 +AnchorPoint: "Anchor-19" 310 1000 basechar 0 +AnchorPoint: "Anchor-18" 320 1100 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +137 1312 m 1,0,-1 + 137 1484 l 1,1,-1 + 317 1484 l 1,2,-1 + 317 1312 l 1,3,-1 + 137 1312 l 1,0,-1 +137 0 m 1,4,-1 + 137 1082 l 1,5,-1 + 317 1082 l 1,6,-1 + 317 0 l 1,7,-1 + 137 0 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: j +Encoding: 106 106 77 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 172 + 10 + 3 + 4 + 4 + 0 + 14 + 14 + 17 + 18 + 15 + 15 + 7 + 11 + 80 + 89 + 7 + 27 + 1 + 0 + 83 + 89 + 1 + 0 + 207 + 18 + 1 + 191 + 18 + 1 + 143 + 18 + 1 + 0 + 18 + 1 + 111 + 239 + 18 + 1 + 208 + 18 + 1 + 143 + 18 + 1 + 63 + 18 + 1 + 255 + 18 + 1 + 175 + 18 + 1 + 159 + 18 + 1 + 143 + 18 + 1 + 111 + 18 + 1 + 80 + 18 + 1 + 64 + 18 + 1 + 48 + 18 + 1 + 32 + 18 + 1 + 223 + 18 + 1 + 176 + 18 + 1 + 160 + 18 + 1 + 144 + 18 + 1 + 79 + 18 + 1 + 63 + 18 + 1 + 47 + 18 + 1 + 0 + 18 + 1 + 61 + 255 + 18 + 1 + 239 + 18 + 1 + 223 + 18 + 1 + 207 + 18 + 1 + 176 + 18 + 1 + 144 + 18 + 1 + 128 + 18 + 1 + 112 + 18 + 1 + 31 + 18 + 1 + 15 + 18 + 1 + 255 + 18 + 1 + 223 + 18 + 1 + 207 + 18 + 1 + 191 + 18 + 1 + 175 + 18 + 1 + 144 + 18 + 1 + 79 + 18 + 1 + 255 + 18 + 1 + 224 + 18 + 1 + 208 + 18 + 1 + 192 + 18 + 1 + 128 + 18 + 1 + 112 + 18 + 1 + 31 + 18 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 220 -260 basechar 0 +AnchorPoint: "Anchor-25" 100 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-19" 310 1000 basechar 0 +AnchorPoint: "Anchor-18" 320 1100 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 140 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +137 1312 m 1,0,-1 + 137 1484 l 1,1,-1 + 317 1484 l 1,2,-1 + 317 1312 l 1,3,-1 + 137 1312 l 1,0,-1 +317 -134 m 2,4,5 + 317 -287 317 -287 257 -356 c 128,-1,6 + 197 -425 197 -425 77 -425 c 0,7,8 + 0 -425 0 -425 -50 -416 c 1,9,-1 + -50 -277 l 1,10,-1 + 12 -283 l 1,11,12 + 81 -283 81 -283 109 -247 c 128,-1,13 + 137 -211 137 -211 137 -107 c 2,14,-1 + 137 1082 l 1,15,-1 + 317 1082 l 1,16,-1 + 317 -134 l 2,4,5 +EndSplineSet +EndChar + +StartChar: k +Encoding: 107 107 78 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 103 + 8 + 9 + 1 + 10 + 9 + 10 + 4 + 0 + 11 + 11 + 7 + 3 + 4 + 4 + 13 + 12 + 31 + 13 + 63 + 13 + 2 + 31 + 13 + 63 + 13 + 95 + 13 + 255 + 13 + 4 + 15 + 13 + 31 + 13 + 63 + 13 + 95 + 13 + 127 + 13 + 5 + 57 + 13 + 64 + 83 + 86 + 72 + 96 + 13 + 128 + 13 + 160 + 13 + 192 + 13 + 208 + 13 + 5 + 223 + 13 + 1 + 0 + 13 + 96 + 13 + 128 + 13 + 160 + 13 + 4 + 0 + 13 + 16 + 13 + 48 + 13 + 64 + 13 + 128 + 13 + 160 + 13 + 192 + 13 + 224 + 13 + 240 + 13 + 9 + 7 + 2 + 1 + 7 + 10 + 4 + 8 + 15 + 5 + 0 + 4 + 21 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +SLOOP +IP +SVTCA[x-axis] +SDB +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP3 +CALL +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 920 0 basechar 0 +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-24" 500 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -100 basechar 0 +AnchorPoint: "Anchor-19" 860 1000 basechar 0 +AnchorPoint: "Anchor-18" 860 1100 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +816 0 m 1,0,-1 + 450 494 l 1,1,-1 + 318 385 l 1,2,-1 + 318 0 l 1,3,-1 + 138 0 l 1,4,-1 + 138 1484 l 1,5,-1 + 318 1484 l 1,6,-1 + 318 557 l 1,7,-1 + 793 1082 l 1,8,-1 + 1004 1082 l 1,9,-1 + 565 617 l 1,10,-1 + 1027 0 l 1,11,-1 + 816 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: l +Encoding: 108 108 79 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 81 + 3 + 0 + 0 + 5 + 4 + 1 + 0 + 0 + 21 + 240 + 5 + 1 + 224 + 5 + 1 + 223 + 5 + 1 + 192 + 5 + 1 + 176 + 5 + 1 + 159 + 5 + 1 + 128 + 5 + 1 + 112 + 5 + 1 + 31 + 5 + 1 + 15 + 5 + 1 + 240 + 5 + 1 + 223 + 5 + 1 + 192 + 5 + 1 + 176 + 5 + 1 + 160 + 5 + 1 + 144 + 5 + 1 + 79 + 5 + 1 + 255 + 5 + 1 + 224 + 5 + 1 + 208 + 5 + 1 + 192 + 5 + 1 + 128 + 5 + 1 + 112 + 5 + 1 + 31 + 5 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 225 0 basechar 0 +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-24" 230 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -80 basechar 0 +AnchorPoint: "Anchor-19" 211 1400 basechar 0 +AnchorPoint: "Anchor-18" 320 1500 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +138 0 m 1,0,-1 + 138 1484 l 1,1,-1 + 318 1484 l 1,2,-1 + 318 0 l 1,3,-1 + 138 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: m +Encoding: 109 109 80 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 24 + 41 + 0 + 0 + 33 + 9 + 33 + 32 + 18 + 8 + 9 + 32 + 9 + 43 + 42 + 28 + 37 + 80 + 89 + 28 + 16 + 24 + 17 + 0 + 21 + 21 + 4 + 80 + 89 + 21 + 16 + 12 + 15 + 33 + 9 + 0 + 21 + 100 + 43 + 1 + 75 + 43 + 1 + 63 + 43 + 1 + 43 + 43 + 1 + 31 + 43 + 1 + 15 + 43 + 1 + 235 + 43 + 1 + 223 + 43 + 1 + 187 + 43 + 1 + 171 + 43 + 1 + 139 + 43 + 1 + 123 + 43 + 1 + 111 + 43 + 1 + 59 + 43 + 1 + 31 + 43 + 1 + 11 + 43 + 1 + 106 + 235 + 43 + 1 + 203 + 43 + 1 + 187 + 43 + 1 + 175 + 43 + 1 + 139 + 43 + 1 + 127 + 43 + 1 + 91 + 43 + 1 + 79 + 43 + 1 + 27 + 43 + 1 + 251 + 43 + 1 + 239 + 43 + 1 + 223 + 43 + 1 + 203 + 43 + 1 + 187 + 43 + 1 + 175 + 43 + 1 + 148 + 43 + 1 + 100 + 43 + 1 + 75 + 43 + 1 + 43 + 43 + 1 + 27 + 43 + 1 + 4 + 43 + 1 + 244 + 43 + 1 + 219 + 43 + 1 + 171 + 43 + 1 + 139 + 43 + 1 + 127 + 43 + 1 + 107 + 43 + 1 + 52 + 43 + 1 + 27 + 43 + 1 + 15 + 43 + 1 + 57 + 251 + 43 + 1 + 219 + 43 + 1 + 187 + 43 + 1 + 160 + 43 + 1 + 148 + 43 + 1 + 116 + 43 + 1 + 91 + 43 + 1 + 75 + 43 + 1 + 43 + 43 + 1 + 31 + 43 + 1 + 11 + 43 + 1 + 251 + 43 + 1 + 235 + 43 + 1 + 203 + 43 + 1 + 164 + 43 + 1 + 123 + 43 + 1 + 91 + 43 + 1 + 75 + 43 + 1 + 27 + 43 + 1 + 244 + 43 + 1 + 208 + 43 + 1 + 2 + 192 + 43 + 1 + 160 + 43 + 1 + 144 + 43 + 1 + 96 + 43 + 1 + 79 + 43 +NPUSHB + 11 + 1 + 48 + 43 + 1 + 47 + 43 + 1 + 0 + 43 + 1 + 8 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +SHP[rp2] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 1490 0 basechar 0 +AnchorPoint: "Anchor-25" 1410 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1260 basechar 0 +AnchorPoint: "Anchor-20" 1706 -80 basechar 0 +AnchorPoint: "Anchor-19" 1500 800 basechar 0 +AnchorPoint: "Anchor-18" 1570 900 basechar 0 +AnchorPoint: "Anchor-16" 860 1540 basechar 0 +AnchorPoint: "Anchor-15" 1540 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +768 0 m 1,0,-1 + 768 686 l 2,1,2 + 768 843 768 843 725 903 c 128,-1,3 + 682 963 682 963 570 963 c 0,4,5 + 455 963 455 963 388 875 c 128,-1,6 + 321 787 321 787 321 627 c 2,7,-1 + 321 0 l 1,8,-1 + 142 0 l 1,9,-1 + 142 851 l 2,10,11 + 142 1040 142 1040 136 1082 c 1,12,-1 + 306 1082 l 1,13,14 + 307 1077 307 1077 308 1055 c 128,-1,15 + 309 1033 309 1033 310.5 1004.5 c 128,-1,16 + 312 976 312 976 314 897 c 1,17,-1 + 317 897 l 1,18,19 + 375 1012 375 1012 450 1057 c 128,-1,20 + 525 1102 525 1102 633 1102 c 0,21,22 + 756 1102 756 1102 827.5 1053 c 128,-1,23 + 899 1004 899 1004 927 897 c 1,24,-1 + 930 897 l 1,25,26 + 986 1006 986 1006 1065.5 1054 c 128,-1,27 + 1145 1102 1145 1102 1258 1102 c 0,28,29 + 1422 1102 1422 1102 1496.5 1013 c 128,-1,30 + 1571 924 1571 924 1571 721 c 2,31,-1 + 1571 0 l 1,32,-1 + 1393 0 l 1,33,-1 + 1393 686 l 2,34,35 + 1393 843 1393 843 1350 903 c 128,-1,36 + 1307 963 1307 963 1195 963 c 0,37,38 + 1077 963 1077 963 1011.5 875.5 c 128,-1,39 + 946 788 946 788 946 627 c 2,40,-1 + 946 0 l 1,41,-1 + 768 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: n +Encoding: 110 110 81 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 60 + 18 + 9 + 9 + 10 + 0 + 26 + 10 + 26 + 27 + 28 + 18 + 22 + 0 + 22 + 5 + 80 + 89 + 22 + 16 + 13 + 15 + 10 + 0 + 21 + 208 + 28 + 1 + 192 + 28 + 1 + 176 + 28 + 1 + 240 + 28 + 1 + 176 + 28 + 1 + 255 + 28 + 1 + 224 + 28 + 1 + 208 + 28 + 1 + 192 + 28 + 1 + 176 + 28 + 1 + 160 + 28 + 1 + 112 + 28 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 910 0 basechar 0 +AnchorPoint: "Anchor-25" 840 0 basechar 0 +AnchorPoint: "Anchor-24" 540 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1220 basechar 0 +AnchorPoint: "Anchor-20" 1139 -80 basechar 0 +AnchorPoint: "Anchor-19" 920 800 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +825 0 m 1,0,-1 + 825 686 l 2,1,2 + 825 793 825 793 804 852 c 128,-1,3 + 783 911 783 911 737 937 c 128,-1,4 + 691 963 691 963 602 963 c 0,5,6 + 472 963 472 963 397 874 c 128,-1,7 + 322 785 322 785 322 627 c 2,8,-1 + 322 0 l 1,9,-1 + 142 0 l 1,10,-1 + 142 851 l 2,11,12 + 142 1040 142 1040 136 1082 c 1,13,-1 + 306 1082 l 1,14,15 + 307 1077 307 1077 308 1055 c 128,-1,16 + 309 1033 309 1033 310.5 1004.5 c 128,-1,17 + 312 976 312 976 314 897 c 1,18,-1 + 317 897 l 1,19,20 + 379 1009 379 1009 460.5 1055.5 c 128,-1,21 + 542 1102 542 1102 663 1102 c 0,22,23 + 841 1102 841 1102 923.5 1013.5 c 128,-1,24 + 1006 925 1006 925 1006 721 c 2,25,-1 + 1006 0 l 1,26,-1 + 825 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: o +Encoding: 111 111 82 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 17 + 6 + 11 + 0 + 6 + 0 + 23 + 24 + 8 + 14 + 80 + 89 + 8 + 16 + 3 + 20 + 80 + 89 + 3 + 22 + 160 + 24 + 1 + 144 + 24 + 1 + 128 + 24 + 1 + 112 + 24 + 1 + 96 + 24 + 1 + 80 + 24 + 1 + 48 + 24 + 1 + 223 + 24 + 1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-24" 570 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1220 basechar 0 +AnchorPoint: "Anchor-20" 1139 -70 basechar 0 +AnchorPoint: "Anchor-19" 910 800 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 560 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 542 m 0,0,1 + 1053 258 1053 258 928 119 c 128,-1,2 + 803 -20 803 -20 565 -20 c 0,3,4 + 328 -20 328 -20 207 124.5 c 128,-1,5 + 86 269 86 269 86 542 c 0,6,7 + 86 1102 86 1102 571 1102 c 0,8,9 + 819 1102 819 1102 936 965.5 c 128,-1,10 + 1053 829 1053 829 1053 542 c 0,0,1 +864 542 m 0,11,12 + 864 766 864 766 797.5 867.5 c 128,-1,13 + 731 969 731 969 574 969 c 0,14,15 + 416 969 416 969 345.5 865.5 c 128,-1,16 + 275 762 275 762 275 542 c 0,17,18 + 275 328 275 328 344.5 220.5 c 128,-1,19 + 414 113 414 113 563 113 c 0,20,21 + 725 113 725 113 794.5 217 c 128,-1,22 + 864 321 864 321 864 542 c 0,11,12 +EndSplineSet +EndChar + +StartChar: p +Encoding: 112 112 83 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 24 + 0 + 31 + 17 + 8 + 8 + 9 + 0 + 9 + 38 + 37 + 17 + 4 + 21 + 2 + 21 + 27 + 80 + 89 + 21 + 16 + 12 + 15 + 8 + 27 + 2 + 34 + 80 + 89 + 2 + 22 + 176 + 38 + 1 + 63 + 38 + 1 + 144 + 38 + 1 + 112 + 38 + 1 + 31 + 38 + 1 + 255 + 38 + 1 + 224 + 38 + 1 + 192 + 38 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 880 120 basechar 0 +AnchorPoint: "Anchor-25" 160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1220 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 800 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 -20 1053 -20 655 -20 c 0,2,3 + 405 -20 405 -20 319 168 c 1,4,-1 + 314 168 l 1,5,6 + 318 160 318 160 318 -2 c 2,7,-1 + 318 -425 l 1,8,-1 + 138 -425 l 1,9,-1 + 138 861 l 2,10,11 + 138 1028 138 1028 132 1082 c 1,12,-1 + 306 1082 l 1,13,14 + 307 1078 307 1078 309 1053.5 c 128,-1,15 + 311 1029 311 1029 313.5 978 c 128,-1,16 + 316 927 316 927 316 908 c 1,17,-1 + 320 908 l 1,18,19 + 368 1008 368 1008 447 1054.5 c 128,-1,20 + 526 1101 526 1101 655 1101 c 0,21,22 + 855 1101 855 1101 954 967 c 128,-1,23 + 1053 833 1053 833 1053 546 c 0,0,1 +864 542 m 0,24,25 + 864 768 864 768 803 865 c 128,-1,26 + 742 962 742 962 609 962 c 0,27,28 + 502 962 502 962 441.5 917 c 128,-1,29 + 381 872 381 872 349.5 776.5 c 128,-1,30 + 318 681 318 681 318 528 c 0,31,32 + 318 315 318 315 386 214 c 128,-1,33 + 454 113 454 113 607 113 c 0,34,35 + 741 113 741 113 802.5 211.5 c 128,-1,36 + 864 310 864 310 864 542 c 0,24,25 +EndSplineSet +EndChar + +StartChar: q +Encoding: 113 113 84 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 84 + 23 + 8 + 17 + 17 + 16 + 29 + 3 + 16 + 3 + 36 + 35 + 16 + 27 + 12 + 16 + 8 + 19 + 5 + 0 + 5 + 26 + 80 + 89 + 5 + 16 + 0 + 32 + 80 + 89 + 0 + 22 + 64 + 36 + 1 + 32 + 36 + 1 + 207 + 36 + 1 + 176 + 36 + 1 + 144 + 36 + 1 + 32 + 36 + 1 + 0 + 36 + 1 + 80 + 223 + 36 + 1 + 192 + 36 + 1 + 79 + 36 + 1 + 160 + 36 + 1 + 128 + 36 + 1 + 47 + 36 + 1 + 15 + 36 + 1 + 240 + 36 + 1 + 208 + 36 + 1 + 15 + 36 + 1 + 8 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 910 -300 basechar 0 +AnchorPoint: "Anchor-25" 840 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1220 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 1000 basechar 0 +AnchorPoint: "Anchor-18" 990 1100 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +484 -20 m 0,0,1 + 278 -20 278 -20 182 119 c 128,-1,2 + 86 258 86 258 86 536 c 0,3,4 + 86 1102 86 1102 484 1102 c 0,5,6 + 607 1102 607 1102 687 1058.5 c 128,-1,7 + 767 1015 767 1015 821 914 c 1,8,-1 + 823 914 l 1,9,10 + 823 944 823 944 827 1017.5 c 128,-1,11 + 831 1091 831 1091 835 1096 c 1,12,-1 + 1008 1096 l 1,13,14 + 1001 1037 1001 1037 1001 801 c 2,15,-1 + 1001 -425 l 1,16,-1 + 821 -425 l 1,17,-1 + 821 14 l 1,18,-1 + 825 178 l 1,19,-1 + 823 178 l 1,20,21 + 769 71 769 71 690 25.5 c 128,-1,22 + 611 -20 611 -20 484 -20 c 0,0,1 +821 554 m 0,23,24 + 821 765 821 765 752 867 c 128,-1,25 + 683 969 683 969 532 969 c 0,26,27 + 395 969 395 969 335 867 c 128,-1,28 + 275 765 275 765 275 542 c 0,29,30 + 275 315 275 315 335.5 217 c 128,-1,31 + 396 119 396 119 530 119 c 0,32,33 + 683 119 683 119 752 228 c 128,-1,34 + 821 337 821 337 821 554 c 0,23,24 +EndSplineSet +EndChar + +StartChar: r +Encoding: 114 114 85 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 6 + 19 + 19 + 0 + 0 + 12 + 20 + 21 + 15 + 6 + 10 + 16 + 4 + 15 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 230 0 basechar 0 +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-24" 230 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1220 basechar 0 +AnchorPoint: "Anchor-20" 682 -90 basechar 0 +AnchorPoint: "Anchor-19" 530 1000 basechar 0 +AnchorPoint: "Anchor-18" 640 1100 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +142 0 m 1,0,-1 + 142 830 l 2,1,2 + 142 944 142 944 136 1082 c 1,3,-1 + 306 1082 l 1,4,5 + 314 898 314 898 314 861 c 1,6,-1 + 318 861 l 1,7,8 + 361 1000 361 1000 417 1051 c 128,-1,9 + 473 1102 473 1102 575 1102 c 0,10,11 + 611 1102 611 1102 648 1092 c 1,12,-1 + 648 927 l 1,13,14 + 612 937 612 937 552 937 c 0,15,16 + 440 937 440 937 381 840.5 c 128,-1,17 + 322 744 322 744 322 564 c 2,18,-1 + 322 0 l 1,19,-1 + 142 0 l 1,0,-1 +EndSplineSet +Kerns2: 2021 76 "'kern' Horizontal Kerning lookup 17 subtable" 17 -113 "'kern' Horizontal Kerning lookup 17 subtable" 15 -113 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: s +Encoding: 115 115 86 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 60 + 7 + 6 + 34 + 21 + 28 + 27 + 13 + 0 + 0 + 27 + 21 + 6 + 4 + 43 + 44 + 13 + 34 + 3 + 24 + 24 + 31 + 80 + 89 + 28 + 24 + 16 + 3 + 10 + 80 + 89 + 7 + 3 + 22 + 16 + 44 + 1 + 0 + 44 + 1 + 240 + 44 + 1 + 224 + 44 + 1 + 192 + 44 + 1 + 96 + 44 + 1 + 128 + 44 + 1 + 63 + 44 + 1 + 16 + 44 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 810 120 basechar 0 +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-24" 490 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1170 basechar 0 +AnchorPoint: "Anchor-20" 1024 -90 basechar 0 +AnchorPoint: "Anchor-19" 820 800 basechar 0 +AnchorPoint: "Anchor-18" 861 950 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +950 299 m 0,0,1 + 950 146 950 146 834.5 63 c 128,-1,2 + 719 -20 719 -20 511 -20 c 0,3,4 + 309 -20 309 -20 199.5 46.5 c 128,-1,5 + 90 113 90 113 57 254 c 1,6,-1 + 216 285 l 1,7,8 + 239 198 239 198 311 157.5 c 128,-1,9 + 383 117 383 117 511 117 c 0,10,11 + 648 117 648 117 711.5 159 c 128,-1,12 + 775 201 775 201 775 285 c 0,13,14 + 775 349 775 349 731 389 c 128,-1,15 + 687 429 687 429 589 455 c 2,16,-1 + 460 489 l 2,17,18 + 305 529 305 529 239.5 567.5 c 128,-1,19 + 174 606 174 606 137 661 c 128,-1,20 + 100 716 100 716 100 796 c 0,21,22 + 100 944 100 944 205.5 1021.5 c 128,-1,23 + 311 1099 311 1099 513 1099 c 0,24,25 + 692 1099 692 1099 797.5 1036 c 128,-1,26 + 903 973 903 973 931 834 c 1,27,-1 + 769 814 l 1,28,29 + 754 886 754 886 688.5 924.5 c 128,-1,30 + 623 963 623 963 513 963 c 0,31,32 + 391 963 391 963 333 926 c 128,-1,33 + 275 889 275 889 275 814 c 0,34,35 + 275 768 275 768 299 738 c 128,-1,36 + 323 708 323 708 370 687 c 128,-1,37 + 417 666 417 666 568 629 c 0,38,39 + 711 593 711 593 774 562.5 c 128,-1,40 + 837 532 837 532 873.5 495 c 128,-1,41 + 910 458 910 458 930 409.5 c 128,-1,42 + 950 361 950 361 950 299 c 0,0,1 +EndSplineSet +EndChar + +StartChar: t +Encoding: 116 116 87 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 13 + 20 + 20 + 11 + 15 + 15 + 9 + 4 + 4 + 22 + 21 + 14 + 5 + 8 + 5 + 80 + 89 + 11 + 15 + 9 + 1 + 12 + 3 + 9 + 64 + 8 + 15 + 2 + 18 + 80 + 89 + 2 + 22 + 128 + 22 + 1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,black] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 470 0 basechar 0 +AnchorPoint: "Anchor-25" 380 0 basechar 0 +AnchorPoint: "Anchor-24" 360 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -110 basechar 0 +AnchorPoint: "Anchor-19" 250 1280 basechar 0 +AnchorPoint: "Anchor-18" 501 1100 basechar 0 +AnchorPoint: "Anchor-16" 260 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +554 8 m 1,0,1 + 465 -16 465 -16 372 -16 c 0,2,3 + 156 -16 156 -16 156 229 c 2,4,-1 + 156 951 l 1,5,-1 + 31 951 l 1,6,-1 + 31 1082 l 1,7,-1 + 163 1082 l 1,8,-1 + 216 1324 l 1,9,-1 + 336 1324 l 1,10,-1 + 336 1082 l 1,11,-1 + 536 1082 l 1,12,-1 + 536 951 l 1,13,-1 + 336 951 l 1,14,-1 + 336 268 l 2,15,16 + 336 190 336 190 361.5 158.5 c 128,-1,17 + 387 127 387 127 450 127 c 0,18,19 + 486 127 486 127 554 141 c 1,20,-1 + 554 8 l 1,0,1 +EndSplineSet +EndChar + +StartChar: u +Encoding: 117 117 88 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 59 + 18 + 8 + 8 + 11 + 1 + 25 + 11 + 25 + 28 + 27 + 18 + 5 + 22 + 5 + 80 + 89 + 22 + 22 + 13 + 21 + 9 + 0 + 15 + 208 + 28 + 1 + 192 + 28 + 1 + 176 + 28 + 1 + 240 + 28 + 1 + 176 + 28 + 1 + 255 + 28 + 1 + 224 + 28 + 1 + 208 + 28 + 1 + 192 + 28 + 1 + 176 + 28 + 1 + 160 + 28 + 1 + 112 + 28 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 920 0 basechar 0 +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-24" 500 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1170 basechar 0 +AnchorPoint: "Anchor-20" 1139 -90 basechar 0 +AnchorPoint: "Anchor-19" 910 1000 basechar 0 +AnchorPoint: "Anchor-18" 980 1100 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +314 1082 m 1,0,-1 + 314 396 l 2,1,2 + 314 289 314 289 335 230 c 128,-1,3 + 356 171 356 171 402 145 c 128,-1,4 + 448 119 448 119 537 119 c 0,5,6 + 667 119 667 119 742 208 c 128,-1,7 + 817 297 817 297 817 455 c 2,8,-1 + 817 1082 l 1,9,-1 + 997 1082 l 1,10,-1 + 997 231 l 2,11,12 + 997 42 997 42 1003 0 c 1,13,-1 + 833 0 l 1,14,15 + 832 5 832 5 831 27 c 128,-1,16 + 830 49 830 49 828.5 77.5 c 128,-1,17 + 827 106 827 106 825 185 c 1,18,-1 + 822 185 l 1,19,20 + 760 73 760 73 678.5 26.5 c 128,-1,21 + 597 -20 597 -20 476 -20 c 0,22,23 + 298 -20 298 -20 215.5 68.5 c 128,-1,24 + 133 157 133 157 133 361 c 2,25,-1 + 133 1082 l 1,26,-1 + 314 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: v +Encoding: 118 118 89 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 248 + 1 + 0 + 6 + 9 + 10 + 3 + 2 + 2 + 6 + 10 + 3 + 11 + 12 + 9 + 2 + 15 + 6 + 1 + 21 + 155 + 12 + 1 + 132 + 12 + 1 + 96 + 12 + 1 + 84 + 12 + 1 + 68 + 12 + 1 + 32 + 12 + 1 + 20 + 12 + 1 + 4 + 12 + 1 + 224 + 12 + 1 + 212 + 12 + 1 + 196 + 12 + 1 + 160 + 12 + 1 + 148 + 12 + 1 + 132 + 12 + 1 + 96 + 12 + 1 + 84 + 12 + 1 + 68 + 12 + 1 + 20 + 12 + 1 + 4 + 12 + 1 + 103 + 212 + 12 + 1 + 196 + 12 + 1 + 148 + 12 + 1 + 132 + 12 + 1 + 84 + 12 + 1 + 68 + 12 + 1 + 20 + 12 + 1 + 4 + 12 + 1 + 219 + 12 + 1 + 196 + 12 + 1 + 155 + 12 + 1 + 132 + 12 + 1 + 91 + 12 + 1 + 68 + 12 + 1 + 27 + 12 + 1 + 4 + 12 + 1 + 219 + 12 + 1 + 196 + 12 + 1 + 155 + 12 + 1 + 139 + 12 + 1 + 91 + 12 + 1 + 75 + 12 + 1 + 27 + 12 + 1 + 11 + 12 + 1 + 55 + 219 + 12 + 1 + 203 + 12 + 1 + 155 + 12 + 1 + 139 + 12 + 1 + 91 + 12 + 1 + 75 + 12 + 1 + 63 + 12 + 1 + 32 + 12 + 1 + 20 + 12 + 1 + 4 + 12 + 1 + 224 + 12 + 1 + 212 + 12 + 1 + 196 + 12 + 1 + 160 + 12 + 1 + 148 + 12 + 1 + 132 + 12 + 1 + 96 + 12 + 1 + 84 + 12 + 1 + 68 + 12 + 1 + 32 + 12 + 1 + 20 + 12 + 1 + 4 + 12 + 1 + 212 + 12 + 1 + 196 + 12 + 1 + 160 + 12 + 1 + 148 + 12 + 1 + 132 + 12 + 1 + 96 + 12 + 1 + 2 + 80 + 12 + 1 + 47 + 12 + 1 + 16 + 12 + 1 + 0 + 12 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 510 0 basechar 0 +AnchorPoint: "Anchor-25" 440 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1200 basechar 0 +AnchorPoint: "Anchor-20" 1024 -80 basechar 0 +AnchorPoint: "Anchor-19" 860 1000 basechar 0 +AnchorPoint: "Anchor-18" 950 1100 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +613 0 m 1,0,-1 + 400 0 l 1,1,-1 + 7 1082 l 1,2,-1 + 199 1082 l 1,3,-1 + 437 378 l 2,4,5 + 450 338 450 338 506 141 c 1,6,-1 + 541 258 l 1,7,-1 + 580 376 l 1,8,-1 + 826 1082 l 1,9,-1 + 1017 1082 l 1,10,-1 + 613 0 l 1,0,-1 +EndSplineSet +Kerns2: 17 -152 "'kern' Horizontal Kerning lookup 17 subtable" 15 -152 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: w +Encoding: 119 119 90 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 1 + 0 + 17 + 7 + 6 + 12 + 15 + 14 + 3 + 19 + 9 + 12 + 3 + 17 + 3 + 20 + 8 + 7 + 20 + 1 + 20 + 22 + 8 + 8 + 1 + 11 + 8 + 21 + 3 + 14 + 19 + 3 + 8 + 15 + 1 + 12 + 17 + 3 + 7 + 21 + 118 + 22 + 1 + 102 + 22 + 1 + 84 + 22 + 1 + 70 + 22 + 1 + 54 + 22 + 1 + 36 + 22 + 1 + 22 + 22 + 1 + 4 + 22 + 1 + 244 + 22 + 1 + 230 + 22 + 1 + 196 + 22 + 1 + 178 + 22 + 1 + 164 + 22 + 1 + 150 + 22 + 1 + 134 + 22 + 1 + 102 + 22 + 1 + 84 + 22 + 1 + 68 + 22 + 1 + 54 + 22 + 1 + 20 + 22 + 1 + 6 + 22 + 1 + 105 + 246 + 22 + 1 + 226 + 22 + 1 + 212 + 22 + 1 + 198 + 22 + 1 + 182 + 22 + 1 + 150 + 22 + 1 + 132 + 22 + 1 + 116 + 22 + 1 + 102 + 22 + 1 + 70 + 22 + 1 + 54 + 22 + 1 + 36 + 22 + 1 + 22 + 22 + 1 + 6 + 22 + 1 + 244 + 22 + 1 + 230 + 22 + 1 + 182 + 22 + 1 + 164 + 22 + 1 + 148 + 22 + 1 + 134 + 22 + 1 + 105 + 22 + 1 + 86 + 22 + 1 + 68 + 22 + 1 + 54 + 22 + 1 + 6 + 22 + 1 + 228 + 22 + 1 + 214 + 22 + 1 + 196 + 22 + 1 + 182 + 22 + 1 + 166 + 22 + 1 + 137 + 22 + 1 + 114 + 22 + 1 + 1 + 96 + 22 + 1 + 84 + 22 + 1 + 36 + 22 + 1 + 4 + 22 + 1 + 56 + 244 + 22 + 1 + 212 + 22 + 1 + 196 + 22 + 1 + 164 + 22 + 1 + 128 + 22 + 1 + 116 + 22 + 1 + 75 + 22 + 1 + 48 + 22 + 1 + 36 + 22 + 1 + 20 + 22 + 1 + 251 + 22 + 1 + 196 + 22 + 1 + 160 + 22 + 1 + 148 + 22 +NPUSHB + 48 + 1 + 123 + 22 + 1 + 100 + 22 + 1 + 68 + 22 + 1 + 52 + 22 + 1 + 27 + 22 + 1 + 240 + 22 + 1 + 228 + 22 + 1 + 203 + 22 + 1 + 180 + 22 + 1 + 148 + 22 + 1 + 132 + 22 + 1 + 100 + 22 + 1 + 63 + 22 + 1 + 2 + 16 + 22 + 1 + 0 + 22 + 1 + 8 +SDB +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SLOOP +SHP[rp1] +MIAP[rnd] +SLOOP +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SDB +DELTAP1 +SRP1 +SHP[rp1] +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 1070 0 basechar 0 +AnchorPoint: "Anchor-25" 1000 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1170 basechar 0 +AnchorPoint: "Anchor-20" 1479 -90 basechar 0 +AnchorPoint: "Anchor-19" 1350 1000 basechar 0 +AnchorPoint: "Anchor-18" 1420 1100 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1174 0 m 1,0,-1 + 965 0 l 1,1,-1 + 776 765 l 1,2,-1 + 740 934 l 1,3,4 + 731 889 731 889 712 804.5 c 128,-1,5 + 693 720 693 720 508 0 c 1,6,-1 + 300 0 l 1,7,-1 + -3 1082 l 1,8,-1 + 175 1082 l 1,9,-1 + 358 347 l 2,10,11 + 365 323 365 323 401 149 c 1,12,-1 + 418 223 l 1,13,-1 + 644 1082 l 1,14,-1 + 837 1082 l 1,15,-1 + 1026 339 l 1,16,-1 + 1072 149 l 1,17,-1 + 1103 288 l 1,18,-1 + 1308 1082 l 1,19,-1 + 1484 1082 l 1,20,-1 + 1174 0 l 1,0,-1 +EndSplineSet +Kerns2: 17 -113 "'kern' Horizontal Kerning lookup 17 subtable" 15 -113 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: x +Encoding: 120 120 91 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 160 + 0 + 11 + 8 + 9 + 10 + 4 + 1 + 7 + 6 + 5 + 2 + 3 + 3 + 5 + 7 + 9 + 11 + 5 + 13 + 12 + 132 + 13 + 1 + 118 + 13 + 1 + 68 + 13 + 84 + 13 + 100 + 13 + 3 + 54 + 13 + 1 + 36 + 13 + 1 + 22 + 13 + 1 + 4 + 13 + 1 + 246 + 13 + 1 + 228 + 13 + 1 + 214 + 13 + 1 + 196 + 13 + 1 + 182 + 13 + 1 + 164 + 13 + 1 + 118 + 13 + 134 + 13 + 150 + 13 + 3 + 100 + 13 + 1 + 6 + 13 + 22 + 13 + 38 + 13 + 70 + 13 + 86 + 13 + 5 + 103 + 6 + 13 + 70 + 13 + 86 + 13 + 134 + 13 + 150 + 13 + 198 + 13 + 214 + 13 + 230 + 13 + 8 + 153 + 13 + 217 + 13 + 2 + 100 + 13 + 1 + 86 + 13 + 1 + 68 + 13 + 1 + 54 + 13 + 1 + 36 + 13 + 1 + 22 + 13 + 1 + 4 + 13 + 1 + 214 + 13 + 230 + 13 + 246 + 13 + 3 + 196 + 13 + 1 + 6 + 13 + 38 + 13 + 54 + 13 + 70 + 13 + 4 + 55 + 102 + 13 + 166 + 13 + 182 + 13 + 230 + 13 + 246 + 13 + 5 + 13 +PUSHW_1 + -64 +NPUSHB + 54 + 61 + 66 + 72 + 57 + 13 + 1 + 34 + 13 + 1 + 1 + 0 + 13 + 16 + 13 + 2 + 244 + 13 + 1 + 192 + 13 + 208 + 13 + 224 + 13 + 3 + 180 + 13 + 1 + 128 + 13 + 144 + 13 + 160 + 13 + 3 + 116 + 13 + 1 + 96 + 13 + 1 + 84 + 13 + 1 + 64 + 13 + 1 + 52 + 13 + 1 + 32 + 13 + 1 + 13 +PUSHW_1 + -64 +NPUSHB + 34 + 18 + 24 + 72 + 160 + 13 + 1 + 2 + 0 + 13 + 16 + 13 + 80 + 13 + 112 + 13 + 128 + 13 + 144 + 13 + 6 + 7 + 10 + 4 + 1 + 4 + 7 + 3 + 2 + 8 + 6 + 15 + 0 + 2 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SVTCA[x-axis] +SDB +DELTAP1 +SDS +DELTAP1 +CALL +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +SDS +DELTAP3 +DELTAP3 +CALL +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 820 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1180 basechar 0 +AnchorPoint: "Anchor-20" 1024 -90 basechar 0 +AnchorPoint: "Anchor-19" 820 1000 basechar 0 +AnchorPoint: "Anchor-18" 880 1100 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +801 0 m 1,0,-1 + 510 444 l 1,1,-1 + 217 0 l 1,2,-1 + 23 0 l 1,3,-1 + 408 556 l 1,4,-1 + 41 1082 l 1,5,-1 + 240 1082 l 1,6,-1 + 510 661 l 1,7,-1 + 778 1082 l 1,8,-1 + 979 1082 l 1,9,-1 + 612 558 l 1,10,-1 + 1002 0 l 1,11,-1 + 801 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: y +Encoding: 121 121 92 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 19 + 8 + 15 + 17 + 18 + 10 + 9 + 9 + 3 + 15 + 18 + 4 + 24 + 23 + 8 + 19 + 15 + 19 + 23 + 17 + 9 + 15 + 0 + 5 + 80 + 89 + 0 + 27 + 146 + 24 + 1 + 130 + 24 + 1 + 116 + 24 + 1 + 100 + 24 + 1 + 82 + 24 + 1 + 66 + 24 + 1 + 52 + 24 + 1 + 36 + 24 + 1 + 18 + 24 + 1 + 2 + 24 + 1 + 244 + 24 + 1 + 228 + 24 + 1 + 210 + 24 + 1 + 194 + 24 + 1 + 180 + 24 + 1 + 164 + 24 + 1 + 146 + 24 + 1 + 130 + 24 + 1 + 116 + 24 + 1 + 100 + 24 + 1 + 86 + 24 + 1 + 66 + 24 + 1 + 52 + 24 + 1 + 36 + 24 + 1 + 22 + 24 + 1 + 2 + 24 + 1 + 103 + 244 + 24 + 1 + 228 + 24 + 1 + 214 + 24 + 1 + 194 + 24 + 1 + 180 + 24 + 1 + 164 + 24 + 1 + 150 + 24 + 1 + 130 + 24 + 1 + 116 + 24 + 1 + 100 + 24 + 1 + 86 + 24 + 1 + 66 + 24 + 1 + 52 + 24 + 1 + 36 + 24 + 1 + 22 + 24 + 1 + 2 + 24 + 1 + 244 + 24 + 1 + 228 + 24 + 1 + 214 + 24 + 1 + 194 + 24 + 1 + 1 + 176 + 24 + 1 + 160 + 24 + 1 + 148 + 24 + 1 + 132 + 24 + 1 + 112 + 24 + 1 + 96 + 24 + 1 + 84 + 24 + 1 + 68 + 24 + 1 + 48 + 24 + 1 + 32 + 24 + 1 + 20 + 24 + 1 + 4 + 24 + 1 + 240 + 24 + 1 + 224 + 24 + 1 + 212 + 24 + 1 + 196 + 24 + 1 + 176 + 24 + 1 + 160 + 24 + 1 + 148 + 24 + 1 + 132 + 24 + 1 + 112 + 24 + 1 + 96 + 24 + 1 + 84 + 24 + 1 + 68 + 24 + 1 + 48 + 24 + 1 + 32 + 24 + 1 + 20 + 24 + 1 + 4 + 24 + 1 + 55 + 224 + 24 +NPUSHB + 90 + 1 + 212 + 24 + 1 + 196 + 24 + 1 + 160 + 24 + 1 + 148 + 24 + 1 + 132 + 24 + 1 + 96 + 24 + 1 + 84 + 24 + 1 + 68 + 24 + 1 + 32 + 24 + 1 + 20 + 24 + 1 + 4 + 24 + 1 + 224 + 24 + 1 + 212 + 24 + 1 + 196 + 24 + 1 + 160 + 24 + 1 + 148 + 24 + 1 + 132 + 24 + 1 + 96 + 24 + 1 + 2 + 80 + 24 + 1 + 48 + 24 + 1 + 32 + 24 + 1 + 0 + 24 + 1 + 192 + 24 + 1 + 144 + 24 + 1 + 128 + 24 + 1 + 80 + 24 + 1 + 47 + 24 + 1 + 16 + 24 + 1 + 0 + 24 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1170 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-19" 860 1000 basechar 0 +AnchorPoint: "Anchor-18" 960 1100 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 460 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +191 -425 m 0,0,1 + 117 -425 117 -425 67 -414 c 1,2,-1 + 67 -279 l 1,3,4 + 105 -285 105 -285 151 -285 c 0,5,6 + 319 -285 319 -285 417 -38 c 2,7,-1 + 434 5 l 1,8,-1 + 5 1082 l 1,9,-1 + 197 1082 l 1,10,-1 + 425 484 l 2,11,12 + 430 470 430 470 437 450.5 c 128,-1,13 + 444 431 444 431 482 320 c 128,-1,14 + 520 209 520 209 523 196 c 1,15,-1 + 593 393 l 1,16,-1 + 830 1082 l 1,17,-1 + 1020 1082 l 1,18,-1 + 604 0 l 2,19,20 + 537 -173 537 -173 479 -257.5 c 128,-1,21 + 421 -342 421 -342 350.5 -383.5 c 128,-1,22 + 280 -425 280 -425 191 -425 c 0,0,1 +EndSplineSet +Kerns2: 17 -152 "'kern' Horizontal Kerning lookup 17 subtable" 15 -152 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: z +Encoding: 122 122 93 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 252 + 2 + 6 + 7 + 1 + 1 + 3 + 6 + 8 + 4 + 11 + 10 + 6 + 3 + 4 + 3 + 80 + 89 + 4 + 15 + 1 + 7 + 0 + 7 + 80 + 89 + 0 + 21 + 212 + 11 + 1 + 196 + 11 + 1 + 180 + 11 + 1 + 164 + 11 + 1 + 148 + 11 + 1 + 132 + 11 + 1 + 116 + 11 + 1 + 100 + 11 + 1 + 84 + 11 + 1 + 64 + 11 + 1 + 52 + 11 + 1 + 32 + 11 + 1 + 20 + 11 + 1 + 0 + 11 + 1 + 244 + 11 + 1 + 224 + 11 + 1 + 212 + 11 + 1 + 192 + 11 + 1 + 180 + 11 + 1 + 164 + 11 + 1 + 148 + 11 + 1 + 132 + 11 + 1 + 116 + 11 + 1 + 100 + 11 + 1 + 84 + 11 + 1 + 68 + 11 + 1 + 52 + 11 + 1 + 36 + 11 + 1 + 4 + 11 + 1 + 228 + 11 + 1 + 196 + 11 + 1 + 180 + 11 + 1 + 160 + 11 + 1 + 148 + 11 + 1 + 128 + 11 + 1 + 116 + 11 + 1 + 100 + 11 + 1 + 84 + 11 + 1 + 68 + 11 + 1 + 52 + 11 + 1 + 36 + 11 + 1 + 20 + 11 + 1 + 4 + 11 + 1 + 55 + 244 + 11 + 1 + 228 + 11 + 1 + 212 + 11 + 1 + 196 + 11 + 1 + 164 + 11 + 1 + 132 + 11 + 1 + 100 + 11 + 1 + 68 + 11 + 1 + 4 + 11 + 1 + 244 + 11 + 1 + 228 + 11 + 1 + 212 + 11 + 1 + 196 + 11 + 1 + 180 + 11 + 1 + 164 + 11 + 1 + 148 + 11 + 1 + 132 + 11 + 1 + 100 + 11 + 1 + 68 + 11 + 1 + 36 + 11 + 1 + 4 + 11 + 1 + 224 + 11 + 1 + 2 + 208 + 11 + 1 + 192 + 11 + 1 + 176 + 11 + 1 + 160 + 11 + 1 + 144 + 11 + 1 + 112 + 11 + 1 + 80 + 11 + 1 + 32 + 11 + 1 + 0 + 11 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 830 0 basechar 0 +AnchorPoint: "Anchor-25" 740 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1160 basechar 0 +AnchorPoint: "Anchor-20" 1024 -90 basechar 0 +AnchorPoint: "Anchor-19" 800 1000 basechar 0 +AnchorPoint: "Anchor-18" 880 1100 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +83 0 m 1,0,-1 + 83 137 l 1,1,-1 + 688 943 l 1,2,-1 + 117 943 l 1,3,-1 + 117 1082 l 1,4,-1 + 901 1082 l 1,5,-1 + 901 945 l 1,6,-1 + 295 139 l 1,7,-1 + 922 139 l 1,8,-1 + 922 0 l 1,9,-1 + 83 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: braceleft +Encoding: 123 123 94 +Width: 684 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 58 + 22 + 30 + 30 + 11 + 3 + 17 + 34 + 3 + 7 + 4 + 36 + 37 + 25 + 8 + 7 + 8 + 7 + 245 + 89 + 15 + 8 + 79 + 8 + 2 + 47 + 8 + 191 + 8 + 207 + 8 + 3 + 15 + 8 + 47 + 8 + 79 + 8 + 239 + 8 + 4 + 11 + 3 + 8 + 8 + 15 + 0 + 15 + 18 + 245 + 89 + 15 + 0 + 0 + 33 + 245 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP3 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +513 -425 m 2,0,1 + 386 -425 386 -425 317.5 -348 c 128,-1,2 + 249 -271 249 -271 249 -132 c 2,3,-1 + 249 229 l 2,4,5 + 249 346 249 346 196.5 403.5 c 128,-1,6 + 144 461 144 461 34 466 c 1,7,-1 + 34 593 l 1,8,9 + 143 597 143 597 196 654.5 c 128,-1,10 + 249 712 249 712 249 829 c 2,11,-1 + 249 1191 l 2,12,13 + 249 1332 249 1332 315.5 1408 c 128,-1,14 + 382 1484 382 1484 513 1484 c 2,15,-1 + 648 1484 l 1,16,-1 + 648 1355 l 1,17,-1 + 585 1355 l 2,18,19 + 494 1355 494 1355 455.5 1301.5 c 128,-1,20 + 417 1248 417 1248 417 1140 c 2,21,-1 + 417 784 l 2,22,23 + 417 690 417 690 364 621.5 c 128,-1,24 + 311 553 311 553 223 532 c 1,25,-1 + 223 530 l 1,26,27 + 312 509 312 509 364.5 441 c 128,-1,28 + 417 373 417 373 417 276 c 2,29,-1 + 417 -81 l 2,30,31 + 417 -187 417 -187 455.5 -241.5 c 128,-1,32 + 494 -296 494 -296 585 -296 c 2,33,-1 + 648 -296 l 1,34,-1 + 648 -425 l 1,35,-1 + 513 -425 l 2,0,1 +EndSplineSet +EndChar + +StartChar: bar +Encoding: 124 124 95 +Width: 532 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 232 + 0 + 4 + 5 + 1 + 0 + 0 + 132 + 5 + 1 + 116 + 5 + 1 + 96 + 5 + 1 + 84 + 5 + 1 + 68 + 5 + 1 + 52 + 5 + 1 + 36 + 5 + 1 + 224 + 5 + 1 + 212 + 5 + 1 + 196 + 5 + 1 + 180 + 5 + 1 + 164 + 5 + 1 + 132 + 5 + 1 + 116 + 5 + 1 + 100 + 5 + 1 + 32 + 5 + 1 + 20 + 5 + 1 + 4 + 5 + 1 + 104 + 244 + 5 + 1 + 228 + 5 + 1 + 180 + 5 + 1 + 112 + 5 + 1 + 100 + 5 + 1 + 84 + 5 + 1 + 68 + 5 + 1 + 52 + 5 + 1 + 192 + 5 + 1 + 176 + 5 + 1 + 164 + 5 + 1 + 148 + 5 + 1 + 132 + 5 + 1 + 116 + 5 + 1 + 59 + 5 + 1 + 43 + 5 + 1 + 16 + 5 + 1 + 0 + 5 + 1 + 2 + 240 + 5 + 1 + 224 + 5 + 1 + 208 + 5 + 1 + 192 + 5 + 1 + 127 + 5 + 1 + 111 + 5 + 1 + 80 + 5 + 1 + 64 + 5 + 1 + 48 + 5 + 1 + 32 + 5 + 1 + 16 + 5 + 1 + 0 + 5 + 1 + 56 + 207 + 5 + 1 + 176 + 5 + 1 + 160 + 5 + 1 + 112 + 5 + 1 + 96 + 5 + 1 + 31 + 5 + 1 + 0 + 5 + 1 + 240 + 5 + 1 + 224 + 5 + 1 + 160 + 5 + 1 + 80 + 5 + 1 + 64 + 5 + 1 + 48 + 5 + 1 + 32 + 5 + 1 + 239 + 5 + 1 + 223 + 5 + 1 + 207 + 5 + 1 + 191 + 5 + 1 + 175 + 5 + 1 + 144 + 5 + 1 + 128 + 5 + 1 + 112 + 5 + 1 + 64 + 5 + 1 + 47 + 5 + 1 + 31 + 5 + 1 + 15 + 5 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +183 -434 m 1,0,-1 + 183 1484 l 1,1,-1 + 349 1484 l 1,2,-1 + 349 -434 l 1,3,-1 + 183 -434 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: braceright +Encoding: 125 125 96 +Width: 684 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 58 + 11 + 22 + 22 + 4 + 29 + 26 + 29 + 35 + 16 + 4 + 36 + 37 + 7 + 25 + 26 + 25 + 26 + 245 + 89 + 15 + 25 + 79 + 25 + 2 + 47 + 25 + 191 + 25 + 207 + 25 + 3 + 15 + 25 + 47 + 25 + 79 + 25 + 239 + 25 + 4 + 11 + 3 + 25 + 25 + 17 + 34 + 34 + 35 + 245 + 89 + 34 + 27 + 17 + 16 + 245 + 89 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP3 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +94 -296 m 2,0,1 + 185 -296 185 -296 224.5 -241.5 c 128,-1,2 + 264 -187 264 -187 264 -81 c 2,3,-1 + 264 276 l 2,4,5 + 264 374 264 374 316 442 c 128,-1,6 + 368 510 368 510 457 530 c 1,7,-1 + 457 532 l 1,8,9 + 371 552 371 552 317.5 619.5 c 128,-1,10 + 264 687 264 687 264 784 c 2,11,-1 + 264 1140 l 2,12,13 + 264 1248 264 1248 224.5 1301.5 c 128,-1,14 + 185 1355 185 1355 94 1355 c 2,15,-1 + 34 1355 l 1,16,-1 + 34 1484 l 1,17,-1 + 166 1484 l 2,18,19 + 297 1484 297 1484 363.5 1408 c 128,-1,20 + 430 1332 430 1332 430 1191 c 2,21,-1 + 430 829 l 2,22,23 + 430 713 430 713 483 655 c 128,-1,24 + 536 597 536 597 647 593 c 1,25,-1 + 647 466 l 1,26,27 + 535 462 535 462 482.5 404 c 128,-1,28 + 430 346 430 346 430 229 c 2,29,-1 + 430 -132 l 2,30,31 + 430 -270 430 -270 361.5 -347.5 c 128,-1,32 + 293 -425 293 -425 166 -425 c 2,33,-1 + 34 -425 l 1,34,-1 + 34 -296 l 1,35,-1 + 94 -296 l 2,0,1 +EndSplineSet +EndChar + +StartChar: asciitilde +Encoding: 126 126 97 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 8 + 19 + 23 + 24 + 0 + 17 + 173 + 89 + 8 +PUSHW_1 + -64 +PUSHB_5 + 38 + 60 + 72 + 8 + 0 +PUSHW_1 + -64 +PUSHB_4 + 23 + 28 + 72 + 0 +PUSHW_1 + -64 +PUSHB_4 + 14 + 20 + 72 + 0 +PUSHW_1 + -64 +NPUSHB + 44 + 9 + 12 + 72 + 0 + 64 + 19 + 64 + 41 + 60 + 72 + 19 + 11 + 11 + 5 + 173 + 89 + 31 + 11 + 79 + 11 + 159 + 11 + 3 + 111 + 11 + 127 + 11 + 159 + 11 + 175 + 11 + 207 + 11 + 239 + 11 + 255 + 11 + 7 + 11 + 64 + 9 + 13 + 72 + 11 +SVTCA[y-axis] +MDAP[rnd] +CALL +DELTAP1 +DELTAP2 +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SMD +MDRP[rp0,min,rnd,black] +CALL +CALL +CALL +MDRP[rnd,grey] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +844 553 m 0,0,1 + 775 553 775 553 702.5 575 c 128,-1,2 + 630 597 630 597 557 623 c 0,3,4 + 428 668 428 668 340 668 c 0,5,6 + 273 668 273 668 215 647.5 c 128,-1,7 + 157 627 157 627 92 580 c 1,8,-1 + 92 723 l 1,9,10 + 203 807 203 807 355 807 c 0,11,12 + 407 807 407 807 470.5 794 c 128,-1,13 + 534 781 534 781 664 735 c 0,14,15 + 695 723 695 723 755 706.5 c 128,-1,16 + 815 690 815 690 860 690 c 0,17,18 + 990 690 990 690 1104 782 c 1,19,-1 + 1104 633 l 1,20,21 + 1046 591 1046 591 987.5 572 c 128,-1,22 + 929 553 929 553 844 553 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni00A0 +Encoding: 160 160 98 +Width: 569 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 3 32 N 1 0 0 1 0 0 2 +EndChar + +StartChar: exclamdown +Encoding: 161 161 99 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 2 + 3 + 3 + 5 + 6 + 6 + 8 + 9 + 0 + 6 + 64 + 7 + 6 + 156 + 91 + 7 + 15 + 6 + 3 + 1 + 9 + 3 + 144 + 9 + 1 + 130 + 9 + 1 + 114 + 9 + 1 + 96 + 9 + 1 + 82 + 9 + 1 + 66 + 9 + 1 + 50 + 9 + 1 + 34 + 9 + 1 + 18 + 9 + 1 + 2 + 9 + 1 + 242 + 9 + 1 + 226 + 9 + 1 + 208 + 9 + 1 + 194 + 9 + 1 + 178 + 9 + 1 + 162 + 9 + 1 + 146 + 9 + 1 + 130 + 9 + 1 + 114 + 9 + 1 + 100 + 9 + 1 + 84 + 9 + 1 + 66 + 9 + 1 + 50 + 9 + 1 + 34 + 9 + 1 + 18 + 9 + 1 + 2 + 9 + 1 + 103 + 242 + 9 + 1 + 226 + 9 + 1 + 212 + 9 + 1 + 196 + 9 + 1 + 180 + 9 + 1 + 166 + 9 + 1 + 150 + 9 + 1 + 132 + 9 + 1 + 118 + 9 + 1 + 98 + 9 + 1 + 82 + 9 + 1 + 68 + 9 + 1 + 52 + 9 + 1 + 36 + 9 + 1 + 22 + 9 + 1 + 6 + 9 + 1 + 246 + 9 + 1 + 210 + 9 + 1 + 194 + 9 + 1 + 1 + 176 + 9 + 1 + 160 + 9 + 1 + 144 + 9 + 1 + 132 + 9 + 1 + 116 + 9 + 1 + 100 + 9 + 1 + 64 + 9 + 1 + 48 + 9 + 1 + 32 + 9 + 1 + 16 + 9 + 1 + 0 + 9 + 1 + 244 + 9 + 1 + 228 + 9 + 1 + 212 + 9 + 1 + 176 + 9 + 1 + 160 + 9 + 1 + 148 + 9 + 1 + 132 + 9 + 1 + 116 + 9 + 1 + 100 + 9 + 1 + 84 + 9 + 1 + 68 + 9 + 1 + 32 + 9 + 1 + 16 + 9 + 1 + 4 + 9 + 1 + 55 + 244 + 9 + 1 + 228 + 9 + 1 + 180 + 9 + 1 + 144 + 9 + 1 + 128 + 9 + 1 + 116 + 9 + 1 + 100 + 9 +NPUSHB + 66 + 1 + 84 + 9 + 1 + 27 + 9 + 1 + 0 + 9 + 1 + 240 + 9 + 1 + 228 + 9 + 1 + 212 + 9 + 1 + 196 + 9 + 1 + 132 + 9 + 1 + 116 + 9 + 1 + 100 + 9 + 1 + 84 + 9 + 1 + 68 + 9 + 1 + 52 + 9 + 1 + 244 + 9 + 1 + 228 + 9 + 1 + 212 + 9 + 1 + 164 + 9 + 1 + 100 + 9 + 1 + 84 + 9 + 1 + 64 + 9 + 1 + 2 + 15 + 9 + 1 + 7 +SDB +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,white] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +266 685 m 1,0,-1 + 414 685 l 1,1,-1 + 438 -327 l 1,2,-1 + 242 -327 l 1,3,-1 + 266 685 l 1,0,-1 +440 1082 m 1,4,-1 + 440 881 l 1,5,-1 + 246 881 l 1,6,-1 + 246 1082 l 1,7,-1 + 440 1082 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: cent +Encoding: 162 162 100 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 23 + 22 + 22 + 4 + 19 + 8 + 8 + 16 + 9 + 9 + 13 + 3 + 3 + 4 + 29 + 13 + 4 + 13 + 33 + 32 + 19 + 26 + 80 + 89 + 23 + 16 + 0 + 19 + 192 + 19 + 208 + 19 + 3 + 19 + 3 + 19 + 64 + 17 + 3 + 10 + 3 + 7 + 7 + 0 + 80 + 89 + 7 + 8 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,black] +SDS +SDB +DELTAP1 +SHP[rp2] +SHP[rp2] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +596 277 m 0,0,1 + 692 277 692 277 756.5 329 c 128,-1,2 + 821 381 821 381 836 489 c 1,3,-1 + 1018 477 l 1,4,5 + 999 333 999 333 904 242 c 128,-1,6 + 809 151 809 151 662 137 c 1,7,-1 + 662 -31 l 1,8,-1 + 538 -31 l 1,9,-1 + 538 137 l 1,10,11 + 339 155 339 155 237 297.5 c 128,-1,12 + 135 440 135 440 135 697 c 0,13,14 + 135 950 135 950 237 1093.5 c 128,-1,15 + 339 1237 339 1237 538 1254 c 1,16,-1 + 538 1409 l 1,17,-1 + 662 1409 l 1,18,-1 + 662 1254 l 1,19,20 + 805 1239 805 1239 895 1156 c 128,-1,21 + 985 1073 985 1073 1012 934 c 1,22,-1 + 827 920 l 1,23,24 + 813 1010 813 1010 756 1063 c 128,-1,25 + 699 1116 699 1116 594 1116 c 0,26,27 + 451 1116 451 1116 387 1021 c 128,-1,28 + 323 926 323 926 323 701 c 0,29,30 + 323 485 323 485 391 381 c 128,-1,31 + 459 277 459 277 596 277 c 0,0,1 +EndSplineSet +EndChar + +StartChar: sterling +Encoding: 163 163 101 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 84 + 34 + 11 + 4 + 20 + 19 + 28 + 19 + 0 + 27 + 31 + 31 + 12 + 8 + 8 + 4 + 37 + 0 + 4 + 0 + 38 + 39 + 30 + 9 + 12 + 9 + 81 + 89 + 27 + 15 + 12 + 31 + 12 + 175 + 12 + 3 + 15 + 12 + 63 + 12 + 111 + 12 + 127 + 12 + 159 + 12 + 175 + 12 + 207 + 12 + 223 + 12 + 8 + 8 + 3 + 12 + 64 + 37 + 42 + 72 + 12 + 64 + 27 + 32 + 72 + 12 + 12 + 34 + 16 + 16 + 23 + 115 + 89 + 20 + 16 + 7 + 5 + 34 + 4 + 34 + 116 + 89 + 37 + 4 + 24 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +CALL +SDS +SDB +DELTAP1 +DELTAP2 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1104 311 m 1,0,1 + 1087 161 1087 161 999 80.5 c 128,-1,2 + 911 0 911 0 767 0 c 2,3,-1 + 69 0 l 1,4,-1 + 69 154 l 1,5,6 + 158 200 158 200 201 280 c 128,-1,7 + 244 360 244 360 244 481 c 2,8,-1 + 244 625 l 1,9,-1 + 58 625 l 1,10,-1 + 58 754 l 1,11,-1 + 244 754 l 1,12,-1 + 244 1034 l 2,13,14 + 244 1229 244 1229 347 1329.5 c 128,-1,15 + 450 1430 450 1430 646 1430 c 0,16,17 + 793 1430 793 1430 893 1369.5 c 128,-1,18 + 993 1309 993 1309 1027 1200 c 1,19,-1 + 853 1143 l 1,20,21 + 832 1207 832 1207 776.5 1244.5 c 128,-1,22 + 721 1282 721 1282 650 1282 c 0,23,24 + 536 1282 536 1282 480 1224.5 c 128,-1,25 + 424 1167 424 1167 424 1042 c 2,26,-1 + 424 754 l 1,27,-1 + 832 754 l 1,28,-1 + 832 625 l 1,29,-1 + 424 625 l 1,30,-1 + 424 499 l 2,31,32 + 424 380 424 380 378 287 c 128,-1,33 + 332 194 332 194 255 153 c 1,34,-1 + 738 153 l 2,35,36 + 912 153 912 153 941 329 c 1,37,-1 + 1104 311 l 1,0,1 +EndSplineSet +EndChar + +StartChar: currency +Encoding: 164 164 102 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 28 + 25 + 3 + 0 + 34 + 17 + 11 + 14 + 0 + 14 + 40 + 41 + 15 + 41 + 1 + 11 + 3 + 21 + 31 + 176 + 89 + 24 + 18 + 21 + 7 + 64 + 7 + 37 + 176 + 89 + 10 + 4 + 7 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +SHP[rp2] +SHP[rp2] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +137 684 m 256,0,1 + 137 822 137 822 215 936 c 1,2,-1 + 115 1036 l 1,3,-1 + 219 1139 l 1,4,-1 + 318 1038 l 1,5,6 + 432 1120 432 1120 572 1120 c 0,7,8 + 709 1120 709 1120 823 1040 c 1,9,-1 + 920 1137 l 1,10,-1 + 1024 1032 l 1,11,-1 + 928 936 l 1,12,13 + 1008 819 1008 819 1008 684 c 0,14,15 + 1008 546 1008 546 926 432 c 1,16,-1 + 1026 332 l 1,17,-1 + 924 227 l 1,18,-1 + 823 328 l 1,19,20 + 709 250 709 250 572 250 c 0,21,22 + 429 250 429 250 320 330 c 1,23,-1 + 215 225 l 1,24,-1 + 113 330 l 1,25,-1 + 215 432 l 1,26,27 + 137 546 137 546 137 684 c 256,0,1 +291 686 m 0,28,29 + 291 569 291 569 374 487.5 c 128,-1,30 + 457 406 457 406 572 406 c 0,31,32 + 686 406 686 406 769 487 c 128,-1,33 + 852 568 852 568 852 686 c 0,34,35 + 852 803 852 803 768.5 885 c 128,-1,36 + 685 967 685 967 572 967 c 256,37,38 + 459 967 459 967 375 885.5 c 128,-1,39 + 291 804 291 804 291 686 c 0,28,29 +EndSplineSet +EndChar + +StartChar: yen +Encoding: 165 165 103 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 79 + 2 + 6 + 8 + 15 + 11 + 21 + 22 + 22 + 24 + 20 + 9 + 4 + 0 + 8 + 8 + 17 + 13 + 9 + 9 + 24 + 23 + 19 + 18 + 18 + 23 + 3 + 15 + 16 + 15 + 81 + 89 + 7 + 11 + 12 + 11 + 81 + 89 + 4 + 47 + 12 + 159 + 12 + 175 + 12 + 3 + 12 + 64 + 41 + 45 + 72 + 0 + 12 + 16 + 12 + 32 + 12 + 160 + 12 + 4 + 12 + 20 + 0 + 15 + 16 + 175 + 16 + 2 + 8 + 240 + 16 + 1 + 16 + 16 + 8 + 21 + 18 + 3 + 8 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +DELTAP1 +SDB +DELTAP1 +SHP[rp1] +SHP[rp1] +MDRP[min,rnd,white] +DELTAP1 +CALL +DELTAP2 +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +720 709 m 1,0,-1 + 1041 709 l 1,1,-1 + 1041 584 l 1,2,-1 + 658 584 l 1,3,-1 + 658 430 l 1,4,-1 + 1041 430 l 1,5,-1 + 1041 303 l 1,6,-1 + 658 303 l 1,7,-1 + 658 0 l 1,8,-1 + 480 0 l 1,9,-1 + 480 303 l 1,10,-1 + 99 303 l 1,11,-1 + 99 430 l 1,12,-1 + 480 430 l 1,13,-1 + 482 584 l 1,14,-1 + 99 584 l 1,15,-1 + 99 709 l 1,16,-1 + 419 709 l 1,17,-1 + -2 1409 l 1,18,-1 + 197 1409 l 1,19,-1 + 568 762 l 1,20,-1 + 943 1409 l 1,21,-1 + 1142 1409 l 1,22,-1 + 720 709 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: brokenbar +Encoding: 166 166 104 +Width: 532 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 242 + 3 + 7 + 7 + 0 + 4 + 4 + 8 + 9 + 5 + 0 + 5 + 0 + 1 + 4 + 1 + 0 + 132 + 9 + 1 + 116 + 9 + 1 + 96 + 9 + 1 + 84 + 9 + 1 + 68 + 9 + 1 + 52 + 9 + 1 + 36 + 9 + 1 + 224 + 9 + 1 + 212 + 9 + 1 + 196 + 9 + 1 + 180 + 9 + 1 + 164 + 9 + 1 + 132 + 9 + 1 + 116 + 9 + 1 + 100 + 9 + 1 + 32 + 9 + 1 + 20 + 9 + 1 + 4 + 9 + 1 + 104 + 244 + 9 + 1 + 228 + 9 + 1 + 180 + 9 + 1 + 112 + 9 + 1 + 100 + 9 + 1 + 84 + 9 + 1 + 68 + 9 + 1 + 52 + 9 + 1 + 192 + 9 + 1 + 176 + 9 + 1 + 164 + 9 + 1 + 148 + 9 + 1 + 132 + 9 + 1 + 116 + 9 + 1 + 59 + 9 + 1 + 43 + 9 + 1 + 16 + 9 + 1 + 0 + 9 + 1 + 2 + 240 + 9 + 1 + 224 + 9 + 1 + 208 + 9 + 1 + 192 + 9 + 1 + 127 + 9 + 1 + 111 + 9 + 1 + 80 + 9 + 1 + 64 + 9 + 1 + 48 + 9 + 1 + 32 + 9 + 1 + 16 + 9 + 1 + 0 + 9 + 1 + 56 + 207 + 9 + 1 + 176 + 9 + 1 + 160 + 9 + 1 + 112 + 9 + 1 + 96 + 9 + 1 + 31 + 9 + 1 + 0 + 9 + 1 + 240 + 9 + 1 + 224 + 9 + 1 + 160 + 9 + 1 + 80 + 9 + 1 + 64 + 9 + 1 + 48 + 9 + 1 + 32 + 9 + 1 + 239 + 9 + 1 + 223 + 9 + 1 + 207 + 9 + 1 + 191 + 9 + 1 + 175 + 9 + 1 + 144 + 9 + 1 + 128 + 9 + 1 + 112 + 9 + 1 + 64 + 9 + 1 + 47 + 9 + 1 + 31 + 9 + 1 + 15 + 9 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +183 706 m 1,0,-1 + 183 1484 l 1,1,-1 + 349 1484 l 1,2,-1 + 349 706 l 1,3,-1 + 183 706 l 1,0,-1 +183 -434 m 1,4,-1 + 183 345 l 1,5,-1 + 349 345 l 1,6,-1 + 349 -434 l 1,7,-1 + 183 -434 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: section +Encoding: 167 167 105 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 95 + 36 + 23 + 23 + 4 + 3 + 3 + 52 + 9 + 49 + 49 + 43 + 30 + 29 + 29 + 46 + 20 + 17 + 58 + 43 + 17 + 43 + 66 + 65 + 121 + 36 + 1 + 107 + 36 + 1 + 92 + 36 + 1 + 56 + 36 + 1 + 149 + 62 + 1 + 134 + 62 + 1 + 53 + 62 + 1 + 25 + 55 + 1 + 10 + 55 + 1 + 122 + 55 + 1 + 59 + 55 + 1 + 132 + 9 + 148 + 9 + 2 + 70 + 9 + 1 + 3 + 16 + 9 + 32 + 9 + 2 + 15 + 9 + 1 + 15 + 6 + 9 + 55 + 62 + 36 + 4 + 26 + 0 + 26 + 33 + 81 + 89 + 30 + 26 + 0 + 6 + 81 + 89 + 4 + 0 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SDS +SDB +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +588 1484 m 0,0,1 + 761 1484 761 1484 867.5 1417.5 c 128,-1,2 + 974 1351 974 1351 1001 1224 c 1,3,-1 + 840 1204 l 1,4,5 + 813 1354 813 1354 588 1354 c 0,6,7 + 463 1354 463 1354 398.5 1314.5 c 128,-1,8 + 334 1275 334 1275 334 1204 c 0,9,10 + 334 1156 334 1156 364 1121 c 128,-1,11 + 394 1086 394 1086 449.5 1060 c 128,-1,12 + 505 1034 505 1034 635 1003 c 0,13,14 + 782 968 782 968 860 926.5 c 128,-1,15 + 938 885 938 885 981 826 c 128,-1,16 + 1024 767 1024 767 1024 686 c 0,17,18 + 1024 587 1024 587 964.5 512 c 128,-1,19 + 905 437 905 437 805 413 c 1,20,21 + 917 365 917 365 967.5 300.5 c 128,-1,22 + 1018 236 1018 236 1018 145 c 0,23,24 + 1018 -3 1018 -3 902.5 -87.5 c 128,-1,25 + 787 -172 787 -172 577 -172 c 0,26,27 + 368 -172 368 -172 258.5 -105.5 c 128,-1,28 + 149 -39 149 -39 115 100 c 1,29,-1 + 276 131 l 1,30,31 + 296 41 296 41 364 0 c 128,-1,32 + 432 -41 432 -41 577 -41 c 0,33,34 + 713 -41 713 -41 785.5 3 c 128,-1,35 + 858 47 858 47 858 129 c 0,36,37 + 858 186 858 186 825 224.5 c 128,-1,38 + 792 263 792 263 730.5 292 c 128,-1,39 + 669 321 669 321 518 358 c 0,40,41 + 324 403 324 403 238.5 481 c 128,-1,42 + 153 559 153 559 153 671 c 0,43,44 + 153 760 153 760 214.5 834 c 128,-1,45 + 276 908 276 908 381 938 c 1,46,47 + 285 970 285 970 229.5 1037 c 128,-1,48 + 174 1104 174 1104 174 1190 c 0,49,50 + 174 1329 174 1329 279.5 1406.5 c 128,-1,51 + 385 1484 385 1484 588 1484 c 0,0,1 +866 663 m 0,52,53 + 866 735 866 735 796.5 787 c 128,-1,54 + 727 839 727 839 551 880 c 1,55,56 + 442 874 442 874 377.5 821 c 128,-1,57 + 313 768 313 768 313 684 c 0,58,59 + 313 635 313 635 342.5 598.5 c 128,-1,60 + 372 562 372 562 427.5 535 c 128,-1,61 + 483 508 483 508 612 475 c 1,62,63 + 731 477 731 477 798.5 527.5 c 128,-1,64 + 866 578 866 578 866 663 c 0,52,53 +EndSplineSet +EndChar + +StartChar: dieresis +Encoding: 168 168 106 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 7 + 4 + 0 + 3 + 4 + 3 + 8 + 9 + 1 + 5 + 4 + 5 + 145 + 89 + 0 + 4 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +439 1219 m 1,0,-1 + 439 1403 l 1,1,-1 + 602 1403 l 1,2,-1 + 602 1219 l 1,3,-1 + 439 1219 l 1,0,-1 +45 1219 m 1,4,-1 + 45 1403 l 1,5,-1 + 210 1403 l 1,6,-1 + 210 1219 l 1,7,-1 + 45 1219 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: copyright +Encoding: 169 169 107 +Width: 1509 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 80 + 24 + 32 + 44 + 49 + 38 + 44 + 38 + 8 + 16 + 0 + 8 + 0 + 56 + 57 + 37 + 41 + 41 + 35 + 201 + 89 + 47 + 53 + 201 + 89 + 50 + 47 + 15 + 41 + 127 + 41 + 2 + 15 + 41 + 31 + 41 + 127 + 41 + 143 + 41 + 159 + 41 + 255 + 41 + 6 + 0 + 47 + 1 + 0 + 47 + 16 + 47 + 112 + 47 + 128 + 47 + 144 + 47 + 240 + 47 + 6 + 9 + 3 + 41 + 47 + 41 + 47 + 4 + 12 + 12 + 20 + 200 + 89 + 12 + 4 + 4 + 28 + 200 + 89 + 4 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +SRP1 +SHP[rp1] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1477 707 m 0,0,1 + 1477 514 1477 514 1380.5 345.5 c 128,-1,2 + 1284 177 1284 177 1115.5 80.5 c 128,-1,3 + 947 -16 947 -16 754 -16 c 0,4,5 + 557 -16 557 -16 387.5 84.5 c 128,-1,6 + 218 185 218 185 124.5 351.5 c 128,-1,7 + 31 518 31 518 31 707 c 0,8,9 + 31 900 31 900 128 1068 c 128,-1,10 + 225 1236 225 1236 393 1333 c 128,-1,11 + 561 1430 561 1430 754 1430 c 0,12,13 + 948 1430 948 1430 1116.5 1332.5 c 128,-1,14 + 1285 1235 1285 1235 1381 1068 c 128,-1,15 + 1477 901 1477 901 1477 707 c 0,0,1 +1385 707 m 256,16,17 + 1385 876 1385 876 1301 1020.5 c 128,-1,18 + 1217 1165 1217 1165 1070.5 1250 c 128,-1,19 + 924 1335 924 1335 754 1335 c 0,20,21 + 586 1335 586 1335 440 1250.5 c 128,-1,22 + 294 1166 294 1166 210 1020 c 128,-1,23 + 126 874 126 874 126 707 c 0,24,25 + 126 538 126 538 210.5 392 c 128,-1,26 + 295 246 295 246 440 162 c 128,-1,27 + 585 78 585 78 754 78 c 256,28,29 + 923 78 923 78 1070 162 c 128,-1,30 + 1217 246 1217 246 1301 392 c 128,-1,31 + 1385 538 1385 538 1385 707 c 256,16,17 +498 709 m 0,32,33 + 498 554 498 554 569 468.5 c 128,-1,34 + 640 383 640 383 765 383 c 0,35,36 + 923 383 923 383 998 539 c 1,37,-1 + 1113 504 l 1,38,39 + 1051 383 1051 383 966.5 331 c 128,-1,40 + 882 279 882 279 765 279 c 0,41,42 + 577 279 577 279 473 392 c 128,-1,43 + 369 505 369 505 369 709 c 0,44,45 + 369 912 369 912 469 1022.5 c 128,-1,46 + 569 1133 569 1133 758 1133 c 0,47,48 + 1002 1133 1002 1133 1098 924 c 1,49,-1 + 984 891 l 1,50,51 + 952 960 952 960 894 994 c 128,-1,52 + 836 1028 836 1028 760 1028 c 0,53,54 + 633 1028 633 1028 565.5 947.5 c 128,-1,55 + 498 867 498 867 498 709 c 0,32,33 +EndSplineSet +EndChar + +StartChar: ordfeminine +Encoding: 170 170 108 +Width: 758 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 81 + 14 + 15 + 15 + 44 + 3 + 33 + 7 + 39 + 39 + 28 + 22 + 3 + 22 + 46 + 47 + 7 + 40 + 228 + 89 + 14 + 24 + 15 + 21 + 72 + 14 + 32 + 10 + 14 + 72 + 14 + 7 + 7 + 0 + 18 + 25 + 36 + 0 + 36 + 228 + 89 + 30 + 30 + 0 + 0 + 32 + 0 + 80 + 0 + 3 + 9 + 3 + 0 + 0 + 18 + 18 + 11 + 228 + 89 + 18 + 222 + 192 + 47 + 1 + 144 + 47 + 1 + 128 + 47 + 1 + 112 + 47 + 1 + 96 + 47 + 1 + 80 + 47 + 1 + 64 + 47 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +260 651 m 0,0,1 + 152 651 152 651 89 709 c 128,-1,2 + 26 767 26 767 26 870 c 0,3,4 + 26 986 26 986 104.5 1048 c 128,-1,5 + 183 1110 183 1110 338 1112 c 2,6,-1 + 516 1116 l 1,7,-1 + 516 1176 l 2,8,9 + 516 1257 516 1257 481 1294 c 128,-1,10 + 446 1331 446 1331 365 1331 c 0,11,12 + 298 1331 298 1331 257.5 1301.5 c 128,-1,13 + 217 1272 217 1272 208 1196 c 1,14,-1 + 59 1206 l 1,15,16 + 75 1312 75 1312 154.5 1372 c 128,-1,17 + 234 1432 234 1432 363 1432 c 0,18,19 + 508 1432 508 1432 583.5 1369.5 c 128,-1,20 + 659 1307 659 1307 659 1182 c 2,21,-1 + 659 874 l 2,22,23 + 659 816 659 816 673 791 c 128,-1,24 + 687 766 687 766 722 766 c 0,25,26 + 741 766 741 766 765 774 c 1,27,-1 + 765 670 l 1,28,29 + 716 657 716 657 682 657 c 0,30,31 + 609 657 609 657 568.5 695 c 128,-1,32 + 528 733 528 733 524 798 c 1,33,-1 + 520 798 l 1,34,35 + 447 651 447 651 260 651 c 0,0,1 +299 762 m 0,36,37 + 389 762 389 762 452.5 821 c 128,-1,38 + 516 880 516 880 516 959 c 2,39,-1 + 516 1024 l 1,40,-1 + 378 1020 l 2,41,42 + 260 1014 260 1014 218 981 c 128,-1,43 + 176 948 176 948 176 883 c 0,44,45 + 176 762 176 762 299 762 c 0,36,37 +EndSplineSet +EndChar + +StartChar: guillemotleft +Encoding: 171 171 109 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 5 + 8 + 6 + 1 + 15 + 10 + 14 + 17 + 10 + 1 + 17 + 8 + 4 + 19 + 18 + 9 + 0 + 3 + 0 + 239 + 91 + 12 + 15 + 3 + 47 + 3 + 111 + 3 + 127 + 3 + 4 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +886 141 m 1,0,-1 + 548 506 l 1,1,-1 + 548 569 l 1,2,-1 + 886 940 l 1,3,-1 + 1054 940 l 1,4,-1 + 1054 909 l 1,5,-1 + 716 537 l 1,6,-1 + 1056 170 l 1,7,-1 + 1056 141 l 1,8,-1 + 886 141 l 1,0,-1 +419 141 m 1,9,-1 + 83 506 l 1,10,-1 + 83 569 l 1,11,-1 + 419 940 l 1,12,-1 + 586 940 l 1,13,-1 + 586 909 l 1,14,-1 + 251 537 l 1,15,-1 + 588 170 l 1,16,-1 + 588 141 l 1,17,-1 + 419 141 l 1,9,-1 +EndSplineSet +EndChar + +StartChar: logicalnot +Encoding: 172 172 110 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 0 + 5 + 2 + 5 + 6 + 7 + 3 + 2 + 173 + 89 + 0 + 3 + 179 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +950 180 m 1,0,-1 + 950 608 l 1,1,-1 + 100 608 l 1,2,-1 + 100 754 l 1,3,-1 + 1095 754 l 1,4,-1 + 1095 180 l 1,5,-1 + 950 180 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni00AD +Encoding: 173 173 111 +Width: 682 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 16 45 N 1 0 0 1 0 0 2 +EndChar + +StartChar: registered +Encoding: 174 174 112 +Width: 1509 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 74 + 16 + 0 + 46 + 41 + 41 + 32 + 45 + 33 + 44 + 44 + 51 + 45 + 51 + 35 + 35 + 36 + 24 + 8 + 8 + 36 + 45 + 0 + 4 + 56 + 55 + 32 + 32 + 36 + 44 + 34 + 51 + 34 + 201 + 89 + 37 + 50 + 201 + 89 + 15 + 36 + 31 + 36 + 2 + 223 + 37 + 1 + 0 + 37 + 16 + 37 + 2 + 9 + 3 + 36 + 51 + 37 + 37 + 51 + 36 + 3 + 4 + 12 + 12 + 20 + 200 + 89 + 12 + 4 + 4 + 28 + 200 + 89 + 4 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP1 +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1477 707 m 0,0,1 + 1477 514 1477 514 1380.5 345.5 c 128,-1,2 + 1284 177 1284 177 1115.5 80.5 c 128,-1,3 + 947 -16 947 -16 754 -16 c 0,4,5 + 557 -16 557 -16 387.5 84.5 c 128,-1,6 + 218 185 218 185 124.5 351.5 c 128,-1,7 + 31 518 31 518 31 707 c 0,8,9 + 31 900 31 900 128 1068 c 128,-1,10 + 225 1236 225 1236 393 1333 c 128,-1,11 + 561 1430 561 1430 754 1430 c 0,12,13 + 948 1430 948 1430 1116.5 1332.5 c 128,-1,14 + 1285 1235 1285 1235 1381 1068 c 128,-1,15 + 1477 901 1477 901 1477 707 c 0,0,1 +1385 707 m 256,16,17 + 1385 876 1385 876 1301 1020.5 c 128,-1,18 + 1217 1165 1217 1165 1070.5 1250 c 128,-1,19 + 924 1335 924 1335 754 1335 c 0,20,21 + 586 1335 586 1335 440 1250.5 c 128,-1,22 + 294 1166 294 1166 210 1020 c 128,-1,23 + 126 874 126 874 126 707 c 0,24,25 + 126 538 126 538 210.5 392 c 128,-1,26 + 295 246 295 246 440 162 c 128,-1,27 + 585 78 585 78 754 78 c 256,28,29 + 923 78 923 78 1070 162 c 128,-1,30 + 1217 246 1217 246 1301 392 c 128,-1,31 + 1385 538 1385 538 1385 707 c 256,16,17 +955 289 m 1,32,-1 + 756 625 l 1,33,-1 + 595 625 l 1,34,-1 + 595 289 l 1,35,-1 + 468 289 l 1,36,-1 + 468 1120 l 1,37,-1 + 775 1120 l 2,38,39 + 917 1120 917 1120 992.5 1057 c 128,-1,40 + 1068 994 1068 994 1068 883 c 0,41,42 + 1068 781 1068 781 1016 719.5 c 128,-1,43 + 964 658 964 658 879 639 c 1,44,-1 + 1100 289 l 1,45,-1 + 955 289 l 1,32,-1 +941 881 m 0,46,47 + 941 950 941 950 893.5 986 c 128,-1,48 + 846 1022 846 1022 765 1022 c 2,49,-1 + 595 1022 l 1,50,-1 + 595 721 l 1,51,-1 + 777 721 l 2,52,53 + 857 721 857 721 899 763.5 c 128,-1,54 + 941 806 941 806 941 881 c 0,46,47 +EndSplineSet +EndChar + +StartChar: overscore +Encoding: 175 175 113 +Width: 1131 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 0 + 5 + 1 + 4 + 1 + 2 + 140 + 89 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1148 1452 m 1,0,-1 + -17 1452 l 1,1,-1 + -17 1546 l 1,2,-1 + 1148 1546 l 1,3,-1 + 1148 1452 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: degree +Encoding: 176 176 114 +Width: 819 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 12 + 0 + 18 + 6 + 0 + 6 + 25 + 24 + 3 + 21 + 175 + 89 + 3 + 9 + 64 + 9 + 15 + 175 + 89 + 9 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +696 1145 m 256,0,1 + 696 1026 696 1026 611.5 943 c 128,-1,2 + 527 860 527 860 409 860 c 256,3,4 + 291 860 291 860 206.5 944 c 128,-1,5 + 122 1028 122 1028 122 1145 c 256,6,7 + 122 1262 122 1262 205.5 1346 c 128,-1,8 + 289 1430 289 1430 409 1430 c 256,9,10 + 529 1430 529 1430 612.5 1347 c 128,-1,11 + 696 1264 696 1264 696 1145 c 256,0,1 +587 1145 m 0,12,13 + 587 1221 587 1221 535.5 1273 c 128,-1,14 + 484 1325 484 1325 409 1325 c 256,15,16 + 334 1325 334 1325 282.5 1272 c 128,-1,17 + 231 1219 231 1219 231 1145 c 256,18,19 + 231 1071 231 1071 283.5 1018 c 128,-1,20 + 336 965 336 965 409 965 c 0,21,22 + 483 965 483 965 535 1017.5 c 128,-1,23 + 587 1070 587 1070 587 1145 c 0,12,13 +EndSplineSet +EndChar + +StartChar: plusminus +Encoding: 177 177 115 +Width: 1124 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 13 + 4 + 9 + 1 + 1 + 6 + 2 + 14 + 11 + 11 + 2 + 4 + 3 + 16 + 17 + 12 + 13 + 173 + 89 + 12 + 0 + 2 + 1 + 18 + 6 + 2 + 0 + 4 + 5 + 4 + 173 + 89 + 9 + 152 + 7 + 1 + 7 + 239 + 5 + 1 + 80 + 5 + 128 + 5 + 160 + 5 + 208 + 5 + 4 + 5 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHP[rp1] +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SDS +SDB +DELTAP1 +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +636 680 m 1,0,-1 + 636 285 l 1,1,-1 + 489 285 l 1,2,-1 + 489 680 l 1,3,-1 + 65 680 l 1,4,-1 + 65 825 l 1,5,-1 + 489 825 l 1,6,-1 + 489 1219 l 1,7,-1 + 636 1219 l 1,8,-1 + 636 825 l 1,9,-1 + 1060 825 l 1,10,-1 + 1060 680 l 1,11,-1 + 636 680 l 1,0,-1 +65 0 m 1,12,-1 + 65 145 l 1,13,-1 + 1060 145 l 1,14,-1 + 1060 0 l 1,15,-1 + 65 0 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: twosuperior +Encoding: 178 178 116 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 13 + 14 + 14 + 25 + 0 + 26 + 7 + 20 + 0 + 20 + 28 + 29 + 7 + 25 + 13 + 17 + 17 + 10 + 228 + 89 + 17 + 222 + 1 + 25 + 0 + 25 + 229 + 89 + 0 + 223 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +43 563 m 1,0,-1 + 41 666 l 1,1,2 + 72 735 72 735 136.5 800.5 c 128,-1,3 + 201 866 201 866 308 940 c 0,4,5 + 405 1008 405 1008 449 1064 c 128,-1,6 + 493 1120 493 1120 493 1178 c 0,7,8 + 493 1240 493 1240 457.5 1277.5 c 128,-1,9 + 422 1315 422 1315 348 1315 c 0,10,11 + 280 1315 280 1315 236 1278.5 c 128,-1,12 + 192 1242 192 1242 184 1174 c 1,13,-1 + 51 1182 l 1,14,15 + 64 1289 64 1289 144.5 1355 c 128,-1,16 + 225 1421 225 1421 354 1421 c 0,17,18 + 481 1421 481 1421 555.5 1359.5 c 128,-1,19 + 630 1298 630 1298 630 1188 c 0,20,21 + 630 1041 630 1041 442 903 c 0,22,23 + 320 813 320 813 270 767 c 128,-1,24 + 220 721 220 721 200 676 c 1,25,-1 + 643 676 l 1,26,-1 + 643 563 l 1,27,-1 + 43 563 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: threesuperior +Encoding: 179 179 117 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 79 + 24 + 25 + 25 + 6 + 5 + 34 + 13 + 18 + 31 + 31 + 0 + 13 + 10 + 5 + 10 + 0 + 5 + 0 + 38 + 39 + 35 + 14 + 13 + 14 + 13 + 228 + 89 + 168 + 14 + 184 + 14 + 200 + 14 + 3 + 63 + 14 + 79 + 14 + 2 + 3 + 14 + 14 + 3 + 47 + 24 + 63 + 24 + 79 + 24 + 3 + 13 + 24 + 29 + 24 + 2 + 11 + 4 + 24 + 28 + 28 + 21 + 228 + 89 + 28 + 222 + 3 + 8 + 228 + 89 + 37 + 6 + 53 + 6 + 69 + 6 + 3 + 6 + 3 + 221 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SDS +SDB +DELTAP1 +DELTAP1 +SRP2 +IP +RTG +MDAP[rnd] +SDS +DELTAP1 +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +642 795 m 0,0,1 + 642 679 642 679 564.5 615 c 128,-1,2 + 487 551 487 551 345 551 c 0,3,4 + 59 551 59 551 27 778 c 1,5,-1 + 163 791 l 1,6,7 + 181 655 181 655 345 655 c 0,8,9 + 505 655 505 655 505 803 c 0,10,11 + 505 940 505 940 316 940 c 2,12,-1 + 255 940 l 1,13,-1 + 255 1049 l 1,14,-1 + 312 1049 l 2,15,16 + 392 1049 392 1049 438 1085 c 128,-1,17 + 484 1121 484 1121 484 1186 c 0,18,19 + 484 1246 484 1246 447 1280.5 c 128,-1,20 + 410 1315 410 1315 339 1315 c 0,21,22 + 271 1315 271 1315 229 1280 c 128,-1,23 + 187 1245 187 1245 181 1180 c 1,24,-1 + 46 1192 l 1,25,26 + 59 1301 59 1301 137.5 1361 c 128,-1,27 + 216 1421 216 1421 343 1421 c 0,28,29 + 473 1421 473 1421 547 1361.5 c 128,-1,30 + 621 1302 621 1302 621 1204 c 0,31,32 + 621 1129 621 1129 578 1074 c 128,-1,33 + 535 1019 535 1019 445 999 c 1,34,-1 + 445 997 l 1,35,36 + 536 988 536 988 589 935.5 c 128,-1,37 + 642 883 642 883 642 795 c 0,0,1 +EndSplineSet +EndChar + +StartChar: acute +Encoding: 180 180 118 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 3 + 0 + 7 + 6 + 0 + 2 + 149 + 91 + 15 + 0 + 47 + 0 + 63 + 0 + 127 + 0 + 239 + 0 + 5 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +72 1201 m 1,0,-1 + 72 1221 l 1,1,-1 + 289 1508 l 1,2,-1 + 496 1508 l 1,3,-1 + 496 1479 l 1,4,-1 + 166 1201 l 1,5,-1 + 72 1201 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: mu1 +Encoding: 181 181 119 +Width: 1180 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 23 + 10 + 10 + 17 + 11 + 30 + 2 + 2 + 1 + 11 + 1 + 32 + 31 + 23 + 6 + 26 + 6 + 80 + 89 + 26 + 22 + 20 + 15 + 80 + 89 + 20 + 22 + 10 + 1 + 15 + 0 + 27 + 224 + 32 + 1 + 208 + 32 + 1 + 192 + 32 + 1 + 176 + 32 + 1 + 128 + 32 + 1 + 96 + 32 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +140 -425 m 1,0,-1 + 140 1082 l 1,1,-1 + 321 1082 l 1,2,-1 + 321 396 l 2,3,4 + 321 258 321 258 374.5 188.5 c 128,-1,5 + 428 119 428 119 547 119 c 0,6,7 + 675 119 675 119 748 206 c 128,-1,8 + 821 293 821 293 821 455 c 2,9,-1 + 821 1082 l 1,10,-1 + 1001 1082 l 1,11,-1 + 1001 266 l 2,12,13 + 1001 190 1001 190 1019 155.5 c 128,-1,14 + 1037 121 1037 121 1079 121 c 0,15,16 + 1104 121 1104 121 1133 129 c 1,17,-1 + 1133 0 l 1,18,19 + 1068 -20 1068 -20 1020 -20 c 0,20,21 + 929 -20 929 -20 881.5 27 c 128,-1,22 + 834 74 834 74 829 174 c 1,23,-1 + 826 174 l 1,24,25 + 720 -20 720 -20 527 -20 c 0,26,27 + 460 -20 460 -20 405.5 0.5 c 128,-1,28 + 351 21 351 21 320 59 c 1,29,-1 + 320 -425 l 1,30,-1 + 140 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: paragraph +Encoding: 182 182 120 +Width: 1100 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 5 + 6 + 15 + 2 + 1 + 1 + 6 + 10 + 3 + 16 + 17 + 7 + 7 + 1 + 0 + 4 + 13 + 3 + 6 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +MDRP[min,rnd,black] +SHP[rp2] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +884 1307 m 1,0,-1 + 884 -264 l 1,1,-1 + 772 -264 l 1,2,-1 + 772 1307 l 1,3,-1 + 555 1307 l 1,4,-1 + 555 -264 l 1,5,-1 + 442 -264 l 1,6,-1 + 442 694 l 1,7,8 + 274 694 274 694 177 786.5 c 128,-1,9 + 80 879 80 879 80 1049 c 0,10,11 + 80 1218 80 1218 178.5 1313.5 c 128,-1,12 + 277 1409 277 1409 450 1409 c 2,13,-1 + 1013 1409 l 1,14,-1 + 1013 1307 l 1,15,-1 + 884 1307 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: middot +Encoding: 183 183 121 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 0 + 95 + 0 + 111 + 0 + 127 + 0 + 3 +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 2116 8729 N 1 0 0 1 56 0 2 +EndChar + +StartChar: cedilla +Encoding: 184 184 122 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 9 + 0 + 15 + 16 + 16 + 14 + 13 + 13 + 4 + 0 + 0 + 4 + 20 + 19 + 11 + 64 + 16 + 64 + 9 + 13 + 72 + 16 + 16 + 2 + 14 + 2 + 7 + 140 + 89 + 32 + 2 + 80 + 2 + 96 + 2 + 112 + 2 + 176 + 2 + 192 + 2 + 6 + 2 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +483 -253 m 0,0,1 + 483 -434 483 -434 209 -434 c 0,2,3 + 152 -434 152 -434 119 -430 c 1,4,-1 + 119 -332 l 1,5,6 + 168 -338 168 -338 205 -338 c 0,7,8 + 352 -338 352 -338 352 -257 c 0,9,10 + 352 -180 352 -180 219 -180 c 0,11,12 + 176 -180 176 -180 162 -182 c 1,13,-1 + 227 0 l 1,14,-1 + 334 0 l 1,15,-1 + 295 -100 l 1,16,17 + 389 -103 389 -103 436 -143.5 c 128,-1,18 + 483 -184 483 -184 483 -253 c 0,0,1 +EndSplineSet +EndChar + +StartChar: onesuperior +Encoding: 185 185 123 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 9 + 8 + 8 + 7 + 6 + 4 + 0 + 2 + 2 + 11 + 12 + 0 + 5 + 16 + 5 + 2 + 11 + 3 + 5 + 4 + 4 + 3 + 6 + 220 + 9 + 1 + 0 + 1 + 228 + 89 + 0 + 223 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +80 563 m 1,0,-1 + 80 670 l 1,1,-1 + 291 670 l 1,2,-1 + 291 1290 l 1,3,-1 + 89 1152 l 1,4,-1 + 89 1272 l 1,5,-1 + 299 1409 l 1,6,-1 + 422 1409 l 1,7,-1 + 422 670 l 1,8,-1 + 637 670 l 1,9,-1 + 637 563 l 1,10,-1 + 80 563 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: ordmasculine +Encoding: 186 186 124 +Width: 748 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 17 + 6 + 11 + 0 + 6 + 0 + 23 + 24 + 3 + 20 + 228 + 89 + 0 + 3 + 32 + 3 + 80 + 3 + 3 + 9 + 3 + 3 + 3 + 9 + 9 + 14 + 228 + 89 + 9 + 222 + 239 + 24 + 1 + 128 + 24 + 1 + 112 + 24 + 1 + 47 + 24 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +723 1042 m 0,0,1 + 723 854 723 854 635 752.5 c 128,-1,2 + 547 651 547 651 372 651 c 0,3,4 + 204 651 204 651 115.5 751.5 c 128,-1,5 + 27 852 27 852 27 1042 c 0,6,7 + 27 1231 27 1231 116 1331.5 c 128,-1,8 + 205 1432 205 1432 376 1432 c 0,9,10 + 723 1432 723 1432 723 1042 c 0,0,1 +574 1042 m 0,11,12 + 574 1196 574 1196 528.5 1261.5 c 128,-1,13 + 483 1327 483 1327 379 1327 c 0,14,15 + 271 1327 271 1327 225 1259.5 c 128,-1,16 + 179 1192 179 1192 179 1042 c 0,17,18 + 179 897 179 897 224.5 826.5 c 128,-1,19 + 270 756 270 756 371 756 c 0,20,21 + 482 756 482 756 528 825 c 128,-1,22 + 574 894 574 894 574 1042 c 0,11,12 +EndSplineSet +EndChar + +StartChar: guillemotright +Encoding: 187 187 125 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 3 + 8 + 12 + 17 + 4 + 1 + 13 + 10 + 10 + 17 + 1 + 8 + 4 + 19 + 18 + 10 + 0 + 5 + 0 + 239 + 91 + 14 + 15 + 5 + 47 + 5 + 111 + 5 + 127 + 5 + 4 + 5 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +718 141 m 1,0,-1 + 550 141 l 1,1,-1 + 550 170 l 1,2,-1 + 888 537 l 1,3,-1 + 552 909 l 1,4,-1 + 552 940 l 1,5,-1 + 718 940 l 1,6,-1 + 1056 569 l 1,7,-1 + 1056 506 l 1,8,-1 + 718 141 l 1,0,-1 +253 141 m 1,9,-1 + 83 141 l 1,10,-1 + 83 170 l 1,11,-1 + 421 537 l 1,12,-1 + 85 909 l 1,13,-1 + 85 940 l 1,14,-1 + 253 940 l 1,15,-1 + 588 569 l 1,16,-1 + 588 506 l 1,17,-1 + 253 141 l 1,9,-1 +EndSplineSet +EndChar + +StartChar: onequarter +Encoding: 188 188 126 +Width: 1708 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 1 + 12 + 191 + 12 + 1 + 16 + 12 + 96 + 12 + 112 + 12 + 3 + 3 + 2 + 17 + 24 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 123 185 N 1 0 0 1 -24 0 2 +Refer: 2046 8260 N 1 0 0 1 761 0 2 +Refer: 2054 8308 N 1 0 0 1 952 -561 2 +EndChar + +StartChar: onehalf +Encoding: 189 189 127 +Width: 1708 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 2 + 15 + 47 + 15 + 111 + 15 + 2 + 1 + 12 + 191 + 12 + 1 + 16 + 12 + 96 + 12 + 112 + 12 + 3 + 47 + 44 + 1 + 2 + 15 + 24 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +DELTAP1 +SRP1 +SHC[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 123 185 N 1 0 0 1 -24 0 2 +Refer: 2046 8260 N 1 0 0 1 761 0 2 +Refer: 116 178 N 1 0 0 1 1010 -561 2 +EndChar + +StartChar: threequarters +Encoding: 190 190 128 +Width: 1708 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 0 + 0 + 95 + 0 + 1 + 16 + 0 + 96 + 0 + 112 + 0 + 3 + 47 + 60 + 1 + 1 + 2 + 6 + 24 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 2046 8260 N 1 0 0 1 781 0 2 +Refer: 2054 8308 N 1 0 0 1 952 -561 2 +Refer: 117 179 N 1 0 0 1 46 0 2 +EndChar + +StartChar: questiondown +Encoding: 191 191 129 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 52 + 9 + 8 + 8 + 32 + 33 + 33 + 0 + 24 + 24 + 25 + 18 + 0 + 25 + 0 + 36 + 35 + 18 + 28 + 8 + 33 + 64 + 34 + 33 + 156 + 91 + 34 + 15 + 3 + 24 + 1 + 13 + 3 + 24 + 28 + 28 + 21 + 95 + 89 + 47 + 28 + 63 + 28 + 2 + 111 + 28 + 207 + 28 + 2 + 28 + 32 + 36 + 1 +DELTAP1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SDS +SDB +DELTAP1 +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,white] +SRP1 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +131 50 m 0,0,1 + 131 125 131 125 153 184 c 128,-1,2 + 175 243 175 243 216 293 c 128,-1,3 + 257 343 257 343 350 411 c 2,4,-1 + 431 470 l 2,5,6 + 502 522 502 522 537 579.5 c 128,-1,7 + 572 637 572 637 573 705 c 1,8,-1 + 748 705 l 1,9,10 + 746 636 746 636 726.5 584 c 128,-1,11 + 707 532 707 532 676 492 c 128,-1,12 + 645 452 645 452 606 420.5 c 128,-1,13 + 567 389 567 389 527 360.5 c 128,-1,14 + 487 332 487 332 448.5 303.5 c 128,-1,15 + 410 275 410 275 380 240 c 128,-1,16 + 350 205 350 205 331.5 161 c 128,-1,17 + 313 117 313 117 313 58 c 0,18,19 + 313 -56 313 -56 390.5 -122 c 128,-1,20 + 468 -188 468 -188 608 -188 c 256,21,22 + 748 -188 748 -188 830 -118 c 128,-1,23 + 912 -48 912 -48 926 74 c 1,24,-1 + 1110 62 l 1,25,26 + 1084 -136 1084 -136 954 -242 c 128,-1,27 + 824 -348 824 -348 610 -348 c 0,28,29 + 387 -348 387 -348 259 -242.5 c 128,-1,30 + 131 -137 131 -137 131 50 c 0,0,1 +756 1082 m 1,31,-1 + 756 881 l 1,32,-1 + 561 881 l 1,33,-1 + 561 1082 l 1,34,-1 + 756 1082 l 1,31,-1 +EndSplineSet +EndChar + +StartChar: Agrave +Encoding: 192 192 130 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 17 + 17 + 5 + 38 + 2 + 18 +PUSHW_1 + -31 +PUSHB_5 + 18 + 21 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 334 0 2 +EndChar + +StartChar: Aacute +Encoding: 193 193 131 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 17 + 5 + 38 + 2 + 17 + 76 + 17 + 20 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 475 0 2 +EndChar + +StartChar: Acircumflex +Encoding: 194 194 132 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 18 + 18 + 5 + 38 + 2 + 23 + 0 + 23 + 17 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 352 0 2 +EndChar + +StartChar: Atilde +Encoding: 195 195 133 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 17 + 17 + 5 + 38 + 2 + 26 + 2 + 26 + 38 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 350 0 2 +EndChar + +StartChar: Adieresis +Encoding: 196 196 134 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 17 + 17 + 5 + 38 + 3 + 2 + 21 + 4 + 21 + 19 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 364 0 2 +EndChar + +StartChar: Aring +Encoding: 197 197 135 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 3 + 2 + 38 + 3 + 3 + 2 + 23 + 54 + 23 + 1 + 69 + 23 + 1 + 83 + 23 + 115 + 23 + 2 + 34 + 23 + 98 + 23 + 2 + 3 + 23 + 17 + 4 + 7 + 37 +CALL +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 668 730 N 1 0 0 1 393 136 2 +EndChar + +StartChar: AE +Encoding: 198 198 136 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 59 + 2 + 19 + 3 + 17 + 3 + 4 + 17 + 9 + 13 + 13 + 20 + 5 + 11 + 7 + 0 + 14 + 14 + 0 + 4 + 3 + 21 + 22 + 19 + 2 + 95 + 89 + 19 + 19 + 5 + 4 + 9 + 12 + 95 + 89 + 15 + 9 + 1 + 8 + 3 + 9 + 9 + 0 + 5 + 16 + 8 + 5 + 8 + 95 + 89 + 5 + 3 + 4 + 18 + 0 + 13 + 95 + 89 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SRP2 +IP +IP +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1780 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2048 1840 basechar 0 +AnchorPoint: "Anchor-20" 2048 -380 basechar 0 +AnchorPoint: "Anchor-16" 1300 1540 basechar 0 +AnchorPoint: "Anchor-15" 1880 1540 basechar 0 +AnchorPoint: "Anchor-14" 1060 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +969 0 m 1,0,-1 + 969 412 l 1,1,-1 + 421 412 l 1,2,-1 + 223 0 l 1,3,-1 + 24 0 l 1,4,-1 + 710 1409 l 1,5,-1 + 1919 1409 l 1,6,-1 + 1919 1253 l 1,7,-1 + 1160 1253 l 1,8,-1 + 1160 801 l 1,9,-1 + 1859 801 l 1,10,-1 + 1859 647 l 1,11,-1 + 1160 647 l 1,12,-1 + 1160 156 l 1,13,-1 + 1960 156 l 1,14,-1 + 1960 0 l 1,15,-1 + 969 0 l 1,0,-1 +969 1262 m 1,16,-1 + 818 1262 l 1,17,-1 + 790 1199 l 1,18,-1 + 491 561 l 1,19,-1 + 969 561 l 1,20,-1 + 969 1262 l 1,16,-1 +EndSplineSet +EndChar + +StartChar: Ccedilla +Encoding: 199 199 137 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 30 + 58 + 30 + 26 + 16 + 9 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 780 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 38 67 N 1 0 0 1 0 0 3 +Refer: 122 184 N 1 0 0 1 510 0 2 +EndChar + +StartChar: Egrave +Encoding: 200 200 138 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 12 + 12 + 5 + 38 + 1 + 13 +PUSHW_1 + -86 +PUSHB_5 + 13 + 16 + 0 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 319 0 2 +EndChar + +StartChar: Eacute +Encoding: 201 201 139 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 12 + 5 + 38 + 1 + 12 + 40 + 12 + 15 + 0 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 479 0 2 +EndChar + +StartChar: Ecircumflex +Encoding: 202 202 140 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 13 + 13 + 5 + 38 + 1 + 18 +PUSHW_1 + -17 +PUSHB_5 + 18 + 12 + 0 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 375 0 2 +EndChar + +StartChar: Edieresis +Encoding: 203 203 141 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 12 + 12 + 5 + 38 + 2 + 1 + 16 +PUSHW_1 + -22 +PUSHB_5 + 16 + 14 + 0 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 377 0 2 +EndChar + +StartChar: Igrave +Encoding: 204 204 142 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 4 + 4 + 5 + 38 + 1 + 5 +PUSHW_1 + -63 +PUSHB_5 + 5 + 8 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 -97 0 2 +EndChar + +StartChar: Iacute +Encoding: 205 205 143 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 4 + 5 + 38 + 1 + 4 + 69 + 4 + 7 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 70 0 2 +EndChar + +StartChar: Icircumflex +Encoding: 206 206 144 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 5 + 5 + 5 + 38 + 1 + 10 + 0 + 10 + 4 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-24" 290 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 -46 0 2 +EndChar + +StartChar: Idieresis +Encoding: 207 207 145 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 4 + 4 + 5 + 38 + 2 + 1 + 8 + 1 + 8 + 6 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 -38 0 2 +EndChar + +StartChar: Eth +Encoding: 208 208 146 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 21 + 14 + 23 + 14 + 6 + 19 + 23 + 23 + 13 + 1 + 11 + 6 + 11 + 29 + 28 + 22 + 13 + 0 + 13 + 95 + 89 + 19 + 15 + 0 + 1 + 32 + 3 + 0 + 0 + 23 + 2 + 11 + 23 + 95 + 89 + 11 + 18 + 2 + 18 + 95 + 89 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 670 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +14 801 m 1,0,-1 + 168 801 l 1,1,-1 + 168 1409 l 1,2,-1 + 634 1409 l 2,3,4 + 992 1409 992 1409 1186.5 1229.5 c 128,-1,5 + 1381 1050 1381 1050 1381 719 c 0,6,7 + 1381 501 1381 501 1296 337.5 c 128,-1,8 + 1211 174 1211 174 1055 87 c 128,-1,9 + 899 0 899 0 695 0 c 2,10,-1 + 168 0 l 1,11,-1 + 168 647 l 1,12,-1 + 14 647 l 1,13,-1 + 14 801 l 1,0,-1 +1189 719 m 0,14,15 + 1189 981 1189 981 1045.5 1118.5 c 128,-1,16 + 902 1256 902 1256 630 1256 c 2,17,-1 + 359 1256 l 1,18,-1 + 359 801 l 1,19,-1 + 765 801 l 1,20,-1 + 765 647 l 1,21,-1 + 359 647 l 1,22,-1 + 359 153 l 1,23,-1 + 673 153 l 2,24,25 + 828 153 828 153 945.5 221 c 128,-1,26 + 1063 289 1063 289 1126 417 c 128,-1,27 + 1189 545 1189 545 1189 719 c 0,14,15 +EndSplineSet +EndChar + +StartChar: Ntilde +Encoding: 209 209 147 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 14 + 14 + 5 + 38 + 1 + 23 + 12 + 23 + 35 + 5 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 417 0 2 +EndChar + +StartChar: Ograve +Encoding: 210 210 148 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 27 + 27 + 5 + 38 + 2 + 28 +PUSHW_1 + -40 +PUSHB_5 + 28 + 31 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-19" 1180 1300 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 438 0 2 +EndChar + +StartChar: Oacute +Encoding: 211 211 149 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 27 + 5 + 38 + 2 + 27 + 37 + 27 + 30 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-19" 1180 1300 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 549 0 2 +EndChar + +StartChar: Ocircumflex +Encoding: 212 212 150 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 28 + 28 + 5 + 38 + 2 + 33 + 4 + 33 + 27 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 469 0 2 +EndChar + +StartChar: Otilde +Encoding: 213 213 151 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 27 + 27 + 5 + 38 + 2 + 36 +PUSHW_1 + -11 +PUSHB_5 + 36 + 48 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-19" 1180 1300 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 449 0 2 +EndChar + +StartChar: Odieresis +Encoding: 214 214 152 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 27 + 27 + 5 + 38 + 3 + 2 + 31 +PUSHW_1 + -1 +PUSHB_5 + 31 + 29 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 471 0 2 +EndChar + +StartChar: multiply +Encoding: 215 215 153 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 4 + 10 + 6 + 8 + 2 + 0 + 0 + 10 + 8 + 3 + 13 + 12 + 0 + 7 + 1 + 7 +SVTCA[y-axis] +RTHG +MDAP[rnd] +DELTAP2 +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +142 330 m 1,0,-1 + 496 684 l 1,1,-1 + 144 1036 l 1,2,-1 + 248 1139 l 1,3,-1 + 598 786 l 1,4,-1 + 948 1137 l 1,5,-1 + 1053 1032 l 1,6,-1 + 703 684 l 1,7,-1 + 1055 332 l 1,8,-1 + 953 227 l 1,9,-1 + 600 580 l 1,10,-1 + 244 225 l 1,11,-1 + 142 330 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: Oslash +Encoding: 216 216 154 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 24 + 32 + 29 + 21 + 21 + 18 + 0 + 29 + 8 + 11 + 0 + 11 + 38 + 37 + 31 + 23 + 26 + 34 + 14 + 34 + 95 + 89 + 17 + 14 + 4 + 4 + 26 + 95 + 89 + 7 + 4 + 19 + 32 + 38 + 1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1495 711 m 0,0,1 + 1495 490 1495 490 1410.5 324 c 128,-1,2 + 1326 158 1326 158 1168 69 c 128,-1,3 + 1010 -20 1010 -20 795 -20 c 0,4,5 + 549 -20 549 -20 381 92 c 1,6,-1 + 261 -53 l 1,7,-1 + 71 -53 l 1,8,-1 + 271 188 l 1,9,10 + 97 380 97 380 97 711 c 0,11,12 + 97 1049 97 1049 282 1239.5 c 128,-1,13 + 467 1430 467 1430 797 1430 c 0,14,15 + 1044 1430 1044 1430 1211 1320 c 1,16,-1 + 1332 1466 l 1,17,-1 + 1524 1466 l 1,18,-1 + 1323 1224 l 1,19,20 + 1495 1034 1495 1034 1495 711 c 0,0,1 +1300 711 m 0,21,22 + 1300 935 1300 935 1202 1079 c 1,23,-1 + 493 226 l 1,24,25 + 615 135 615 135 795 135 c 0,26,27 + 1039 135 1039 135 1169.5 285.5 c 128,-1,28 + 1300 436 1300 436 1300 711 c 0,21,22 +291 711 m 0,29,30 + 291 482 291 482 392 333 c 1,31,-1 + 1099 1186 l 1,32,33 + 975 1274 975 1274 797 1274 c 0,34,35 + 555 1274 555 1274 423 1126 c 128,-1,36 + 291 978 291 978 291 711 c 0,29,30 +EndSplineSet +EndChar + +StartChar: Ugrave +Encoding: 217 217 155 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 20 + 20 + 5 + 38 + 1 + 21 +PUSHW_1 + -24 +PUSHB_5 + 21 + 24 + 4 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1260 1300 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 397 0 2 +EndChar + +StartChar: Uacute +Encoding: 218 218 156 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 20 + 5 + 38 + 1 + 20 + 37 + 20 + 23 + 4 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-24" 730 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1260 1300 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 493 0 2 +EndChar + +StartChar: Ucircumflex +Encoding: 219 219 157 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 21 + 21 + 5 + 38 + 1 + 26 + 0 + 26 + 20 + 4 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-24" 730 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 408 0 2 +EndChar + +StartChar: Udieresis +Encoding: 220 220 158 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 20 + 20 + 5 + 38 + 2 + 1 + 24 +PUSHW_1 + -2 +PUSHB_5 + 24 + 22 + 4 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 414 0 2 +EndChar + +StartChar: Yacute +Encoding: 221 221 159 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 9 + 5 + 38 + 1 + 9 + 65 + 9 + 12 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 464 0 2 +EndChar + +StartChar: Thorn +Encoding: 222 222 160 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 19 + 10 + 6 + 6 + 7 + 14 + 0 + 7 + 0 + 23 + 24 + 5 + 19 + 95 + 89 + 10 + 18 + 95 + 89 + 5 + 10 + 5 + 10 + 6 + 8 + 3 + 6 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 550 1580 basechar 0 +AnchorPoint: "Anchor-15" 1120 1260 basechar 0 +AnchorPoint: "Anchor-14" 650 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1258 735 m 0,0,1 + 1258 607 1258 607 1200 507.5 c 128,-1,2 + 1142 408 1142 408 1032.5 352.5 c 128,-1,3 + 923 297 923 297 773 297 c 2,4,-1 + 359 297 l 1,5,-1 + 359 0 l 1,6,-1 + 168 0 l 1,7,-1 + 168 1409 l 1,8,-1 + 359 1409 l 1,9,-1 + 359 1157 l 1,10,-1 + 761 1157 l 2,11,12 + 1000 1157 1000 1157 1129 1046 c 128,-1,13 + 1258 935 1258 935 1258 735 c 0,0,1 +1066 731 m 0,14,15 + 1066 865 1066 865 984 939.5 c 128,-1,16 + 902 1014 902 1014 738 1014 c 2,17,-1 + 359 1014 l 1,18,-1 + 359 438 l 1,19,-1 + 746 438 l 2,20,21 + 899 438 899 438 982.5 515.5 c 128,-1,22 + 1066 593 1066 593 1066 731 c 0,14,15 +EndSplineSet +EndChar + +StartChar: germandbls +Encoding: 223 223 161 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 65 + 31 + 18 + 44 + 24 + 39 + 6 + 32 + 12 + 12 + 0 + 0 + 39 + 44 + 32 + 4 + 50 + 51 + 36 + 24 + 1 + 21 + 24 + 1 + 6 + 24 + 1 + 43 + 12 + 1 + 26 + 12 + 1 + 3 + 15 + 12 + 1 + 20 + 5 + 24 + 12 + 36 + 3 + 36 + 27 + 80 + 89 + 36 + 0 + 32 + 21 + 3 + 9 + 80 + 89 + 3 + 22 + 112 + 51 + 1 + 79 + 51 + 1 + 63 + 51 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SDS +SDB +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1167 295 m 0,0,1 + 1167 145 1167 145 1073 62.5 c 128,-1,2 + 979 -20 979 -20 809 -20 c 0,3,4 + 638 -20 638 -20 526 29 c 1,5,-1 + 524 193 l 1,6,7 + 576 164 576 164 656 144 c 128,-1,8 + 736 124 736 124 805 124 c 0,9,10 + 897 124 897 124 946 167 c 128,-1,11 + 995 210 995 210 995 289 c 0,12,13 + 995 353 995 353 952.5 404 c 128,-1,14 + 910 455 910 455 813 513 c 0,15,16 + 721 567 721 567 675.5 633 c 128,-1,17 + 630 699 630 699 630 785 c 0,18,19 + 630 846 630 846 658.5 896 c 128,-1,20 + 687 946 687 946 741 991 c 0,21,22 + 799 1039 799 1039 825.5 1081 c 128,-1,23 + 852 1123 852 1123 852 1173 c 0,24,25 + 852 1250 852 1250 785 1296.5 c 128,-1,26 + 718 1343 718 1343 609 1343 c 0,27,28 + 461 1343 461 1343 391.5 1263 c 128,-1,29 + 322 1183 322 1183 322 1021 c 2,30,-1 + 322 0 l 1,31,-1 + 142 0 l 1,32,-1 + 142 1027 l 2,33,34 + 142 1254 142 1254 259.5 1369 c 128,-1,35 + 377 1484 377 1484 609 1484 c 0,36,37 + 799 1484 799 1484 911.5 1403.5 c 128,-1,38 + 1024 1323 1024 1323 1024 1187 c 0,39,40 + 1024 1044 1024 1044 911 941 c 0,41,42 + 832 869 832 869 815 844.5 c 128,-1,43 + 798 820 798 820 798 791 c 0,44,45 + 798 753 798 753 825.5 723.5 c 128,-1,46 + 853 694 853 694 894 665.5 c 128,-1,47 + 935 637 935 637 983 605 c 0,48,49 + 1167 481 1167 481 1167 295 c 0,0,1 +EndSplineSet +EndChar + +StartChar: agrave +Encoding: 224 224 162 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 49 + 49 + 17 + 38 + 2 + 50 +PUSHW_1 + -107 +PUSHB_5 + 50 + 53 + 3 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 950 900 basechar 0 +AnchorPoint: "Anchor-16" 460 1580 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 550 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 188 0 2 +EndChar + +StartChar: aacute +Encoding: 225 225 163 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 49 + 17 + 38 + 2 + 49 + 11 + 49 + 52 + 3 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 950 900 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 340 0 2 +EndChar + +StartChar: acircumflex +Encoding: 226 226 164 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 50 + 50 + 17 + 38 + 2 + 55 +PUSHW_1 + -64 +PUSHB_5 + 55 + 49 + 3 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 950 900 basechar 0 +AnchorPoint: "Anchor-16" 460 1580 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 550 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 218 0 2 +EndChar + +StartChar: atilde +Encoding: 227 227 165 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 49 + 49 + 17 + 38 + 2 + 58 +PUSHW_1 + -32 +PUSHB_5 + 58 + 70 + 3 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 950 900 basechar 0 +AnchorPoint: "Anchor-16" 460 1580 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 550 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 245 0 2 +EndChar + +StartChar: adieresis +Encoding: 228 228 166 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 49 + 49 + 17 + 38 + 3 + 2 + 53 +PUSHW_1 + -54 +PUSHB_5 + 53 + 51 + 3 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 950 900 basechar 0 +AnchorPoint: "Anchor-16" 460 1580 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 550 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 235 0 2 +EndChar + +StartChar: aring +Encoding: 229 229 167 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 52 + 52 + 17 + 38 + 3 + 2 + 55 +PUSHW_1 + -56 +PUSHB_5 + 55 + 49 + 3 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 950 900 basechar 0 +AnchorPoint: "Anchor-16" 460 1580 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 550 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 668 730 N 1 0 0 1 264 0 2 +EndChar + +StartChar: ae +Encoding: 230 230 168 +Width: 1821 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 94 + 29 + 30 + 30 + 45 + 18 + 12 + 34 + 52 + 59 + 1 + 1 + 22 + 52 + 52 + 53 + 18 + 53 + 38 + 7 + 8 + 8 + 38 + 18 + 38 + 60 + 61 + 53 + 39 + 80 + 89 + 13 + 53 + 1 + 20 + 4 + 53 + 53 + 12 + 34 + 10 + 36 + 36 + 56 + 80 + 89 + 36 + 16 + 22 + 40 + 81 + 89 + 22 + 22 + 15 + 32 + 63 + 29 + 1 + 15 + 29 + 111 + 29 + 2 + 11 + 3 + 29 + 29 + 32 + 32 + 26 + 80 + 89 + 32 + 16 + 15 + 48 + 80 + 89 + 15 + 22 + 10 + 4 + 80 + 89 + 239 + 7 + 1 + 128 + 7 + 1 + 7 + 7 + 10 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1360 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1821 1540 basechar 0 +AnchorPoint: "Anchor-20" 1821 -380 basechar 0 +AnchorPoint: "Anchor-18" 1680 900 basechar 0 +AnchorPoint: "Anchor-16" 860 1540 basechar 0 +AnchorPoint: "Anchor-15" 1540 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +968 503 m 1,0,-1 + 968 486 l 2,1,2 + 970 305 970 305 1045 210 c 128,-1,3 + 1120 115 1120 115 1260 115 c 0,4,5 + 1377 115 1377 115 1447.5 162 c 128,-1,6 + 1518 209 1518 209 1543 281 c 1,7,-1 + 1701 236 l 1,8,9 + 1604 -20 1604 -20 1260 -20 c 0,10,11 + 939 -20 939 -20 837 237 c 1,12,13 + 758 97 758 97 653 38.5 c 128,-1,14 + 548 -20 548 -20 402 -20 c 0,15,16 + 235 -20 235 -20 150.5 66 c 128,-1,17 + 66 152 66 152 66 302 c 0,18,19 + 66 476 66 476 185 564 c 128,-1,20 + 304 652 304 652 546 656 c 2,21,-1 + 786 660 l 1,22,-1 + 786 719 l 2,23,24 + 786 854 786 854 730.5 909.5 c 128,-1,25 + 675 965 675 965 554 965 c 0,26,27 + 428 965 428 965 371.5 925 c 128,-1,28 + 315 885 315 885 302 793 c 1,29,-1 + 114 810 l 1,30,31 + 160 1102 160 1102 558 1102 c 0,32,33 + 808 1102 808 1102 907 963 c 1,34,35 + 1025 1102 1025 1102 1253 1102 c 0,36,37 + 1730 1102 1730 1102 1730 527 c 2,38,-1 + 1730 503 l 1,39,-1 + 968 503 l 1,0,-1 +786 534 m 1,40,-1 + 591 530 l 2,41,42 + 458 527 458 527 387.5 500.5 c 128,-1,43 + 317 474 317 474 284 423.5 c 128,-1,44 + 251 373 251 373 251 299 c 0,45,46 + 251 212 251 212 301 163.5 c 128,-1,47 + 351 115 351 115 444 115 c 0,48,49 + 546 115 546 115 622.5 159.5 c 128,-1,50 + 699 204 699 204 742.5 281.5 c 128,-1,51 + 786 359 786 359 786 445 c 2,52,-1 + 786 534 l 1,40,-1 +1544 641 m 1,53,54 + 1529 812 1529 812 1457 890.5 c 128,-1,55 + 1385 969 1385 969 1250 969 c 0,56,57 + 1123 969 1123 969 1049.5 883.5 c 128,-1,58 + 976 798 976 798 970 641 c 1,59,-1 + 1544 641 l 1,53,54 +EndSplineSet +EndChar + +StartChar: ccedilla +Encoding: 231 231 169 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 30 + 40 + 30 + 26 + 13 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 550 1200 basechar 0 +AnchorPoint: "Anchor-15" 860 1200 basechar 0 +AnchorPoint: "Anchor-14" 550 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 70 99 N 1 0 0 1 0 0 3 +Refer: 122 184 N 1 0 0 1 268 0 2 +EndChar + +StartChar: egrave +Encoding: 232 232 170 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 26 + 26 + 17 + 38 + 2 + 27 +PUSHW_1 + -28 +PUSHB_5 + 27 + 30 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 221 0 2 +EndChar + +StartChar: eacute +Encoding: 233 233 171 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 26 + 17 + 38 + 2 + 26 + 84 + 26 + 29 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 368 0 2 +EndChar + +StartChar: ecircumflex +Encoding: 234 234 172 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 27 + 27 + 17 + 38 + 2 + 32 + 8 + 32 + 26 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 245 0 2 +EndChar + +StartChar: edieresis +Encoding: 235 235 173 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 26 + 26 + 17 + 38 + 3 + 2 + 30 + 4 + 30 + 28 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 248 0 2 +EndChar + +StartChar: igrave +Encoding: 236 236 174 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 4 + 4 + 17 + 38 + 1 + 5 +PUSHW_1 + -62 +PUSHB_5 + 5 + 8 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-18" 350 1100 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 -96 0 2 +EndChar + +StartChar: iacute +Encoding: 237 237 175 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 4 + 17 + 38 + 1 + 4 + 63 + 4 + 7 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-24" 290 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-18" 390 1100 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 63 0 2 +EndChar + +StartChar: icircumflex +Encoding: 238 238 176 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 5 + 5 + 17 + 38 + 1 + 10 + 2 + 10 + 4 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-24" 290 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-18" 350 1100 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 -45 0 2 +EndChar + +StartChar: idieresis +Encoding: 239 239 177 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 4 + 4 + 17 + 38 + 2 + 1 + 8 + 2 + 8 + 6 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-18" 350 1100 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -37 0 2 +EndChar + +StartChar: eth +Encoding: 240 240 178 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 28 + 15 + 16 + 13 + 10 + 18 + 21 + 20 + 11 + 8 + 9 + 24 + 34 + 3 + 3 + 25 + 40 + 41 + 18 + 13 + 21 + 10 + 4 + 11 + 19 + 19 + 15 + 6 + 31 + 80 + 89 + 8 + 80 + 6 + 1 + 6 +PUSHW_1 + -64 +NPUSHB + 32 + 7 + 10 + 72 + 36 + 11 + 52 + 11 + 68 + 11 + 3 + 2 + 11 + 18 + 11 + 82 + 11 + 3 + 9 + 3 + 6 + 11 + 6 + 11 + 37 + 15 + 0 + 0 + 37 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +566 -20 m 0,0,1 + 334 -20 334 -20 210 109 c 128,-1,2 + 86 238 86 238 86 481 c 0,3,4 + 86 725 86 725 210 852 c 128,-1,5 + 334 979 334 979 573 979 c 0,6,7 + 710 979 710 979 804 920 c 1,8,9 + 695 1137 695 1137 570 1251 c 1,10,-1 + 269 1118 l 1,11,-1 + 269 1232 l 1,12,-1 + 487 1326 l 1,13,14 + 378 1413 378 1413 245 1484 c 1,15,-1 + 454 1484 l 1,16,17 + 534 1448 534 1448 624 1382 c 1,18,-1 + 930 1514 l 1,19,-1 + 929 1402 l 1,20,-1 + 718 1310 l 1,21,22 + 889 1154 889 1154 976 951 c 128,-1,23 + 1063 748 1063 748 1063 516 c 2,24,-1 + 1063 510 l 2,25,26 + 1063 249 1063 249 938.5 114.5 c 128,-1,27 + 814 -20 814 -20 566 -20 c 0,0,1 +874 481 m 0,28,29 + 874 673 874 673 803.5 759.5 c 128,-1,30 + 733 846 733 846 577 846 c 0,31,32 + 420 846 420 846 347.5 759 c 128,-1,33 + 275 672 275 672 275 481 c 0,34,35 + 275 291 275 291 347 202 c 128,-1,36 + 419 113 419 113 564 113 c 0,37,38 + 725 113 725 113 799.5 200.5 c 128,-1,39 + 874 288 874 288 874 481 c 0,28,29 +EndSplineSet +EndChar + +StartChar: ntilde +Encoding: 241 241 179 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 27 + 27 + 17 + 38 + 1 + 36 + 5 + 36 + 48 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 840 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 460 1580 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 550 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 4 0 3 +Refer: 670 732 N 1 0 0 1 245 0 2 +EndChar + +StartChar: ograve +Encoding: 242 242 180 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 23 + 23 + 17 + 38 + 2 + 24 +PUSHW_1 + -28 +PUSHB_5 + 24 + 27 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 800 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 223 0 2 +EndChar + +StartChar: oacute +Encoding: 243 243 181 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 23 + 17 + 38 + 2 + 23 + 73 + 23 + 26 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 800 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 359 0 2 +EndChar + +StartChar: ocircumflex +Encoding: 244 244 182 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 24 + 24 + 17 + 38 + 2 + 29 + 1 + 29 + 23 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 240 0 2 +EndChar + +StartChar: otilde +Encoding: 245 245 183 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 23 + 23 + 17 + 38 + 2 + 32 + 13 + 32 + 44 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 800 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 247 0 2 +EndChar + +StartChar: odieresis +Encoding: 246 246 184 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 23 + 23 + 17 + 38 + 3 + 2 + 27 + 4 + 27 + 25 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 250 0 2 +EndChar + +StartChar: divide +Encoding: 247 247 185 +Width: 1124 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 3 + 11 + 11 + 0 + 8 + 8 + 4 + 6 + 4 + 6 + 12 + 13 + 8 + 9 + 174 + 89 + 0 + 8 + 80 + 8 + 2 + 13 + 3 + 8 + 4 + 64 + 5 + 4 + 173 + 89 + 1 + 0 + 174 + 89 + 79 + 1 + 159 + 1 + 2 + 1 + 5 + 179 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,white] +DELTAP1 +CALL +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,white] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +478 958 m 1,0,-1 + 478 1141 l 1,1,-1 + 646 1141 l 1,2,-1 + 646 958 l 1,3,-1 + 478 958 l 1,0,-1 +65 608 m 1,4,-1 + 65 754 l 1,5,-1 + 1060 754 l 1,6,-1 + 1060 608 l 1,7,-1 + 65 608 l 1,4,-1 +478 223 m 1,8,-1 + 478 406 l 1,9,-1 + 646 406 l 1,10,-1 + 646 223 l 1,11,-1 + 478 223 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: oslash +Encoding: 248 248 186 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 78 + 22 + 30 + 27 + 19 + 19 + 0 + 27 + 10 + 0 + 10 + 36 + 35 + 29 + 21 + 24 + 32 + 12 + 32 + 80 + 89 + 15 + 12 + 16 + 3 + 24 + 80 + 89 + 6 + 3 + 22 + 240 + 36 + 1 + 160 + 36 + 1 + 144 + 36 + 1 + 224 + 36 + 1 + 223 + 36 + 1 + 192 + 36 + 1 + 176 + 36 + 1 + 160 + 36 + 1 + 144 + 36 + 1 + 128 + 36 + 1 + 112 + 36 + 1 + 96 + 36 + 1 + 80 + 36 + 1 + 64 + 36 + 1 + 32 + 36 + 1 + 0 + 36 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 1040 900 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1112 542 m 0,0,1 + 1112 258 1112 258 987 119 c 128,-1,2 + 862 -20 862 -20 624 -20 c 0,3,4 + 429 -20 429 -20 311 78 c 1,5,-1 + 211 -38 l 1,6,-1 + 44 -38 l 1,7,-1 + 228 176 l 1,8,9 + 145 314 145 314 145 542 c 0,10,11 + 145 1102 145 1102 630 1102 c 0,12,13 + 831 1102 831 1102 946 1011 c 1,14,-1 + 1037 1116 l 1,15,-1 + 1204 1116 l 1,16,-1 + 1031 915 l 1,17,18 + 1112 782 1112 782 1112 542 c 0,0,1 +923 542 m 0,19,20 + 923 671 923 671 900 763 c 1,21,-1 + 417 201 l 1,22,23 + 485 113 485 113 622 113 c 0,24,25 + 784 113 784 113 853.5 217 c 128,-1,26 + 923 321 923 321 923 542 c 0,19,20 +334 542 m 0,27,28 + 334 412 334 412 358 327 c 1,29,-1 + 840 888 l 1,30,31 + 773 969 773 969 633 969 c 0,32,33 + 475 969 475 969 404.5 865.5 c 128,-1,34 + 334 762 334 762 334 542 c 0,27,28 +EndSplineSet +EndChar + +StartChar: ugrave +Encoding: 249 249 187 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 27 + 27 + 17 + 38 + 1 + 28 +PUSHW_1 + -20 +PUSHB_5 + 28 + 31 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 1000 basechar 0 +AnchorPoint: "Anchor-18" 980 1100 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 6 0 3 +Refer: 67 96 N 1 0 0 1 236 0 2 +EndChar + +StartChar: uacute +Encoding: 250 250 188 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 27 + 17 + 38 + 1 + 27 + 53 + 27 + 30 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-24" 500 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 1000 basechar 0 +AnchorPoint: "Anchor-18" 980 1100 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 6 0 3 +Refer: 118 180 N 1 0 0 1 343 0 2 +EndChar + +StartChar: ucircumflex +Encoding: 251 251 189 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 28 + 28 + 17 + 38 + 1 + 33 +PUSHW_1 + -4 +PUSHB_5 + 33 + 27 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-24" 500 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 980 1100 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 6 0 3 +Refer: 648 710 N 1 0 0 1 239 0 2 +EndChar + +StartChar: udieresis +Encoding: 252 252 190 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 27 + 27 + 17 + 38 + 2 + 1 + 31 +PUSHW_1 + -13 +PUSHB_5 + 31 + 29 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 980 1100 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 6 0 3 +Refer: 106 168 N 1 0 0 1 237 0 2 +EndChar + +StartChar: yacute +Encoding: 253 253 191 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 23 + 17 + 38 + 1 + 23 + 54 + 23 + 26 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-18" 940 1100 basechar 0 +AnchorPoint: "Anchor-16" 520 1580 basechar 0 +AnchorPoint: "Anchor-15" 1000 1260 basechar 0 +AnchorPoint: "Anchor-14" 400 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 283 0 2 +EndChar + +StartChar: thorn +Encoding: 254 254 192 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 28 + 4 + 19 + 19 + 20 + 21 + 11 + 20 + 11 + 34 + 35 + 19 + 27 + 4 + 15 + 8 + 13 + 13 + 31 + 80 + 89 + 13 + 22 + 8 + 24 + 80 + 89 + 8 + 16 + 0 + 0 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +138 1484 m 1,0,-1 + 318 1484 l 1,1,-1 + 318 1061 l 2,2,3 + 318 996 318 996 314 908 c 1,4,-1 + 320 908 l 1,5,6 + 368 1008 368 1008 447 1054.5 c 128,-1,7 + 526 1101 526 1101 655 1101 c 0,8,9 + 855 1101 855 1101 954 967 c 128,-1,10 + 1053 833 1053 833 1053 546 c 0,11,12 + 1053 -20 1053 -20 655 -20 c 0,13,14 + 405 -20 405 -20 319 168 c 1,15,-1 + 314 168 l 1,16,17 + 318 160 318 160 318 -2 c 2,18,-1 + 318 -425 l 1,19,-1 + 138 -425 l 1,20,-1 + 138 1484 l 1,0,-1 +864 542 m 0,21,22 + 864 768 864 768 803 865 c 128,-1,23 + 742 962 742 962 609 962 c 0,24,25 + 502 962 502 962 441.5 917 c 128,-1,26 + 381 872 381 872 349.5 776.5 c 128,-1,27 + 318 681 318 681 318 528 c 0,28,29 + 318 315 318 315 386 214 c 128,-1,30 + 454 113 454 113 607 113 c 0,31,32 + 741 113 741 113 802.5 211.5 c 128,-1,33 + 864 310 864 310 864 542 c 0,21,22 +EndSplineSet +EndChar + +StartChar: ydieresis +Encoding: 255 255 193 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 23 + 23 + 17 + 38 + 2 + 1 + 27 +PUSHW_1 + -2 +PUSHB_5 + 27 + 25 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-18" 940 1100 basechar 0 +AnchorPoint: "Anchor-16" 520 1580 basechar 0 +AnchorPoint: "Anchor-15" 1000 1260 basechar 0 +AnchorPoint: "Anchor-14" 400 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 187 0 2 +EndChar + +StartChar: Amacron +Encoding: 256 256 194 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 17 + 17 + 5 + 38 + 2 + 18 + 2 + 18 + 17 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 360 329 2 +EndChar + +StartChar: amacron +Encoding: 257 257 195 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 49 + 49 + 17 + 38 + 2 + 50 +PUSHW_1 + -54 +PUSHB_5 + 50 + 49 + 3 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 233 0 2 +EndChar + +StartChar: Abreve +Encoding: 258 258 196 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 17 + 17 + 5 + 38 + 2 + 20 + 3 + 20 + 28 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 377 0 2 +EndChar + +StartChar: abreve +Encoding: 259 259 197 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 49 + 49 + 17 + 38 + 2 + 52 +PUSHW_1 + -52 +PUSHB_5 + 52 + 58 + 3 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 263 0 2 +EndChar + +StartChar: Aogonek +Encoding: 260 260 198 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 26 +PUSHW_1 + -49 +PUSHB_5 + 26 + 26 + 7 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1240 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 949 11 2 +EndChar + +StartChar: aogonek +Encoding: 261 261 199 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 58 +PUSHW_1 + -62 +PUSHB_5 + 58 + 58 + 26 + 26 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 980 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 709 0 2 +EndChar + +StartChar: Cacute +Encoding: 262 262 200 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 26 + 5 + 38 + 1 + 26 + 126 + 26 + 29 + 16 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 890 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 38 67 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 595 0 2 +EndChar + +StartChar: cacute +Encoding: 263 263 201 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 26 + 17 + 38 + 1 + 26 + 114 + 26 + 29 + 13 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 70 99 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 359 0 2 +EndChar + +StartChar: Ccircumflex +Encoding: 264 264 202 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 27 + 27 + 5 + 38 + 1 + 32 + 38 + 32 + 26 + 16 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 890 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 38 67 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 460 0 2 +EndChar + +StartChar: ccircumflex +Encoding: 265 265 203 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 27 + 27 + 17 + 38 + 1 + 32 + 10 + 32 + 26 + 13 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 70 99 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 208 0 2 +EndChar + +StartChar: Cdotaccent +Encoding: 266 266 204 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 26 + 5 + 38 + 1 + 26 + 39 + 26 + 28 + 16 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 890 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 38 67 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 546 293 2 +EndChar + +StartChar: cdotaccent +Encoding: 267 267 205 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 26 + 17 + 38 + 1 + 26 + 17 + 26 + 28 + 13 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 70 99 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 300 0 2 +EndChar + +StartChar: Ccaron +Encoding: 268 268 206 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 26 + 26 + 5 + 38 + 1 + 28 + 38 + 28 + 34 + 16 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 890 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 38 67 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 460 0 2 +EndChar + +StartChar: ccaron +Encoding: 269 269 207 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 26 + 26 + 17 + 38 + 1 + 28 + 16 + 28 + 34 + 13 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 70 99 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 214 0 2 +EndChar + +StartChar: Dcaron +Encoding: 270 270 208 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 20 + 20 + 5 + 38 + 2 + 22 +PUSHW_1 + -85 +PUSHB_5 + 22 + 28 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 670 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 358 0 2 +EndChar + +StartChar: dcaron +Encoding: 271 271 209 +Width: 1259 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 2 + 43 + 0 + 2 + 43 + 83 + 43 + 43 + 15 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1259 1540 basechar 0 +AnchorPoint: "Anchor-20" 1259 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 71 100 N 1 0 0 1 0 0 2 +Refer: 2300 -1 N 1 0 0 1 954 75 2 +EndChar + +StartChar: Dcroat +Encoding: 272 272 210 +Width: 1479 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 670 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 146 208 N 1 0 0 1 0 0 3 +EndChar + +StartChar: dcroat +Encoding: 273 273 211 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 31 + 16 + 6 + 37 + 17 + 0 + 14 + 14 + 21 + 23 + 6 + 23 + 43 + 44 + 26 + 21 + 23 + 15 + 16 + 15 + 81 + 89 + 20 + 15 + 16 + 31 + 16 + 47 + 16 + 3 + 23 + 3 + 16 + 16 + 18 + 0 + 11 + 0 + 8 + 3 + 8 + 40 + 80 + 89 + 8 +PUSHW_1 + -64 +NPUSHB + 17 + 9 + 13 + 72 + 8 + 16 + 3 + 34 + 80 + 89 + 3 + 22 + 63 + 44 + 1 + 143 + 44 + 1 +DELTAP1 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP2 +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +821 174 m 1,0,1 + 771 70 771 70 688.5 25 c 128,-1,2 + 606 -20 606 -20 484 -20 c 0,3,4 + 279 -20 279 -20 182.5 118 c 128,-1,5 + 86 256 86 256 86 536 c 0,6,7 + 86 1102 86 1102 484 1102 c 0,8,9 + 607 1102 607 1102 689 1057 c 128,-1,10 + 771 1012 771 1012 821 914 c 1,11,-1 + 823 914 l 1,12,-1 + 821 1035 l 1,13,-1 + 821 1206 l 1,14,-1 + 521 1206 l 1,15,-1 + 521 1337 l 1,16,-1 + 821 1337 l 1,17,-1 + 821 1484 l 1,18,-1 + 1001 1484 l 1,19,-1 + 1001 1337 l 1,20,-1 + 1133 1337 l 1,21,-1 + 1133 1206 l 1,22,-1 + 1001 1206 l 1,23,-1 + 1001 223 l 2,24,25 + 1001 54 1001 54 1007 0 c 1,26,-1 + 835 0 l 1,27,28 + 832 16 832 16 828.5 74 c 128,-1,29 + 825 132 825 132 825 174 c 1,30,-1 + 821 174 l 1,0,1 +275 542 m 0,31,32 + 275 315 275 315 335 217 c 128,-1,33 + 395 119 395 119 530 119 c 0,34,35 + 683 119 683 119 752 225 c 128,-1,36 + 821 331 821 331 821 554 c 0,37,38 + 821 769 821 769 752 869 c 128,-1,39 + 683 969 683 969 532 969 c 0,40,41 + 396 969 396 969 335.5 868.5 c 128,-1,42 + 275 768 275 768 275 542 c 0,31,32 +EndSplineSet +EndChar + +StartChar: Emacron +Encoding: 274 274 212 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 12 + 12 + 5 + 38 + 1 + 13 +PUSHW_1 + -19 +PUSHB_5 + 13 + 12 + 0 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 378 329 2 +EndChar + +StartChar: emacron +Encoding: 275 275 213 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 26 + 26 + 17 + 38 + 2 + 27 + 3 + 27 + 26 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 245 0 2 +EndChar + +StartChar: Ebreve +Encoding: 276 276 214 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 12 + 12 + 5 + 38 + 1 + 15 +PUSHW_1 + -21 +PUSHB_5 + 15 + 23 + 0 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 393 0 2 +EndChar + +StartChar: ebreve +Encoding: 277 277 215 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 26 + 26 + 17 + 38 + 2 + 29 + 2 + 29 + 35 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 272 0 2 +EndChar + +StartChar: Edotaccent +Encoding: 278 278 216 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 12 + 5 + 38 + 1 + 12 +PUSHW_1 + -20 +PUSHB_5 + 12 + 14 + 0 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 457 293 2 +EndChar + +StartChar: edotaccent +Encoding: 279 279 217 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 26 + 17 + 38 + 2 + 26 + 2 + 26 + 28 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 324 0 2 +EndChar + +StartChar: Eogonek +Encoding: 280 280 218 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 21 +PUSHW_1 + -62 +PUSHB_5 + 21 + 21 + 11 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 848 0 2 +EndChar + +StartChar: eogonek +Encoding: 281 281 219 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 35 +PUSHW_1 + -270 +PUSHB_5 + 35 + 35 + 7 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 381 0 2 +EndChar + +StartChar: Ecaron +Encoding: 282 282 220 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 12 + 12 + 5 + 38 + 1 + 14 +PUSHW_1 + -25 +PUSHB_5 + 14 + 20 + 0 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 367 0 2 +EndChar + +StartChar: ecaron +Encoding: 283 283 221 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 26 + 26 + 17 + 38 + 2 + 28 +PUSHW_1 + -2 +PUSHB_5 + 28 + 34 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 234 0 2 +EndChar + +StartChar: Gcircumflex +Encoding: 284 284 222 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 32 + 32 + 5 + 38 + 1 + 37 + 34 + 37 + 31 + 0 + 23 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 42 71 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 475 0 2 +EndChar + +StartChar: gcircumflex +Encoding: 285 285 223 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 48 + 48 + 17 + 38 + 2 + 53 + 0 + 53 + 47 + 17 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 74 103 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 216 0 2 +EndChar + +StartChar: Gbreve +Encoding: 286 286 224 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 31 + 31 + 5 + 38 + 1 + 34 + 39 + 34 + 42 + 0 + 23 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 42 71 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 502 0 2 +EndChar + +StartChar: gbreve +Encoding: 287 287 225 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 47 + 47 + 17 + 38 + 2 + 50 + 0 + 50 + 56 + 17 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 74 103 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 249 0 2 +EndChar + +StartChar: Gdotaccent +Encoding: 288 288 226 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 31 + 5 + 38 + 1 + 31 + 39 + 31 + 33 + 0 + 23 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 42 71 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 565 293 2 +EndChar + +StartChar: gdotaccent +Encoding: 289 289 227 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 47 + 17 + 38 + 2 + 47 + 0 + 47 + 49 + 17 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 74 103 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 301 0 2 +EndChar + +StartChar: Gcommaaccent +Encoding: 290 290 228 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 35 + 46 + 35 + 31 + 0 + 23 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 780 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 820 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 42 71 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 590 0 2 +EndChar + +StartChar: gcommaaccent +Encoding: 291 291 229 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 55 + 55 + 17 + 38 + 2 + 47 +PUSHW_1 + -4 +PUSHB_5 + 47 + 51 + 17 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 74 103 N 1 0 0 1 0 0 2 +Refer: 2301 -1 N 1 0 0 1 312 0 2 +EndChar + +StartChar: Hcircumflex +Encoding: 292 292 230 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 13 + 13 + 5 + 38 + 1 + 18 + 0 + 18 + 12 + 4 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1150 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 409 0 2 +EndChar + +StartChar: hcircumflex +Encoding: 293 293 231 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 26 + 26 + 2 + 38 + 1 + 31 +PUSHW_1 + -1 +PUSHB_5 + 31 + 25 + 18 + 6 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 75 104 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 242 64 2 +EndChar + +StartChar: Hbar +Encoding: 294 294 232 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 23 + 11 + 3 + 3 + 8 + 7 + 4 + 20 + 12 + 0 + 0 + 16 + 15 + 19 + 5 + 19 + 1 + 10 + 4 + 1 + 4 + 19 + 24 + 25 + 0 + 25 + 1 + 128 + 25 + 144 + 25 + 160 + 25 + 3 + 25 +PUSHW_1 + -64 +NPUSHB + 40 + 14 + 17 + 72 + 15 + 25 + 1 + 11 + 3 + 23 + 2 + 95 + 89 + 22 + 18 + 6 + 7 + 6 + 95 + 89 + 15 + 11 + 7 + 64 + 23 + 1 + 160 + 23 + 208 + 23 + 2 + 23 + 7 + 23 + 7 + 13 + 9 + 3 + 4 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +IP +IP +MDAP[rnd] +MDAP[rnd] +DELTAP1 +DELTAP2 +SRP1 +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +CALL +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +IP +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1150 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1126 0 m 1,0,-1 + 1126 653 l 1,1,-1 + 359 653 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1025 l 1,5,-1 + 14 1025 l 1,6,-1 + 14 1179 l 1,7,-1 + 168 1179 l 1,8,-1 + 168 1409 l 1,9,-1 + 359 1409 l 1,10,-1 + 359 1179 l 1,11,-1 + 1126 1179 l 1,12,-1 + 1126 1409 l 1,13,-1 + 1312 1409 l 1,14,-1 + 1312 1179 l 1,15,-1 + 1465 1179 l 1,16,-1 + 1465 1025 l 1,17,-1 + 1312 1025 l 1,18,-1 + 1312 0 l 1,19,-1 + 1126 0 l 1,0,-1 +1126 813 m 1,20,-1 + 1126 1025 l 1,21,-1 + 359 1025 l 1,22,-1 + 359 813 l 1,23,-1 + 1126 813 l 1,20,-1 +EndSplineSet +EndChar + +StartChar: hbar +Encoding: 295 295 233 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 29 + 25 + 17 + 17 + 22 + 21 + 18 + 7 + 26 + 18 + 3 + 33 + 8 + 34 + 64 + 34 + 80 + 34 + 96 + 34 + 3 + 64 + 34 + 128 + 34 + 2 + 143 + 34 + 1 + 0 + 34 + 1 + 16 + 3 + 34 +PUSHW_1 + -64 +NPUSHB + 24 + 19 + 23 + 72 + 28 + 20 + 21 + 20 + 81 + 89 + 25 + 21 + 21 + 23 + 0 + 0 + 3 + 18 + 7 + 21 + 3 + 13 + 80 + 89 + 3 +PUSHW_1 + -64 +PUSHB_5 + 9 + 12 + 72 + 3 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MIAP[rnd] +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +317 857 m 1,0,1 + 375 963 375 963 456.5 1012.5 c 128,-1,2 + 538 1062 538 1062 663 1062 c 0,3,4 + 839 1062 839 1062 922.5 974.5 c 128,-1,5 + 1006 887 1006 887 1006 681 c 2,6,-1 + 1006 0 l 1,7,-1 + 825 0 l 1,8,-1 + 825 646 l 2,9,10 + 825 760 825 760 804 815.5 c 128,-1,11 + 783 871 783 871 735 897 c 128,-1,12 + 687 923 687 923 602 923 c 0,13,14 + 475 923 475 923 398.5 835 c 128,-1,15 + 322 747 322 747 322 598 c 2,16,-1 + 322 0 l 1,17,-1 + 142 0 l 1,18,-1 + 142 1206 l 1,19,-1 + 10 1206 l 1,20,-1 + 10 1337 l 1,21,-1 + 142 1337 l 1,22,-1 + 142 1484 l 1,23,-1 + 322 1484 l 1,24,-1 + 322 1337 l 1,25,-1 + 622 1337 l 1,26,-1 + 622 1206 l 1,27,-1 + 322 1206 l 1,28,-1 + 322 1058 l 2,29,30 + 322 997 322 997 318.5 932 c 128,-1,31 + 315 867 315 867 314 857 c 1,32,-1 + 317 857 l 1,0,1 +EndSplineSet +EndChar + +StartChar: Itilde +Encoding: 296 296 234 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 4 + 4 + 5 + 38 + 1 + 13 + 2 + 13 + 25 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 -49 0 2 +EndChar + +StartChar: itilde +Encoding: 297 297 235 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 1 + 4 + 4 + 17 + 38 + 1 + 13 + 0 + 13 + 16 + 13 + 2 + 2 + 13 + 25 + 0 + 2 + 37 +CALL +DELTAP2 +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 -49 0 2 +EndChar + +StartChar: Imacron +Encoding: 298 298 236 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 4 + 4 + 5 + 38 + 1 + 5 + 2 + 5 + 4 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 -39 329 2 +EndChar + +StartChar: imacron +Encoding: 299 299 237 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 4 + 4 + 17 + 38 + 1 + 5 + 2 + 5 + 4 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 -39 0 2 +EndChar + +StartChar: Ibreve +Encoding: 300 300 238 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 4 + 4 + 5 + 38 + 1 + 7 + 2 + 7 + 15 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 -22 0 2 +EndChar + +StartChar: ibreve +Encoding: 301 301 239 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 4 + 4 + 17 + 38 + 1 + 7 + 3 + 7 + 13 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 -11 0 2 +EndChar + +StartChar: Iogonek +Encoding: 302 302 240 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 13 + 0 + 13 + 13 + 3 + 3 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 320 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 12 0 2 +EndChar + +StartChar: iogonek +Encoding: 303 303 241 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 23 + 19 + 1 + 2 + 17 + 0 + 17 + 17 + 7 + 7 + 37 +CALL +SRP1 +SHC[rp1] +DELTAP1 +EndTTInstrs +AnchorPoint: "Anchor-25" 240 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 76 105 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 -49 0 2 +EndChar + +StartChar: Idotaccent +Encoding: 304 304 242 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 4 + 5 + 38 + 1 + 4 + 0 + 4 + 6 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 39 293 2 +EndChar + +StartChar: dotlessi +Encoding: 305 305 243 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 190 + 3 + 0 + 0 + 4 + 5 + 1 + 15 + 0 + 21 + 36 + 5 + 1 + 228 + 5 + 1 + 212 + 5 + 1 + 196 + 5 + 1 + 180 + 5 + 1 + 132 + 5 + 1 + 116 + 5 + 1 + 52 + 5 + 1 + 36 + 5 + 1 + 20 + 5 + 1 + 4 + 5 + 1 + 110 + 228 + 5 + 1 + 212 + 5 + 1 + 196 + 5 + 1 + 180 + 5 + 1 + 64 + 5 + 1 + 52 + 5 + 1 + 36 + 5 + 1 + 20 + 5 + 1 + 144 + 5 + 1 + 132 + 5 + 1 + 116 + 5 + 1 + 100 + 5 + 1 + 228 + 5 + 1 + 212 + 5 + 1 + 196 + 5 + 1 + 180 + 5 + 1 + 107 + 5 + 1 + 52 + 5 + 1 + 36 + 5 + 1 + 20 + 5 + 1 + 4 + 5 + 1 + 56 + 219 + 5 + 1 + 203 + 5 + 1 + 148 + 5 + 1 + 132 + 5 + 1 + 116 + 5 + 1 + 100 + 5 + 1 + 43 + 5 + 1 + 27 + 5 + 1 + 228 + 5 + 1 + 212 + 5 + 1 + 196 + 5 + 1 + 123 + 5 + 1 + 107 + 5 + 1 + 64 + 5 + 1 + 2 + 48 + 5 + 1 + 32 + 5 + 1 + 16 + 5 + 1 + 207 + 5 + 1 + 191 + 5 + 1 + 144 + 5 + 1 + 128 + 5 + 1 + 112 + 5 + 1 + 96 + 5 + 1 + 64 + 5 + 1 + 32 + 5 + 1 + 31 + 5 + 1 + 15 + 5 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 210 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-18" 380 1100 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +194 0 m 1,0,-1 + 194 1082 l 1,1,-1 + 374 1082 l 1,2,-1 + 374 0 l 1,3,-1 + 194 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: IJ +Encoding: 306 306 244 +Width: 1505 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 1000 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1505 1540 basechar 0 +AnchorPoint: "Anchor-20" 1505 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 -19 0 2 +Refer: 45 74 N 1 0 0 1 481 0 2 +EndChar + +StartChar: ij +Encoding: 307 307 245 +Width: 909 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 3 + 2 + 8 + 111 + 8 + 1 + 16 + 8 + 48 + 8 + 2 + 1 + 0 + 16 + 0 + 1 +DELTAP1 +SHC[rp1] +SHC[rp1] +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 540 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 909 1580 basechar 0 +AnchorPoint: "Anchor-20" 909 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 460 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 76 105 N 1 0 0 1 0 0 2 +Refer: 77 106 N 1 0 0 1 454 0 2 +EndChar + +StartChar: Jcircumflex +Encoding: 308 308 246 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 18 + 18 + 5 + 38 + 1 + 23 + 190 + 23 + 17 + 2 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 460 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 660 1540 basechar 0 +AnchorPoint: "Anchor-15" 880 1540 basechar 0 +AnchorPoint: "Anchor-14" 460 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 45 74 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 311 0 2 +EndChar + +StartChar: jcircumflex +Encoding: 309 309 247 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 196 + 22 + 21 + 17 + 17 + 14 + 19 + 14 + 10 + 10 + 3 + 19 + 7 + 7 + 24 + 23 + 19 + 21 + 148 + 91 + 15 + 19 + 47 + 19 + 63 + 19 + 127 + 19 + 239 + 19 + 5 + 9 + 3 + 19 + 8 + 15 + 0 + 4 + 80 + 89 + 0 + 27 + 207 + 24 + 1 + 191 + 24 + 1 + 143 + 24 + 1 + 63 + 24 + 1 + 47 + 24 + 1 + 31 + 24 + 1 + 0 + 24 + 1 + 111 + 239 + 24 + 1 + 208 + 24 + 1 + 63 + 24 + 1 + 255 + 24 + 1 + 175 + 24 + 1 + 159 + 24 + 1 + 143 + 24 + 1 + 111 + 24 + 1 + 80 + 24 + 1 + 64 + 24 + 1 + 48 + 24 + 1 + 32 + 24 + 1 + 223 + 24 + 1 + 176 + 24 + 1 + 160 + 24 + 1 + 144 + 24 + 1 + 79 + 24 + 1 + 63 + 24 + 1 + 47 + 24 + 1 + 0 + 24 + 1 + 61 + 255 + 24 + 1 + 239 + 24 + 1 + 223 + 24 + 1 + 207 + 24 + 1 + 176 + 24 + 1 + 144 + 24 + 1 + 128 + 24 + 1 + 112 + 24 + 1 + 31 + 24 + 1 + 15 + 24 + 1 + 255 + 24 + 1 + 223 + 24 + 1 + 207 + 24 + 1 + 191 + 24 + 1 + 175 + 24 + 1 + 144 + 24 + 1 + 79 + 24 + 1 + 255 + 24 + 1 + 224 + 24 + 1 + 208 + 24 + 1 + 192 + 24 + 1 + 128 + 24 + 1 + 112 + 24 + 1 + 31 + 24 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 100 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 140 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +77 -425 m 0,0,1 + 0 -425 0 -425 -50 -416 c 1,2,-1 + -50 -277 l 1,3,-1 + 12 -283 l 1,4,5 + 81 -283 81 -283 109 -247 c 128,-1,6 + 137 -211 137 -211 137 -107 c 2,7,-1 + 137 1082 l 1,8,-1 + 317 1082 l 1,9,-1 + 317 -134 l 2,10,11 + 317 -287 317 -287 257 -356 c 128,-1,12 + 197 -425 197 -425 77 -425 c 0,0,1 +559 1221 m 1,13,-1 + 559 1201 l 1,14,-1 + 454 1201 l 1,15,-1 + 235 1370 l 1,16,-1 + 233 1370 l 1,17,-1 + 1 1201 l 1,18,-1 + -103 1201 l 1,19,-1 + -103 1221 l 1,20,-1 + 131 1491 l 1,21,-1 + 335 1491 l 1,22,-1 + 559 1221 l 1,13,-1 +EndSplineSet +EndChar + +StartChar: Kcommaaccent +Encoding: 310 310 248 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 16 +PUSHW_1 + -51 +PUSHB_5 + 16 + 12 + 4 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 46 75 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 477 0 2 +EndChar + +StartChar: kcommaaccent +Encoding: 311 311 249 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 16 +PUSHW_1 + -21 +PUSHB_5 + 16 + 12 + 4 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 900 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 78 107 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 334 0 2 +EndChar + +StartChar: kgreenlandic +Encoding: 312 312 250 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 0 + 13 + 7 + 3 + 3 + 4 + 8 + 9 + 9 + 10 + 4 + 3 + 12 + 11 + 13 + 128 + 13 + 192 + 13 + 224 + 13 + 3 + 63 + 13 + 1 + 2 + 1 + 7 + 10 + 4 + 8 + 8 + 5 + 15 + 4 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +SRP1 +SLOOP +IP +SVTCA[x-axis] +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +816 0 m 1,0,-1 + 450 494 l 1,1,-1 + 318 386 l 1,2,-1 + 318 0 l 1,3,-1 + 138 0 l 1,4,-1 + 138 1082 l 1,5,-1 + 318 1082 l 1,6,-1 + 318 557 l 1,7,-1 + 793 1082 l 1,8,-1 + 1004 1082 l 1,9,-1 + 565 617 l 1,10,-1 + 1027 0 l 1,11,-1 + 816 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: Lacute +Encoding: 313 313 251 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 6 + 5 + 38 + 1 + 6 +PUSHW_1 + -162 +PUSHB_5 + 6 + 9 + 0 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 173 0 2 +EndChar + +StartChar: lacute +Encoding: 314 314 252 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 4 + 2 + 38 + 1 + 4 + 75 + 4 + 7 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-24" 230 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1840 basechar 0 +AnchorPoint: "Anchor-20" 440 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 19 78 2 +EndChar + +StartChar: Lcommaaccent +Encoding: 315 315 253 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 10 +PUSHW_1 + -3 +PUSHB_5 + 10 + 6 + 0 + 4 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 560 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 389 0 2 +EndChar + +StartChar: lcommaaccent +Encoding: 316 316 254 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 8 +PUSHW_1 + -1 +PUSHB_5 + 8 + 4 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: Lcaron +Encoding: 317 317 255 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 1 + 14 + 3 + 1 + 10 + 138 + 10 + 6 + 0 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 3 +Refer: 2300 -1 N 1 0 0 1 533 0 2 +EndChar + +StartChar: lcaron +Encoding: 318 318 256 +Width: 597 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 79 + 15 + 1 + 47 + 15 + 159 + 15 + 223 + 15 + 3 + 112 + 15 + 128 + 15 + 2 + 1 + 12 + 0 + 1 + 8 +PUSHW_1 + 288 +PUSHB_5 + 8 + 4 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +DELTAP2 +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 597 1540 basechar 0 +AnchorPoint: "Anchor-20" 730 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 2 +Refer: 2300 -1 N 1 0 0 1 292 75 2 +EndChar + +StartChar: Ldot +Encoding: 319 319 257 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 6 + 95 + 6 + 8 + 0 + 4 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 469 -625 2 +EndChar + +StartChar: ldot +Encoding: 320 320 258 +Width: 684 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 4 +PUSHW_1 + 340 +PUSHB_5 + 4 + 6 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 684 1540 basechar 0 +AnchorPoint: "Anchor-20" 820 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 2 +Refer: 667 729 N 1 0 0 1 322 -625 2 +EndChar + +StartChar: Lslash +Encoding: 321 321 259 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 12 + 0 + 2 + 2 + 9 + 7 + 5 + 3 + 5 + 15 + 14 + 6 + 1 + 9 + 12 + 4 + 16 + 7 + 1 + 7 + 64 + 0 + 13 + 1 + 9 + 3 + 13 + 13 + 5 + 10 + 3 + 5 + 2 + 95 + 89 + 5 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +SMD +MDRP[min,rnd,black] +DELTAP1 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +616 797 m 1,0,-1 + 359 648 l 1,1,-1 + 359 156 l 1,2,-1 + 1071 156 l 1,3,-1 + 1071 0 l 1,4,-1 + 168 0 l 1,5,-1 + 168 538 l 1,6,-1 + 20 453 l 1,7,-1 + 20 611 l 1,8,-1 + 168 696 l 1,9,-1 + 168 1409 l 1,10,-1 + 359 1409 l 1,11,-1 + 359 806 l 1,12,-1 + 616 954 l 1,13,-1 + 616 797 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: lslash +Encoding: 322 322 260 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 8 + 7 + 11 + 11 + 4 + 2 + 0 + 0 + 12 + 13 + 1 + 10 + 4 + 7 + 4 + 2 + 79 + 8 + 1 + 8 + 8 + 5 + 0 + 0 + 21 + 255 + 13 + 1 + 208 + 13 + 1 + 192 + 13 + 1 + 128 + 13 + 1 + 112 + 13 + 1 + 31 + 13 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +DELTAP1 +MDRP[min,rnd,black] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +138 0 m 1,0,-1 + 138 542 l 1,1,-1 + 16 474 l 1,2,-1 + 16 632 l 1,3,-1 + 138 700 l 1,4,-1 + 138 1484 l 1,5,-1 + 318 1484 l 1,6,-1 + 318 804 l 1,7,-1 + 442 876 l 1,8,-1 + 442 717 l 1,9,-1 + 318 646 l 1,10,-1 + 318 0 l 1,11,-1 + 138 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: Nacute +Encoding: 323 323 261 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 14 + 5 + 38 + 1 + 14 + 73 + 14 + 17 + 5 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1840 basechar 0 +AnchorPoint: "Anchor-20" 1460 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 529 0 2 +EndChar + +StartChar: nacute +Encoding: 324 324 262 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 27 + 17 + 38 + 1 + 27 + 97 + 27 + 30 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 840 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1120 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 4 0 3 +Refer: 118 180 N 1 0 0 1 388 0 2 +EndChar + +StartChar: Ncommaaccent +Encoding: 325 325 263 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 18 +PUSHW_1 + -4 +PUSHB_5 + 18 + 14 + 5 + 12 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 720 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 508 0 2 +EndChar + +StartChar: ncommaaccent +Encoding: 326 326 264 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 31 + 0 + 31 + 27 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 900 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 4 0 3 +Refer: 2298 -1 N 1 0 0 1 347 0 2 +EndChar + +StartChar: Ncaron +Encoding: 327 327 265 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 14 + 14 + 5 + 38 + 1 + 16 +PUSHW_1 + -6 +PUSHB_5 + 16 + 22 + 5 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1840 basechar 0 +AnchorPoint: "Anchor-20" 1460 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 403 0 2 +EndChar + +StartChar: ncaron +Encoding: 328 328 266 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 27 + 27 + 17 + 38 + 1 + 29 +PUSHW_1 + -2 +PUSHB_5 + 29 + 35 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 840 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1120 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 4 0 3 +Refer: 649 711 N 1 0 0 1 242 0 2 +EndChar + +StartChar: napostrophe +Encoding: 329 329 267 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 36 + 3 + 1 + 36 +PUSHW_1 + -41 +PUSHB_5 + 36 + 36 + 10 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 955 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1237 1540 basechar 0 +AnchorPoint: "Anchor-20" 1237 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 98 0 2 +Refer: 2021 8217 N 1 0 0 1 -129 0 2 +EndChar + +StartChar: Eng +Encoding: 330 330 268 +Width: 1481 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 10 + 33 + 25 + 19 + 19 + 20 + 20 + 3 + 33 + 3 + 38 + 37 + 25 + 29 + 0 + 29 + 14 + 95 + 89 + 29 + 4 + 22 + 3 + 19 + 18 + 0 + 6 + 95 + 89 + 4 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1481 1540 basechar 0 +AnchorPoint: "Anchor-20" 1481 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +941 -20 m 0,0,1 + 846 -20 846 -20 764 17 c 128,-1,2 + 682 54 682 54 623 128 c 1,3,-1 + 750 243 l 1,4,5 + 840 133 840 133 946 133 c 0,6,7 + 1019 133 1019 133 1061.5 172.5 c 128,-1,8 + 1104 212 1104 212 1123 293 c 128,-1,9 + 1142 374 1142 374 1142 546 c 2,10,-1 + 1142 868 l 2,11,12 + 1142 1081 1142 1081 1063.5 1177.5 c 128,-1,13 + 985 1274 985 1274 808 1274 c 0,14,15 + 689 1274 689 1274 585 1222 c 128,-1,16 + 481 1170 481 1170 420.5 1081 c 128,-1,17 + 360 992 360 992 360 891 c 2,18,-1 + 360 0 l 1,19,-1 + 169 0 l 1,20,-1 + 169 1092 l 1,21,-1 + 165 1409 l 1,22,-1 + 349 1409 l 1,23,24 + 356 1255 356 1255 356 1158 c 1,25,-1 + 360 1158 l 1,26,27 + 432 1287 432 1287 567.5 1358 c 128,-1,28 + 703 1429 703 1429 866 1429 c 0,29,30 + 1112 1429 1112 1429 1222 1300 c 128,-1,31 + 1332 1171 1332 1171 1332 889 c 2,32,-1 + 1332 542 l 2,33,34 + 1332 320 1332 320 1293.5 206.5 c 128,-1,35 + 1255 93 1255 93 1170 36.5 c 128,-1,36 + 1085 -20 1085 -20 941 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: eng +Encoding: 331 331 269 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 7 + 33 + 25 + 16 + 16 + 17 + 17 + 2 + 33 + 3 + 37 + 36 + 25 + 29 + 16 + 29 + 12 + 80 + 89 + 29 + 16 + 20 + 15 + 16 + 21 + 0 + 4 + 80 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 810 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +769 -425 m 0,0,1 + 692 -425 692 -425 642 -416 c 1,2,-1 + 642 -277 l 1,3,-1 + 704 -283 l 1,4,5 + 773 -283 773 -283 801 -247 c 128,-1,6 + 829 -211 829 -211 829 -107 c 2,7,-1 + 829 686 l 2,8,9 + 829 793 829 793 808 852 c 128,-1,10 + 787 911 787 911 741 937 c 128,-1,11 + 695 963 695 963 606 963 c 0,12,13 + 476 963 476 963 401 874 c 128,-1,14 + 326 785 326 785 326 627 c 2,15,-1 + 326 0 l 1,16,-1 + 146 0 l 1,17,-1 + 146 851 l 2,18,19 + 146 1040 146 1040 140 1082 c 1,20,-1 + 310 1082 l 1,21,22 + 311 1077 311 1077 312 1055 c 128,-1,23 + 313 1033 313 1033 314.5 1004.5 c 128,-1,24 + 316 976 316 976 318 897 c 1,25,-1 + 321 897 l 1,26,27 + 383 1009 383 1009 464.5 1055.5 c 128,-1,28 + 546 1102 546 1102 667 1102 c 0,29,30 + 845 1102 845 1102 927.5 1013.5 c 128,-1,31 + 1010 925 1010 925 1010 721 c 2,32,-1 + 1010 -134 l 2,33,34 + 1010 -285 1010 -285 950 -355 c 128,-1,35 + 890 -425 890 -425 769 -425 c 0,0,1 +EndSplineSet +EndChar + +StartChar: Omacron +Encoding: 332 332 270 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 27 + 27 + 5 + 38 + 2 + 28 + 0 + 28 + 27 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 470 329 2 +EndChar + +StartChar: omacron +Encoding: 333 333 271 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 23 + 23 + 17 + 38 + 2 + 24 + 0 + 24 + 23 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 244 0 2 +EndChar + +StartChar: Obreve +Encoding: 334 334 272 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 27 + 27 + 5 + 38 + 2 + 30 + 0 + 30 + 38 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 487 0 2 +EndChar + +StartChar: obreve +Encoding: 335 335 273 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 23 + 23 + 17 + 38 + 2 + 26 + 0 + 26 + 32 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 272 0 2 +EndChar + +StartChar: Ohungarumlaut +Encoding: 336 336 274 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 2 + 27 + 5 + 38 + 3 + 2 + 27 + 93 + 27 + 36 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2308 -1 N 1 0 0 1 482 0 2 +EndChar + +StartChar: ohungarumlaut +Encoding: 337 337 275 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 2 + 23 + 17 + 38 + 3 + 2 + 23 + 103 + 23 + 32 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 671 733 N 1 0 0 1 265 0 2 +EndChar + +StartChar: OE +Encoding: 338 338 276 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 52 + 30 + 5 + 0 + 10 + 14 + 18 + 18 + 16 + 12 + 23 + 19 + 19 + 23 + 5 + 3 + 33 + 34 + 14 + 17 + 95 + 89 + 14 + 14 + 19 + 11 + 20 + 19 + 95 + 89 + 20 + 18 + 11 + 12 + 95 + 89 + 11 + 3 + 8 + 27 + 95 + 89 + 8 + 4 + 2 + 21 + 95 + 89 + 2 + 19 + 127 + 34 + 1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SRP2 +IP +IP +SHP[rp2] +SRP1 +SHP[rp1] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2048 1840 basechar 0 +AnchorPoint: "Anchor-20" 2048 -380 basechar 0 +AnchorPoint: "Anchor-16" 1100 1540 basechar 0 +AnchorPoint: "Anchor-15" 1860 1540 basechar 0 +AnchorPoint: "Anchor-14" 1020 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +999 0 m 1,0,1 + 932 -10 932 -10 789 -10 c 0,2,3 + 466 -10 466 -10 281.5 183 c 128,-1,4 + 97 376 97 376 97 711 c 0,5,6 + 97 1043 97 1043 281 1231.5 c 128,-1,7 + 465 1420 465 1420 791 1420 c 0,8,9 + 898 1420 898 1420 1003 1409 c 1,10,-1 + 1917 1409 l 1,11,-1 + 1917 1253 l 1,12,-1 + 1114 1253 l 1,13,-1 + 1114 801 l 1,14,-1 + 1857 801 l 1,15,-1 + 1857 647 l 1,16,-1 + 1114 647 l 1,17,-1 + 1114 156 l 1,18,-1 + 1958 156 l 1,19,-1 + 1958 0 l 1,20,-1 + 999 0 l 1,0,1 +789 145 m 0,21,22 + 871 145 871 145 923 149 c 1,23,-1 + 923 1260 l 1,24,25 + 879 1264 879 1264 842.5 1264 c 128,-1,26 + 806 1264 806 1264 791 1264 c 0,27,28 + 546 1264 546 1264 418.5 1121 c 128,-1,29 + 291 978 291 978 291 711 c 0,30,31 + 291 443 291 443 422.5 294 c 128,-1,32 + 554 145 554 145 789 145 c 0,21,22 +EndSplineSet +EndChar + +StartChar: oe +Encoding: 339 339 277 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 69 + 33 + 16 + 11 + 21 + 27 + 44 + 0 + 0 + 27 + 6 + 7 + 7 + 38 + 25 + 25 + 27 + 16 + 3 + 45 + 46 + 44 + 0 + 80 + 89 + 13 + 44 + 1 + 20 + 4 + 44 + 44 + 9 + 23 + 23 + 41 + 80 + 89 + 23 + 16 + 21 + 11 + 19 + 13 + 19 + 30 + 80 + 89 + 19 + 16 + 13 + 35 + 80 + 89 + 13 + 22 + 9 + 3 + 80 + 89 + 239 + 6 + 1 + 128 + 6 + 1 + 6 + 6 + 9 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1460 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1933 1540 basechar 0 +AnchorPoint: "Anchor-20" 1933 -380 basechar 0 +AnchorPoint: "Anchor-18" 1780 900 basechar 0 +AnchorPoint: "Anchor-16" 920 1200 basechar 0 +AnchorPoint: "Anchor-15" 1780 1260 basechar 0 +AnchorPoint: "Anchor-14" 980 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1070 503 m 1,0,1 + 1070 317 1070 317 1147 216 c 128,-1,2 + 1224 115 1224 115 1372 115 c 0,3,4 + 1489 115 1489 115 1559.5 162 c 128,-1,5 + 1630 209 1630 209 1655 281 c 1,6,-1 + 1813 236 l 1,7,8 + 1716 -20 1716 -20 1372 -20 c 0,9,10 + 1097 -20 1097 -20 976 163 c 1,11,12 + 852 -20 852 -20 575 -20 c 0,13,14 + 337 -20 337 -20 211.5 124.5 c 128,-1,15 + 86 269 86 269 86 542 c 0,16,17 + 86 821 86 821 212.5 961.5 c 128,-1,18 + 339 1102 339 1102 581 1102 c 0,19,20 + 862 1102 862 1102 979 925 c 1,21,22 + 1105 1102 1105 1102 1365 1102 c 0,23,24 + 1842 1102 1842 1102 1842 527 c 2,25,-1 + 1842 503 l 1,26,-1 + 1070 503 l 1,0,1 +881 542 m 0,27,28 + 881 761 881 761 812 865 c 128,-1,29 + 743 969 743 969 584 969 c 0,30,31 + 422 969 422 969 348.5 862.5 c 128,-1,32 + 275 756 275 756 275 542 c 0,33,34 + 275 113 275 113 573 113 c 0,35,36 + 737 113 737 113 809 217 c 128,-1,37 + 881 321 881 321 881 542 c 0,27,28 +1656 641 m 1,38,39 + 1641 812 1641 812 1569 890.5 c 128,-1,40 + 1497 969 1497 969 1362 969 c 0,41,42 + 1231 969 1231 969 1154.5 881.5 c 128,-1,43 + 1078 794 1078 794 1072 641 c 1,44,-1 + 1656 641 l 1,38,39 +EndSplineSet +EndChar + +StartChar: Racute +Encoding: 340 340 278 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 23 + 5 + 38 + 2 + 23 +PUSHW_1 + -11 +PUSHB_5 + 23 + 26 + 4 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 481 0 2 +EndChar + +StartChar: racute +Encoding: 341 341 279 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 20 + 17 + 38 + 1 + 20 + 74 + 20 + 23 + 3 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 85 114 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 182 0 2 +EndChar + +StartChar: Rcommaaccent +Encoding: 342 342 280 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 27 +PUSHW_1 + -31 +PUSHB_5 + 27 + 23 + 4 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 517 0 2 +EndChar + +StartChar: rcommaaccent +Encoding: 343 343 281 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 24 +PUSHW_1 + -162 +PUSHB_5 + 24 + 20 + 3 + 12 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 180 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 400 1200 basechar 0 +AnchorPoint: "Anchor-15" 600 1260 basechar 0 +AnchorPoint: "Anchor-14" 240 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 85 114 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 2 0 2 +EndChar + +StartChar: Rcaron +Encoding: 344 344 282 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 23 + 23 + 5 + 38 + 2 + 25 +PUSHW_1 + -87 +PUSHB_5 + 25 + 31 + 4 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 358 0 2 +EndChar + +StartChar: rcaron +Encoding: 345 345 283 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 20 + 20 + 17 + 38 + 1 + 22 +PUSHW_1 + -5 +PUSHB_5 + 22 + 28 + 3 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 85 114 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 56 0 2 +EndChar + +StartChar: Sacute +Encoding: 346 346 284 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 46 + 5 + 38 + 1 + 46 + 91 + 46 + 49 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 490 329 2 +EndChar + +StartChar: sacute +Encoding: 347 347 285 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 43 + 17 + 38 + 1 + 43 + 93 + 43 + 46 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 313 0 2 +EndChar + +StartChar: Scircumflex +Encoding: 348 348 286 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 47 + 47 + 5 + 38 + 1 + 52 + 18 + 52 + 46 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 370 0 2 +EndChar + +StartChar: scircumflex +Encoding: 349 349 287 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 44 + 44 + 17 + 38 + 1 + 49 + 0 + 49 + 43 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 172 0 2 +EndChar + +StartChar: Scedilla +Encoding: 350 350 288 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 50 + 40 + 50 + 46 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 730 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 689 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 122 184 N 1 0 0 1 422 0 2 +EndChar + +StartChar: scedilla +Encoding: 351 351 289 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 47 + 15 + 47 + 43 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 520 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 122 184 N 1 0 0 1 218 0 2 +EndChar + +StartChar: Scaron +Encoding: 352 352 290 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 46 + 46 + 5 + 38 + 1 + 48 + 19 + 48 + 54 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 371 0 2 +EndChar + +StartChar: scaron +Encoding: 353 353 291 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 43 + 43 + 17 + 38 + 1 + 45 + 0 + 45 + 51 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 173 0 2 +EndChar + +StartChar: Tcommaaccent +Encoding: 354 354 292 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 12 + 26 + 12 + 8 + 3 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 650 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1300 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 55 84 N 1 0 0 1 0 0 3 +Refer: 122 184 N 1 0 0 1 350 0 2 +EndChar + +StartChar: tcommaaccent +Encoding: 355 355 293 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 137 + 15 + 41 + 31 + 41 + 47 + 41 + 95 + 41 + 111 + 41 + 5 + 226 + 15 + 41 + 63 + 41 + 79 + 41 + 95 + 41 + 111 + 41 + 127 + 41 + 191 + 41 + 7 + 15 + 41 + 31 + 41 + 47 + 41 + 95 + 41 + 143 + 41 + 159 + 41 + 191 + 41 + 207 + 41 + 8 + 15 + 41 + 31 + 41 + 47 + 41 + 63 + 41 + 111 + 41 + 127 + 41 + 207 + 41 + 223 + 41 + 239 + 41 + 9 + 178 + 15 + 41 + 31 + 41 + 95 + 41 + 111 + 41 + 127 + 41 + 143 + 41 + 191 + 41 + 207 + 41 + 8 + 15 + 41 + 31 + 41 + 47 + 41 + 63 + 41 + 111 + 41 + 175 + 41 + 191 + 41 + 207 + 41 + 223 + 41 + 239 + 41 + 10 + 15 + 41 + 31 + 41 + 63 + 41 + 79 + 41 + 111 + 41 + 127 + 41 + 143 + 41 + 191 + 41 + 207 + 41 + 239 + 41 + 255 + 41 + 11 + 130 + 128 + 41 + 1 + 1 + 25 + 17 + 25 + 21 + 4 + 20 + 37 +CALL +SRP1 +SHC[rp1] +DELTAP1 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +EndTTInstrs +AnchorPoint: "Anchor-25" 320 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 620 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 87 116 N 1 0 0 1 0 0 2 +Refer: 122 184 N 1 0 0 1 80 0 2 +EndChar + +StartChar: Tcaron +Encoding: 356 356 294 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 8 + 8 + 5 + 38 + 1 + 10 +PUSHW_1 + -5 +PUSHB_5 + 10 + 16 + 4 + 6 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1300 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 55 84 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 289 0 2 +EndChar + +StartChar: tcaron +Encoding: 357 357 295 +Width: 768 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 1 + 25 +PUSHW_1 + 392 +PUSHB_5 + 25 + 21 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 768 1540 basechar 0 +AnchorPoint: "Anchor-20" 880 -380 basechar 0 +AnchorPoint: "Anchor-16" 260 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 87 116 N 1 0 0 1 0 0 2 +Refer: 2300 -1 N 1 0 0 1 460 75 2 +EndChar + +StartChar: Tbar +Encoding: 358 358 296 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 1 + 5 + 5 + 10 + 6 + 6 + 9 + 12 + 14 + 2 + 5 + 17 + 16 + 0 + 12 + 13 + 12 + 95 + 89 + 4 + 8 + 9 + 8 + 95 + 89 + 1 + 9 + 9 + 5 + 13 + 3 + 5 + 18 + 32 + 17 + 1 + 16 + 17 + 1 + 0 + 17 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +720 1253 m 1,0,-1 + 720 801 l 1,1,-1 + 1001 801 l 1,2,-1 + 1001 647 l 1,3,-1 + 720 647 l 1,4,-1 + 720 0 l 1,5,-1 + 530 0 l 1,6,-1 + 530 647 l 1,7,-1 + 251 647 l 1,8,-1 + 251 801 l 1,9,-1 + 530 801 l 1,10,-1 + 530 1253 l 1,11,-1 + 46 1253 l 1,12,-1 + 46 1409 l 1,13,-1 + 1204 1409 l 1,14,-1 + 1204 1253 l 1,15,-1 + 720 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: tbar +Encoding: 359 359 297 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 64 + 6 + 27 + 18 + 13 + 13 + 11 + 23 + 27 + 27 + 26 + 22 + 1 + 1 + 19 + 15 + 11 + 11 + 29 + 30 + 15 + 30 + 1 + 11 + 0 + 30 + 1 + 17 + 3 + 25 + 17 + 18 + 17 + 80 + 89 + 0 + 13 + 14 + 13 + 80 + 89 + 26 + 15 + 14 + 79 + 14 + 95 + 14 + 3 + 16 + 3 + 14 + 14 + 9 + 22 + 20 + 64 + 18 + 15 + 9 + 4 + 80 + 89 + 9 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,white] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SDB +DELTAP1 +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 260 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +336 516 m 1,0,-1 + 336 268 l 2,1,2 + 336 190 336 190 361.5 158.5 c 128,-1,3 + 387 127 387 127 450 127 c 0,4,5 + 486 127 486 127 554 141 c 1,6,-1 + 554 8 l 1,7,8 + 465 -16 465 -16 372 -16 c 0,9,10 + 156 -16 156 -16 156 229 c 2,11,-1 + 156 516 l 1,12,-1 + 31 516 l 1,13,-1 + 31 647 l 1,14,-1 + 156 647 l 1,15,-1 + 156 951 l 1,16,-1 + 31 951 l 1,17,-1 + 31 1082 l 1,18,-1 + 163 1082 l 1,19,-1 + 216 1324 l 1,20,-1 + 336 1324 l 1,21,-1 + 336 1082 l 1,22,-1 + 536 1082 l 1,23,-1 + 536 951 l 1,24,-1 + 336 951 l 1,25,-1 + 336 647 l 1,26,-1 + 536 647 l 1,27,-1 + 536 516 l 1,28,-1 + 336 516 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: Utilde +Encoding: 360 360 298 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 20 + 20 + 5 + 38 + 1 + 29 + 0 + 29 + 41 + 4 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1260 1300 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 404 0 2 +EndChar + +StartChar: utilde +Encoding: 361 361 299 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 27 + 27 + 17 + 38 + 1 + 36 + 13 + 36 + 48 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 980 1000 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 246 0 2 +EndChar + +StartChar: Umacron +Encoding: 362 362 300 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 20 + 20 + 5 + 38 + 1 + 21 + 1 + 21 + 20 + 4 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 415 329 2 +EndChar + +StartChar: umacron +Encoding: 363 363 301 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 27 + 27 + 17 + 38 + 1 + 28 +PUSHW_1 + -2 +PUSHB_5 + 28 + 27 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 240 0 2 +EndChar + +StartChar: Ubreve +Encoding: 364 364 302 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 20 + 20 + 5 + 38 + 1 + 23 + 0 + 23 + 31 + 4 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 430 0 2 +EndChar + +StartChar: ubreve +Encoding: 365 365 303 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 27 + 27 + 17 + 38 + 1 + 30 +PUSHW_1 + -3 +PUSHB_5 + 30 + 36 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 267 0 2 +EndChar + +StartChar: Uring +Encoding: 366 366 304 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 2 + 1 + 0 + 23 + 96 + 23 + 112 + 23 + 128 + 23 + 240 + 23 + 5 + 23 + 3 + 2 + 1 + 26 + 103 + 26 + 1 + 38 + 26 + 54 + 26 + 70 + 26 + 3 + 83 + 26 + 115 + 26 + 2 + 0 + 26 + 20 + 4 + 15 + 37 +CALL +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 668 730 N 1 0 0 1 447 203 2 +EndChar + +StartChar: uring +Encoding: 367 367 305 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 30 + 30 + 17 + 38 + 2 + 1 + 33 + 1 + 33 + 27 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 668 730 N 1 0 0 1 276 0 2 +EndChar + +StartChar: Uhungarumlaut +Encoding: 368 368 306 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 20 + 5 + 38 + 2 + 1 + 20 + 81 + 20 + 29 + 4 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2308 -1 N 1 0 0 1 413 0 2 +EndChar + +StartChar: uhungarumlaut +Encoding: 369 369 307 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 27 + 17 + 38 + 2 + 1 + 27 + 100 + 27 + 36 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 671 733 N 1 0 0 1 261 0 2 +EndChar + +StartChar: Uogonek +Encoding: 370 370 308 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 30 +PUSHW_1 + -409 +NPUSHB + 25 + 30 + 30 + 16 + 16 + 37 + 32 + 41 + 1 + 32 + 41 + 80 + 41 + 96 + 41 + 112 + 41 + 128 + 41 + 160 + 41 + 176 + 41 + 192 + 41 + 8 +DELTAP1 +DELTAP2 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 860 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 720 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 2 +Refer: 669 731 N 1 0 0 1 544 0 2 +EndChar + +StartChar: uogonek +Encoding: 371 371 309 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 36 +PUSHW_1 + -30 +PUSHB_5 + 36 + 36 + 11 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 880 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 599 0 2 +EndChar + +StartChar: Wcircumflex +Encoding: 372 372 310 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 27 + 27 + 5 + 38 + 1 + 32 +PUSHW_1 + -3 +PUSHB_5 + 32 + 26 + 9 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1300 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1933 1540 basechar 0 +AnchorPoint: "Anchor-20" 1933 -380 basechar 0 +AnchorPoint: "Anchor-16" 970 1540 basechar 0 +AnchorPoint: "Anchor-15" 1900 1540 basechar 0 +AnchorPoint: "Anchor-14" 970 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 58 87 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 633 0 2 +EndChar + +StartChar: wcircumflex +Encoding: 373 373 311 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 22 + 22 + 17 + 38 + 1 + 27 +PUSHW_1 + -5 +PUSHB_5 + 27 + 21 + 8 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1000 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 90 119 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 404 0 2 +EndChar + +StartChar: Ycircumflex +Encoding: 374 374 312 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 10 + 10 + 5 + 38 + 1 + 15 +PUSHW_1 + -5 +PUSHB_5 + 15 + 9 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 347 0 2 +EndChar + +StartChar: ycircumflex +Encoding: 375 375 313 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 24 + 24 + 17 + 38 + 1 + 29 + 0 + 29 + 23 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 460 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 182 0 2 +EndChar + +StartChar: Ydieresis +Encoding: 376 376 314 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 9 + 9 + 5 + 38 + 2 + 1 + 13 + 0 + 13 + 11 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 360 0 2 +EndChar + +StartChar: Zacute +Encoding: 377 377 315 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 10 + 5 + 38 + 1 + 10 + 74 + 10 + 13 + 1 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1030 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 61 90 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 416 0 2 +EndChar + +StartChar: zacute +Encoding: 378 378 316 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 10 + 17 + 38 + 1 + 10 + 93 + 10 + 13 + 0 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 740 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 93 122 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 309 0 2 +EndChar + +StartChar: Zdotaccent +Encoding: 379 379 317 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 10 + 5 + 38 + 1 + 10 + 0 + 10 + 12 + 1 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1030 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 61 90 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 380 293 2 +EndChar + +StartChar: zdotaccent +Encoding: 380 380 318 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 10 + 0 + 10 + 12 + 0 + 8 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 740 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 93 122 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 253 0 2 +EndChar + +StartChar: Zcaron +Encoding: 381 381 319 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 10 + 10 + 5 + 38 + 1 + 12 + 17 + 12 + 18 + 1 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1030 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 61 90 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 312 0 2 +EndChar + +StartChar: zcaron +Encoding: 382 382 320 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 10 + 10 + 17 + 38 + 1 + 12 +PUSHW_1 + -12 +PUSHB_5 + 12 + 18 + 0 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 740 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 93 122 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 156 0 2 +EndChar + +StartChar: longs +Encoding: 383 383 321 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 7 + 0 + 0 + 1 + 1 + 15 + 14 + 239 + 15 + 1 + 208 + 15 + 1 + 207 + 15 + 1 + 160 + 15 + 176 + 15 + 2 + 143 + 15 + 1 + 96 + 15 + 112 + 15 + 2 + 15 + 15 + 1 + 224 + 15 + 240 + 15 + 2 + 207 + 15 + 1 + 15 +PUSHW_1 + -64 +NPUSHB + 22 + 34 + 37 + 72 + 63 + 15 + 1 + 96 + 15 + 1 + 15 + 15 + 1 + 10 + 3 + 5 + 10 + 80 + 89 + 5 + 0 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +CALL +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +318 0 m 1,0,-1 + 138 0 l 1,1,-1 + 138 1204 l 2,2,3 + 138 1352 138 1352 203 1417 c 128,-1,4 + 268 1482 268 1482 402 1482 c 0,5,6 + 477 1482 477 1482 529 1470 c 1,7,-1 + 529 1333 l 1,8,9 + 484 1341 484 1341 449 1341 c 0,10,11 + 380 1341 380 1341 349 1306 c 128,-1,12 + 318 1271 318 1271 318 1179 c 2,13,-1 + 318 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0180 +Encoding: 384 384 322 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 49 + 22 + 7 + 4 + 38 + 38 + 1 + 29 + 17 + 5 + 29 + 3 + 44 + 45 + 27 + 21 + 10 + 22 + 14 + 19 + 19 + 41 + 80 + 89 + 19 + 22 + 7 + 31 + 0 + 31 + 81 + 89 + 4 + 0 + 0 + 14 + 2 + 14 + 35 + 80 + 89 + 0 + 14 + 1 + 224 + 14 + 240 + 14 + 2 + 14 +PUSHW_1 + -64 +PUSHB_7 + 9 + 12 + 72 + 14 + 16 + 2 + 0 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +11 1337 m 1,0,-1 + 138 1337 l 1,1,-1 + 138 1484 l 1,2,-1 + 318 1484 l 1,3,-1 + 318 1337 l 1,4,-1 + 623 1337 l 1,5,-1 + 623 1206 l 1,6,-1 + 318 1206 l 1,7,-1 + 318 1061 l 2,8,9 + 318 996 318 996 314 908 c 1,10,-1 + 318 908 l 1,11,12 + 368 1012 368 1012 450.5 1057 c 128,-1,13 + 533 1102 533 1102 655 1102 c 0,14,15 + 860 1102 860 1102 956.5 964 c 128,-1,16 + 1053 826 1053 826 1053 546 c 0,17,18 + 1053 -20 1053 -20 655 -20 c 0,19,20 + 532 -20 532 -20 450.5 24.5 c 128,-1,21 + 369 69 369 69 318 168 c 1,22,-1 + 316 168 l 1,23,24 + 316 137 316 137 312 73.5 c 128,-1,25 + 308 10 308 10 306 0 c 1,26,-1 + 132 0 l 1,27,28 + 138 54 138 54 138 223 c 2,29,-1 + 138 1206 l 1,30,-1 + 11 1206 l 1,31,-1 + 11 1337 l 1,0,-1 +864 540 m 0,32,33 + 864 767 864 767 804 865 c 128,-1,34 + 744 963 744 963 609 963 c 0,35,36 + 457 963 457 963 387.5 859 c 128,-1,37 + 318 755 318 755 318 529 c 0,38,39 + 318 316 318 316 386 214.5 c 128,-1,40 + 454 113 454 113 607 113 c 0,41,42 + 743 113 743 113 803.5 213.5 c 128,-1,43 + 864 314 864 314 864 540 c 0,32,33 +EndSplineSet +EndChar + +StartChar: uni0181 +Encoding: 385 385 323 +Width: 1553 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 47 + 9 + 14 + 23 + 20 + 39 + 39 + 30 + 30 + 4 + 34 + 20 + 20 + 26 + 0 + 0 + 4 + 14 + 3 + 43 + 44 + 23 + 39 + 29 + 39 + 29 + 95 + 89 + 39 + 12 + 39 + 12 + 4 + 17 + 38 + 6 + 17 + 6 + 96 + 89 + 17 + 3 + 4 + 30 + 95 + 89 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1553 1540 basechar 0 +AnchorPoint: "Anchor-20" 1553 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1260 1540 basechar 0 +AnchorPoint: "Anchor-14" 840 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1436 397 m 0,0,1 + 1436 209 1436 209 1299 104.5 c 128,-1,2 + 1162 0 1162 0 918 0 c 2,3,-1 + 346 0 l 1,4,-1 + 346 1261 l 1,5,-1 + 317 1261 l 2,6,7 + 240 1261 240 1261 207 1227 c 128,-1,8 + 174 1193 174 1193 174 1122 c 0,9,10 + 174 1073 174 1073 192 1017 c 1,11,-1 + 37 1000 l 1,12,13 + 20 1074 20 1074 20 1135 c 0,14,15 + 20 1265 20 1265 106 1337 c 128,-1,16 + 192 1409 192 1409 346 1409 c 2,17,-1 + 858 1409 l 2,18,19 + 1354 1409 1354 1409 1354 1067 c 0,20,21 + 1354 942 1354 942 1284 857 c 128,-1,22 + 1214 772 1214 772 1086 743 c 1,23,24 + 1254 723 1254 723 1345 630.5 c 128,-1,25 + 1436 538 1436 538 1436 397 c 0,0,1 +1243 412 m 0,26,27 + 1243 661 1243 661 893 661 c 2,28,-1 + 537 661 l 1,29,-1 + 537 153 l 1,30,-1 + 908 153 l 2,31,32 + 1083 153 1083 153 1163 218 c 128,-1,33 + 1243 283 1243 283 1243 412 c 0,26,27 +1162 1044 m 0,34,35 + 1162 1158 1162 1158 1084 1207 c 128,-1,36 + 1006 1256 1006 1256 858 1256 c 2,37,-1 + 537 1256 l 1,38,-1 + 537 810 l 1,39,-1 + 858 810 l 2,40,41 + 1011 810 1011 810 1086.5 867.5 c 128,-1,42 + 1162 925 1162 925 1162 1044 c 0,34,35 +EndSplineSet +EndChar + +StartChar: uni0182 +Encoding: 386 386 324 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 9 + 18 + 18 + 4 + 7 + 13 + 13 + 0 + 4 + 0 + 22 + 23 + 96 + 23 + 1 + 23 +PUSHW_1 + -64 +NPUSHB + 28 + 30 + 35 + 72 + 15 + 23 + 1 + 22 + 3 + 9 + 17 + 95 + 89 + 9 + 9 + 4 + 5 + 5 + 8 + 95 + 89 + 5 + 3 + 4 + 18 + 95 + 89 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +CALL +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 760 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1344 1540 basechar 0 +AnchorPoint: "Anchor-20" 1344 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1263 413 m 0,0,1 + 1263 226 1263 226 1134 113 c 128,-1,2 + 1005 0 1005 0 778 0 c 2,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 1119 1409 l 1,6,-1 + 1119 1253 l 1,7,-1 + 359 1253 l 1,8,-1 + 359 813 l 1,9,-1 + 766 813 l 2,10,11 + 1002 813 1002 813 1132.5 708 c 128,-1,12 + 1263 603 1263 603 1263 413 c 0,0,1 +1071 411 m 0,13,14 + 1071 532 1071 532 989 596.5 c 128,-1,15 + 907 661 907 661 743 661 c 2,16,-1 + 359 661 l 1,17,-1 + 359 151 l 1,18,-1 + 751 151 l 2,19,20 + 915 151 915 151 993 219 c 128,-1,21 + 1071 287 1071 287 1071 411 c 0,13,14 +EndSplineSet +EndChar + +StartChar: uni0183 +Encoding: 387 387 325 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 16 + 5 + 32 + 32 + 12 + 15 + 26 + 26 + 0 + 12 + 0 + 38 + 39 + 19 + 5 + 23 + 2 + 23 + 29 + 80 + 89 + 23 + 16 + 13 + 16 + 83 + 89 + 13 + 0 + 10 + 21 + 2 + 35 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 -20 1053 -20 655 -20 c 0,2,3 + 532 -20 532 -20 450.5 24.5 c 128,-1,4 + 369 69 369 69 318 168 c 1,5,-1 + 316 168 l 1,6,7 + 316 137 316 137 312 73.5 c 128,-1,8 + 308 10 308 10 306 0 c 1,9,-1 + 132 0 l 1,10,11 + 138 54 138 54 138 223 c 2,12,-1 + 138 1484 l 1,13,-1 + 882 1484 l 1,14,-1 + 882 1325 l 1,15,-1 + 318 1325 l 1,16,-1 + 318 1061 l 2,17,18 + 318 996 318 996 314 908 c 1,19,-1 + 318 908 l 1,20,21 + 368 1012 368 1012 450.5 1057 c 128,-1,22 + 533 1102 533 1102 655 1102 c 0,23,24 + 860 1102 860 1102 956.5 964 c 128,-1,25 + 1053 826 1053 826 1053 546 c 0,0,1 +864 540 m 0,26,27 + 864 767 864 767 804 865 c 128,-1,28 + 744 963 744 963 609 963 c 0,29,30 + 457 963 457 963 387.5 859 c 128,-1,31 + 318 755 318 755 318 529 c 0,32,33 + 318 316 318 316 386 214.5 c 128,-1,34 + 454 113 454 113 607 113 c 0,35,36 + 743 113 743 113 803.5 213.5 c 128,-1,37 + 864 314 864 314 864 540 c 0,26,27 +EndSplineSet +EndChar + +StartChar: uni0184 +Encoding: 388 388 326 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 15 + 0 + 11 + 20 + 20 + 7 + 5 + 0 + 5 + 25 + 24 + 11 + 19 + 95 + 89 + 11 + 11 + 5 + 9 + 3 + 5 + 20 + 95 + 89 + 5 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 760 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1344 1540 basechar 0 +AnchorPoint: "Anchor-20" 1344 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1263 418 m 0,0,1 + 1263 295 1263 295 1204.5 200 c 128,-1,2 + 1146 105 1146 105 1036.5 52.5 c 128,-1,3 + 927 0 927 0 778 0 c 2,4,-1 + 168 0 l 1,5,-1 + 168 1011 l 1,6,-1 + 10 1176 l 1,7,-1 + 10 1209 l 1,8,-1 + 303 1409 l 1,9,-1 + 359 1409 l 1,10,-1 + 359 823 l 1,11,-1 + 766 823 l 2,12,13 + 1003 823 1003 823 1133 715.5 c 128,-1,14 + 1263 608 1263 608 1263 418 c 0,0,1 +1071 416 m 0,15,16 + 1071 536 1071 536 988.5 603.5 c 128,-1,17 + 906 671 906 671 743 671 c 2,18,-1 + 359 671 l 1,19,-1 + 359 151 l 1,20,-1 + 751 151 l 2,21,22 + 915 151 915 151 993 221.5 c 128,-1,23 + 1071 292 1071 292 1071 416 c 0,15,16 +EndSplineSet +EndChar + +StartChar: uni0185 +Encoding: 389 389 327 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 18 + 4 + 33 + 33 + 0 + 25 + 27 + 13 + 25 + 13 + 39 + 40 + 23 + 21 + 6 + 18 + 10 + 15 + 15 + 36 + 80 + 89 + 15 + 22 + 10 + 30 + 80 + 89 + 10 + 16 + 2 + 0 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +10 1266 m 1,0,-1 + 10 1299 l 1,1,-1 + 267 1484 l 1,2,-1 + 318 1484 l 1,3,-1 + 318 1061 l 2,4,5 + 318 996 318 996 314 908 c 1,6,-1 + 318 908 l 1,7,8 + 368 1012 368 1012 450.5 1057 c 128,-1,9 + 533 1102 533 1102 655 1102 c 0,10,11 + 860 1102 860 1102 956.5 964 c 128,-1,12 + 1053 826 1053 826 1053 546 c 0,13,14 + 1053 -20 1053 -20 655 -20 c 0,15,16 + 532 -20 532 -20 450.5 24.5 c 128,-1,17 + 369 69 369 69 318 168 c 1,18,-1 + 316 168 l 1,19,20 + 316 137 316 137 312 73.5 c 128,-1,21 + 308 10 308 10 306 0 c 1,22,-1 + 132 0 l 1,23,24 + 138 54 138 54 138 223 c 2,25,-1 + 138 1086 l 1,26,-1 + 10 1266 l 1,0,-1 +864 540 m 0,27,28 + 864 767 864 767 804 865 c 128,-1,29 + 744 963 744 963 609 963 c 0,30,31 + 457 963 457 963 387.5 859 c 128,-1,32 + 318 755 318 755 318 529 c 0,33,34 + 318 316 318 316 386 214.5 c 128,-1,35 + 454 113 454 113 607 113 c 0,36,37 + 743 113 743 113 803.5 213.5 c 128,-1,38 + 864 314 864 314 864 540 c 0,27,28 +EndSplineSet +EndChar + +StartChar: uni0186 +Encoding: 390 390 328 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 21 + 20 + 20 + 9 + 3 + 15 + 9 + 15 + 24 + 25 + 21 + 8 + 21 + 8 + 18 + 12 + 18 + 0 + 95 + 89 + 18 + 19 + 12 + 6 + 95 + 89 + 12 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +697 136 m 0,0,1 + 930 136 930 136 1059 285 c 128,-1,2 + 1188 434 1188 434 1188 699 c 0,3,4 + 1188 959 1188 959 1053.5 1116 c 128,-1,5 + 919 1273 919 1273 689 1273 c 0,6,7 + 398 1273 398 1273 247 980 c 1,8,-1 + 91 1058 l 1,9,10 + 179 1240 179 1240 334.5 1335 c 128,-1,11 + 490 1430 490 1430 698 1430 c 0,12,13 + 1020 1430 1020 1430 1201 1234 c 128,-1,14 + 1382 1038 1382 1038 1382 699 c 0,15,16 + 1382 361 1382 361 1201 170.5 c 128,-1,17 + 1020 -20 1020 -20 699 -20 c 0,18,19 + 247 -20 247 -20 104 329 c 1,20,-1 + 285 389 l 1,21,22 + 330 269 330 269 438 202.5 c 128,-1,23 + 546 136 546 136 697 136 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0187 +Encoding: 391 391 329 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 8 + 9 + 9 + 35 + 27 + 21 + 34 + 3 + 16 + 34 + 16 + 39 + 38 + 25 + 30 + 95 + 89 + 25 + 19 + 21 + 35 + 19 + 8 + 35 + 8 + 35 + 12 + 19 + 19 + 0 + 95 + 89 + 19 + 4 + 12 + 6 + 95 + 89 + 12 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +SRP0 +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 890 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +792 1274 m 0,0,1 + 558 1274 558 1274 428 1123.5 c 128,-1,2 + 298 973 298 973 298 711 c 0,3,4 + 298 452 298 452 433.5 294.5 c 128,-1,5 + 569 137 569 137 800 137 c 0,6,7 + 1096 137 1096 137 1245 430 c 1,8,-1 + 1401 352 l 1,9,10 + 1314 170 1314 170 1156.5 75 c 128,-1,11 + 999 -20 999 -20 791 -20 c 0,12,13 + 578 -20 578 -20 422.5 68.5 c 128,-1,14 + 267 157 267 157 185.5 321.5 c 128,-1,15 + 104 486 104 486 104 711 c 0,16,17 + 104 1048 104 1048 286 1239 c 128,-1,18 + 468 1430 468 1430 790 1430 c 0,19,20 + 1065 1430 1065 1430 1230 1297 c 1,21,-1 + 1230 1320 l 2,22,23 + 1230 1458 1230 1458 1298.5 1537 c 128,-1,24 + 1367 1616 1367 1616 1489 1616 c 0,25,26 + 1543 1616 1543 1616 1609 1601 c 1,27,-1 + 1609 1444 l 1,28,29 + 1553 1462 1553 1462 1521 1462 c 0,30,31 + 1450 1462 1450 1462 1419 1426.5 c 128,-1,32 + 1388 1391 1388 1391 1388 1314 c 2,33,-1 + 1388 1081 l 1,34,-1 + 1207 1021 l 1,35,36 + 1158 1144 1158 1144 1049.5 1209 c 128,-1,37 + 941 1274 941 1274 792 1274 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0188 +Encoding: 392 392 330 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 6 + 7 + 7 + 31 + 24 + 18 + 30 + 0 + 13 + 30 + 13 + 38 + 37 + 21 + 26 + 80 + 89 + 21 + 16 + 18 + 31 + 16 + 6 + 31 + 6 + 31 + 10 + 16 + 16 + 34 + 80 + 89 + 16 + 16 + 10 + 3 + 80 + 89 + 10 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +SRP0 +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +275 546 m 0,0,1 + 275 330 275 330 343 226 c 128,-1,2 + 411 122 411 122 548 122 c 0,3,4 + 644 122 644 122 708.5 174 c 128,-1,5 + 773 226 773 226 788 334 c 1,6,-1 + 970 322 l 1,7,8 + 949 166 949 166 837 73 c 128,-1,9 + 725 -20 725 -20 553 -20 c 0,10,11 + 326 -20 326 -20 206.5 123.5 c 128,-1,12 + 87 267 87 267 87 542 c 0,13,14 + 87 815 87 815 207 958.5 c 128,-1,15 + 327 1102 327 1102 551 1102 c 0,16,17 + 701 1102 701 1102 807 1030 c 1,18,19 + 816 1151 816 1151 881.5 1217 c 128,-1,20 + 947 1283 947 1283 1065 1283 c 0,21,22 + 1112 1283 1112 1283 1164 1271 c 1,23,-1 + 1164 1121 l 1,24,25 + 1128 1137 1128 1137 1085 1137 c 0,26,27 + 1019 1137 1019 1137 991.5 1101.5 c 128,-1,28 + 964 1066 964 1066 964 989 c 2,29,-1 + 964 779 l 1,30,-1 + 779 765 l 1,31,32 + 765 855 765 855 708 908 c 128,-1,33 + 651 961 651 961 546 961 c 0,34,35 + 403 961 403 961 339 866 c 128,-1,36 + 275 771 275 771 275 546 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0189 +Encoding: 393 393 331 +Width: 1479 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 670 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 146 208 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni018A +Encoding: 394 394 332 +Width: 1658 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 22 + 0 + 27 + 5 + 10 + 15 + 15 + 5 + 0 + 3 + 33 + 32 + 13 + 13 + 5 + 18 + 26 + 7 + 18 + 7 + 96 + 89 + 18 + 3 + 5 + 27 + 95 + 89 + 5 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 870 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1658 1540 basechar 0 +AnchorPoint: "Anchor-20" 1658 -380 basechar 0 +AnchorPoint: "Anchor-16" 860 1540 basechar 0 +AnchorPoint: "Anchor-15" 1540 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1559 719 m 0,0,1 + 1559 501 1559 501 1474 337.5 c 128,-1,2 + 1389 174 1389 174 1233 87 c 128,-1,3 + 1077 0 1077 0 873 0 c 2,4,-1 + 346 0 l 1,5,-1 + 346 1261 l 1,6,-1 + 317 1261 l 2,7,8 + 240 1261 240 1261 207 1227 c 128,-1,9 + 174 1193 174 1193 174 1122 c 0,10,11 + 174 1073 174 1073 192 1017 c 1,12,-1 + 37 1000 l 1,13,14 + 20 1074 20 1074 20 1135 c 0,15,16 + 20 1265 20 1265 106 1337 c 128,-1,17 + 192 1409 192 1409 346 1409 c 2,18,-1 + 812 1409 l 2,19,20 + 1170 1409 1170 1409 1364.5 1229.5 c 128,-1,21 + 1559 1050 1559 1050 1559 719 c 0,0,1 +1367 719 m 0,22,23 + 1367 981 1367 981 1223.5 1118.5 c 128,-1,24 + 1080 1256 1080 1256 808 1256 c 2,25,-1 + 537 1256 l 1,26,-1 + 537 153 l 1,27,-1 + 851 153 l 2,28,29 + 1006 153 1006 153 1123.5 221 c 128,-1,30 + 1241 289 1241 289 1304 417 c 128,-1,31 + 1367 545 1367 545 1367 719 c 0,22,23 +EndSplineSet +EndChar + +StartChar: uni018B +Encoding: 395 395 333 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 6 + 13 + 13 + 0 + 4 + 17 + 17 + 9 + 0 + 9 + 22 + 23 + 3 + 19 + 95 + 89 + 3 + 3 + 10 + 7 + 10 + 16 + 95 + 89 + 10 + 18 + 7 + 6 + 95 + 89 + 7 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 840 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1344 1540 basechar 0 +AnchorPoint: "Anchor-20" 1344 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1880 basechar 0 +AnchorPoint: "Anchor-15" 1210 1540 basechar 0 +AnchorPoint: "Anchor-14" 720 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +81 413 m 0,0,1 + 81 603 81 603 211.5 708 c 128,-1,2 + 342 813 342 813 578 813 c 2,3,-1 + 985 813 l 1,4,-1 + 985 1253 l 1,5,-1 + 225 1253 l 1,6,-1 + 225 1409 l 1,7,-1 + 1176 1409 l 1,8,-1 + 1176 0 l 1,9,-1 + 566 0 l 2,10,11 + 340 0 340 0 210.5 113 c 128,-1,12 + 81 226 81 226 81 413 c 0,0,1 +273 411 m 0,13,14 + 273 287 273 287 351 219 c 128,-1,15 + 429 151 429 151 593 151 c 2,16,-1 + 985 151 l 1,17,-1 + 985 661 l 1,18,-1 + 601 661 l 2,19,20 + 437 661 437 661 355 596.5 c 128,-1,21 + 273 532 273 532 273 411 c 0,13,14 +EndSplineSet +EndChar + +StartChar: uni018C +Encoding: 396 396 334 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 20 + 9 + 32 + 32 + 14 + 11 + 26 + 26 + 0 + 14 + 0 + 39 + 38 + 24 + 29 + 80 + 89 + 24 + 22 + 20 + 21 + 7 + 21 + 7 + 3 + 17 + 21 + 12 + 11 + 83 + 89 + 12 + 0 + 3 + 35 + 80 + 89 + 3 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +82 546 m 0,0,1 + 82 826 82 826 178.5 964 c 128,-1,2 + 275 1102 275 1102 480 1102 c 0,3,4 + 602 1102 602 1102 684.5 1057 c 128,-1,5 + 767 1012 767 1012 817 908 c 1,6,-1 + 821 908 l 1,7,8 + 817 996 817 996 817 1061 c 2,9,-1 + 817 1325 l 1,10,-1 + 253 1325 l 1,11,-1 + 253 1484 l 1,12,-1 + 997 1484 l 1,13,-1 + 997 223 l 2,14,15 + 997 54 997 54 1003 0 c 1,16,-1 + 829 0 l 1,17,18 + 827 9 827 9 823 73 c 128,-1,19 + 819 137 819 137 819 168 c 1,20,-1 + 817 168 l 1,21,22 + 766 69 766 69 684.5 24.5 c 128,-1,23 + 603 -20 603 -20 480 -20 c 0,24,25 + 82 -20 82 -20 82 546 c 0,0,1 +271 540 m 0,26,27 + 271 315 271 315 331.5 214 c 128,-1,28 + 392 113 392 113 528 113 c 0,29,30 + 679 113 679 113 748 214 c 128,-1,31 + 817 315 817 315 817 529 c 0,32,33 + 817 753 817 753 748 858 c 128,-1,34 + 679 963 679 963 526 963 c 0,35,36 + 391 963 391 963 331 864.5 c 128,-1,37 + 271 766 271 766 271 540 c 0,26,27 +EndSplineSet +EndChar + +StartChar: uni018D +Encoding: 397 397 335 +Width: 1140 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 15 + 1 + 0 + 17 + 0 + 25 + 7 + 17 + 19 + 13 + 7 + 13 + 32 + 33 + 18 + 0 + 80 + 89 + 18 + 27 + 15 + 28 + 80 + 89 + 15 + 21 + 10 + 22 + 80 + 89 + 10 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 760 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1140 1540 basechar 0 +AnchorPoint: "Anchor-20" 1140 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +189 -280 m 1,0,-1 + 708 -280 l 1,1,2 + 608 -191 608 -191 498 -104 c 2,3,-1 + 281 71 l 2,4,5 + 176 159 176 159 131 274 c 128,-1,6 + 86 389 86 389 86 557 c 0,7,8 + 86 836 86 836 207.5 969 c 128,-1,9 + 329 1102 329 1102 571 1102 c 0,10,11 + 822 1102 822 1102 937.5 971 c 128,-1,12 + 1053 840 1053 840 1053 557 c 0,13,14 + 1053 30 1053 30 609 5 c 1,15,-1 + 965 -293 l 1,16,-1 + 965 -425 l 1,17,-1 + 189 -425 l 1,18,-1 + 189 -280 l 1,0,-1 +864 557 m 0,19,20 + 864 777 864 777 799 873 c 128,-1,21 + 734 969 734 969 574 969 c 0,22,23 + 413 969 413 969 344 871 c 128,-1,24 + 275 773 275 773 275 557 c 0,25,26 + 275 345 275 345 343.5 241 c 128,-1,27 + 412 137 412 137 563 137 c 0,28,29 + 676 137 676 137 738.5 179.5 c 128,-1,30 + 801 222 801 222 832.5 314.5 c 128,-1,31 + 864 407 864 407 864 557 c 0,19,20 +EndSplineSet +EndChar + +StartChar: uni018E +Encoding: 398 398 336 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 6 + 2 + 2 + 11 + 0 + 9 + 5 + 11 + 4 + 13 + 12 + 5 + 4 + 95 + 89 + 5 + 5 + 0 + 9 + 9 + 8 + 95 + 89 + 9 + 3 + 0 + 1 + 95 + 89 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1000 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +89 0 m 1,0,-1 + 89 156 l 1,1,-1 + 1008 156 l 1,2,-1 + 1008 647 l 1,3,-1 + 190 647 l 1,4,-1 + 190 801 l 1,5,-1 + 1008 801 l 1,6,-1 + 1008 1253 l 1,7,-1 + 130 1253 l 1,8,-1 + 130 1409 l 1,9,-1 + 1199 1409 l 1,10,-1 + 1199 0 l 1,11,-1 + 89 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni018F +Encoding: 399 399 337 +Width: 1541 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 7 + 3 + 3 + 21 + 13 + 14 + 14 + 4 + 29 + 21 + 29 + 33 + 32 + 31 + 4 + 95 + 89 + 31 + 13 + 31 + 13 + 25 + 17 + 25 + 0 + 96 + 89 + 25 + 19 + 17 + 10 + 95 + 89 + 17 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 890 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1541 1540 basechar 0 +AnchorPoint: "Anchor-20" 1541 -380 basechar 0 +AnchorPoint: "Anchor-17" 780 1540 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +772 126 m 0,0,1 + 999 126 999 126 1124.5 263.5 c 128,-1,2 + 1250 401 1250 401 1261 652 c 1,3,-1 + 276 652 l 1,4,5 + 293 405 293 405 423 265.5 c 128,-1,6 + 553 126 553 126 772 126 c 0,0,1 +1254 810 m 1,7,8 + 1229 1028 1229 1028 1101 1151 c 128,-1,9 + 973 1274 973 1274 774 1274 c 0,10,11 + 619 1274 619 1274 512.5 1207.5 c 128,-1,12 + 406 1141 406 1141 349 1020 c 1,13,-1 + 167 1077 l 1,14,15 + 245 1245 245 1245 398.5 1337.5 c 128,-1,16 + 552 1430 552 1430 774 1430 c 0,17,18 + 982 1430 982 1430 1134 1343 c 128,-1,19 + 1286 1256 1286 1256 1366.5 1092.5 c 128,-1,20 + 1447 929 1447 929 1447 711 c 0,21,22 + 1447 492 1447 492 1365 325.5 c 128,-1,23 + 1283 159 1283 159 1130 69.5 c 128,-1,24 + 977 -20 977 -20 772 -20 c 0,25,26 + 563 -20 563 -20 409.5 69 c 128,-1,27 + 256 158 256 158 175 324.5 c 128,-1,28 + 94 491 94 491 94 711 c 0,29,30 + 94 748 94 748 99 810 c 1,31,-1 + 1254 810 l 1,7,8 +EndSplineSet +EndChar + +StartChar: uni0190 +Encoding: 400 400 338 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 7 + 25 + 15 + 22 + 9 + 9 + 30 + 4 + 16 + 15 + 15 + 35 + 36 + 4 + 36 + 39 + 40 + 7 + 24 + 27 + 24 + 27 + 96 + 89 + 35 + 24 + 16 + 16 + 24 + 35 + 3 + 0 + 12 + 12 + 19 + 95 + 89 + 12 + 4 + 0 + 33 + 95 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 700 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1237 1540 basechar 0 +AnchorPoint: "Anchor-20" 1237 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +608 -20 m 0,0,1 + 455 -20 455 -20 336.5 31.5 c 128,-1,2 + 218 83 218 83 153 177.5 c 128,-1,3 + 88 272 88 272 88 391 c 0,4,5 + 88 533 88 533 170 622.5 c 128,-1,6 + 252 712 252 712 410 736 c 1,7,8 + 130 791 130 791 130 1051 c 0,9,10 + 130 1221 130 1221 259.5 1325 c 128,-1,11 + 389 1429 389 1429 599 1429 c 0,12,13 + 798 1429 798 1429 930.5 1345 c 128,-1,14 + 1063 1261 1063 1261 1133 1088 c 1,15,-1 + 955 1027 l 1,16,17 + 905 1156 905 1156 818.5 1215 c 128,-1,18 + 732 1274 732 1274 606 1274 c 0,19,20 + 476 1274 476 1274 398.5 1216 c 128,-1,21 + 321 1158 321 1158 321 1057 c 0,22,23 + 321 802 321 802 675 802 c 2,24,-1 + 746 802 l 1,25,-1 + 746 654 l 1,26,-1 + 675 654 l 2,27,28 + 473 654 473 654 377 595 c 128,-1,29 + 281 536 281 536 281 403 c 0,30,31 + 281 275 281 275 370.5 204 c 128,-1,32 + 460 133 460 133 615 133 c 0,33,34 + 878 133 878 133 997 405 c 1,35,-1 + 1162 328 l 1,36,37 + 1077 142 1077 142 944 61 c 128,-1,38 + 811 -20 811 -20 608 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0191 +Encoding: 401 401 339 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 1 + 5 + 5 + 10 + 15 + 15 + 3 + 17 + 3 + 20 + 19 + 1 + 4 + 95 + 89 + 1 + 1 + 8 + 16 + 16 + 0 + 95 + 89 + 16 + 3 + 8 + 13 + 95 + 89 + 8 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 100 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +359 1253 m 1,0,-1 + 359 729 l 1,1,-1 + 1145 729 l 1,2,-1 + 1145 571 l 1,3,-1 + 359 571 l 1,4,-1 + 359 -130 l 2,5,6 + 359 -273 359 -273 287.5 -349 c 128,-1,7 + 216 -425 216 -425 85 -425 c 0,8,9 + 24 -425 24 -425 -58 -405 c 1,10,-1 + -23 -249 l 1,11,12 + 28 -266 28 -266 64 -266 c 0,13,14 + 168 -266 168 -266 168 -109 c 2,15,-1 + 168 1409 l 1,16,-1 + 1169 1409 l 1,17,-1 + 1169 1253 l 1,18,-1 + 359 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: florin +Encoding: 402 402 340 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 7 + 5 + 10 + 10 + 16 + 14 + 11 + 11 + 21 + 22 + 23 + 9 + 13 + 14 + 13 + 80 + 89 + 6 + 14 + 14 + 10 + 19 + 19 + 2 + 81 + 89 + 15 + 19 + 127 + 19 + 175 + 19 + 3 + 19 + 10 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 260 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 920 1540 basechar 0 +AnchorPoint: "Anchor-14" 260 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +932 1312 m 1,0,1 + 881 1327 881 1327 822 1327 c 0,2,3 + 762 1327 762 1327 730 1290 c 128,-1,4 + 698 1253 698 1253 679 1159 c 2,5,-1 + 653 1022 l 1,6,-1 + 864 1022 l 1,7,-1 + 839 891 l 1,8,-1 + 626 891 l 1,9,-1 + 372 -434 l 1,10,-1 + 192 -434 l 1,11,-1 + 446 891 l 1,12,-1 + 294 891 l 1,13,-1 + 321 1022 l 1,14,-1 + 472 1022 l 1,15,-1 + 501 1174 l 2,16,17 + 532 1327 532 1327 606.5 1390.5 c 128,-1,18 + 681 1454 681 1454 814 1454 c 0,19,20 + 893 1454 893 1454 963 1434 c 1,21,-1 + 932 1312 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0193 +Encoding: 403 403 341 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 35 + 30 + 0 + 42 + 42 + 12 + 17 + 6 + 24 + 24 + 15 + 17 + 3 + 44 + 43 + 33 + 38 + 95 + 89 + 33 + 27 + 15 + 14 + 95 + 89 + 29 + 0 + 27 + 15 + 0 + 15 + 0 + 20 + 27 + 27 + 3 + 95 + 89 + 27 + 4 + 20 + 9 + 95 + 89 + 20 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 980 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1720 1540 basechar 0 +AnchorPoint: "Anchor-14" 830 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1227 1044 m 1,0,1 + 1167 1164 1167 1164 1061.5 1219 c 128,-1,2 + 956 1274 956 1274 799 1274 c 0,3,4 + 555 1274 555 1274 426 1126.5 c 128,-1,5 + 297 979 297 979 297 711 c 0,6,7 + 297 444 297 444 434 289.5 c 128,-1,8 + 571 135 571 135 813 135 c 0,9,10 + 951 135 951 135 1070.5 177 c 128,-1,11 + 1190 219 1190 219 1264 291 c 1,12,-1 + 1264 545 l 1,13,-1 + 843 545 l 1,14,-1 + 843 705 l 1,15,-1 + 1440 705 l 1,16,-1 + 1440 219 l 1,17,18 + 1328 105 1328 105 1165.5 42.5 c 128,-1,19 + 1003 -20 1003 -20 813 -20 c 0,20,21 + 592 -20 592 -20 432 68 c 128,-1,22 + 272 156 272 156 187.5 321.5 c 128,-1,23 + 103 487 103 487 103 711 c 0,24,25 + 103 1054 103 1054 287 1242 c 128,-1,26 + 471 1430 471 1430 804 1430 c 0,27,28 + 1093 1430 1093 1430 1251 1307 c 1,29,-1 + 1251 1337 l 2,30,31 + 1251 1475 1251 1475 1319.5 1554 c 128,-1,32 + 1388 1633 1388 1633 1510 1633 c 0,33,34 + 1564 1633 1564 1633 1630 1618 c 1,35,-1 + 1630 1461 l 1,36,37 + 1574 1479 1574 1479 1542 1479 c 0,38,39 + 1471 1479 1471 1479 1440 1443.5 c 128,-1,40 + 1409 1408 1409 1408 1409 1331 c 2,41,-1 + 1409 1098 l 1,42,-1 + 1227 1044 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0194 +Encoding: 404 404 342 +Width: 1278 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 9 + 8 + 25 + 13 + 22 + 10 + 7 + 4 + 3 + 19 + 16 + 11 + 12 + 12 + 16 + 3 + 8 + 4 + 31 + 32 + 10 + 7 + 13 + 22 + 4 + 0 + 11 + 8 + 3 + 0 + 28 + 95 + 89 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1278 1540 basechar 0 +AnchorPoint: "Anchor-20" 1278 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1260 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +641 -425 m 0,0,1 + 526 -425 526 -425 459 -353.5 c 128,-1,2 + 392 -282 392 -282 392 -160 c 0,3,4 + 392 -115 392 -115 405.5 -62.5 c 128,-1,5 + 419 -10 419 -10 440 42.5 c 128,-1,6 + 461 95 461 95 540 247 c 1,7,-1 + 10 1409 l 1,8,-1 + 211 1409 l 1,9,-1 + 640 408 l 1,10,-1 + 1067 1409 l 1,11,-1 + 1268 1409 l 1,12,-1 + 738 247 l 1,13,14 + 827 85 827 85 858.5 -5 c 128,-1,15 + 890 -95 890 -95 890 -160 c 0,16,17 + 890 -281 890 -281 823.5 -353 c 128,-1,18 + 757 -425 757 -425 641 -425 c 0,0,1 +727 -163 m 0,19,20 + 727 -106 727 -106 701 -23.5 c 128,-1,21 + 675 59 675 59 641 130 c 1,22,23 + 607 59 607 59 581 -23 c 128,-1,24 + 555 -105 555 -105 555 -163 c 0,25,26 + 555 -216 555 -216 578 -245.5 c 128,-1,27 + 601 -275 601 -275 641 -275 c 256,28,29 + 681 -275 681 -275 704 -246 c 128,-1,30 + 727 -217 727 -217 727 -163 c 0,19,20 +EndSplineSet +EndChar + +StartChar: uni0195 +Encoding: 405 405 343 +Width: 1804 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 18 + 15 + 11 + 11 + 12 + 25 + 3 + 31 + 34 + 34 + 3 + 12 + 3 + 37 + 38 + 32 + 15 + 18 + 21 + 0 + 21 + 7 + 80 + 89 + 21 + 16 + 13 + 0 + 12 + 21 + 0 + 28 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1340 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1804 1540 basechar 0 +AnchorPoint: "Anchor-20" 1804 -380 basechar 0 +AnchorPoint: "Anchor-16" 950 1840 basechar 0 +AnchorPoint: "Anchor-15" 1930 1540 basechar 0 +AnchorPoint: "Anchor-14" 960 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1256 -20 m 256,0,1 + 1057 -20 1057 -20 951 80.5 c 128,-1,2 + 845 181 845 181 845 361 c 2,3,-1 + 845 686 l 2,4,5 + 845 839 845 839 787.5 901 c 128,-1,6 + 730 963 730 963 602 963 c 0,7,8 + 475 963 475 963 398.5 875 c 128,-1,9 + 322 787 322 787 322 638 c 2,10,-1 + 322 0 l 1,11,-1 + 142 0 l 1,12,-1 + 142 1484 l 1,13,-1 + 322 1484 l 1,14,-1 + 322 1098 l 2,15,16 + 322 1037 322 1037 318.5 972 c 128,-1,17 + 315 907 315 907 314 897 c 1,18,-1 + 317 897 l 1,19,20 + 416 1102 416 1102 663 1102 c 0,21,22 + 846 1102 846 1102 936 1009 c 128,-1,23 + 1026 916 1026 916 1026 721 c 2,24,-1 + 1026 394 l 2,25,26 + 1026 238 1026 238 1081 177.5 c 128,-1,27 + 1136 117 1136 117 1257 117 c 0,28,29 + 1379 117 1379 117 1433 177.5 c 128,-1,30 + 1487 238 1487 238 1487 394 c 2,31,-1 + 1487 1082 l 1,32,-1 + 1668 1082 l 1,33,-1 + 1668 365 l 2,34,35 + 1668 185 1668 185 1561.5 82.5 c 128,-1,36 + 1455 -20 1455 -20 1256 -20 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni0196 +Encoding: 406 406 344 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 0 + 0 + 4 + 5 + 1 + 0 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +138 0 m 1,0,-1 + 138 1484 l 1,1,-1 + 318 1484 l 1,2,-1 + 318 0 l 1,3,-1 + 138 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0197 +Encoding: 407 407 345 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 11 + 11 + 4 + 0 + 0 + 13 + 12 + 10 + 2 + 3 + 2 + 96 + 89 + 7 + 3 + 3 + 5 + 0 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 230 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +196 0 m 1,0,-1 + 196 672 l 1,1,-1 + 30 672 l 1,2,-1 + 30 813 l 1,3,-1 + 196 813 l 1,4,-1 + 196 1484 l 1,5,-1 + 376 1484 l 1,6,-1 + 376 813 l 1,7,-1 + 545 813 l 1,8,-1 + 545 672 l 1,9,-1 + 376 672 l 1,10,-1 + 376 0 l 1,11,-1 + 196 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0198 +Encoding: 408 408 346 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 1 + 10 + 19 + 3 + 18 + 15 + 15 + 3 + 3 + 4 + 17 + 18 + 18 + 0 + 20 + 4 + 20 + 21 + 22 + 2 + 1 + 16 + 16 + 19 + 4 + 17 + 3 + 8 + 13 + 95 + 89 + 8 + 4 + 0 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1106 0 m 1,0,-1 + 543 680 l 1,1,-1 + 359 540 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1129 l 2,5,6 + 168 1272 168 1272 244 1348.5 c 128,-1,7 + 320 1425 320 1425 460 1425 c 0,8,9 + 526 1425 526 1425 592 1410 c 1,10,-1 + 592 1245 l 1,11,12 + 542 1263 542 1263 485 1263 c 0,13,14 + 359 1263 359 1263 359 1115 c 2,15,-1 + 359 703 l 1,16,-1 + 1038 1409 l 1,17,-1 + 1263 1409 l 1,18,-1 + 663 797 l 1,19,-1 + 1343 0 l 1,20,-1 + 1106 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0199 +Encoding: 409 409 347 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 2 + 14 + 5 + 3 + 20 + 1 + 20 + 7 + 7 + 8 + 8 + 22 + 21 + 0 + 1 + 1 + 4 + 3 + 3 + 22 + 15 + 15 + 0 + 12 + 12 + 17 + 83 + 89 + 12 + 1 + 2 + 5 + 81 + 89 + 20 + 2 + 20 + 2 + 4 + 8 + 21 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +793 1082 m 1,0,-1 + 1004 1082 l 1,1,-1 + 565 617 l 1,2,-1 + 1027 0 l 1,3,-1 + 816 0 l 1,4,-1 + 450 494 l 1,5,-1 + 318 385 l 1,6,-1 + 318 0 l 1,7,-1 + 138 0 l 1,8,-1 + 138 1202 l 2,9,10 + 138 1345 138 1345 214 1421.5 c 128,-1,11 + 290 1498 290 1498 430 1498 c 0,12,13 + 496 1498 496 1498 562 1483 c 1,14,-1 + 562 1318 l 1,15,16 + 512 1336 512 1336 446 1336 c 0,17,18 + 318 1336 318 1336 318 1188 c 2,19,-1 + 318 557 l 1,20,-1 + 793 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni019A +Encoding: 410 410 348 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 11 + 11 + 4 + 0 + 0 + 12 + 13 + 10 + 2 + 3 + 2 + 80 + 89 + 7 + 3 + 3 + 5 + 0 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +132 0 m 1,0,-1 + 132 672 l 1,1,-1 + 20 672 l 1,2,-1 + 20 813 l 1,3,-1 + 132 813 l 1,4,-1 + 132 1484 l 1,5,-1 + 312 1484 l 1,6,-1 + 312 813 l 1,7,-1 + 421 813 l 1,8,-1 + 421 672 l 1,9,-1 + 312 672 l 1,10,-1 + 312 0 l 1,11,-1 + 132 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni019B +Encoding: 411 411 349 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 9 + 10 + 17 + 16 + 16 + 6 + 11 + 3 + 2 + 2 + 11 + 10 + 3 + 20 + 21 + 6 + 10 + 18 + 15 + 1 + 12 + 4 + 19 + 13 + 19 + 13 + 19 + 10 + 16 + 0 + 3 + 10 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP2 +SLOOP +IP +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 858 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 420 1580 basechar 0 +AnchorPoint: "Anchor-15" 600 1540 basechar 0 +AnchorPoint: "Anchor-14" 520 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +714 1275 m 1,0,-1 + 555 1217 l 1,1,-1 + 1006 0 l 1,2,-1 + 816 0 l 1,3,-1 + 609 577 l 2,4,5 + 568 689 568 689 544 791 c 1,6,7 + 529 745 529 745 507.5 691.5 c 128,-1,8 + 486 638 486 638 201 0 c 1,9,-1 + 14 0 l 1,10,-1 + 463 970 l 1,11,-1 + 395 1159 l 1,12,-1 + 211 1092 l 1,13,-1 + 165 1210 l 1,14,-1 + 353 1279 l 1,15,-1 + 280 1484 l 1,16,-1 + 457 1484 l 1,17,-1 + 511 1337 l 1,18,-1 + 668 1394 l 1,19,-1 + 714 1275 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni019C +Encoding: 412 412 350 +Width: 1824 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 31 + 24 + 24 + 27 + 19 + 2 + 16 + 9 + 6 + 6 + 16 + 27 + 3 + 35 + 34 + 30 + 18 + 2 + 31 + 4 + 25 + 17 + 7 + 3 + 4 + 13 + 95 + 89 + 4 + 19 + 0 + 22 + 95 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1520 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1824 1540 basechar 0 +AnchorPoint: "Anchor-20" 1824 -380 basechar 0 +AnchorPoint: "Anchor-16" 900 1540 basechar 0 +AnchorPoint: "Anchor-15" 1640 1540 basechar 0 +AnchorPoint: "Anchor-14" 890 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1195 -20 m 0,0,1 + 987 -20 987 -20 895 147 c 1,2,3 + 775 -20 775 -20 571 -20 c 0,4,5 + 158 -20 158 -20 158 472 c 2,6,-1 + 158 1409 l 1,7,-1 + 346 1409 l 1,8,-1 + 346 488 l 2,9,10 + 346 360 346 360 370 283 c 128,-1,11 + 394 206 394 206 443.5 170.5 c 128,-1,12 + 493 135 493 135 581 135 c 0,13,14 + 700 135 700 135 755.5 212 c 128,-1,15 + 811 289 811 289 811 440 c 2,16,-1 + 811 1409 l 1,17,-1 + 1000 1409 l 1,18,-1 + 1000 456 l 2,19,20 + 1000 293 1000 293 1050 214 c 128,-1,21 + 1100 135 1100 135 1219 135 c 0,22,23 + 1466 135 1466 135 1466 458 c 2,24,-1 + 1466 1409 l 1,25,-1 + 1655 1409 l 1,26,-1 + 1655 231 l 2,27,28 + 1655 85 1655 85 1665 0 c 1,29,-1 + 1495 0 l 1,30,-1 + 1488 146 l 1,31,32 + 1438 65 1438 65 1363 22.5 c 128,-1,33 + 1288 -20 1288 -20 1195 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni019D +Encoding: 413 413 351 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 8 + 4 + 4 + 7 + 1 + 12 + 12 + 22 + 7 + 22 + 24 + 23 + 15 + 20 + 95 + 89 + 15 + 2 + 9 + 8 + 18 + 5 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +IP +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +168 1409 m 1,0,-1 + 390 1409 l 1,1,-1 + 1152 201 l 1,2,3 + 1140 397 1140 397 1140 485 c 2,4,-1 + 1140 1409 l 1,5,-1 + 1312 1409 l 1,6,-1 + 1312 0 l 1,7,-1 + 1082 0 l 1,8,-1 + 328 1200 l 1,9,-1 + 333 1103 l 1,10,-1 + 338 936 l 1,11,-1 + 338 -130 l 2,12,13 + 338 -274 338 -274 270.5 -349.5 c 128,-1,14 + 203 -425 203 -425 73 -425 c 0,15,16 + 1 -425 1 -425 -48 -414 c 1,17,-1 + -48 -252 l 1,18,19 + -4 -266 -4 -266 52 -266 c 0,20,21 + 167 -266 167 -266 167 -109 c 2,22,-1 + 168 1409 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni019E +Encoding: 414 414 352 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 0 + 26 + 18 + 9 + 9 + 13 + 10 + 26 + 10 + 28 + 27 + 18 + 22 + 10 + 22 + 5 + 80 + 89 + 22 + 16 + 13 + 15 + 10 + 21 + 0 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +825 -426 m 1,0,-1 + 825 686 l 2,1,2 + 825 793 825 793 804 852 c 128,-1,3 + 783 911 783 911 737 937 c 128,-1,4 + 691 963 691 963 602 963 c 0,5,6 + 472 963 472 963 397 874 c 128,-1,7 + 322 785 322 785 322 627 c 2,8,-1 + 322 0 l 1,9,-1 + 142 0 l 1,10,-1 + 142 851 l 2,11,12 + 142 1040 142 1040 136 1082 c 1,13,-1 + 306 1082 l 1,14,15 + 307 1077 307 1077 308 1055 c 128,-1,16 + 309 1033 309 1033 310.5 1004.5 c 128,-1,17 + 312 976 312 976 314 897 c 1,18,-1 + 317 897 l 1,19,20 + 379 1009 379 1009 460.5 1055.5 c 128,-1,21 + 542 1102 542 1102 663 1102 c 0,22,23 + 841 1102 841 1102 923.5 1013.5 c 128,-1,24 + 1006 925 1006 925 1006 721 c 2,25,-1 + 1006 -426 l 1,26,-1 + 825 -426 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni019F +Encoding: 415 415 353 +Width: 1593 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 1177 1256 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Ohorn +Encoding: 416 416 354 +Width: 1756 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 32 + 8 + 18 + 17 + 21 + 21 + 26 + 24 + 14 + 0 + 8 + 0 + 38 + 39 + 14 + 24 + 96 + 89 + 14 + 18 + 14 + 18 + 4 + 19 + 3 + 11 + 29 + 95 + 89 + 11 + 4 + 4 + 35 + 95 + 89 + 4 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1756 1540 basechar 0 +AnchorPoint: "Anchor-20" 1756 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1495 711 m 0,0,1 + 1495 490 1495 490 1410.5 324 c 128,-1,2 + 1326 158 1326 158 1168 69 c 128,-1,3 + 1010 -20 1010 -20 795 -20 c 0,4,5 + 578 -20 578 -20 420.5 68 c 128,-1,6 + 263 156 263 156 180 322.5 c 128,-1,7 + 97 489 97 489 97 711 c 0,8,9 + 97 1049 97 1049 282 1239.5 c 128,-1,10 + 467 1430 467 1430 797 1430 c 0,11,12 + 1041 1430 1041 1430 1207 1322.5 c 128,-1,13 + 1373 1215 1373 1215 1445 1019 c 1,14,15 + 1533 1063 1533 1063 1567.5 1116 c 128,-1,16 + 1602 1169 1602 1169 1602 1242 c 1,17,-1 + 1514 1242 l 1,18,-1 + 1514 1409 l 1,19,-1 + 1709 1409 l 1,20,-1 + 1709 1303 l 2,21,22 + 1709 1180 1709 1180 1651.5 1088.5 c 128,-1,23 + 1594 997 1594 997 1469 936 c 1,24,25 + 1495 830 1495 830 1495 711 c 0,0,1 +1300 711 m 0,26,27 + 1300 974 1300 974 1168.5 1124 c 128,-1,28 + 1037 1274 1037 1274 797 1274 c 0,29,30 + 555 1274 555 1274 423 1126 c 128,-1,31 + 291 978 291 978 291 711 c 0,32,33 + 291 446 291 446 424.5 290.5 c 128,-1,34 + 558 135 558 135 795 135 c 0,35,36 + 1039 135 1039 135 1169.5 285.5 c 128,-1,37 + 1300 436 1300 436 1300 711 c 0,26,27 +EndSplineSet +EndChar + +StartChar: ohorn +Encoding: 417 417 355 +Width: 1343 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 27 + 6 + 11 + 21 + 21 + 0 + 14 + 13 + 17 + 17 + 20 + 0 + 6 + 0 + 33 + 34 + 11 + 14 + 11 + 14 + 3 + 15 + 15 + 8 + 24 + 80 + 89 + 8 + 16 + 3 + 30 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1343 1540 basechar 0 +AnchorPoint: "Anchor-20" 1343 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 542 m 1,0,1 + 1053 258 1053 258 928 119 c 128,-1,2 + 803 -20 803 -20 565 -20 c 0,3,4 + 328 -20 328 -20 207 124.5 c 128,-1,5 + 86 269 86 269 86 542 c 0,6,7 + 86 1102 86 1102 571 1102 c 0,8,9 + 784 1102 784 1102 898.5 1002 c 128,-1,10 + 1013 902 1013 902 1042 702 c 1,11,12 + 1176 767 1176 767 1176 921 c 1,13,-1 + 1088 921 l 1,14,-1 + 1088 1088 l 1,15,-1 + 1283 1088 l 1,16,-1 + 1283 982 l 2,17,18 + 1283 853 1283 853 1223 757 c 128,-1,19 + 1163 661 1163 661 1051 613 c 1,20,-1 + 1053 542 l 1,0,1 +864 542 m 0,21,22 + 864 766 864 766 797.5 867.5 c 128,-1,23 + 731 969 731 969 574 969 c 0,24,25 + 416 969 416 969 345.5 865.5 c 128,-1,26 + 275 762 275 762 275 542 c 0,27,28 + 275 328 275 328 344.5 220.5 c 128,-1,29 + 414 113 414 113 563 113 c 0,30,31 + 725 113 725 113 794.5 217 c 128,-1,32 + 864 321 864 321 864 542 c 0,21,22 +EndSplineSet +EndChar + +StartChar: uni01A2 +Encoding: 418 418 356 +Width: 1778 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 25 + 7 + 0 + 30 + 17 + 16 + 16 + 30 + 7 + 3 + 31 + 32 + 17 + 18 + 14 + 4 + 19 + 13 + 13 + 11 + 3 + 11 + 22 + 95 + 89 + 11 + 4 + 3 + 28 + 95 + 89 + 3 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1470 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1778 1540 basechar 0 +AnchorPoint: "Anchor-20" 1778 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1206 85 m 1,0,1 + 1097 33 1097 33 1001.5 6.5 c 128,-1,2 + 906 -20 906 -20 787 -20 c 0,3,4 + 574 -20 574 -20 418 69 c 128,-1,5 + 262 158 262 158 179.5 324 c 128,-1,6 + 97 490 97 490 97 711 c 0,7,8 + 97 931 97 931 180 1094.5 c 128,-1,9 + 263 1258 263 1258 420 1344 c 128,-1,10 + 577 1430 577 1430 789 1430 c 0,11,12 + 952 1430 952 1430 1155 1359 c 1,13,-1 + 1569 1423 l 1,14,-1 + 1612 1423 l 1,15,-1 + 1612 -424 l 1,16,-1 + 1432 -424 l 1,17,-1 + 1432 1221 l 1,18,-1 + 1206 1223 l 1,19,-1 + 1206 85 l 1,0,1 +1026 1228 m 1,20,21 + 926 1274 926 1274 789 1274 c 0,22,23 + 553 1274 553 1274 422 1124 c 128,-1,24 + 291 974 291 974 291 711 c 0,25,26 + 291 447 291 447 423.5 291 c 128,-1,27 + 556 135 556 135 787 135 c 0,28,29 + 925 135 925 135 1026 181 c 1,30,-1 + 1026 1228 l 1,20,21 +EndSplineSet +EndChar + +StartChar: uni01A3 +Encoding: 419 419 357 +Width: 1367 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 21 + 9 + 3 + 26 + 0 + 17 + 17 + 26 + 9 + 3 + 29 + 30 + 1 + 15 + 16 + 2 + 14 + 14 + 6 + 11 + 11 + 18 + 80 + 89 + 11 + 16 + 6 + 24 + 80 + 89 + 6 + 22 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1078 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1367 1540 basechar 0 +AnchorPoint: "Anchor-20" 1367 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1045 -425 m 1,0,-1 + 1045 918 l 1,1,-1 + 856 918 l 1,2,-1 + 856 63 l 1,3,4 + 799 24 799 24 722.5 2 c 128,-1,5 + 646 -20 646 -20 565 -20 c 0,6,7 + 328 -20 328 -20 207 124.5 c 128,-1,8 + 86 269 86 269 86 542 c 0,9,10 + 86 1102 86 1102 571 1102 c 0,11,12 + 653 1102 653 1102 727.5 1080.5 c 128,-1,13 + 802 1059 802 1059 853 1028 c 1,14,-1 + 1177 1093 l 1,15,-1 + 1220 1093 l 1,16,-1 + 1220 -425 l 1,17,-1 + 1045 -425 l 1,0,-1 +574 969 m 0,18,19 + 416 969 416 969 345.5 865.5 c 128,-1,20 + 275 762 275 762 275 542 c 0,21,22 + 275 328 275 328 344.5 220.5 c 128,-1,23 + 414 113 414 113 563 113 c 0,24,25 + 627 113 627 113 683 135 c 1,26,-1 + 682 949 l 1,27,28 + 630 969 630 969 574 969 c 0,18,19 +EndSplineSet +EndChar + +StartChar: uni01A4 +Encoding: 420 420 358 +Width: 1545 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 14 + 19 + 27 + 8 + 8 + 9 + 23 + 3 + 3 + 9 + 19 + 3 + 30 + 31 + 27 + 7 + 95 + 89 + 27 + 17 + 27 + 17 + 9 + 22 + 26 + 11 + 22 + 11 + 96 + 89 + 22 + 3 + 9 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 360 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1545 1540 basechar 0 +AnchorPoint: "Anchor-20" 1545 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1260 1540 basechar 0 +AnchorPoint: "Anchor-14" 840 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +932 1409 m 2,0,1 + 1169 1409 1169 1409 1299 1298 c 128,-1,2 + 1429 1187 1429 1187 1429 985 c 0,3,4 + 1429 785 1429 785 1298.5 667 c 128,-1,5 + 1168 549 1168 549 944 549 c 2,6,-1 + 530 549 l 1,7,-1 + 530 0 l 1,8,-1 + 339 0 l 1,9,-1 + 339 1261 l 1,10,-1 + 317 1261 l 2,11,12 + 240 1261 240 1261 207 1227 c 128,-1,13 + 174 1193 174 1193 174 1122 c 0,14,15 + 174 1073 174 1073 192 1017 c 1,16,-1 + 37 1000 l 1,17,18 + 20 1074 20 1074 20 1135 c 0,19,20 + 20 1265 20 1265 106 1337 c 128,-1,21 + 192 1409 192 1409 346 1409 c 2,22,-1 + 932 1409 l 2,0,1 +1237 983 m 0,23,24 + 1237 1256 1237 1256 909 1256 c 2,25,-1 + 530 1256 l 1,26,-1 + 530 700 l 1,27,-1 + 917 700 l 2,28,29 + 1237 700 1237 700 1237 983 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni01A5 +Encoding: 421 421 359 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 29 + 0 + 36 + 21 + 8 + 8 + 9 + 9 + 17 + 0 + 3 + 43 + 42 + 4 + 22 + 2 + 26 + 26 + 32 + 80 + 89 + 26 + 16 + 13 + 19 + 83 + 89 + 13 + 1 + 9 + 27 + 2 + 39 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 180 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 -20 1053 -20 655 -20 c 0,2,3 + 405 -20 405 -20 319 168 c 1,4,-1 + 314 168 l 1,5,6 + 318 160 318 160 318 -2 c 2,7,-1 + 318 -425 l 1,8,-1 + 138 -425 l 1,9,-1 + 138 1202 l 2,10,11 + 138 1347 138 1347 211 1422.5 c 128,-1,12 + 284 1498 284 1498 427 1498 c 0,13,14 + 481 1498 481 1498 520 1490 c 2,15,-1 + 557 1482 l 1,16,-1 + 557 1316 l 1,17,18 + 501 1336 501 1336 441 1336 c 0,19,20 + 316 1336 316 1336 316 1188 c 2,21,-1 + 316 908 l 1,22,-1 + 320 908 l 1,23,24 + 368 1008 368 1008 447 1054.5 c 128,-1,25 + 526 1101 526 1101 655 1101 c 0,26,27 + 855 1101 855 1101 954 967 c 128,-1,28 + 1053 833 1053 833 1053 546 c 0,0,1 +864 542 m 0,29,30 + 864 768 864 768 803 865 c 128,-1,31 + 742 962 742 962 609 962 c 0,32,33 + 502 962 502 962 441.5 917 c 128,-1,34 + 381 872 381 872 349.5 776.5 c 128,-1,35 + 318 681 318 681 318 528 c 0,36,37 + 318 315 318 315 386 214 c 128,-1,38 + 454 113 454 113 607 113 c 0,39,40 + 741 113 741 113 802.5 211.5 c 128,-1,41 + 864 310 864 310 864 542 c 0,29,30 +EndSplineSet +EndChar + +StartChar: uni01A6 +Encoding: 422 422 360 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 0 + 15 + 15 + 16 + 14 + 1 + 11 + 21 + 21 + 7 + 3 + 3 + 4 + 11 + 4 + 26 + 25 + 14 + 2 + 21 + 2 + 95 + 89 + 7 + 20 + 95 + 89 + 21 + 7 + 21 + 7 + 4 + 5 + 3 + 4 + 18 + 0 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 -300 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1127 -319 m 1,0,-1 + 740 431 l 1,1,-1 + 359 431 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 355 1409 l 1,6,-1 + 355 1255 l 1,7,-1 + 773 1255 l 2,8,9 + 1011 1255 1011 1255 1140.5 1148.5 c 128,-1,10 + 1270 1042 1270 1042 1270 852 c 0,11,12 + 1270 695 1270 695 1178.5 588 c 128,-1,13 + 1087 481 1087 481 926 453 c 1,14,-1 + 1347 -319 l 1,15,-1 + 1127 -319 l 1,0,-1 +1078 850 m 0,16,17 + 1078 973 1078 973 994.5 1037.5 c 128,-1,18 + 911 1102 911 1102 754 1102 c 2,19,-1 + 359 1102 l 1,20,-1 + 359 582 l 1,21,-1 + 762 582 l 2,22,23 + 913 582 913 582 995.5 652.5 c 128,-1,24 + 1078 723 1078 723 1078 850 c 0,16,17 +EndSplineSet +EndChar + +StartChar: uni01A7 +Encoding: 423 423 361 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 37 + 9 + 21 + 30 + 15 + 0 + 21 + 0 + 44 + 43 + 36 + 9 + 30 + 18 + 40 + 40 + 32 + 95 + 89 + 40 + 19 + 14 + 18 + 18 + 11 + 96 + 89 + 18 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +98 382 m 0,0,1 + 98 472 98 472 129 541.5 c 128,-1,2 + 160 611 160 611 220 662.5 c 128,-1,3 + 280 714 280 714 375 751.5 c 128,-1,4 + 470 789 470 789 626 818 c 0,5,6 + 785 848 785 848 862 879 c 128,-1,7 + 939 910 939 910 979 954.5 c 128,-1,8 + 1019 999 1019 999 1019 1063 c 0,9,10 + 1019 1286 1019 1286 679 1286 c 0,11,12 + 524 1286 524 1286 434.5 1226.5 c 128,-1,13 + 345 1167 345 1167 314 1038 c 1,14,-1 + 126 1071 l 1,15,16 + 177 1262 177 1262 303.5 1346 c 128,-1,17 + 430 1430 430 1430 677 1430 c 0,18,19 + 935 1430 935 1430 1070 1332 c 128,-1,20 + 1205 1234 1205 1234 1205 1053 c 0,21,22 + 1205 976 1205 976 1180 917.5 c 128,-1,23 + 1155 859 1155 859 1108 816.5 c 128,-1,24 + 1061 774 1061 774 979.5 740 c 128,-1,25 + 898 706 898 706 712 666 c 0,26,27 + 523 625 523 625 442.5 588.5 c 128,-1,28 + 362 552 362 552 324.5 500.5 c 128,-1,29 + 287 449 287 449 287 372 c 0,30,31 + 287 129 287 129 661 129 c 0,32,33 + 789 129 789 129 874 162 c 128,-1,34 + 959 195 959 195 1010 260 c 128,-1,35 + 1061 325 1061 325 1091 451 c 1,36,-1 + 1276 414 l 1,37,38 + 1224 188 1224 188 1074 84 c 128,-1,39 + 924 -20 924 -20 668 -20 c 0,40,41 + 391 -20 391 -20 244.5 83.5 c 128,-1,42 + 98 187 98 187 98 382 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni01A8 +Encoding: 424 424 362 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 28 + 14 + 0 + 33 + 8 + 20 + 0 + 20 + 38 + 39 + 32 + 8 + 28 + 17 + 35 + 35 + 30 + 80 + 89 + 35 + 22 + 13 + 17 + 17 + 10 + 80 + 89 + 17 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +79 299 m 0,0,1 + 79 390 79 390 119.5 451.5 c 128,-1,2 + 160 513 160 513 233 553.5 c 128,-1,3 + 306 594 306 594 459 629 c 0,4,5 + 611 664 611 664 657 685.5 c 128,-1,6 + 703 707 703 707 727.5 737.5 c 128,-1,7 + 752 768 752 768 752 814 c 0,8,9 + 752 963 752 963 538 963 c 0,10,11 + 427 963 427 963 362 920 c 128,-1,12 + 297 877 297 877 277 781 c 1,13,-1 + 115 801 l 1,14,15 + 146 952 146 952 251 1025.5 c 128,-1,16 + 356 1099 356 1099 539 1099 c 256,17,18 + 722 1099 722 1099 824.5 1021 c 128,-1,19 + 927 943 927 943 927 796 c 0,20,21 + 927 714 927 714 889 657.5 c 128,-1,22 + 851 601 851 601 781.5 562 c 128,-1,23 + 712 523 712 523 567 489 c 0,24,25 + 405 450 405 450 355 426.5 c 128,-1,26 + 305 403 305 403 279.5 369.5 c 128,-1,27 + 254 336 254 336 254 285 c 0,28,29 + 254 117 254 117 498 117 c 0,30,31 + 746 117 746 117 804 325 c 1,32,-1 + 963 294 l 1,33,34 + 887 -20 887 -20 498 -20 c 0,35,36 + 304 -20 304 -20 191.5 63.5 c 128,-1,37 + 79 147 79 147 79 299 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni01A9 +Encoding: 425 425 363 +Width: 1266 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 1030 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1266 1540 basechar 0 +AnchorPoint: "Anchor-20" 1266 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 853 931 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni01AA +Encoding: 426 426 364 +Width: 779 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 31 + 7 + 18 + 25 + 0 + 0 + 18 + 12 + 3 + 38 + 37 + 28 + 22 + 81 + 89 + 28 + 28 + 15 + 3 + 15 + 10 + 83 + 89 + 15 + 27 + 3 + 34 + 81 + 89 + 3 + 1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 779 1540 basechar 0 +AnchorPoint: "Anchor-20" 779 -380 basechar 0 +AnchorPoint: "Anchor-16" 550 1200 basechar 0 +AnchorPoint: "Anchor-15" 860 1200 basechar 0 +AnchorPoint: "Anchor-14" 550 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +67 1302 m 0,0,1 + 67 1392 67 1392 122.5 1442.5 c 128,-1,2 + 178 1493 178 1493 272 1493 c 0,3,4 + 406 1493 406 1493 472 1417 c 128,-1,5 + 538 1341 538 1341 538 1204 c 2,6,-1 + 538 -124 l 2,7,8 + 538 -192 538 -192 567.5 -229.5 c 128,-1,9 + 597 -267 597 -267 655 -267 c 0,10,11 + 709 -267 709 -267 761 -254 c 1,12,-1 + 761 -412 l 1,13,14 + 692 -425 692 -425 627 -425 c 0,15,16 + 499 -425 499 -425 428.5 -348.5 c 128,-1,17 + 358 -272 358 -272 358 -129 c 2,18,-1 + 358 1148 l 1,19,20 + 343 1137 343 1137 312.5 1128 c 128,-1,21 + 282 1119 282 1119 255 1119 c 0,22,23 + 171 1119 171 1119 119 1170.5 c 128,-1,24 + 67 1222 67 1222 67 1302 c 0,0,1 +144 1307 m 0,25,26 + 144 1258 144 1258 174 1228 c 128,-1,27 + 204 1198 204 1198 252 1198 c 0,28,29 + 301 1198 301 1198 331 1228 c 128,-1,30 + 361 1258 361 1258 361 1307 c 0,31,32 + 361 1355 361 1355 331.5 1385 c 128,-1,33 + 302 1415 302 1415 252 1415 c 0,34,35 + 204 1415 204 1415 174 1385 c 128,-1,36 + 144 1355 144 1355 144 1307 c 0,25,26 +EndSplineSet +EndChar + +StartChar: uni01AB +Encoding: 427 427 365 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 10 + 0 + 21 + 25 + 25 + 18 + 4 + 14 + 14 + 23 + 0 + 3 + 32 + 31 + 24 + 16 + 17 + 16 + 81 + 89 + 21 + 19 + 17 + 15 + 11 + 28 + 80 + 89 + 11 + 22 + 2 + 7 + 83 + 89 + 2 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MDRP[rnd,white] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 350 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +554 -143 m 2,0,1 + 554 -425 554 -425 301 -425 c 0,2,3 + 234 -425 234 -425 166 -408 c 1,4,-1 + 166 -248 l 1,5,6 + 222 -266 222 -266 272 -266 c 0,7,8 + 332 -266 332 -266 359 -233 c 128,-1,9 + 386 -200 386 -200 386 -129 c 2,10,-1 + 386 -16 l 1,11,-1 + 372 -16 l 2,12,13 + 156 -16 156 -16 156 229 c 2,14,-1 + 156 951 l 1,15,-1 + 31 951 l 1,16,-1 + 31 1082 l 1,17,-1 + 163 1082 l 1,18,-1 + 216 1324 l 1,19,-1 + 336 1324 l 1,20,-1 + 336 1082 l 1,21,-1 + 536 1082 l 1,22,-1 + 536 951 l 1,23,-1 + 336 951 l 1,24,-1 + 336 268 l 2,25,26 + 336 190 336 190 361.5 158.5 c 128,-1,27 + 387 127 387 127 450 127 c 0,28,29 + 486 127 486 127 554 141 c 1,30,-1 + 554 -143 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni01AC +Encoding: 428 428 366 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 1 + 2 + 9 + 7 + 12 + 12 + 2 + 16 + 3 + 19 + 18 + 10 + 10 + 2 + 15 + 0 + 4 + 15 + 4 + 95 + 89 + 15 + 3 + 2 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +720 1253 m 1,0,-1 + 720 0 l 1,1,-1 + 530 0 l 1,2,-1 + 530 1253 l 1,3,-1 + 317 1253 l 2,4,5 + 240 1253 240 1253 207 1223 c 128,-1,6 + 174 1193 174 1193 174 1122 c 0,7,8 + 174 1073 174 1073 192 1017 c 1,9,-1 + 37 1000 l 1,10,11 + 20 1074 20 1074 20 1135 c 0,12,13 + 20 1269 20 1269 97.5 1339 c 128,-1,14 + 175 1409 175 1409 326 1409 c 2,15,-1 + 1204 1409 l 1,16,-1 + 1204 1253 l 1,17,-1 + 720 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01AD +Encoding: 429 429 367 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 21 + 25 + 25 + 8 + 4 + 30 + 23 + 14 + 4 + 14 + 31 + 32 + 12 + 17 + 83 + 89 + 12 + 1 + 24 + 6 + 7 + 6 + 81 + 89 + 21 + 7 + 15 + 2 + 28 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 360 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 260 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +554 8 m 1,0,1 + 465 -16 465 -16 372 -16 c 0,2,3 + 156 -16 156 -16 156 229 c 2,4,-1 + 156 951 l 1,5,-1 + 31 951 l 1,6,-1 + 31 1082 l 1,7,-1 + 163 1082 l 1,8,-1 + 163 1192 l 2,9,10 + 163 1344 163 1344 233 1421 c 128,-1,11 + 303 1498 303 1498 437 1498 c 0,12,13 + 503 1498 503 1498 557 1484 c 1,14,-1 + 557 1316 l 1,15,16 + 501 1336 501 1336 455 1336 c 0,17,18 + 392 1336 392 1336 364 1299.5 c 128,-1,19 + 336 1263 336 1263 336 1188 c 2,20,-1 + 336 1082 l 1,21,-1 + 536 1082 l 1,22,-1 + 536 951 l 1,23,-1 + 336 951 l 1,24,-1 + 336 268 l 2,25,26 + 336 190 336 190 361.5 158.5 c 128,-1,27 + 387 127 387 127 450 127 c 0,28,29 + 486 127 486 127 554 141 c 1,30,-1 + 554 8 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni01AE +Encoding: 430 430 368 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 10 + 5 + 16 + 2 + 16 + 0 + 3 + 18 + 19 + 13 + 8 + 95 + 89 + 13 + 4 + 0 + 1 + 0 + 95 + 89 + 1 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 781 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +46 1253 m 1,0,-1 + 46 1409 l 1,1,-1 + 1204 1409 l 1,2,-1 + 1204 1253 l 1,3,-1 + 720 1253 l 1,4,-1 + 720 -109 l 2,5,6 + 720 -190 720 -190 744 -228 c 128,-1,7 + 768 -266 768 -266 820 -266 c 0,8,9 + 880 -266 880 -266 930 -250 c 1,10,-1 + 930 -408 l 1,11,12 + 860 -425 860 -425 798 -425 c 0,13,14 + 669 -425 669 -425 599.5 -351 c 128,-1,15 + 530 -277 530 -277 530 -141 c 2,16,-1 + 530 1253 l 1,17,-1 + 46 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: Uhorn +Encoding: 431 431 369 +Width: 1749 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 7 + 4 + 20 + 19 + 23 + 23 + 16 + 13 + 27 + 4 + 27 + 31 + 32 + 16 + 26 + 96 + 89 + 16 + 20 + 16 + 20 + 0 + 21 + 14 + 5 + 3 + 0 + 10 + 95 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1749 1540 basechar 0 +AnchorPoint: "Anchor-20" 1749 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +731 -20 m 0,0,1 + 558 -20 558 -20 429 43 c 128,-1,2 + 300 106 300 106 229 226 c 128,-1,3 + 158 346 158 346 158 512 c 2,4,-1 + 158 1409 l 1,5,-1 + 349 1409 l 1,6,-1 + 349 528 l 2,7,8 + 349 335 349 335 447 235 c 128,-1,9 + 545 135 545 135 730 135 c 0,10,11 + 920 135 920 135 1025.5 238.5 c 128,-1,12 + 1131 342 1131 342 1131 541 c 2,13,-1 + 1131 1409 l 1,14,-1 + 1321 1409 l 1,15,-1 + 1321 1006 l 1,16,17 + 1442 1031 1442 1031 1499.5 1089 c 128,-1,18 + 1557 1147 1557 1147 1557 1242 c 1,19,-1 + 1469 1242 l 1,20,-1 + 1469 1409 l 1,21,-1 + 1664 1409 l 1,22,-1 + 1664 1303 l 2,23,24 + 1664 1141 1664 1141 1579.5 1041 c 128,-1,25 + 1495 941 1495 941 1321 915 c 1,26,-1 + 1321 530 l 2,27,28 + 1321 359 1321 359 1248.5 235 c 128,-1,29 + 1176 111 1176 111 1043.5 45.5 c 128,-1,30 + 911 -20 911 -20 731 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uhorn +Encoding: 432 432 370 +Width: 1371 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 1 + 36 + 15 + 14 + 18 + 18 + 22 + 25 + 8 + 8 + 11 + 22 + 36 + 22 + 38 + 39 + 29 + 30 + 11 + 21 + 81 + 89 + 30 + 11 + 15 + 15 + 11 + 30 + 3 + 25 + 16 + 9 + 37 + 15 + 33 + 5 + 80 + 89 + 33 + 22 + 25 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1371 1540 basechar 0 +AnchorPoint: "Anchor-20" 1371 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +314 1082 m 1,0,-1 + 314 396 l 2,1,2 + 314 289 314 289 335 230 c 128,-1,3 + 356 171 356 171 402 145 c 128,-1,4 + 448 119 448 119 537 119 c 0,5,6 + 667 119 667 119 742 208 c 128,-1,7 + 817 297 817 297 817 455 c 2,8,-1 + 817 1082 l 1,9,-1 + 997 1082 l 1,10,-1 + 997 668 l 1,11,12 + 1112 703 1112 703 1156.5 758.5 c 128,-1,13 + 1201 814 1201 814 1201 915 c 1,14,-1 + 1113 915 l 1,15,-1 + 1113 1082 l 1,16,-1 + 1308 1082 l 1,17,-1 + 1308 976 l 2,18,19 + 1308 817 1308 817 1236 720.5 c 128,-1,20 + 1164 624 1164 624 997 577 c 1,21,-1 + 997 231 l 2,22,23 + 997 42 997 42 1003 0 c 1,24,-1 + 833 0 l 1,25,26 + 832 5 832 5 831 27 c 128,-1,27 + 830 49 830 49 828.5 77.5 c 128,-1,28 + 827 106 827 106 825 185 c 1,29,-1 + 822 185 l 1,30,31 + 760 73 760 73 678.5 26.5 c 128,-1,32 + 597 -20 597 -20 476 -20 c 0,33,34 + 298 -20 298 -20 215.5 68.5 c 128,-1,35 + 133 157 133 157 133 361 c 2,36,-1 + 133 1082 l 1,37,-1 + 314 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01B1 +Encoding: 433 433 371 +Width: 1531 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 27 + 21 + 12 + 6 + 30 + 24 + 6 + 24 + 33 + 15 + 9 + 3 + 33 + 3 + 37 + 36 + 24 + 12 + 26 + 0 + 26 + 28 + 95 + 89 + 26 + 3 + 10 + 9 + 95 + 89 + 10 + 3 + 0 + 18 + 95 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 836 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1531 1540 basechar 0 +AnchorPoint: "Anchor-20" 1531 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +765 -21 m 256,0,1 + 462 -21 462 -21 288.5 146.5 c 128,-1,2 + 115 314 115 314 115 608 c 0,3,4 + 115 809 115 809 222.5 979 c 128,-1,5 + 330 1149 330 1149 539 1264 c 1,6,7 + 385 1253 385 1253 331 1253 c 2,8,-1 + 87 1253 l 1,9,-1 + 87 1409 l 1,10,-1 + 676 1409 l 1,11,-1 + 676 1185 l 1,12,13 + 497 1090 497 1090 403.5 947.5 c 128,-1,14 + 310 805 310 805 310 621 c 0,15,16 + 310 389 310 389 429 262 c 128,-1,17 + 548 135 548 135 764 135 c 0,18,19 + 982 135 982 135 1101 262 c 128,-1,20 + 1220 389 1220 389 1220 621 c 0,21,22 + 1220 804 1220 804 1127 946.5 c 128,-1,23 + 1034 1089 1034 1089 854 1185 c 1,24,-1 + 854 1409 l 1,25,-1 + 1443 1409 l 1,26,-1 + 1443 1253 l 1,27,-1 + 1199 1253 l 2,28,29 + 1145 1253 1145 1253 991 1264 c 1,30,31 + 1199 1151 1199 1151 1307 980.5 c 128,-1,32 + 1415 810 1415 810 1415 608 c 0,33,34 + 1415 314 1415 314 1241.5 146.5 c 128,-1,35 + 1068 -21 1068 -21 765 -21 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni01B2 +Encoding: 434 434 372 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 4 + 19 + 13 + 24 + 4 + 24 + 28 + 29 + 21 + 16 + 95 + 89 + 21 + 4 + 5 + 3 + 0 + 10 + 95 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 715 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +703 -20 m 0,0,1 + 538 -20 538 -20 415.5 45.5 c 128,-1,2 + 293 111 293 111 225.5 236.5 c 128,-1,3 + 158 362 158 362 158 542 c 2,4,-1 + 158 1409 l 1,5,-1 + 349 1409 l 1,6,-1 + 349 558 l 2,7,8 + 349 358 349 358 445.5 246.5 c 128,-1,9 + 542 135 542 135 719 135 c 0,10,11 + 919 135 919 135 1023.5 337 c 128,-1,12 + 1128 539 1128 539 1128 949 c 0,13,14 + 1128 1118 1128 1118 1089 1190 c 128,-1,15 + 1050 1262 1050 1262 959 1262 c 0,16,17 + 901 1262 901 1262 851 1252 c 1,18,-1 + 844 1409 l 1,19,20 + 911 1421 911 1421 989 1421 c 0,21,22 + 1150 1421 1150 1421 1234 1309 c 128,-1,23 + 1318 1197 1318 1197 1318 980 c 0,24,25 + 1318 605 1318 605 1250.5 395.5 c 128,-1,26 + 1183 186 1183 186 1046 83 c 128,-1,27 + 909 -20 909 -20 703 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni01B3 +Encoding: 435 435 373 +Width: 1582 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 16 + 15 + 12 + 13 + 3 + 13 + 15 + 3 + 21 + 22 + 17 + 13 + 15 + 3 + 13 + 18 + 0 + 7 + 95 + 89 + 0 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1582 1540 basechar 0 +AnchorPoint: "Anchor-20" 1582 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1281 1421 m 0,0,1 + 1341 1421 1341 1421 1407.5 1398.5 c 128,-1,2 + 1474 1376 1474 1376 1533 1325 c 1,3,-1 + 1449 1189 l 1,4,5 + 1423 1213 1423 1213 1376 1235.5 c 128,-1,6 + 1329 1258 1329 1258 1292 1258 c 0,7,8 + 1256 1258 1256 1258 1231.5 1243.5 c 128,-1,9 + 1207 1229 1207 1229 1175 1181 c 2,10,-1 + 777 584 l 1,11,-1 + 777 0 l 1,12,-1 + 587 0 l 1,13,-1 + 587 584 l 1,14,-1 + 45 1409 l 1,15,-1 + 259 1409 l 1,16,-1 + 687 738 l 1,17,-1 + 1027 1264 l 2,18,19 + 1082 1350 1082 1350 1142 1385.5 c 128,-1,20 + 1202 1421 1202 1421 1281 1421 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni01B4 +Encoding: 436 436 374 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 15 + 8 + 23 + 9 + 23 + 33 + 10 + 9 + 9 + 2 + 32 + 33 + 21 + 26 + 83 + 89 + 21 + 1 + 15 + 0 + 9 + 15 + 0 + 5 + 80 + 89 + 0 + 3 + 80 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 460 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +191 -425 m 0,0,1 + 117 -425 117 -425 67 -414 c 1,2,-1 + 67 -279 l 1,3,4 + 105 -285 105 -285 151 -285 c 0,5,6 + 319 -285 319 -285 417 -38 c 2,7,-1 + 434 5 l 1,8,-1 + 5 1082 l 1,9,-1 + 197 1082 l 1,10,-1 + 425 484 l 2,11,12 + 430 470 430 470 437 450.5 c 128,-1,13 + 444 431 444 431 482 320 c 128,-1,14 + 520 209 520 209 523 196 c 1,15,-1 + 593 393 l 1,16,-1 + 891 1249 l 2,17,18 + 923 1338 923 1338 961.5 1391 c 128,-1,19 + 1000 1444 1000 1444 1049.5 1468 c 128,-1,20 + 1099 1492 1099 1492 1180 1492 c 0,21,22 + 1310 1492 1310 1492 1418 1399 c 1,23,-1 + 1336 1271 l 1,24,25 + 1268 1333 1268 1333 1196 1333 c 0,26,27 + 1099 1333 1099 1333 1048 1196 c 2,28,-1 + 604 0 l 1,29,30 + 511 -239 511 -239 417.5 -332 c 128,-1,31 + 324 -425 324 -425 191 -425 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni01B5 +Encoding: 437 437 375 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 17 + 11 + 15 + 2 + 6 + 9 + 12 + 12 + 6 + 3 + 15 + 4 + 18 + 19 + 10 + 17 + 0 + 17 + 96 + 89 + 7 + 0 + 0 + 14 + 4 + 14 + 11 + 95 + 89 + 14 + 18 + 4 + 3 + 95 + 89 + 4 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1030 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +62 814 m 1,0,-1 + 584 814 l 1,1,-1 + 923 1253 l 1,2,-1 + 138 1253 l 1,3,-1 + 138 1409 l 1,4,-1 + 1140 1409 l 1,5,-1 + 1140 1270 l 1,6,-1 + 789 814 l 1,7,-1 + 1188 814 l 1,8,-1 + 1188 681 l 1,9,-1 + 686 681 l 1,10,-1 + 282 156 l 1,11,-1 + 1187 156 l 1,12,-1 + 1187 0 l 1,13,-1 + 65 0 l 1,14,-1 + 65 143 l 1,15,-1 + 481 681 l 1,16,-1 + 62 681 l 1,17,-1 + 62 814 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01B6 +Encoding: 438 438 376 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 8 + 2 + 6 + 17 + 11 + 15 + 15 + 3 + 6 + 12 + 4 + 19 + 18 + 10 + 17 + 0 + 17 + 80 + 89 + 7 + 0 + 0 + 14 + 4 + 14 + 11 + 80 + 89 + 14 + 21 + 4 + 3 + 80 + 89 + 4 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 740 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +47 617 m 1,0,-1 + 442 617 l 1,1,-1 + 710 943 l 1,2,-1 + 89 943 l 1,3,-1 + 89 1082 l 1,4,-1 + 913 1082 l 1,5,-1 + 913 945 l 1,6,-1 + 643 617 l 1,7,-1 + 951 617 l 1,8,-1 + 951 484 l 1,9,-1 + 534 484 l 1,10,-1 + 251 139 l 1,11,-1 + 950 139 l 1,12,-1 + 950 0 l 1,13,-1 + 49 0 l 1,14,-1 + 49 137 l 1,15,-1 + 333 484 l 1,16,-1 + 47 484 l 1,17,-1 + 47 617 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01B7 +Encoding: 439 439 377 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 1 + 5 + 5 + 22 + 9 + 6 + 0 + 17 + 2 + 16 + 16 + 0 + 9 + 3 + 28 + 27 + 6 + 26 + 96 + 89 + 17 + 6 + 6 + 13 + 3 + 13 + 19 + 95 + 89 + 13 + 5 + 2 + 3 + 2 + 95 + 89 + 3 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 616 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +418 759 m 1,0,-1 + 918 1253 l 1,1,-1 + 113 1253 l 1,2,-1 + 113 1409 l 1,3,-1 + 1131 1409 l 1,4,-1 + 1131 1248 l 1,5,-1 + 626 758 l 1,6,7 + 896 740 896 740 1038.5 590.5 c 128,-1,8 + 1181 441 1181 441 1181 171 c 0,9,10 + 1181 -3 1181 -3 1109.5 -139.5 c 128,-1,11 + 1038 -276 1038 -276 907 -351 c 128,-1,12 + 776 -426 776 -426 613 -426 c 0,13,14 + 405 -426 405 -426 266.5 -343 c 128,-1,15 + 128 -260 128 -260 45 -78 c 1,16,-1 + 207 -6 l 1,17,18 + 325 -277 325 -277 606 -277 c 0,19,20 + 787 -277 787 -277 890 -159.5 c 128,-1,21 + 993 -42 993 -42 993 171 c 0,22,23 + 993 386 993 386 863.5 502 c 128,-1,24 + 734 618 734 618 489 618 c 2,25,-1 + 418 618 l 1,26,-1 + 418 759 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01B8 +Encoding: 440 440 378 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 25 + 21 + 21 + 4 + 17 + 20 + 0 + 10 + 11 + 11 + 24 + 0 + 17 + 4 + 27 + 28 + 21 + 25 + 22 + 25 + 95 + 89 + 20 + 1 + 96 + 89 + 10 + 20 + 20 + 14 + 22 + 3 + 14 + 8 + 95 + 89 + 14 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 700 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +833 618 m 1,0,-1 + 762 618 l 2,1,2 + 518 618 518 618 388 502.5 c 128,-1,3 + 258 387 258 387 258 171 c 0,4,5 + 258 32 258 32 307.5 -68.5 c 128,-1,6 + 357 -169 357 -169 444.5 -223 c 128,-1,7 + 532 -277 532 -277 645 -277 c 0,8,9 + 926 -277 926 -277 1044 -6 c 1,10,-1 + 1206 -78 l 1,11,12 + 1123 -260 1123 -260 984 -343 c 128,-1,13 + 845 -426 845 -426 638 -426 c 0,14,15 + 381 -426 381 -426 225.5 -265.5 c 128,-1,16 + 70 -105 70 -105 70 171 c 0,17,18 + 70 422 70 422 216.5 575.5 c 128,-1,19 + 363 729 363 729 625 758 c 1,20,-1 + 120 1248 l 1,21,-1 + 120 1409 l 1,22,-1 + 1138 1409 l 1,23,-1 + 1138 1253 l 1,24,-1 + 333 1253 l 1,25,-1 + 833 759 l 1,26,-1 + 833 618 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01B9 +Encoding: 441 441 379 +Width: 1116 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 1 + 26 + 26 + 7 + 22 + 25 + 2 + 14 + 0 + 15 + 15 + 2 + 22 + 3 + 29 + 30 + 25 + 4 + 81 + 89 + 14 + 25 + 25 + 18 + 27 + 27 + 1 + 80 + 89 + 27 + 15 + 18 + 11 + 80 + 89 + 18 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1012 942 m 1,0,-1 + 319 942 l 1,1,-1 + 702 555 l 1,2,-1 + 702 411 l 1,3,-1 + 620 411 l 2,4,5 + 464 411 464 411 369 319 c 128,-1,6 + 274 227 274 227 274 75 c 0,7,8 + 274 -17 274 -17 314.5 -102.5 c 128,-1,9 + 355 -188 355 -188 423.5 -237 c 128,-1,10 + 492 -286 492 -286 573 -286 c 0,11,12 + 712 -286 712 -286 788 -226 c 128,-1,13 + 864 -166 864 -166 882 -36 c 1,14,-1 + 1060 -48 l 1,15,16 + 1037 -235 1037 -235 909.5 -331 c 128,-1,17 + 782 -427 782 -427 567 -427 c 0,18,19 + 426 -427 426 -427 318 -362.5 c 128,-1,20 + 210 -298 210 -298 151.5 -184 c 128,-1,21 + 93 -70 93 -70 93 69 c 0,22,23 + 93 262 93 262 201 388.5 c 128,-1,24 + 309 515 309 515 498 540 c 1,25,-1 + 129 905 l 1,26,-1 + 129 1083 l 1,27,-1 + 1012 1083 l 1,28,-1 + 1012 942 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01BA +Encoding: 442 442 380 +Width: 1116 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 19 + 23 + 23 + 40 + 0 + 14 + 27 + 24 + 18 + 35 + 20 + 7 + 7 + 18 + 27 + 0 + 4 + 42 + 41 + 23 + 20 + 21 + 20 + 80 + 89 + 24 + 17 + 80 + 89 + 35 + 14 + 24 + 24 + 3 + 21 + 15 + 40 + 3 + 3 + 38 + 80 + 89 + 3 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +IP +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1055 -101 m 1,0,1 + 1015 -256 1015 -256 880.5 -341 c 128,-1,2 + 746 -426 746 -426 536 -426 c 0,3,4 + 398 -426 398 -426 290.5 -388 c 128,-1,5 + 183 -350 183 -350 130.5 -281.5 c 128,-1,6 + 78 -213 78 -213 78 -121 c 0,7,8 + 78 -42 78 -42 120.5 13 c 128,-1,9 + 163 68 163 68 237.5 107 c 128,-1,10 + 312 146 312 146 481 189 c 0,11,12 + 652 231 652 231 709 271.5 c 128,-1,13 + 766 312 766 312 766 370 c 0,14,15 + 766 444 766 444 668.5 474.5 c 128,-1,16 + 571 505 571 505 378 505 c 1,17,-1 + 378 644 l 1,18,-1 + 734 942 l 1,19,-1 + 108 942 l 1,20,-1 + 108 1082 l 1,21,-1 + 976 1082 l 1,22,-1 + 976 963 l 1,23,-1 + 580 641 l 1,24,25 + 758 628 758 628 849 558.5 c 128,-1,26 + 940 489 940 489 940 370 c 0,27,28 + 940 288 940 288 900.5 234 c 128,-1,29 + 861 180 861 180 792 144 c 128,-1,30 + 723 108 723 108 547 65 c 0,31,32 + 410 31 410 31 361.5 8 c 128,-1,33 + 313 -15 313 -15 287 -47.5 c 128,-1,34 + 261 -80 261 -80 261 -128 c 0,35,36 + 261 -201 261 -201 331 -242 c 128,-1,37 + 401 -283 401 -283 537 -283 c 0,38,39 + 811 -283 811 -283 877 -82 c 1,40,-1 + 1055 -101 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni01BB +Encoding: 443 443 381 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 28 + 20 + 4 + 17 + 10 + 11 + 11 + 27 + 31 + 0 + 31 + 17 + 3 + 38 + 37 + 22 + 36 + 0 + 36 + 96 + 89 + 19 + 0 + 0 + 30 + 14 + 30 + 27 + 95 + 89 + 30 + 18 + 10 + 14 + 14 + 7 + 96 + 89 + 14 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +90 750 m 1,0,-1 + 682 750 l 1,1,2 + 756 819 756 819 792.5 889 c 128,-1,3 + 829 959 829 959 829 1038 c 0,4,5 + 829 1154 829 1154 761 1218 c 128,-1,6 + 693 1282 693 1282 572 1282 c 0,7,8 + 457 1282 457 1282 382.5 1219.5 c 128,-1,9 + 308 1157 308 1157 295 1044 c 1,10,-1 + 111 1061 l 1,11,12 + 131 1230 131 1230 254.5 1330 c 128,-1,13 + 378 1430 378 1430 572 1430 c 0,14,15 + 785 1430 785 1430 899.5 1329.5 c 128,-1,16 + 1014 1229 1014 1229 1014 1044 c 0,17,18 + 1014 898 1014 898 891 750 c 1,19,-1 + 1032 750 l 1,20,-1 + 1032 614 l 1,21,-1 + 756 614 l 1,22,23 + 691 556 691 556 621.5 500 c 128,-1,24 + 552 444 552 444 489.5 388 c 128,-1,25 + 427 332 427 332 377 274 c 128,-1,26 + 327 216 327 216 301 153 c 1,27,-1 + 1036 153 l 1,28,-1 + 1036 0 l 1,29,-1 + 103 0 l 1,30,-1 + 103 127 l 1,31,32 + 140 214 140 214 194 289 c 128,-1,33 + 248 364 248 364 314.5 432 c 128,-1,34 + 381 500 381 500 522 614 c 1,35,-1 + 90 614 l 1,36,-1 + 90 750 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01BC +Encoding: 444 444 382 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 22 + 13 + 0 + 24 + 17 + 19 + 7 + 6 + 6 + 17 + 0 + 3 + 29 + 28 + 23 + 19 + 20 + 19 + 95 + 89 + 24 + 17 + 95 + 89 + 7 + 24 + 24 + 3 + 20 + 3 + 3 + 10 + 96 + 89 + 3 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 605 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1062 479 m 0,0,1 + 1062 243 1062 243 929.5 111.5 c 128,-1,2 + 797 -20 797 -20 562 -20 c 0,3,4 + 371 -20 371 -20 247 77 c 128,-1,5 + 123 174 123 174 89 345 c 1,6,-1 + 268 366 l 1,7,8 + 303 240 303 240 377.5 181.5 c 128,-1,9 + 452 123 452 123 565 123 c 0,10,11 + 713 123 713 123 794 213 c 128,-1,12 + 875 303 875 303 875 475 c 0,13,14 + 875 635 875 635 788.5 715 c 128,-1,15 + 702 795 702 795 539 795 c 2,16,-1 + 310 795 l 1,17,-1 + 310 1253 l 1,18,-1 + 138 1253 l 1,19,-1 + 138 1409 l 1,20,-1 + 980 1409 l 1,21,-1 + 980 1253 l 1,22,-1 + 494 1253 l 1,23,-1 + 494 950 l 1,24,-1 + 572 950 l 2,25,26 + 803 950 803 950 932.5 824 c 128,-1,27 + 1062 698 1062 698 1062 479 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni01BD +Encoding: 445 445 383 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 8 + 0 + 14 + 10 + 3 + 21 + 5 + 20 + 20 + 3 + 14 + 3 + 27 + 26 + 10 + 3 + 80 + 89 + 21 + 10 + 10 + 17 + 6 + 17 + 24 + 80 + 89 + 17 + 22 + 9 + 5 + 6 + 5 + 80 + 89 + 6 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 939 1540 basechar 0 +AnchorPoint: "Anchor-20" 939 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +682 341 m 0,0,1 + 682 550 682 550 389 550 c 2,2,-1 + 222 550 l 1,3,-1 + 222 942 l 1,4,-1 + 50 942 l 1,5,-1 + 50 1082 l 1,6,-1 + 830 1082 l 1,7,-1 + 830 942 l 1,8,-1 + 384 942 l 1,9,-1 + 384 688 l 1,10,-1 + 438 688 l 2,11,12 + 641 688 641 688 752 596.5 c 128,-1,13 + 863 505 863 505 863 343 c 0,14,15 + 863 170 863 170 758.5 75 c 128,-1,16 + 654 -20 654 -20 466 -20 c 0,17,18 + 289 -20 289 -20 184.5 60.5 c 128,-1,19 + 80 141 80 141 46 311 c 1,20,-1 + 220 323 l 1,21,22 + 233 230 233 230 297.5 171.5 c 128,-1,23 + 362 113 362 113 454 113 c 0,24,25 + 682 113 682 113 682 341 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni01BE +Encoding: 446 446 384 +Width: 997 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 24 + 11 + 39 + 1 + 1 + 36 + 32 + 17 + 32 + 41 + 11 + 4 + 43 + 42 + 38 + 1 + 0 + 34 + 35 + 34 + 81 + 89 + 24 + 14 + 39 + 35 + 15 + 14 + 21 + 80 + 89 + 18 + 14 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 561 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 997 1540 basechar 0 +AnchorPoint: "Anchor-20" 997 -380 basechar 0 +LayerCount: 2 +Fore +SplineSet +347 951 m 1,0,-1 + 347 844 l 2,1,2 + 347 760 347 760 363.5 726 c 128,-1,3 + 380 692 380 692 421 669.5 c 128,-1,4 + 462 647 462 647 538 629 c 0,5,6 + 669 595 669 595 720 574 c 128,-1,7 + 771 553 771 553 807 528 c 128,-1,8 + 843 503 843 503 868 469.5 c 128,-1,9 + 893 436 893 436 906.5 395 c 128,-1,10 + 920 354 920 354 920 299 c 0,11,12 + 920 147 920 147 820 63.5 c 128,-1,13 + 720 -20 720 -20 511 -20 c 0,14,15 + 309 -20 309 -20 199.5 46.5 c 128,-1,16 + 90 113 90 113 57 254 c 1,17,-1 + 216 285 l 1,18,19 + 239 198 239 198 311 157.5 c 128,-1,20 + 383 117 383 117 511 117 c 256,21,22 + 639 117 639 117 692 157 c 128,-1,23 + 745 197 745 197 745 285 c 0,24,25 + 745 334 745 334 727 365.5 c 128,-1,26 + 709 397 709 397 673 418 c 128,-1,27 + 637 439 637 439 583.5 454.5 c 128,-1,28 + 530 470 530 470 460 489 c 0,29,30 + 295 532 295 532 231 610.5 c 128,-1,31 + 167 689 167 689 167 826 c 2,32,-1 + 167 951 l 1,33,-1 + 36 951 l 1,34,-1 + 36 1082 l 1,35,-1 + 168 1082 l 1,36,-1 + 168 1429 l 1,37,-1 + 347 1507 l 1,38,-1 + 347 1082 l 1,39,-1 + 532 1082 l 1,40,-1 + 532 951 l 1,41,-1 + 347 951 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01BF +Encoding: 447 447 385 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 23 + 10 + 5 + 5 + 6 + 17 + 0 + 6 + 0 + 27 + 28 + 11 + 14 + 23 + 23 + 4 + 80 + 89 + 23 + 21 + 14 + 19 + 80 + 89 + 14 + 16 + 7 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 165 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 557 1200 basechar 0 +AnchorPoint: "Anchor-15" 953 1260 basechar 0 +AnchorPoint: "Anchor-14" 229 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1051 624 m 0,0,1 + 1051 460 1051 460 976.5 324 c 128,-1,2 + 902 188 902 188 747 80.5 c 128,-1,3 + 592 -27 592 -27 318 -127 c 1,4,-1 + 318 -426 l 1,5,-1 + 138 -426 l 1,6,-1 + 138 1082 l 1,7,-1 + 306 1082 l 1,8,9 + 316 977 316 977 316 908 c 1,10,-1 + 320 908 l 1,11,12 + 364 1005 364 1005 447.5 1053 c 128,-1,13 + 531 1101 531 1101 643 1101 c 0,14,15 + 840 1101 840 1101 945.5 978.5 c 128,-1,16 + 1051 856 1051 856 1051 624 c 0,0,1 +861 624 m 0,17,18 + 861 962 861 962 605 962 c 0,19,20 + 462 962 462 962 390 859.5 c 128,-1,21 + 318 757 318 757 318 545 c 2,22,-1 + 318 20 l 1,23,24 + 518 95 518 95 633.5 184 c 128,-1,25 + 749 273 749 273 805 381.5 c 128,-1,26 + 861 490 861 490 861 624 c 0,17,18 +EndSplineSet +EndChar + +StartChar: uni01C0 +Encoding: 448 448 386 +Width: 532 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 0 + 0 + 4 + 5 + 1 + 0 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +176 0 m 1,0,-1 + 176 1484 l 1,1,-1 + 356 1484 l 1,2,-1 + 356 0 l 1,3,-1 + 176 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01C1 +Encoding: 449 449 387 +Width: 846 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 0 + 4 + 7 + 0 + 7 + 8 + 9 + 5 + 1 + 0 + 4 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +179 0 m 1,0,-1 + 179 1484 l 1,1,-1 + 344 1484 l 1,2,-1 + 344 0 l 1,3,-1 + 179 0 l 1,0,-1 +502 0 m 1,4,-1 + 502 1484 l 1,5,-1 + 667 1484 l 1,6,-1 + 667 0 l 1,7,-1 + 502 0 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni01C2 +Encoding: 450 450 388 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 15 + 0 + 8 + 4 + 12 + 12 + 17 + 1 + 13 + 10 + 5 + 5 + 13 + 0 + 3 + 20 + 21 + 7 + 19 + 0 + 19 + 95 + 89 + 4 + 0 + 11 + 15 + 16 + 15 + 95 + 89 + 8 + 16 + 0 + 16 + 0 + 16 + 2 + 13 + 18 + 2 + 0 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +114 1030 m 1,0,-1 + 510 1030 l 1,1,-1 + 510 1484 l 1,2,-1 + 684 1484 l 1,3,-1 + 684 1030 l 1,4,-1 + 1082 1030 l 1,5,-1 + 1082 877 l 1,6,-1 + 684 877 l 1,7,-1 + 684 569 l 1,8,-1 + 1082 569 l 1,9,-1 + 1082 416 l 1,10,-1 + 684 416 l 1,11,-1 + 684 0 l 1,12,-1 + 510 0 l 1,13,-1 + 510 416 l 1,14,-1 + 114 416 l 1,15,-1 + 114 569 l 1,16,-1 + 510 569 l 1,17,-1 + 510 877 l 1,18,-1 + 114 877 l 1,19,-1 + 114 1030 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01C3 +Encoding: 451 451 389 +Width: 569 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 4 33 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni01C4 +Encoding: 452 452 390 +Width: 2730 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 3 + 31 + 31 + 5 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 2486 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2730 1840 basechar 0 +AnchorPoint: "Anchor-20" 2730 -380 basechar 0 +AnchorPoint: "Anchor-16" 2130 1900 basechar 0 +AnchorPoint: "Anchor-15" 2614 1580 basechar 0 +AnchorPoint: "Anchor-14" 2090 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 2 +Refer: 61 90 N 1 0 0 1 1479 0 2 +Refer: 649 711 N 1 0 0 1 1779 356 2 +EndChar + +StartChar: uni01C5 +Encoding: 453 453 391 +Width: 2503 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 3 + 30 + 30 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 2266 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2503 1540 basechar 0 +AnchorPoint: "Anchor-20" 2503 -380 basechar 0 +AnchorPoint: "Anchor-16" 1943 1580 basechar 0 +AnchorPoint: "Anchor-15" 2400 1260 basechar 0 +AnchorPoint: "Anchor-14" 1982 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 2 +Refer: 93 122 N 1 0 0 1 1479 0 2 +Refer: 649 711 N 1 0 0 1 1608 0 2 +EndChar + +StartChar: uni01C6 +Encoding: 454 454 392 +Width: 2148 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 3 + 45 + 45 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1903 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2148 1540 basechar 0 +AnchorPoint: "Anchor-20" 2148 -380 basechar 0 +AnchorPoint: "Anchor-16" 1591 1580 basechar 0 +AnchorPoint: "Anchor-15" 2042 1260 basechar 0 +AnchorPoint: "Anchor-14" 1637 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 71 100 N 1 0 0 1 0 0 2 +Refer: 93 122 N 1 0 0 1 1124 0 2 +Refer: 649 711 N 1 0 0 1 1253 0 2 +EndChar + +StartChar: uni01C7 +Encoding: 455 455 393 +Width: 2175 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 1628 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2175 1540 basechar 0 +AnchorPoint: "Anchor-20" 2175 -380 basechar 0 +AnchorPoint: "Anchor-16" 1811 1540 basechar 0 +AnchorPoint: "Anchor-15" 2031 1540 basechar 0 +AnchorPoint: "Anchor-14" 1615 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 2 +Refer: 45 74 N 1 0 0 1 1151 0 2 +EndChar + +StartChar: uni01C8 +Encoding: 456 456 394 +Width: 1706 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 1353 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 1481 1540 basechar 0 +AnchorPoint: "Anchor-15" 1646 1260 basechar 0 +AnchorPoint: "Anchor-14" 1373 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 2 +Refer: 77 106 N 1 0 0 1 1251 0 2 +EndChar + +StartChar: uni01C9 +Encoding: 457 457 395 +Width: 924 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 583 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 924 1540 basechar 0 +AnchorPoint: "Anchor-20" 924 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 854 1260 basechar 0 +AnchorPoint: "Anchor-14" 630 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 2 +Refer: 77 106 N 1 0 0 1 469 0 2 +EndChar + +StartChar: uni01CA +Encoding: 458 458 396 +Width: 2503 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 1980 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2503 1540 basechar 0 +AnchorPoint: "Anchor-20" 2503 -380 basechar 0 +AnchorPoint: "Anchor-16" 2108 1540 basechar 0 +AnchorPoint: "Anchor-15" 2350 1540 basechar 0 +AnchorPoint: "Anchor-14" 1945 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 2 +Refer: 45 74 N 1 0 0 1 1479 0 2 +EndChar + +StartChar: uni01CB +Encoding: 459 459 397 +Width: 1934 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 1600 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1934 1540 basechar 0 +AnchorPoint: "Anchor-20" 1934 -380 basechar 0 +AnchorPoint: "Anchor-16" 1701 1540 basechar 0 +AnchorPoint: "Anchor-15" 1860 1260 basechar 0 +AnchorPoint: "Anchor-14" 1604 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 2 +Refer: 77 106 N 1 0 0 1 1479 0 2 +EndChar + +StartChar: uni01CC +Encoding: 460 460 398 +Width: 1579 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 1240 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1579 1540 basechar 0 +AnchorPoint: "Anchor-20" 1579 -380 basechar 0 +AnchorPoint: "Anchor-16" 1350 1540 basechar 0 +AnchorPoint: "Anchor-15" 1536 1260 basechar 0 +AnchorPoint: "Anchor-14" 1230 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 0 0 2 +Refer: 77 106 N 1 0 0 1 1124 0 2 +EndChar + +StartChar: uni01CD +Encoding: 461 461 399 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 18 + 18 + 5 + 38 + 2 + 20 + 3 + 20 + 26 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 355 0 2 +EndChar + +StartChar: uni01CE +Encoding: 462 462 400 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 50 + 50 + 17 + 38 + 2 + 52 +PUSHW_1 + -37 +PUSHB_5 + 52 + 58 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 245 0 2 +EndChar + +StartChar: uni01CF +Encoding: 463 463 401 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 5 + 5 + 5 + 38 + 1 + 7 + 4 + 7 + 13 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 -42 0 2 +EndChar + +StartChar: uni01D0 +Encoding: 464 464 402 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 5 + 5 + 17 + 38 + 1 + 7 +PUSHW_1 + -14 +NPUSHB + 46 + 7 + 13 + 1 + 3 + 37 + 31 + 15 + 159 + 15 + 223 + 15 + 255 + 15 + 4 + 79 + 15 + 223 + 15 + 2 + 31 + 15 + 1 + 0 + 15 + 112 + 15 + 128 + 15 + 176 + 15 + 192 + 15 + 224 + 15 + 6 + 144 + 15 + 160 + 15 + 176 + 15 + 192 + 15 + 240 + 15 + 5 +DELTAP2 +DELTAP3 +DELTAP1 +DELTAP2 +DELTAP3 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 2355 -1 N 1 0 0 1 0 0 2 +Refer: 649 711 N 1 0 0 1 -119 0 2 +EndChar + +StartChar: uni01D1 +Encoding: 465 465 403 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 28 + 28 + 5 + 38 + 2 + 30 +PUSHW_1 + -8 +PUSHB_5 + 30 + 36 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 457 0 2 +EndChar + +StartChar: uni01D2 +Encoding: 466 466 404 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 24 + 24 + 17 + 38 + 2 + 26 + 5 + 26 + 32 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 244 0 2 +EndChar + +StartChar: uni01D3 +Encoding: 467 467 405 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 21 + 21 + 5 + 38 + 1 + 23 +PUSHW_1 + -6 +PUSHB_5 + 23 + 29 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 402 0 2 +EndChar + +StartChar: uni01D4 +Encoding: 468 468 406 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 28 + 28 + 17 + 38 + 1 + 30 +PUSHW_1 + -14 +PUSHB_5 + 30 + 36 + 26 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 223 0 2 +EndChar + +StartChar: uni01D5 +Encoding: 469 469 407 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 3 + 2 + 1 + 27 + 27 + 5 + 38 + 3 + 2 + 1 + 25 + 11 + 25 + 23 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2356 -1 N 1 0 0 1 750 0 2 +EndChar + +StartChar: uni01D6 +Encoding: 470 470 408 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 3 + 159 + 38 + 1 + 16 + 38 + 32 + 38 + 48 + 38 + 64 + 38 + 4 + 80 + 38 + 96 + 38 + 112 + 38 + 128 + 38 + 160 + 38 + 176 + 38 + 6 + 38 + 2 + 1 + 27 + 27 + 17 + 38 + 3 + 2 + 1 + 31 +PUSHW_1 + -13 +PUSHB_5 + 31 + 29 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 245 0 2 +Refer: 651 713 N 1 0 0 1 245 280 2 +EndChar + +StartChar: uni01D7 +Encoding: 471 471 409 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 3 + 2 + 1 + 33 + 33 + 5 + 38 + 3 + 2 + 1 + 31 + 11 + 31 + 29 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2357 -1 N 1 0 0 1 750 0 2 +EndChar + +StartChar: uni01D8 +Encoding: 472 472 410 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 3 + 159 + 38 + 207 + 38 + 2 + 38 + 2 + 1 + 27 + 27 + 17 + 38 + 3 + 2 + 1 + 31 +PUSHW_1 + -13 +PUSHB_5 + 31 + 29 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 245 0 2 +Refer: 118 180 N 1 0 0 1 424 280 2 +EndChar + +StartChar: uni01D9 +Encoding: 473 473 411 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 3 + 2 + 1 + 36 + 36 + 5 + 38 + 3 + 2 + 1 + 26 + 11 + 26 + 22 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2358 -1 N 1 0 0 1 750 0 2 +EndChar + +StartChar: uni01DA +Encoding: 474 474 412 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 3 + 159 + 38 + 207 + 38 + 2 + 38 + 2 + 1 + 27 + 27 + 17 + 38 + 3 + 2 + 1 + 31 +PUSHW_1 + -13 +PUSHB_5 + 31 + 29 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 245 0 2 +Refer: 649 711 N 1 0 0 1 233 280 2 +EndChar + +StartChar: uni01DB +Encoding: 475 475 413 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 3 + 2 + 1 + 33 + 33 + 5 + 38 + 3 + 2 + 1 + 27 + 11 + 27 + 33 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2359 -1 N 1 0 0 1 750 0 2 +EndChar + +StartChar: uni01DC +Encoding: 476 476 414 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 3 + 159 + 38 + 207 + 38 + 2 + 38 + 2 + 1 + 27 + 27 + 17 + 38 + 3 + 2 + 1 + 31 +PUSHW_1 + -13 +PUSHB_5 + 31 + 29 + 25 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 245 0 2 +Refer: 67 96 N 1 0 0 1 112 280 2 +EndChar + +StartChar: uni01DD +Encoding: 477 477 415 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 0 + 25 + 25 + 12 + 19 + 7 + 17 + 12 + 17 + 27 + 26 + 18 + 19 + 80 + 89 + 18 + 18 + 15 + 9 + 15 + 22 + 80 + 89 + 15 + 22 + 6 + 9 + 9 + 3 + 80 + 89 + 9 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 638 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 975 900 basechar 0 +AnchorPoint: "Anchor-17" 575 1200 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 560 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +858 579 m 1,0,1 + 858 765 858 765 781 866 c 128,-1,2 + 704 967 704 967 556 967 c 0,3,4 + 439 967 439 967 368.5 920 c 128,-1,5 + 298 873 298 873 273 801 c 1,6,-1 + 115 846 l 1,7,8 + 212 1102 212 1102 556 1102 c 0,9,10 + 796 1102 796 1102 921.5 959 c 128,-1,11 + 1047 816 1047 816 1047 534 c 0,12,13 + 1047 266 1047 266 921.5 123 c 128,-1,14 + 796 -20 796 -20 563 -20 c 0,15,16 + 86 -20 86 -20 86 555 c 2,17,-1 + 86 579 l 1,18,-1 + 858 579 l 1,0,1 +272 441 m 1,19,20 + 287 270 287 270 359 191.5 c 128,-1,21 + 431 113 431 113 566 113 c 0,22,23 + 697 113 697 113 773.5 200.5 c 128,-1,24 + 850 288 850 288 856 441 c 1,25,-1 + 272 441 l 1,19,20 +EndSplineSet +EndChar + +StartChar: uni01DE +Encoding: 478 478 416 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 4 + 3 + 2 + 24 + 24 + 5 + 38 + 4 + 3 + 2 + 22 + 5 + 22 + 20 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2356 -1 N 1 0 0 1 688 0 2 +EndChar + +StartChar: uni01DF +Encoding: 479 479 417 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 4 + 63 + 60 + 159 + 60 + 2 + 16 + 60 + 48 + 60 + 64 + 60 + 144 + 60 + 4 + 60 + 3 + 2 + 49 + 49 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP2 +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 242 0 2 +Refer: 651 713 N 1 0 0 1 240 280 2 +EndChar + +StartChar: uni01E0 +Encoding: 480 480 418 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 20 + 20 + 5 + 38 + 3 + 2 + 23 + 6 + 23 + 24 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2360 -1 N 1 0 0 1 689 0 2 +EndChar + +StartChar: uni01E1 +Encoding: 481 481 419 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 3 + 127 + 55 + 1 + 63 + 55 + 159 + 55 + 2 + 16 + 55 + 48 + 55 + 64 + 55 + 3 + 55 + 2 + 52 + 52 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP2 +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 302 -80 2 +Refer: 651 713 N 1 0 0 1 220 280 2 +EndChar + +StartChar: uni01E2 +Encoding: 482 482 420 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 22 + 22 + 5 + 38 + 2 + 23 +PUSHW_1 + 323 +PUSHB_5 + 23 + 24 + 4 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1804 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2048 1840 basechar 0 +AnchorPoint: "Anchor-20" 2048 -380 basechar 0 +AnchorPoint: "Anchor-16" 1330 1800 basechar 0 +AnchorPoint: "Anchor-15" 1910 1540 basechar 0 +AnchorPoint: "Anchor-14" 1120 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 136 198 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 990 329 2 +EndChar + +StartChar: uni01E3 +Encoding: 483 483 421 +Width: 1821 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 3 + 61 + 61 + 17 + 38 + 3 + 62 + 27 + 62 + 63 + 18 + 39 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1375 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1821 1540 basechar 0 +AnchorPoint: "Anchor-20" 1821 -380 basechar 0 +AnchorPoint: "Anchor-16" 931 1480 basechar 0 +AnchorPoint: "Anchor-15" 1547 1260 basechar 0 +AnchorPoint: "Anchor-14" 834 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 168 230 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 600 0 2 +EndChar + +StartChar: uni01E4 +Encoding: 484 484 422 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 57 + 1 + 37 + 37 + 23 + 8 + 6 + 10 + 3 + 38 + 30 + 17 + 17 + 38 + 10 + 3 + 40 + 39 + 9 + 38 + 0 + 38 + 96 + 89 + 6 + 0 + 4 + 3 + 95 + 89 + 79 + 0 + 1 + 15 + 4 + 1 + 11 + 3 + 0 + 4 + 0 + 4 + 13 + 20 + 20 + 27 + 95 + 89 + 24 + 24 + 20 + 4 + 13 + 33 + 95 + 89 + 13 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 931 1480 basechar 0 +AnchorPoint: "Anchor-15" 1547 1260 basechar 0 +AnchorPoint: "Anchor-14" 834 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +844 438 m 1,0,-1 + 1264 438 l 1,1,-1 + 1264 545 l 1,2,-1 + 843 545 l 1,3,-1 + 843 705 l 1,4,-1 + 1440 705 l 1,5,-1 + 1440 438 l 1,6,-1 + 1568 438 l 1,7,-1 + 1568 308 l 1,8,-1 + 1440 308 l 1,9,-1 + 1440 219 l 1,10,11 + 1328 105 1328 105 1165.5 42.5 c 128,-1,12 + 1003 -20 1003 -20 813 -20 c 0,13,14 + 592 -20 592 -20 432 68 c 128,-1,15 + 272 156 272 156 187.5 321.5 c 128,-1,16 + 103 487 103 487 103 711 c 0,17,18 + 103 1054 103 1054 287 1242 c 128,-1,19 + 471 1430 471 1430 804 1430 c 0,20,21 + 1038 1430 1038 1430 1184 1351 c 128,-1,22 + 1330 1272 1330 1272 1409 1098 c 1,23,-1 + 1227 1044 l 1,24,25 + 1167 1164 1167 1164 1061.5 1219 c 128,-1,26 + 956 1274 956 1274 799 1274 c 0,27,28 + 555 1274 555 1274 426 1126.5 c 128,-1,29 + 297 979 297 979 297 711 c 0,30,31 + 297 444 297 444 434 289.5 c 128,-1,32 + 571 135 571 135 813 135 c 0,33,34 + 951 135 951 135 1070.5 177 c 128,-1,35 + 1190 219 1190 219 1264 291 c 1,36,-1 + 1264 308 l 1,37,-1 + 844 308 l 1,38,-1 + 844 438 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni01E5 +Encoding: 485 485 423 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 56 + 49 + 22 + 4 + 12 + 42 + 3 + 42 + 28 + 10 + 14 + 14 + 36 + 36 + 3 + 22 + 3 + 55 + 56 + 4 + 0 + 39 + 11 + 12 + 11 + 81 + 89 + 36 + 12 + 19 + 64 + 19 + 52 + 80 + 89 + 19 + 64 + 9 + 14 + 72 + 19 + 19 + 0 + 32 + 15 + 25 + 46 + 80 + 89 + 25 + 16 + 0 + 7 + 80 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,white] +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +548 -425 m 0,0,1 + 371 -425 371 -425 266 -355.5 c 128,-1,2 + 161 -286 161 -286 131 -158 c 1,3,-1 + 312 -132 l 1,4,5 + 330 -207 330 -207 391.5 -247.5 c 128,-1,6 + 453 -288 453 -288 553 -288 c 0,7,8 + 658 -288 658 -288 718 -244 c 128,-1,9 + 778 -200 778 -200 802 -108 c 1,10,-1 + 404 -108 l 1,11,-1 + 404 22 l 1,12,-1 + 820 22 l 1,13,-1 + 822 75 l 1,14,-1 + 822 291 l 1,15,-1 + 820 291 l 1,16,17 + 769 187 769 187 680 134.5 c 128,-1,18 + 591 82 591 82 472 82 c 0,19,20 + 274 82 274 82 180 202.5 c 128,-1,21 + 86 323 86 323 86 585 c 0,22,23 + 86 849 86 849 187.5 974 c 128,-1,24 + 289 1099 289 1099 492 1099 c 0,25,26 + 607 1099 607 1099 691.5 1046.5 c 128,-1,27 + 776 994 776 994 822 897 c 1,28,-1 + 824 897 l 1,29,30 + 824 927 824 927 828 1001 c 128,-1,31 + 832 1075 832 1075 836 1082 c 1,32,-1 + 1007 1082 l 1,33,34 + 1001 1028 1001 1028 1001 858 c 2,35,-1 + 1001 22 l 1,36,-1 + 1128 22 l 1,37,-1 + 1128 -108 l 1,38,-1 + 988 -108 l 1,39,40 + 957 -266 957 -266 849 -345.5 c 128,-1,41 + 741 -425 741 -425 548 -425 c 0,0,1 +822 586 m 0,42,43 + 822 704 822 704 786 789 c 128,-1,44 + 750 874 750 874 685 919.5 c 128,-1,45 + 620 965 620 965 536 965 c 0,46,47 + 398 965 398 965 335 875 c 128,-1,48 + 272 785 272 785 272 586 c 256,49,50 + 272 387 272 387 331.5 301 c 128,-1,51 + 391 215 391 215 533 215 c 0,52,53 + 663 215 663 215 742.5 314 c 128,-1,54 + 822 413 822 413 822 586 c 0,42,43 +EndSplineSet +EndChar + +StartChar: uni01E6 +Encoding: 486 486 424 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 32 + 32 + 5 + 38 + 1 + 34 + 30 + 34 + 40 + 0 + 24 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 42 71 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 471 0 2 +EndChar + +StartChar: uni01E7 +Encoding: 487 487 425 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 48 + 48 + 17 + 38 + 2 + 50 +PUSHW_1 + -27 +PUSHB_5 + 50 + 56 + 17 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 74 103 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 188 0 2 +EndChar + +StartChar: uni01E8 +Encoding: 488 488 426 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 13 + 13 + 5 + 38 + 1 + 15 +PUSHW_1 + -104 +PUSHB_5 + 15 + 21 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 46 75 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 320 0 2 +EndChar + +StartChar: uni01E9 +Encoding: 489 489 427 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 13 + 13 + 5 + 38 + 1 + 15 +PUSHW_1 + -51 +PUSHB_5 + 15 + 21 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 78 107 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 200 20 2 +EndChar + +StartChar: uni01EA +Encoding: 490 490 428 +Width: 1593 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 940 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 880 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 620 0 2 +EndChar + +StartChar: uni01EB +Encoding: 491 491 429 +Width: 1139 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 680 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1124 1540 basechar 0 +AnchorPoint: "Anchor-20" 1124 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 854 1260 basechar 0 +AnchorPoint: "Anchor-14" 630 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 370 0 2 +EndChar + +StartChar: uni01EC +Encoding: 492 492 430 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 3 + 48 + 5 + 38 + 3 + 48 + 0 + 48 + 47 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 880 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 620 0 2 +Refer: 651 713 N 1 0 0 1 465 329 2 +EndChar + +StartChar: uni01ED +Encoding: 493 493 431 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 3 + 44 + 17 + 38 + 3 + 44 + 0 + 44 + 43 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1124 1540 basechar 0 +AnchorPoint: "Anchor-20" 1124 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 854 1260 basechar 0 +AnchorPoint: "Anchor-14" 630 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 669 731 N 1 0 0 1 370 0 2 +Refer: 651 713 N 1 0 0 1 243 0 2 +EndChar + +StartChar: uni01EE +Encoding: 494 494 432 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 28 + 28 + 5 + 38 + 1 + 30 + 7 + 30 + 36 + 16 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 630 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 636 1840 basechar 0 +AnchorPoint: "Anchor-15" 1107 1540 basechar 0 +AnchorPoint: "Anchor-14" 581 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 377 439 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 289 0 2 +EndChar + +StartChar: uni01EF +Encoding: 495 495 433 +Width: 1116 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 29 + 29 + 17 + 38 + 1 + 31 + 13 + 31 + 37 + 13 + 6 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 605 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1116 1540 basechar 0 +AnchorPoint: "Anchor-20" 1116 -380 basechar 0 +AnchorPoint: "Anchor-16" 579 1580 basechar 0 +AnchorPoint: "Anchor-15" 1008 1260 basechar 0 +AnchorPoint: "Anchor-14" 559 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 596 658 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 234 0 2 +EndChar + +StartChar: uni01F0 +Encoding: 496 496 434 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 14 + 14 + 17 + 38 + 1 + 16 + 87 + 16 + 22 + 6 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 100 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 140 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 505 567 N 1 0 0 1 0 0 3 +Refer: 649 711 N 1 0 0 1 -110 0 2 +EndChar + +StartChar: uni01F1 +Encoding: 497 497 435 +Width: 2730 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 2431 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2730 1840 basechar 0 +AnchorPoint: "Anchor-20" 2730 -380 basechar 0 +AnchorPoint: "Anchor-16" 2140 1540 basechar 0 +AnchorPoint: "Anchor-15" 2603 1540 basechar 0 +AnchorPoint: "Anchor-14" 2110 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 2 +Refer: 61 90 N 1 0 0 1 1479 0 2 +EndChar + +StartChar: uni01F2 +Encoding: 498 498 436 +Width: 2503 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 2244 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2503 1540 basechar 0 +AnchorPoint: "Anchor-20" 2503 -380 basechar 0 +AnchorPoint: "Anchor-16" 1980 1200 basechar 0 +AnchorPoint: "Anchor-15" 2361 1260 basechar 0 +AnchorPoint: "Anchor-14" 1989 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 2 +Refer: 93 122 N 1 0 0 1 1479 0 2 +EndChar + +StartChar: uni01F3 +Encoding: 499 499 437 +Width: 2148 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 1903 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2148 1540 basechar 0 +AnchorPoint: "Anchor-20" 2148 -380 basechar 0 +AnchorPoint: "Anchor-16" 1624 1200 basechar 0 +AnchorPoint: "Anchor-15" 2020 1260 basechar 0 +AnchorPoint: "Anchor-14" 1626 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 71 100 N 1 0 0 1 0 0 2 +Refer: 93 122 N 1 0 0 1 1124 0 2 +EndChar + +StartChar: uni01F4 +Encoding: 500 500 438 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 36 + 36 + 5 + 38 + 1 + 32 + 95 + 32 + 35 + 0 + 24 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 42 71 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 583 0 2 +EndChar + +StartChar: uni01F5 +Encoding: 501 501 439 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 52 + 52 + 17 + 38 + 2 + 48 + 100 + 48 + 51 + 17 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 74 103 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 363 0 2 +EndChar + +StartChar: uni01F6 +Encoding: 502 502 440 +Width: 2118 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 6 + 9 + 23 + 0 + 15 + 22 + 18 + 18 + 19 + 19 + 15 + 9 + 3 + 27 + 26 + 22 + 17 + 95 + 89 + 80 + 22 + 1 + 224 + 22 + 1 + 22 +PUSHW_1 + -31 +NPUSHB + 28 + 19 + 73 + 121 + 22 + 137 + 22 + 2 + 15 + 22 + 1 + 8 + 3 + 22 + 22 + 19 + 24 + 20 + 3 + 19 + 18 + 12 + 3 + 96 + 89 + 12 + 19 + 7 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1634 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2118 1540 basechar 0 +AnchorPoint: "Anchor-20" 2118 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1312 394 m 2,0,1 + 1312 247 1312 247 1371 182 c 128,-1,2 + 1430 117 1430 117 1558 117 c 256,3,4 + 1686 117 1686 117 1744.5 181.5 c 128,-1,5 + 1803 246 1803 246 1803 394 c 2,6,-1 + 1803 1082 l 1,7,-1 + 1984 1082 l 1,8,-1 + 1984 365 l 2,9,10 + 1984 188 1984 188 1871 84 c 128,-1,11 + 1758 -20 1758 -20 1557 -20 c 0,12,13 + 1353 -20 1353 -20 1237 82 c 128,-1,14 + 1121 184 1121 184 1121 362 c 2,15,-1 + 1121 653 l 1,16,-1 + 359 653 l 1,17,-1 + 359 0 l 1,18,-1 + 168 0 l 1,19,-1 + 168 1409 l 1,20,-1 + 359 1409 l 1,21,-1 + 359 813 l 1,22,-1 + 1121 813 l 1,23,-1 + 1121 1409 l 1,24,-1 + 1312 1409 l 1,25,-1 + 1312 394 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni01F7 +Encoding: 503 503 441 +Width: 1266 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 23 + 9 + 5 + 5 + 6 + 15 + 0 + 6 + 0 + 27 + 28 + 9 + 23 + 12 + 23 + 4 + 95 + 89 + 23 + 18 + 12 + 18 + 95 + 89 + 12 + 4 + 7 + 3 + 5 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 198 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1266 1540 basechar 0 +AnchorPoint: "Anchor-20" 1266 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1580 basechar 0 +AnchorPoint: "Anchor-15" 1030 1540 basechar 0 +AnchorPoint: "Anchor-14" 262 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1177 931 m 0,0,1 + 1177 714 1177 714 1064.5 487.5 c 128,-1,2 + 952 261 952 261 761.5 86.5 c 128,-1,3 + 571 -88 571 -88 359 -160 c 1,4,-1 + 359 -425 l 1,5,-1 + 168 -425 l 1,6,-1 + 168 1409 l 1,7,-1 + 352 1409 l 1,8,-1 + 352 1245 l 1,9,10 + 415 1333 415 1333 510 1381.5 c 128,-1,11 + 605 1430 605 1430 716 1430 c 0,12,13 + 939 1430 939 1430 1058 1305.5 c 128,-1,14 + 1177 1181 1177 1181 1177 931 c 0,0,1 +982 932 m 0,15,16 + 982 1098 982 1098 910 1186.5 c 128,-1,17 + 838 1275 838 1275 693 1275 c 0,18,19 + 598 1275 598 1275 521.5 1226 c 128,-1,20 + 445 1177 445 1177 402 1092 c 128,-1,21 + 359 1007 359 1007 359 909 c 2,22,-1 + 359 2 l 1,23,24 + 521 60 521 60 666.5 210.5 c 128,-1,25 + 812 361 812 361 897 556 c 128,-1,26 + 982 751 982 751 982 932 c 0,15,16 +EndSplineSet +EndChar + +StartChar: uni01F8 +Encoding: 504 504 442 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 19 + 19 + 5 + 38 + 1 + 16 +PUSHW_1 + -79 +PUSHB_5 + 16 + 19 + 6 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 343 0 2 +EndChar + +StartChar: uni01F9 +Encoding: 505 505 443 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 32 + 32 + 17 + 38 + 1 + 29 +PUSHW_1 + -76 +PUSHB_5 + 29 + 32 + 13 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 840 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 177 0 2 +EndChar + +StartChar: Aringacute +Encoding: 506 506 444 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 106 + 10 + 3 + 19 + 7 + 23 + 19 + 24 + 6 + 5 + 5 + 8 + 8 + 28 + 0 + 34 + 13 + 13 + 41 + 0 + 45 + 4 + 9 + 5 + 4 + 4 + 9 + 48 + 47 + 48 + 48 + 144 + 48 + 2 + 16 + 48 + 64 + 48 + 112 + 48 + 160 + 48 + 208 + 48 + 5 + 15 + 48 + 1 + 11 + 3 + 41 + 41 + 16 + 16 + 31 + 141 + 89 + 112 + 16 + 128 + 16 + 2 + 16 + 16 + 38 + 127 + 43 + 159 + 43 + 175 + 43 + 191 + 43 + 4 + 43 + 64 + 9 + 12 + 72 + 96 + 43 + 1 + 43 + 6 + 7 + 24 + 31 + 23 + 1 + 23 + 23 + 8 + 19 + 10 + 3 + 63 + 38 + 1 + 0 + 38 + 128 + 38 + 2 + 38 + 5 + 5 + 8 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +DELTAP1 +SHP[rp1] +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +DELTAP1 +CALL +DELTAP1 +SRP2 +IP +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +926 1392 m 0,0,1 + 926 1337 926 1337 896.5 1288.5 c 128,-1,2 + 867 1240 867 1240 821 1212 c 1,3,-1 + 1362 0 l 1,4,-1 + 1167 0 l 1,5,-1 + 1006 371 l 1,6,-1 + 364 371 l 1,7,-1 + 202 0 l 1,8,-1 + 4 0 l 1,9,-1 + 552 1209 l 1,10,11 + 503 1237 503 1237 472.5 1286.5 c 128,-1,12 + 442 1336 442 1336 442 1392 c 0,13,14 + 442 1482 442 1482 513 1545.5 c 128,-1,15 + 584 1609 584 1609 684 1609 c 256,16,17 + 784 1609 784 1609 855 1545 c 128,-1,18 + 926 1481 926 1481 926 1392 c 0,0,1 +685 1138 m 1,19,-1 + 676 1114 l 2,20,21 + 660 1065 660 1065 633.5 998.5 c 128,-1,22 + 607 932 607 932 422 505 c 1,23,-1 + 949 505 l 1,24,-1 + 768 923 l 2,25,26 + 741 983 741 983 712 1063 c 2,27,-1 + 685 1138 l 1,19,-1 +818 1392 m 0,28,29 + 818 1442 818 1442 779 1477.5 c 128,-1,30 + 740 1513 740 1513 684 1513 c 0,31,32 + 627 1513 627 1513 588 1477.5 c 128,-1,33 + 549 1442 549 1442 549 1392 c 0,34,35 + 549 1345 549 1345 585 1308 c 128,-1,36 + 621 1271 621 1271 675 1268 c 2,37,-1 + 684 1268 l 2,38,39 + 742 1268 742 1268 780 1305.5 c 128,-1,40 + 818 1343 818 1343 818 1392 c 0,28,29 +571 1657 m 1,41,-1 + 571 1673 l 1,42,-1 + 788 1854 l 1,43,-1 + 995 1854 l 1,44,-1 + 995 1831 l 1,45,-1 + 685 1657 l 1,46,-1 + 571 1657 l 1,41,-1 +EndSplineSet +EndChar + +StartChar: aringacute +Encoding: 507 507 445 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 4 + 31 + 78 + 63 + 78 + 79 + 78 + 3 + 191 + 78 + 1 + 0 + 78 + 112 + 78 + 128 + 78 + 240 + 78 + 4 + 78 + 3 + 2 + 70 + 70 + 16 + 38 + 4 + 73 + 26 + 73 + 76 + 3 + 26 + 37 + 3 + 2 + 55 +PUSHW_1 + -44 +PUSHB_5 + 55 + 49 + 3 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 668 730 N 1 0 0 1 276 -171 2 +Refer: 118 180 N 1 0 0 1 355 346 2 +EndChar + +StartChar: AEacute +Encoding: 508 508 446 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 21 + 5 + 38 + 2 + 21 +PUSHW_1 + 288 +PUSHB_5 + 21 + 24 + 4 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 136 198 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 996 0 2 +EndChar + +StartChar: aeacute +Encoding: 509 509 447 +Width: 1821 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 3 + 60 + 17 + 38 + 3 + 60 + 73 + 60 + 63 + 18 + 38 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 168 230 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 687 0 2 +EndChar + +StartChar: Oslashacute +Encoding: 510 510 448 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 3 + 37 + 5 + 38 + 3 + 37 + 73 + 37 + 40 + 8 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 154 216 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 587 0 2 +EndChar + +StartChar: oslashacute +Encoding: 511 511 449 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 3 + 35 + 17 + 38 + 3 + 35 + 94 + 35 + 38 + 7 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 186 248 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 434 0 2 +EndChar + +StartChar: uni0200 +Encoding: 512 512 450 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 28 + 28 + 5 + 38 + 3 + 2 + 25 +PUSHW_1 + -72 +PUSHB_5 + 25 + 22 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 610 362 2 +EndChar + +StartChar: uni0201 +Encoding: 513 513 451 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 60 + 60 + 17 + 38 + 3 + 2 + 57 +PUSHW_1 + -132 +PUSHB_5 + 57 + 54 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 480 0 2 +EndChar + +StartChar: uni0202 +Encoding: 514 514 452 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 28 + 5 + 38 + 2 + 28 + 4 + 28 + 20 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 687 362 2 +EndChar + +StartChar: uni0203 +Encoding: 515 515 453 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 60 + 17 + 38 + 2 + 60 +PUSHW_1 + -39 +PUSHB_5 + 60 + 52 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 574 0 2 +EndChar + +StartChar: uni0204 +Encoding: 516 516 454 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 23 + 23 + 5 + 38 + 2 + 1 + 20 +PUSHW_1 + -94 +PUSHB_5 + 20 + 17 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 628 362 2 +EndChar + +StartChar: uni0205 +Encoding: 517 517 455 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 37 + 37 + 17 + 38 + 3 + 2 + 34 +PUSHW_1 + -67 +PUSHB_5 + 34 + 31 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 500 0 2 +EndChar + +StartChar: uni0206 +Encoding: 518 518 456 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 23 + 5 + 38 + 1 + 23 +PUSHW_1 + -3 +PUSHB_5 + 23 + 15 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 720 362 2 +EndChar + +StartChar: uni0207 +Encoding: 519 519 457 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 37 + 17 + 38 + 2 + 37 + 2 + 37 + 29 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 570 0 2 +EndChar + +StartChar: uni0208 +Encoding: 520 520 458 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 15 + 15 + 5 + 38 + 2 + 1 + 12 +PUSHW_1 + -50 +PUSHB_5 + 12 + 9 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 234 362 2 +EndChar + +StartChar: uni0209 +Encoding: 521 521 459 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 15 + 15 + 17 + 38 + 2 + 1 + 12 +PUSHW_1 + -67 +PUSHB_5 + 12 + 9 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 216 0 2 +EndChar + +StartChar: uni020A +Encoding: 522 522 460 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 15 + 5 + 38 + 1 + 15 + 15 + 15 + 7 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 300 362 2 +EndChar + +StartChar: uni020B +Encoding: 523 523 461 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 15 + 17 + 38 + 1 + 15 + 2 + 15 + 7 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 286 0 2 +EndChar + +StartChar: uni020C +Encoding: 524 524 462 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 38 + 38 + 5 + 38 + 3 + 2 + 35 +PUSHW_1 + -85 +PUSHB_5 + 35 + 32 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 710 362 2 +EndChar + +StartChar: uni020D +Encoding: 525 525 463 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 34 + 34 + 17 + 38 + 3 + 2 + 31 +PUSHW_1 + -69 +PUSHB_5 + 31 + 28 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 500 0 2 +EndChar + +StartChar: uni020E +Encoding: 526 526 464 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 38 + 5 + 38 + 2 + 38 + 4 + 38 + 30 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 800 362 2 +EndChar + +StartChar: uni020F +Encoding: 527 527 465 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 34 + 17 + 38 + 2 + 34 + 10 + 34 + 26 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 580 0 2 +EndChar + +StartChar: uni0210 +Encoding: 528 528 466 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 34 + 34 + 5 + 38 + 3 + 2 + 31 +PUSHW_1 + -155 +PUSHB_5 + 31 + 28 + 5 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 620 362 2 +EndChar + +StartChar: uni0211 +Encoding: 529 529 467 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 31 + 31 + 17 + 38 + 2 + 1 + 28 +PUSHW_1 + -71 +PUSHB_5 + 28 + 25 + 3 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 85 114 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 320 0 2 +EndChar + +StartChar: uni0212 +Encoding: 530 530 468 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 34 + 5 + 38 + 2 + 34 +PUSHW_1 + -66 +PUSHB_5 + 34 + 26 + 5 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 710 362 2 +EndChar + +StartChar: uni0213 +Encoding: 531 531 469 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 31 + 17 + 38 + 1 + 31 + 8 + 31 + 23 + 3 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 85 114 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 400 0 2 +EndChar + +StartChar: uni0214 +Encoding: 532 532 470 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 31 + 31 + 5 + 38 + 2 + 1 + 28 +PUSHW_1 + -49 +PUSHB_5 + 28 + 25 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 690 362 2 +EndChar + +StartChar: uni0215 +Encoding: 533 533 471 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 38 + 38 + 17 + 38 + 2 + 1 + 35 +PUSHW_1 + -77 +PUSHB_5 + 35 + 32 + 26 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 490 0 2 +EndChar + +StartChar: uni0216 +Encoding: 534 534 472 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 31 + 5 + 38 + 1 + 31 + 15 + 31 + 23 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 755 362 2 +EndChar + +StartChar: uni0217 +Encoding: 535 535 473 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 38 + 17 + 38 + 1 + 38 +PUSHW_1 + -6 +PUSHB_5 + 38 + 30 + 26 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 723 785 N 1 0 0 1 562 0 2 +EndChar + +StartChar: Scommaaccent +Encoding: 536 536 474 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 50 + 25 + 50 + 56 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 480 0 2 +EndChar + +StartChar: scommaaccent +Encoding: 537 537 475 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 47 + 4 + 47 + 53 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 280 0 2 +EndChar + +StartChar: uni021A +Encoding: 538 538 476 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 12 + 0 + 12 + 18 + 5 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 55 84 N 1 0 0 1 0 0 3 +Refer: 2298 -1 N 1 0 0 1 397 0 2 +EndChar + +StartChar: uni021B +Encoding: 539 539 477 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 138 + 15 + 33 + 1 + 88 + 2 + 15 + 33 + 31 + 33 + 47 + 33 + 3 + 125 + 15 + 33 + 31 + 33 + 47 + 33 + 63 + 33 + 79 + 33 + 111 + 33 + 127 + 33 + 191 + 33 + 207 + 33 + 223 + 33 + 239 + 33 + 255 + 33 + 12 + 15 + 33 + 31 + 33 + 47 + 33 + 95 + 33 + 111 + 33 + 127 + 33 + 143 + 33 + 159 + 33 + 191 + 33 + 207 + 33 + 223 + 33 + 11 + 15 + 33 + 31 + 33 + 47 + 33 + 63 + 33 + 111 + 33 + 127 + 33 + 175 + 33 + 207 + 33 + 223 + 33 + 239 + 33 + 10 + 77 + 31 + 33 + 207 + 33 + 2 + 111 + 33 + 1 + 15 + 33 + 191 + 33 + 2 + 8 + 0 + 33 + 48 + 33 + 176 + 33 + 224 + 33 + 4 + 60 + 64 + 33 + 128 + 33 + 144 + 33 + 3 + 32 + 33 + 48 + 33 + 208 + 33 + 224 + 33 + 4 + 0 + 33 + 64 + 33 + 128 + 33 + 3 + 1 + 25 + 69 + 25 + 31 + 7 + 20 + 37 +CALL +SRP1 +SHC[rp1] +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +SDS +SDB +DELTAP1 +EndTTInstrs +AnchorPoint: "Anchor-25" 308 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 87 116 N 1 0 0 1 0 0 2 +Refer: 2298 -1 N 1 0 0 1 134 0 2 +EndChar + +StartChar: uni021C +Encoding: 540 540 478 +Width: 1116 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 9 + 32 + 11 + 15 + 29 + 29 + 6 + 0 + 11 + 22 + 2 + 0 + 2 + 36 + 35 + 32 + 11 + 9 + 9 + 2 + 25 + 21 + 21 + 25 + 25 + 18 + 95 + 89 + 25 + 4 + 3 + 3 + 2 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 460 -250 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1116 1540 basechar 0 +AnchorPoint: "Anchor-20" 1116 -380 basechar 0 +AnchorPoint: "Anchor-16" 546 1540 basechar 0 +AnchorPoint: "Anchor-15" 860 1540 basechar 0 +AnchorPoint: "Anchor-14" 537 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1017 360 m 0,0,1 + 1017 -170 1017 -170 136 -427 c 1,2,-1 + 136 -261 l 1,3,4 + 479 -164 479 -164 654 -11 c 128,-1,5 + 829 142 829 142 829 339 c 0,6,7 + 829 412 829 412 808 478 c 128,-1,8 + 787 544 787 544 750 584 c 1,9,10 + 574 449 574 449 135 304 c 1,11,-1 + 135 477 l 1,12,13 + 508 591 508 591 668.5 711 c 128,-1,14 + 829 831 829 831 829 998 c 0,15,16 + 829 1132 829 1132 758.5 1200.5 c 128,-1,17 + 688 1269 688 1269 551 1269 c 0,18,19 + 436 1269 436 1269 357.5 1227 c 128,-1,20 + 279 1185 279 1185 217 1077 c 1,21,-1 + 64 1156 l 1,22,23 + 149 1300 149 1300 270 1365.5 c 128,-1,24 + 391 1431 391 1431 559 1431 c 0,25,26 + 694 1431 694 1431 797.5 1380 c 128,-1,27 + 901 1329 901 1329 957.5 1236 c 128,-1,28 + 1014 1143 1014 1143 1014 1027 c 0,29,30 + 1014 938 1014 938 986 869 c 128,-1,31 + 958 800 958 800 873 708 c 1,32,33 + 937 648 937 648 977 558.5 c 128,-1,34 + 1017 469 1017 469 1017 360 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni021D +Encoding: 541 541 479 +Width: 894 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 34 + 12 + 14 + 18 + 32 + 32 + 9 + 0 + 14 + 25 + 3 + 0 + 3 + 38 + 37 + 34 + 14 + 12 + 12 + 3 + 29 + 24 + 24 + 29 + 29 + 21 + 80 + 89 + 29 + 16 + 4 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 460 -250 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 894 1540 basechar 0 +AnchorPoint: "Anchor-20" 894 -380 basechar 0 +AnchorPoint: "Anchor-16" 436 1200 basechar 0 +AnchorPoint: "Anchor-15" 678 1260 basechar 0 +AnchorPoint: "Anchor-14" 460 -440 basechar 0 +LayerCount: 2 +Fore +SplineSet +814 170 m 0,0,1 + 814 -37 814 -37 638.5 -186 c 128,-1,2 + 463 -335 463 -335 89 -426 c 1,3,-1 + 89 -271 l 1,4,5 + 268 -223 268 -223 363.5 -179 c 128,-1,6 + 459 -135 459 -135 515 -87.5 c 128,-1,7 + 571 -40 571 -40 603 19 c 128,-1,8 + 635 78 635 78 635 149 c 256,9,10 + 635 220 635 220 614.5 278.5 c 128,-1,11 + 594 337 594 337 561 366 c 1,12,13 + 381 262 381 262 89 197 c 1,14,-1 + 89 345 l 1,15,16 + 366 405 366 405 500.5 509.5 c 128,-1,17 + 635 614 635 614 635 759 c 0,18,19 + 635 868 635 868 587 918.5 c 128,-1,20 + 539 969 539 969 438 969 c 256,21,22 + 337 969 337 969 286 926 c 128,-1,23 + 235 883 235 883 207 792 c 1,24,-1 + 33 825 l 1,25,26 + 60 923 60 923 112.5 984.5 c 128,-1,27 + 165 1046 165 1046 240 1074 c 128,-1,28 + 315 1102 315 1102 436 1102 c 0,29,30 + 627 1102 627 1102 720.5 1018 c 128,-1,31 + 814 934 814 934 814 753 c 0,32,33 + 814 595 814 595 700 468 c 1,34,35 + 750 427 750 427 782 347.5 c 128,-1,36 + 814 268 814 268 814 170 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni021E +Encoding: 542 542 480 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 13 + 13 + 5 + 38 + 1 + 15 +PUSHW_1 + -4 +PUSHB_5 + 15 + 21 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1150 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 405 0 2 +EndChar + +StartChar: uni021F +Encoding: 543 543 481 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 26 + 26 + 5 + 38 + 1 + 28 + 27 + 28 + 34 + 19 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 75 104 N 1 0 0 1 0 0 3 +Refer: 2305 -1 N 1 0 0 1 270 20 2 +EndChar + +StartChar: uni0220 +Encoding: 544 544 482 +Width: 1446 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 0 + 20 + 13 + 9 + 9 + 10 + 20 + 10 + 22 + 21 + 13 + 16 + 10 + 16 + 5 + 95 + 89 + 16 + 4 + 11 + 3 + 10 + 18 + 0 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1446 1540 basechar 0 +AnchorPoint: "Anchor-20" 1446 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1093 -425 m 1,0,-1 + 1093 939 l 2,1,2 + 1093 1064 1093 1064 1061.5 1138 c 128,-1,3 + 1030 1212 1030 1212 964 1246 c 128,-1,4 + 898 1280 898 1280 777 1280 c 0,5,6 + 666 1280 666 1280 550.5 1231 c 128,-1,7 + 435 1182 435 1182 353 1100 c 1,8,-1 + 353 0 l 1,9,-1 + 164 0 l 1,10,-1 + 164 1409 l 1,11,-1 + 351 1409 l 1,12,-1 + 351 1258 l 1,13,14 + 425 1337 425 1337 555.5 1383 c 128,-1,15 + 686 1429 686 1429 836 1429 c 0,16,17 + 1069 1429 1069 1429 1176 1311 c 128,-1,18 + 1283 1193 1283 1193 1283 939 c 2,19,-1 + 1283 -425 l 1,20,-1 + 1093 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0221 +Encoding: 545 545 483 +Width: 1396 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 46 + 22 + 52 + 16 + 16 + 40 + 28 + 13 + 32 + 34 + 6 + 6 + 30 + 32 + 22 + 4 + 59 + 58 + 28 + 32 + 17 + 3 + 19 + 26 + 26 + 55 + 80 + 89 + 29 + 26 + 15 + 0 + 0 + 11 + 3 + 8 + 8 + 43 + 80 + 89 + 8 + 16 + 19 + 49 + 80 + 89 + 19 + 19 + 3 + 3 + 37 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1000 -350 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1396 1540 basechar 0 +AnchorPoint: "Anchor-20" 1396 -380 basechar 0 +AnchorPoint: "Anchor-16" 557 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 570 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +821 174 m 1,0,1 + 771 70 771 70 688.5 25 c 128,-1,2 + 606 -20 606 -20 484 -20 c 0,3,4 + 279 -20 279 -20 182.5 118 c 128,-1,5 + 86 256 86 256 86 536 c 0,6,7 + 86 1102 86 1102 484 1102 c 0,8,9 + 607 1102 607 1102 689 1057 c 128,-1,10 + 771 1012 771 1012 821 914 c 1,11,-1 + 823 914 l 1,12,-1 + 821 1035 l 1,13,-1 + 821 1484 l 1,14,-1 + 1001 1484 l 1,15,-1 + 1001 223 l 1,16,-1 + 1003 64 l 1,17,18 + 1068 87 1068 87 1128 87 c 0,19,20 + 1256 87 1256 87 1326 19.5 c 128,-1,21 + 1396 -48 1396 -48 1396 -167 c 0,22,23 + 1396 -250 1396 -250 1360 -306.5 c 128,-1,24 + 1324 -363 1324 -363 1262.5 -394 c 128,-1,25 + 1201 -425 1201 -425 1127 -425 c 0,26,27 + 942 -425 942 -425 863 -236 c 1,28,-1 + 706 -426 l 1,29,-1 + 596 -309 l 1,30,31 + 717 -140 717 -140 825 -44 c 1,32,-1 + 825 174 l 1,33,-1 + 821 174 l 1,0,1 +275 542 m 0,34,35 + 275 315 275 315 335 217 c 128,-1,36 + 395 119 395 119 530 119 c 0,37,38 + 683 119 683 119 752 225 c 128,-1,39 + 821 331 821 331 821 554 c 0,40,41 + 821 769 821 769 752 869 c 128,-1,42 + 683 969 683 969 532 969 c 0,43,44 + 396 969 396 969 335.5 868.5 c 128,-1,45 + 275 768 275 768 275 542 c 0,34,35 +1241 -171 m 0,46,47 + 1241 -123 1241 -123 1212.5 -90.5 c 128,-1,48 + 1184 -58 1184 -58 1126 -58 c 0,49,50 + 1088 -58 1088 -58 1057 -72.5 c 128,-1,51 + 1026 -87 1026 -87 994 -107 c 1,52,53 + 994 -187 994 -187 1029.5 -234 c 128,-1,54 + 1065 -281 1065 -281 1126 -281 c 0,55,56 + 1178 -281 1178 -281 1209.5 -252.5 c 128,-1,57 + 1241 -224 1241 -224 1241 -171 c 0,46,47 +EndSplineSet +EndChar + +StartChar: uni0222 +Encoding: 546 546 484 +Width: 1238 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 6 + 0 + 27 + 19 + 4 + 3 + 30 + 23 + 23 + 46 + 16 + 36 + 3 + 3 + 40 + 10 + 16 + 10 + 51 + 52 + 6 + 19 + 33 + 43 + 33 + 43 + 96 + 89 + 26 + 27 + 96 + 89 + 33 + 26 + 33 + 26 + 13 + 0 + 13 + 49 + 96 + 89 + 13 + 19 + 0 + 39 + 96 + 89 + 0 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 737 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1238 1540 basechar 0 +AnchorPoint: "Anchor-20" 1238 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +638 1430 m 1,0,1 + 857 1425 857 1425 981 1326.5 c 128,-1,2 + 1105 1228 1105 1228 1105 1066 c 0,3,4 + 1105 942 1105 942 1034 853.5 c 128,-1,5 + 963 765 963 765 837 742 c 1,6,-1 + 837 738 l 1,7,8 + 982 716 982 716 1062.5 624 c 128,-1,9 + 1143 532 1143 532 1143 391 c 0,10,11 + 1143 198 1143 198 1004 89 c 128,-1,12 + 865 -20 865 -20 619 -20 c 0,13,14 + 366 -20 366 -20 229.5 88 c 128,-1,15 + 93 196 93 196 93 389 c 0,16,17 + 93 528 93 528 178 622 c 128,-1,18 + 263 716 263 716 395 736 c 1,19,-1 + 395 740 l 1,20,21 + 258 777 258 777 193.5 839.5 c 128,-1,22 + 129 902 129 902 129 999 c 0,23,24 + 129 1137 129 1137 243.5 1212.5 c 128,-1,25 + 358 1288 358 1288 578 1292 c 1,26,-1 + 578 1162 l 1,27,28 + 441 1158 441 1158 375.5 1116.5 c 128,-1,29 + 310 1075 310 1075 310 991 c 0,30,31 + 310 902 310 902 392.5 855 c 128,-1,32 + 475 808 475 808 617 808 c 0,33,34 + 763 808 763 808 842 871.5 c 128,-1,35 + 921 935 921 935 921 1056 c 0,36,37 + 921 1164 921 1164 848.5 1227.5 c 128,-1,38 + 776 1291 776 1291 638 1296 c 1,39,-1 + 638 1430 l 1,0,1 +959 408 m 0,40,41 + 959 532 959 532 867 602 c 128,-1,42 + 775 672 775 672 614 672 c 0,43,44 + 458 672 458 672 367 596 c 128,-1,45 + 276 520 276 520 276 390 c 0,46,47 + 276 261 276 261 365 190.5 c 128,-1,48 + 454 120 454 120 621 120 c 0,49,50 + 959 120 959 120 959 408 c 0,40,41 +EndSplineSet +EndChar + +StartChar: uni0223 +Encoding: 547 547 485 +Width: 1158 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 26 + 34 + 6 + 13 + 4 + 30 + 3 + 10 + 10 + 49 + 17 + 37 + 30 + 30 + 43 + 23 + 17 + 23 + 54 + 53 + 26 + 14 + 0 + 40 + 0 + 40 + 81 + 89 + 0 + 0 + 20 + 34 + 7 + 33 + 0 + 20 + 46 + 80 + 89 + 20 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1158 1540 basechar 0 +AnchorPoint: "Anchor-20" 1158 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +581 874 m 256,0,1 + 706 874 706 874 775 942 c 128,-1,2 + 844 1010 844 1010 844 1135 c 0,3,4 + 844 1216 844 1216 803.5 1279 c 128,-1,5 + 763 1342 763 1342 690 1377 c 1,6,-1 + 763 1490 l 1,7,8 + 902 1422 902 1422 963.5 1335 c 128,-1,9 + 1025 1248 1025 1248 1025 1136 c 0,10,11 + 1025 1009 1025 1009 961.5 922 c 128,-1,12 + 898 835 898 835 786 803 c 1,13,-1 + 786 799 l 1,14,15 + 916 768 916 768 992 667.5 c 128,-1,16 + 1068 567 1068 567 1068 424 c 0,17,18 + 1068 211 1068 211 939.5 95.5 c 128,-1,19 + 811 -20 811 -20 579 -20 c 0,20,21 + 349 -20 349 -20 222 96 c 128,-1,22 + 95 212 95 212 95 424 c 0,23,24 + 95 568 95 568 171 667.5 c 128,-1,25 + 247 767 247 767 377 799 c 1,26,-1 + 377 803 l 1,27,28 + 266 834 266 834 202 921 c 128,-1,29 + 138 1008 138 1008 138 1136 c 0,30,31 + 138 1248 138 1248 199.5 1335 c 128,-1,32 + 261 1422 261 1422 400 1490 c 1,33,-1 + 473 1377 l 1,34,35 + 400 1342 400 1342 359.5 1279 c 128,-1,36 + 319 1216 319 1216 319 1135 c 0,37,38 + 319 1009 319 1009 387.5 941.5 c 128,-1,39 + 456 874 456 874 581 874 c 256,0,1 +581 743 m 0,40,41 + 442 743 442 743 359 659.5 c 128,-1,42 + 276 576 276 576 276 439 c 0,43,44 + 276 282 276 282 353.5 201.5 c 128,-1,45 + 431 121 431 121 582 121 c 256,46,47 + 733 121 733 121 810 202 c 128,-1,48 + 887 283 887 283 887 439 c 0,49,50 + 887 526 887 526 850.5 595.5 c 128,-1,51 + 814 665 814 665 744.5 704 c 128,-1,52 + 675 743 675 743 581 743 c 0,40,41 +EndSplineSet +EndChar + +StartChar: uni0224 +Encoding: 548 548 486 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 6 + 0 + 1 + 5 + 15 + 10 + 10 + 5 + 2 + 0 + 4 + 20 + 21 + 0 + 6 + 19 + 6 + 95 + 89 + 12 + 64 + 19 + 18 + 5 + 2 + 3 + 2 + 95 + 89 + 3 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,grey] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 814 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +65 143 m 1,0,-1 + 923 1253 l 1,1,-1 + 138 1253 l 1,2,-1 + 138 1409 l 1,3,-1 + 1140 1409 l 1,4,-1 + 1140 1270 l 1,5,-1 + 282 156 l 1,6,-1 + 918 156 l 2,7,8 + 1050 156 1050 156 1124.5 90.5 c 128,-1,9 + 1199 25 1199 25 1199 -101 c 0,10,11 + 1199 -178 1199 -178 1182 -255 c 1,12,-1 + 1027 -221 l 1,13,14 + 1045 -165 1045 -165 1045 -133 c 0,15,16 + 1045 -62 1045 -62 1009.5 -31 c 128,-1,17 + 974 0 974 0 897 0 c 2,18,-1 + 65 0 l 1,19,-1 + 65 143 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0225 +Encoding: 549 549 487 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 15 + 10 + 1 + 5 + 6 + 0 + 0 + 2 + 5 + 10 + 4 + 21 + 20 + 0 + 6 + 19 + 6 + 80 + 89 + 12 + 19 + 21 + 5 + 2 + 3 + 2 + 80 + 89 + 3 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +MDRP[rnd,grey] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 594 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 480 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +49 137 m 1,0,-1 + 710 943 l 1,1,-1 + 89 943 l 1,2,-1 + 89 1082 l 1,3,-1 + 913 1082 l 1,4,-1 + 913 945 l 1,5,-1 + 251 139 l 1,6,-1 + 698 139 l 2,7,8 + 845 139 845 139 912 83 c 128,-1,9 + 979 27 979 27 979 -88 c 0,10,11 + 979 -159 979 -159 960 -245 c 1,12,-1 + 805 -211 l 1,13,14 + 825 -162 825 -162 825 -123 c 0,15,16 + 825 -60 825 -60 789.5 -30 c 128,-1,17 + 754 0 754 0 677 0 c 2,18,-1 + 49 0 l 1,19,-1 + 49 137 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0226 +Encoding: 550 550 488 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 20 + 20 + 5 + 38 + 2 + 18 + 6 + 18 + 20 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 443 293 2 +EndChar + +StartChar: uni0227 +Encoding: 551 551 489 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 52 + 52 + 17 + 38 + 2 + 50 +PUSHW_1 + -37 +PUSHB_5 + 50 + 52 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 330 0 2 +EndChar + +StartChar: uni0228 +Encoding: 552 552 490 +Width: 1366 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 737 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 2 +Refer: 122 184 N 1 0 0 1 461 0 2 +EndChar + +StartChar: uni0229 +Encoding: 553 553 491 +Width: 1139 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 561 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 2 +Refer: 122 184 N 1 0 0 1 306 0 2 +EndChar + +StartChar: uni022A +Encoding: 554 554 492 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 4 + 3 + 2 + 34 + 34 + 5 + 38 + 4 + 3 + 2 + 32 + 4 + 32 + 30 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2356 -1 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni022B +Encoding: 555 555 493 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 4 + 15 + 33 + 31 + 33 + 63 + 33 + 159 + 33 + 4 + 16 + 33 + 48 + 33 + 64 + 33 + 144 + 33 + 4 + 33 + 3 + 2 + 27 + 27 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP2 +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 242 0 2 +Refer: 651 713 N 1 0 0 1 242 280 2 +EndChar + +StartChar: uni022C +Encoding: 556 556 494 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 2 + 39 + 5 + 38 + 3 + 2 + 39 + 0 + 39 + 51 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2361 -1 N 1 0 0 1 796 0 2 +EndChar + +StartChar: uni022D +Encoding: 557 557 495 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 3 + 47 + 50 + 1 + 15 + 50 + 63 + 50 + 79 + 50 + 95 + 50 + 111 + 50 + 5 + 50 + 2 + 23 + 23 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 242 0 2 +Refer: 651 713 N 1 0 0 1 242 330 2 +EndChar + +StartChar: uni022E +Encoding: 558 558 496 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 30 + 30 + 5 + 38 + 2 + 28 + 16 + 28 + 30 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 566 293 2 +EndChar + +StartChar: uni022F +Encoding: 559 559 497 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 26 + 26 + 17 + 38 + 2 + 24 + 1 + 24 + 26 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 325 0 2 +EndChar + +StartChar: uni0230 +Encoding: 560 560 498 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 30 + 30 + 5 + 38 + 3 + 2 + 33 + 0 + 33 + 34 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2360 -1 N 1 0 0 1 796 0 2 +EndChar + +StartChar: uni0231 +Encoding: 561 561 499 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 3 + 127 + 30 + 1 + 63 + 30 + 159 + 30 + 2 + 16 + 30 + 48 + 30 + 64 + 30 + 3 + 30 + 2 + 26 + 26 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP2 +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 331 -80 2 +Refer: 651 713 N 1 0 0 1 242 280 2 +EndChar + +StartChar: uni0232 +Encoding: 562 562 500 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 10 + 10 + 5 + 38 + 1 + 11 + 0 + 11 + 12 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 357 329 2 +EndChar + +StartChar: uni0233 +Encoding: 563 563 501 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 24 + 24 + 17 + 38 + 1 + 25 + 15 + 25 + 26 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 460 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 202 0 2 +EndChar + +StartChar: uni0234 +Encoding: 564 564 502 +Width: 715 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 1 + 24 + 24 + 16 + 12 + 12 + 14 + 18 + 6 + 6 + 31 + 14 + 30 + 3 + 21 + 80 + 89 + 12 + 16 + 3 + 3 + 10 + 17 + 0 + 10 + 27 + 80 + 89 + 13 + 10 + 27 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,white] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +IP +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 264 -350 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 715 1540 basechar 0 +AnchorPoint: "Anchor-20" 715 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 317 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +318 1484 m 1,0,-1 + 318 63 l 1,1,2 + 386 87 386 87 445 87 c 0,3,4 + 573 87 573 87 643 19.5 c 128,-1,5 + 713 -48 713 -48 713 -167 c 0,6,7 + 713 -250 713 -250 677 -306.5 c 128,-1,8 + 641 -363 641 -363 579.5 -394 c 128,-1,9 + 518 -425 518 -425 444 -425 c 0,10,11 + 259 -425 259 -425 180 -236 c 1,12,-1 + 23 -426 l 1,13,-1 + -87 -309 l 1,14,15 + 40 -130 40 -130 138 -44 c 1,16,-1 + 138 1484 l 1,17,-1 + 318 1484 l 1,0,-1 +558 -171 m 0,18,19 + 558 -123 558 -123 529.5 -90.5 c 128,-1,20 + 501 -58 501 -58 443 -58 c 0,21,22 + 405 -58 405 -58 374 -72.5 c 128,-1,23 + 343 -87 343 -87 311 -107 c 1,24,25 + 311 -187 311 -187 346.5 -234 c 128,-1,26 + 382 -281 382 -281 443 -281 c 0,27,28 + 495 -281 495 -281 526.5 -252.5 c 128,-1,29 + 558 -224 558 -224 558 -171 c 0,18,19 +EndSplineSet +EndChar + +StartChar: uni0235 +Encoding: 565 565 503 +Width: 1402 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 57 + 13 + 8 + 8 + 9 + 47 + 25 + 25 + 36 + 40 + 41 + 30 + 30 + 40 + 38 + 9 + 4 + 53 + 54 + 36 + 40 + 25 + 3 + 27 + 34 + 34 + 50 + 80 + 89 + 15 + 34 + 31 + 34 + 159 + 34 + 3 + 13 + 3 + 34 + 17 + 21 + 8 + 21 + 4 + 80 + 89 + 21 + 16 + 12 + 15 + 27 + 44 + 80 + 89 + 27 + 27 + 8 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 957 -341 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1402 1540 basechar 0 +AnchorPoint: "Anchor-20" 1402 -380 basechar 0 +AnchorPoint: "Anchor-16" 636 1840 basechar 0 +AnchorPoint: "Anchor-15" 1107 1540 basechar 0 +AnchorPoint: "Anchor-14" 581 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +825 686 m 2,0,1 + 825 793 825 793 804 852 c 128,-1,2 + 783 911 783 911 737 937 c 128,-1,3 + 691 963 691 963 602 963 c 0,4,5 + 472 963 472 963 397 874 c 128,-1,6 + 322 785 322 785 322 627 c 2,7,-1 + 322 0 l 1,8,-1 + 142 0 l 1,9,-1 + 142 851 l 2,10,11 + 142 1040 142 1040 136 1082 c 1,12,-1 + 306 1082 l 1,13,14 + 307 1077 307 1077 308 1055 c 128,-1,15 + 309 1033 309 1033 310.5 1004.5 c 128,-1,16 + 312 976 312 976 314 897 c 1,17,-1 + 317 897 l 1,18,19 + 379 1009 379 1009 460.5 1055.5 c 128,-1,20 + 542 1102 542 1102 663 1102 c 0,21,22 + 841 1102 841 1102 923.5 1013.5 c 128,-1,23 + 1006 925 1006 925 1006 721 c 2,24,-1 + 1006 63 l 1,25,26 + 1074 87 1074 87 1133 87 c 0,27,28 + 1258 87 1258 87 1327 20.5 c 128,-1,29 + 1396 -46 1396 -46 1396 -167 c 0,30,31 + 1396 -250 1396 -250 1360 -306.5 c 128,-1,32 + 1324 -363 1324 -363 1262.5 -394 c 128,-1,33 + 1201 -425 1201 -425 1127 -425 c 0,34,35 + 942 -425 942 -425 863 -236 c 1,36,-1 + 706 -426 l 1,37,-1 + 596 -309 l 1,38,39 + 717 -140 717 -140 825 -44 c 1,40,-1 + 825 686 l 2,0,1 +1241 -171 m 0,41,42 + 1241 -123 1241 -123 1212.5 -90.5 c 128,-1,43 + 1184 -58 1184 -58 1126 -58 c 0,44,45 + 1088 -58 1088 -58 1057 -72.5 c 128,-1,46 + 1026 -87 1026 -87 994 -107 c 1,47,48 + 994 -187 994 -187 1029.5 -234 c 128,-1,49 + 1065 -281 1065 -281 1126 -281 c 0,50,51 + 1178 -281 1178 -281 1209.5 -252.5 c 128,-1,52 + 1241 -224 1241 -224 1241 -171 c 0,41,42 +EndSplineSet +EndChar + +StartChar: uni0236 +Encoding: 566 566 504 +Width: 752 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 49 + 26 + 14 + 32 + 5 + 9 + 9 + 22 + 20 + 2 + 24 + 1 + 24 + 6 + 14 + 4 + 39 + 38 + 20 + 29 + 11 + 29 + 80 + 89 + 24 + 11 + 11 + 6 + 18 + 18 + 35 + 80 + 89 + 21 + 18 + 22 + 6 + 7 + 81 + 89 + 4 + 64 + 6 + 15 + 1 + 0 + 81 + 89 + 1 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,white] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 317 50 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 752 1540 basechar 0 +AnchorPoint: "Anchor-20" 752 -380 basechar 0 +AnchorPoint: "Anchor-16" 282 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 405 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +31 951 m 1,0,-1 + 31 1082 l 1,1,-1 + 163 1082 l 1,2,-1 + 216 1324 l 1,3,-1 + 336 1324 l 1,4,-1 + 336 1082 l 1,5,-1 + 536 1082 l 1,6,-1 + 536 951 l 1,7,-1 + 336 951 l 1,8,-1 + 336 468 l 1,9,10 + 404 492 404 492 463 492 c 0,11,12 + 590 492 590 492 658.5 424.5 c 128,-1,13 + 727 357 727 357 727 238 c 0,14,15 + 727 155 727 155 691 98.5 c 128,-1,16 + 655 42 655 42 593.5 11 c 128,-1,17 + 532 -20 532 -20 458 -20 c 0,18,19 + 273 -20 273 -20 194 169 c 1,20,-1 + 37 -21 l 1,21,-1 + -73 96 l 1,22,23 + 48 265 48 265 156 361 c 1,24,-1 + 156 951 l 1,25,-1 + 31 951 l 1,0,-1 +572 234 m 0,26,27 + 572 282 572 282 543.5 314.5 c 128,-1,28 + 515 347 515 347 457 347 c 0,29,30 + 419 347 419 347 390 332.5 c 128,-1,31 + 361 318 361 318 329 298 c 1,32,33 + 329 214 329 214 363 169 c 128,-1,34 + 397 124 397 124 457 124 c 0,35,36 + 509 124 509 124 540.5 152.5 c 128,-1,37 + 572 181 572 181 572 234 c 0,26,27 +EndSplineSet +EndChar + +StartChar: j.dotless +Encoding: 567 567 505 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 10 + 0 + 0 + 14 + 5 + 13 + 11 + 15 + 3 + 7 + 80 + 89 + 3 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 100 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 140 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +317 -134 m 2,0,1 + 317 -287 317 -287 257 -356 c 128,-1,2 + 197 -425 197 -425 77 -425 c 0,3,4 + 0 -425 0 -425 -50 -416 c 1,5,-1 + -50 -277 l 1,6,-1 + 12 -283 l 1,7,8 + 81 -283 81 -283 109 -247 c 128,-1,9 + 137 -211 137 -211 137 -107 c 2,10,-1 + 137 1082 l 1,11,-1 + 317 1082 l 1,12,-1 + 317 -134 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0238 +Encoding: 568 568 506 +Width: 1816 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 54 + 46 + 25 + 52 + 18 + 16 + 31 + 31 + 40 + 13 + 12 + 32 + 34 + 6 + 6 + 32 + 25 + 3 + 59 + 58 + 32 + 21 + 27 + 55 + 80 + 89 + 27 + 22 + 22 + 49 + 80 + 89 + 22 + 16 + 14 + 0 + 0 + 29 + 18 + 11 + 4 + 8 + 3 + 8 + 43 + 80 + 89 + 8 + 16 + 3 + 37 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1330 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1816 1540 basechar 0 +AnchorPoint: "Anchor-20" 1816 -380 basechar 0 +AnchorPoint: "Anchor-16" 898 1540 basechar 0 +AnchorPoint: "Anchor-15" 1514 1540 basechar 0 +AnchorPoint: "Anchor-14" 900 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +818 174 m 1,0,1 + 768 70 768 70 685.5 25 c 128,-1,2 + 603 -20 603 -20 481 -20 c 0,3,4 + 276 -20 276 -20 179.5 118 c 128,-1,5 + 83 256 83 256 83 536 c 0,6,7 + 83 1102 83 1102 481 1102 c 0,8,9 + 604 1102 604 1102 686 1057 c 128,-1,10 + 768 1012 768 1012 818 914 c 1,11,-1 + 820 914 l 1,12,-1 + 818 1035 l 1,13,-1 + 818 1484 l 1,14,-1 + 998 1484 l 1,15,-1 + 998 1061 l 2,16,17 + 998 996 998 996 994 908 c 1,18,-1 + 998 908 l 1,19,20 + 1048 1012 1048 1012 1130.5 1057 c 128,-1,21 + 1213 1102 1213 1102 1335 1102 c 0,22,23 + 1540 1102 1540 1102 1636.5 964 c 128,-1,24 + 1733 826 1733 826 1733 546 c 0,25,26 + 1733 -20 1733 -20 1335 -20 c 0,27,28 + 1088 -20 1088 -20 988 175 c 1,29,-1 + 986 175 l 1,30,-1 + 986 0 l 1,31,-1 + 822 0 l 1,32,-1 + 822 174 l 1,33,-1 + 818 174 l 1,0,1 +272 542 m 0,34,35 + 272 315 272 315 332 217 c 128,-1,36 + 392 119 392 119 527 119 c 0,37,38 + 680 119 680 119 749 225 c 128,-1,39 + 818 331 818 331 818 554 c 0,40,41 + 818 769 818 769 749 869 c 128,-1,42 + 680 969 680 969 529 969 c 0,43,44 + 393 969 393 969 332.5 868.5 c 128,-1,45 + 272 768 272 768 272 542 c 0,34,35 +1544 540 m 0,46,47 + 1544 767 1544 767 1484 865 c 128,-1,48 + 1424 963 1424 963 1289 963 c 0,49,50 + 1137 963 1137 963 1067.5 859 c 128,-1,51 + 998 755 998 755 998 529 c 0,52,53 + 998 316 998 316 1066 214.5 c 128,-1,54 + 1134 113 1134 113 1287 113 c 0,55,56 + 1423 113 1423 113 1483.5 213.5 c 128,-1,57 + 1544 314 1544 314 1544 540 c 0,46,47 +EndSplineSet +EndChar + +StartChar: uni0239 +Encoding: 569 569 507 +Width: 1816 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 53 + 53 + 18 + 41 + 27 + 7 + 8 + 8 + 47 + 24 + 10 + 9 + 34 + 0 + 0 + 9 + 18 + 3 + 59 + 60 + 31 + 37 + 80 + 89 + 31 + 16 + 24 + 27 + 4 + 12 + 4 + 15 + 25 + 15 + 20 + 50 + 80 + 89 + 20 + 16 + 15 + 56 + 80 + 89 + 15 + 22 + 9 + 27 + 2 + 44 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1330 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1816 1540 basechar 0 +AnchorPoint: "Anchor-20" 1816 -380 basechar 0 +AnchorPoint: "Anchor-16" 909 1200 basechar 0 +AnchorPoint: "Anchor-15" 1536 1260 basechar 0 +AnchorPoint: "Anchor-14" 900 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1733 544 m 0,0,1 + 1733 -20 1733 -20 1335 -20 c 0,2,3 + 1085 -20 1085 -20 999 168 c 1,4,-1 + 994 168 l 1,5,6 + 998 160 998 160 998 -2 c 2,7,-1 + 998 -425 l 1,8,-1 + 818 -425 l 1,9,-1 + 818 67 l 1,10,-1 + 820 168 l 1,11,-1 + 816 168 l 1,12,13 + 764 65 764 65 688.5 22.5 c 128,-1,14 + 613 -20 613 -20 481 -20 c 0,15,16 + 275 -20 275 -20 179 118 c 128,-1,17 + 83 256 83 256 83 534 c 0,18,19 + 83 1100 83 1100 481 1100 c 0,20,21 + 606 1100 606 1100 684.5 1056 c 128,-1,22 + 763 1012 763 1012 816 912 c 1,23,-1 + 820 912 l 1,24,-1 + 820 1082 l 1,25,-1 + 996 1082 l 1,26,-1 + 996 906 l 1,27,-1 + 1000 906 l 1,28,29 + 1048 1006 1048 1006 1127 1052.5 c 128,-1,30 + 1206 1099 1206 1099 1335 1099 c 0,31,32 + 1535 1099 1535 1099 1634 965 c 128,-1,33 + 1733 831 1733 831 1733 544 c 0,0,1 +1544 540 m 0,34,35 + 1544 766 1544 766 1483 863 c 128,-1,36 + 1422 960 1422 960 1289 960 c 0,37,38 + 1182 960 1182 960 1121.5 915 c 128,-1,39 + 1061 870 1061 870 1029.5 774.5 c 128,-1,40 + 998 679 998 679 998 526 c 0,41,42 + 998 313 998 313 1066.5 213 c 128,-1,43 + 1135 113 1135 113 1287 113 c 0,44,45 + 1422 113 1422 113 1483 211.5 c 128,-1,46 + 1544 310 1544 310 1544 540 c 0,34,35 +818 552 m 0,47,48 + 818 763 818 763 749 865 c 128,-1,49 + 680 967 680 967 529 967 c 0,50,51 + 392 967 392 967 332 865 c 128,-1,52 + 272 763 272 763 272 540 c 0,53,54 + 272 315 272 315 332 217 c 128,-1,55 + 392 119 392 119 527 119 c 0,56,57 + 682 119 682 119 750 227.5 c 128,-1,58 + 818 336 818 336 818 552 c 0,47,48 +EndSplineSet +EndChar + +StartChar: uni023A +Encoding: 570 570 508 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 3 + 23 + 16 + 8 + 7 + 19 + 24 + 15 + 2 + 27 + 27 + 15 + 19 + 16 + 12 + 5 + 4 + 10 + 11 + 13 + 11 + 4 + 6 + 4 + 29 + 30 + 25 + 1 + 95 + 89 + 25 + 25 + 14 + 14 + 28 + 95 + 89 + 23 + 9 + 7 + 14 + 14 + 6 + 7 + 7 + 19 + 96 + 89 + 10 + 7 + 3 + 4 + 0 + 6 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[rnd,white] +MIAP[rnd] +MDRP[rnd,white] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP2 +IP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1167 0 m 1,0,-1 + 1006 412 l 1,1,-1 + 607 412 l 1,2,-1 + 289 -107 l 1,3,-1 + 127 -107 l 1,4,-1 + 192 0 l 1,5,-1 + 4 0 l 1,6,-1 + 579 1409 l 1,7,-1 + 796 1409 l 1,8,-1 + 898 1154 l 1,9,-1 + 1119 1514 l 1,10,-1 + 1281 1514 l 1,11,-1 + 963 994 l 1,12,-1 + 1362 0 l 1,13,-1 + 1167 0 l 1,0,-1 +422 561 m 1,14,-1 + 535 561 l 1,15,-1 + 788 974 l 1,16,17 + 734 1114 734 1114 712 1181.5 c 128,-1,18 + 690 1249 690 1249 685 1265 c 1,19,-1 + 676 1237 l 2,20,21 + 651 1154 651 1154 602 1024 c 2,22,-1 + 422 561 l 1,14,-1 +851 812 m 1,23,-1 + 698 561 l 1,24,-1 + 949 561 l 1,25,-1 + 851 812 l 1,23,-1 +219 43 m 1,26,-1 + 444 412 l 1,27,-1 + 364 412 l 1,28,-1 + 219 43 l 1,26,-1 +EndSplineSet +EndChar + +StartChar: uni023B +Encoding: 571 571 509 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 79 + 14 + 13 + 13 + 21 + 22 + 9 + 10 + 28 + 29 + 33 + 3 + 3 + 29 + 0 + 17 + 36 + 11 + 10 + 22 + 8 + 39 + 38 + 27 + 0 + 17 + 35 + 4 + 25 + 0 + 21 + 16 + 21 + 64 + 21 + 80 + 21 + 144 + 21 + 160 + 21 + 208 + 21 + 224 + 21 + 8 + 12 + 3 + 21 + 21 + 28 + 25 + 64 + 25 + 19 + 95 + 89 + 25 + 19 + 16 + 36 + 11 + 8 + 4 + 6 + 15 + 14 + 1 + 13 + 3 + 14 + 14 + 6 + 6 + 30 + 95 + 89 + 9 + 6 + 4 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,white] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP2 +SLOOP +IP +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,white] +SHP[rp1] +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 890 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +342 123 m 1,0,1 + 223 221 223 221 163.5 372 c 128,-1,2 + 104 523 104 523 104 711 c 0,3,4 + 104 1048 104 1048 286 1239 c 128,-1,5 + 468 1430 468 1430 790 1430 c 0,6,7 + 952 1430 952 1430 1081 1381 c 1,8,-1 + 1159 1514 l 1,9,-1 + 1321 1514 l 1,10,-1 + 1205 1316 l 1,11,12 + 1327 1229 1327 1229 1388 1081 c 1,13,-1 + 1207 1021 l 1,14,15 + 1176 1099 1176 1099 1113 1160 c 1,16,-1 + 549 199 l 1,17,18 + 661 137 661 137 800 137 c 0,19,20 + 1096 137 1096 137 1245 430 c 1,21,-1 + 1401 352 l 1,22,23 + 1314 170 1314 170 1156.5 75 c 128,-1,24 + 999 -20 999 -20 791 -20 c 0,25,26 + 604 -20 604 -20 460 48 c 1,27,-1 + 369 -107 l 1,28,-1 + 207 -107 l 1,29,-1 + 342 123 l 1,0,1 +792 1274 m 0,30,31 + 558 1274 558 1274 428 1123.5 c 128,-1,32 + 298 973 298 973 298 711 c 0,33,34 + 298 444 298 444 439 289 c 1,35,-1 + 996 1236 l 1,36,37 + 905 1274 905 1274 792 1274 c 0,30,31 +EndSplineSet +EndChar + +StartChar: uni023C +Encoding: 572 572 510 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 57 + 8 + 9 + 13 + 12 + 12 + 21 + 22 + 30 + 2 + 28 + 29 + 29 + 2 + 0 + 27 + 16 + 33 + 7 + 10 + 22 + 9 + 10 + 39 + 38 + 27 + 0 + 16 + 32 + 4 + 25 + 21 + 21 + 28 + 25 + 64 + 25 + 18 + 80 + 89 + 25 + 22 + 15 + 33 + 10 + 7 + 4 + 5 + 13 + 13 + 5 + 5 + 35 + 80 + 89 + 8 + 5 + 16 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,white] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,white] +SHP[rp1] +MDAP[rnd] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +239 89 m 1,0,1 + 87 233 87 233 87 542 c 0,2,3 + 87 815 87 815 207 958.5 c 128,-1,4 + 327 1102 327 1102 551 1102 c 0,5,6 + 624 1102 624 1102 684 1086 c 1,7,-1 + 862 1484 l 1,8,-1 + 1004 1484 l 1,9,-1 + 803 1033 l 1,10,11 + 932 947 932 947 964 779 c 1,12,-1 + 779 765 l 1,13,14 + 768 833 768 833 734 879 c 1,15,-1 + 412 157 l 1,16,17 + 467 122 467 122 548 122 c 0,18,19 + 644 122 644 122 708.5 174 c 128,-1,20 + 773 226 773 226 788 334 c 1,21,-1 + 970 322 l 1,22,23 + 949 166 949 166 837 73 c 128,-1,24 + 725 -20 725 -20 553 -20 c 0,25,26 + 437 -20 437 -20 349 17 c 1,27,-1 + 152 -425 l 1,28,-1 + 10 -425 l 1,29,-1 + 239 89 l 1,0,1 +275 546 m 0,30,31 + 275 370 275 370 320 269 c 1,32,-1 + 624 951 l 1,33,34 + 590 961 590 961 546 961 c 0,35,36 + 403 961 403 961 339 866 c 128,-1,37 + 275 771 275 771 275 546 c 0,30,31 +EndSplineSet +EndChar + +StartChar: uni023D +Encoding: 573 573 511 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 4 + 8 + 8 + 13 + 1 + 6 + 11 + 9 + 11 + 9 + 14 + 15 + 7 + 13 + 0 + 13 + 95 + 89 + 4 + 0 + 0 + 11 + 2 + 11 + 8 + 95 + 89 + 11 + 18 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +26 810 m 1,0,-1 + 168 810 l 1,1,-1 + 168 1409 l 1,2,-1 + 359 1409 l 1,3,-1 + 359 810 l 1,4,-1 + 758 810 l 1,5,-1 + 758 654 l 1,6,-1 + 359 654 l 1,7,-1 + 359 156 l 1,8,-1 + 1071 156 l 1,9,-1 + 1071 0 l 1,10,-1 + 168 0 l 1,11,-1 + 168 654 l 1,12,-1 + 26 654 l 1,13,-1 + 26 810 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni023E +Encoding: 574 574 512 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 12 + 17 + 2 + 2 + 18 + 0 + 13 + 7 + 3 + 5 + 6 + 10 + 6 + 3 + 13 + 4 + 21 + 20 + 14 + 0 + 95 + 89 + 14 + 19 + 9 + 10 + 9 + 95 + 89 + 17 + 1 + 7 + 4 + 4 + 3 + 12 + 10 + 3 + 6 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,grey] +MIAP[rnd] +MDRP[rnd,white] +SRP2 +SLOOP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1041 1253 m 1,0,-1 + 720 728 l 1,1,-1 + 720 0 l 1,2,-1 + 530 0 l 1,3,-1 + 530 417 l 1,4,-1 + 209 -107 l 1,5,-1 + 47 -107 l 1,6,-1 + 530 682 l 1,7,-1 + 530 1253 l 1,8,-1 + 46 1253 l 1,9,-1 + 46 1409 l 1,10,-1 + 974 1409 l 1,11,-1 + 1039 1514 l 1,12,-1 + 1201 1514 l 1,13,-1 + 1137 1409 l 1,14,-1 + 1204 1409 l 1,15,-1 + 1204 1253 l 1,16,-1 + 1041 1253 l 1,0,-1 +720 993 m 1,17,-1 + 879 1253 l 1,18,-1 + 720 1253 l 1,19,-1 + 720 993 l 1,17,-1 +EndSplineSet +EndChar + +StartChar: uni023F +Encoding: 575 575 513 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 44 + 13 + 13 + 30 + 0 + 5 + 51 + 51 + 23 + 38 + 0 + 38 + 61 + 60 + 30 + 51 + 3 + 41 + 41 + 48 + 80 + 89 + 45 + 41 + 16 + 12 + 3 + 16 + 16 + 9 + 80 + 89 + 16 + 3 + 3 + 27 + 80 + 89 + 24 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 649 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 513 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1260 basechar 0 +AnchorPoint: "Anchor-14" 520 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +950 299 m 0,0,1 + 950 146 950 146 834.5 63 c 128,-1,2 + 719 -20 719 -20 511 -20 c 0,3,4 + 478 -20 478 -20 408 -10 c 1,5,-1 + 603 -220 l 2,6,7 + 630 -249 630 -249 664.5 -261 c 128,-1,8 + 699 -273 699 -273 726 -273 c 0,9,10 + 760 -273 760 -273 787 -259 c 128,-1,11 + 814 -245 814 -245 843 -212 c 1,12,-1 + 939 -325 l 1,13,14 + 883 -384 883 -384 831.5 -405 c 128,-1,15 + 780 -426 780 -426 724 -426 c 0,16,17 + 570 -426 570 -426 444 -272 c 1,18,-1 + 303 -107 l 2,19,20 + 230 -25 230 -25 163 59 c 0,21,22 + 86 156 86 156 71 179 c 1,23,-1 + 204 266 l 1,24,25 + 261 178 261 178 327.5 147.5 c 128,-1,26 + 394 117 394 117 511 117 c 0,27,28 + 648 117 648 117 711.5 159 c 128,-1,29 + 775 201 775 201 775 285 c 0,30,31 + 775 349 775 349 731 389 c 128,-1,32 + 687 429 687 429 589 455 c 2,33,-1 + 460 489 l 2,34,35 + 305 529 305 529 239.5 567.5 c 128,-1,36 + 174 606 174 606 137 661 c 128,-1,37 + 100 716 100 716 100 796 c 0,38,39 + 100 944 100 944 205.5 1021.5 c 128,-1,40 + 311 1099 311 1099 513 1099 c 0,41,42 + 692 1099 692 1099 797.5 1036 c 128,-1,43 + 903 973 903 973 931 834 c 1,44,-1 + 769 814 l 1,45,46 + 754 886 754 886 688.5 924.5 c 128,-1,47 + 623 963 623 963 513 963 c 0,48,49 + 391 963 391 963 333 926 c 128,-1,50 + 275 889 275 889 275 814 c 0,51,52 + 275 768 275 768 299 738 c 128,-1,53 + 323 708 323 708 370 687 c 128,-1,54 + 417 666 417 666 568 629 c 0,55,56 + 711 593 711 593 774 562.5 c 128,-1,57 + 837 532 837 532 873.5 495 c 128,-1,58 + 910 458 910 458 930 409.5 c 128,-1,59 + 950 361 950 361 950 299 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0240 +Encoding: 576 576 514 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 26 + 0 + 23 + 25 + 11 + 29 + 23 + 29 + 30 + 31 + 27 + 26 + 80 + 89 + 27 + 15 + 10 + 14 + 14 + 8 + 80 + 89 + 14 + 23 + 23 + 0 + 80 + 89 + 23 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 726 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 513 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1260 basechar 0 +AnchorPoint: "Anchor-14" 520 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +251 139 m 1,0,1 + 313 139 313 139 353.5 128.5 c 128,-1,2 + 394 118 394 118 427 94.5 c 128,-1,3 + 460 71 460 71 528 -9 c 2,4,-1 + 698 -210 l 2,5,6 + 727 -245 727 -245 752 -259 c 128,-1,7 + 777 -273 777 -273 809 -273 c 0,8,9 + 861 -273 861 -273 921 -205 c 1,10,-1 + 1017 -318 l 1,11,12 + 961 -377 961 -377 909.5 -401.5 c 128,-1,13 + 858 -426 858 -426 802 -426 c 0,14,15 + 753 -426 753 -426 714 -411 c 128,-1,16 + 675 -396 675 -396 640.5 -368 c 128,-1,17 + 606 -340 606 -340 548 -269 c 2,18,-1 + 388 -76 l 2,19,20 + 351 -32 351 -32 317 -16 c 128,-1,21 + 283 0 283 0 205 0 c 2,22,-1 + 49 0 l 1,23,-1 + 49 139 l 1,24,-1 + 710 943 l 1,25,-1 + 89 943 l 1,26,-1 + 89 1082 l 1,27,-1 + 913 1082 l 1,28,-1 + 913 945 l 1,29,-1 + 251 139 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0241 +Encoding: 577 577 515 +Width: 1189 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 5 + 18 + 22 + 0 + 11 + 12 + 12 + 0 + 18 + 3 + 24 + 23 + 3 + 21 + 96 + 89 + 3 + 3 + 0 + 11 + 15 + 15 + 8 + 96 + 89 + 15 + 4 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 470 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1189 1540 basechar 0 +AnchorPoint: "Anchor-20" 1189 -380 basechar 0 +AnchorPoint: "Anchor-16" 557 1540 basechar 0 +AnchorPoint: "Anchor-15" 980 1540 basechar 0 +AnchorPoint: "Anchor-14" 537 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +445 0 m 1,0,-1 + 445 536 l 1,1,2 + 497 522 497 522 572 522 c 0,3,4 + 912 522 912 522 912 906 c 0,5,6 + 912 1104 912 1104 825.5 1196.5 c 128,-1,7 + 739 1289 739 1289 559 1289 c 0,8,9 + 427 1289 427 1289 342.5 1230.5 c 128,-1,10 + 258 1172 258 1172 232 1054 c 1,11,-1 + 51 1083 l 1,12,13 + 87 1248 87 1248 219.5 1339 c 128,-1,14 + 352 1430 352 1430 563 1430 c 0,15,16 + 824 1430 824 1430 962 1296.5 c 128,-1,17 + 1100 1163 1100 1163 1100 902 c 0,18,19 + 1100 668 1100 668 972.5 528 c 128,-1,20 + 845 388 845 388 625 380 c 1,21,-1 + 625 0 l 1,22,-1 + 445 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0242 +Encoding: 578 578 516 +Width: 928 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 9 + 10 + 20 + 0 + 4 + 16 + 16 + 0 + 10 + 3 + 21 + 22 + 1 + 19 + 81 + 89 + 1 + 1 + 0 + 13 + 9 + 9 + 13 + 13 + 7 + 80 + 89 + 13 + 16 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 928 1540 basechar 0 +AnchorPoint: "Anchor-20" 928 -380 basechar 0 +AnchorPoint: "Anchor-16" 436 1200 basechar 0 +AnchorPoint: "Anchor-15" 730 1260 basechar 0 +AnchorPoint: "Anchor-14" 450 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +354 0 m 1,0,-1 + 354 432 l 1,1,2 + 497 432 497 432 578.5 504 c 128,-1,3 + 660 576 660 576 660 699 c 0,4,5 + 660 832 660 832 605.5 896.5 c 128,-1,6 + 551 961 551 961 424 961 c 0,7,8 + 233 961 233 961 205 765 c 1,9,-1 + 20 779 l 1,10,11 + 46 929 46 929 153.5 1015.5 c 128,-1,12 + 261 1102 261 1102 424 1102 c 0,13,14 + 629 1102 629 1102 738.5 997 c 128,-1,15 + 848 892 848 892 848 697 c 0,16,17 + 848 554 848 554 766.5 453 c 128,-1,18 + 685 352 685 352 534 314 c 1,19,-1 + 534 0 l 1,20,-1 + 354 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0243 +Encoding: 579 579 517 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 53 + 8 + 24 + 35 + 30 + 5 + 5 + 18 + 11 + 35 + 22 + 26 + 26 + 17 + 1 + 15 + 11 + 15 + 40 + 39 + 8 + 35 + 21 + 25 + 17 + 0 + 17 + 96 + 89 + 22 + 0 + 0 + 21 + 15 + 35 + 21 + 95 + 89 + 35 + 35 + 15 + 2 + 15 + 26 + 95 + 89 + 15 + 18 + 2 + 34 + 95 + 89 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 760 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +33 474 m 1,0,-1 + 168 474 l 1,1,-1 + 168 1409 l 1,2,-1 + 680 1409 l 2,3,4 + 1176 1409 1176 1409 1176 1067 c 0,5,6 + 1176 942 1176 942 1106 857 c 128,-1,7 + 1036 772 1036 772 908 743 c 1,8,9 + 1076 723 1076 723 1167 630.5 c 128,-1,10 + 1258 538 1258 538 1258 397 c 0,11,12 + 1258 209 1258 209 1121 104.5 c 128,-1,13 + 984 0 984 0 740 0 c 2,14,-1 + 168 0 l 1,15,-1 + 168 341 l 1,16,-1 + 33 341 l 1,17,-1 + 33 474 l 1,0,-1 +1065 412 m 0,18,19 + 1065 661 1065 661 715 661 c 2,20,-1 + 359 661 l 1,21,-1 + 359 474 l 1,22,-1 + 707 474 l 1,23,-1 + 707 341 l 1,24,-1 + 359 341 l 1,25,-1 + 359 153 l 1,26,-1 + 730 153 l 2,27,28 + 905 153 905 153 985 218 c 128,-1,29 + 1065 283 1065 283 1065 412 c 0,18,19 +984 1044 m 0,30,31 + 984 1158 984 1158 906 1207 c 128,-1,32 + 828 1256 828 1256 680 1256 c 2,33,-1 + 359 1256 l 1,34,-1 + 359 810 l 1,35,-1 + 680 810 l 2,36,37 + 833 810 833 810 908.5 867.5 c 128,-1,38 + 984 925 984 925 984 1044 c 0,30,31 +EndSplineSet +EndChar + +StartChar: uni0244 +Encoding: 580 580 518 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 4 + 29 + 29 + 22 + 1 + 20 + 5 + 26 + 26 + 10 + 8 + 12 + 20 + 12 + 32 + 33 + 28 + 11 + 22 + 0 + 22 + 95 + 89 + 8 + 4 + 0 + 0 + 16 + 2 + 16 + 23 + 95 + 89 + 16 + 19 + 6 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +41 809 m 1,0,-1 + 158 809 l 1,1,-1 + 158 1409 l 1,2,-1 + 349 1409 l 1,3,-1 + 349 809 l 1,4,-1 + 1131 809 l 1,5,-1 + 1131 1409 l 1,6,-1 + 1321 1409 l 1,7,-1 + 1321 809 l 1,8,-1 + 1438 809 l 1,9,-1 + 1438 656 l 1,10,-1 + 1321 656 l 1,11,-1 + 1321 530 l 2,12,13 + 1321 359 1321 359 1248.5 235 c 128,-1,14 + 1176 111 1176 111 1043.5 45.5 c 128,-1,15 + 911 -20 911 -20 731 -20 c 0,16,17 + 558 -20 558 -20 429 43 c 128,-1,18 + 300 106 300 106 229 226 c 128,-1,19 + 158 346 158 346 158 512 c 2,20,-1 + 158 656 l 1,21,-1 + 41 656 l 1,22,-1 + 41 809 l 1,0,-1 +730 135 m 0,23,24 + 920 135 920 135 1025.5 238.5 c 128,-1,25 + 1131 342 1131 342 1131 541 c 2,26,-1 + 1131 656 l 1,27,-1 + 349 656 l 1,28,-1 + 349 528 l 2,29,30 + 349 335 349 335 447 235 c 128,-1,31 + 545 135 545 135 730 135 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni0245 +Encoding: 581 581 519 +Width: 1368 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 3 + 2 + 1 + 0 + 5 + 7 + 8 + 8 + 5 + 2 + 3 + 10 + 9 + 111 + 10 + 1 + 48 + 10 + 1 + 47 + 10 + 1 + 0 + 10 + 1 + 5 + 3 + 8 + 18 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +IP +SVTCA[x-axis] +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1368 1540 basechar 0 +AnchorPoint: "Anchor-20" 1368 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +584 1409 m 1,0,-1 + 782 1409 l 1,1,-1 + 1357 0 l 1,2,-1 + 1156 0 l 1,3,-1 + 766 992 l 1,4,-1 + 682 1241 l 1,5,-1 + 598 992 l 1,6,-1 + 210 0 l 1,7,-1 + 9 0 l 1,8,-1 + 584 1409 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0246 +Encoding: 582 582 520 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 85 + 12 + 8 + 16 + 1 + 25 + 26 + 21 + 22 + 5 + 6 + 0 + 6 + 5 + 20 + 24 + 24 + 2 + 19 + 0 + 0 + 2 + 2 + 5 + 16 + 3 + 29 + 28 + 17 + 16 + 95 + 89 + 17 + 18 + 8 + 9 + 95 + 89 + 5 + 64 + 8 + 3 + 12 + 13 + 95 + 89 + 12 + 12 + 20 + 20 + 27 + 95 + 89 + 143 + 20 + 1 + 186 + 20 + 1 + 121 + 20 + 137 + 20 + 2 + 15 + 20 + 1 + 8 + 3 + 20 + 20 + 3 + 2 + 3 + 23 + 95 + 89 + 3 + 3 + 2 + 24 + 95 + 89 + 0 + 2 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,white] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +230 -224 m 1,0,-1 + 337 0 l 1,1,-1 + 168 0 l 1,2,-1 + 168 1409 l 1,3,-1 + 1012 1409 l 1,4,-1 + 1082 1554 l 1,5,-1 + 1224 1554 l 1,6,-1 + 1154 1409 l 1,7,-1 + 1237 1409 l 1,8,-1 + 1237 1253 l 1,9,-1 + 1080 1253 l 1,10,-1 + 863 801 l 1,11,-1 + 1177 801 l 1,12,-1 + 1177 647 l 1,13,-1 + 789 647 l 1,14,-1 + 554 156 l 1,15,-1 + 1278 156 l 1,16,-1 + 1278 0 l 1,17,-1 + 480 0 l 1,18,-1 + 373 -224 l 1,19,-1 + 230 -224 l 1,0,-1 +359 801 m 1,20,-1 + 721 801 l 1,21,-1 + 938 1253 l 1,22,-1 + 359 1253 l 1,23,-1 + 359 801 l 1,20,-1 +359 156 m 1,24,-1 + 412 156 l 1,25,-1 + 647 647 l 1,26,-1 + 359 647 l 1,27,-1 + 359 156 l 1,24,-1 +EndSplineSet +EndChar + +StartChar: uni0247 +Encoding: 583 583 521 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 74 + 21 + 22 + 22 + 39 + 13 + 1 + 16 + 28 + 15 + 8 + 41 + 11 + 7 + 10 + 0 + 10 + 9 + 34 + 35 + 35 + 3 + 27 + 0 + 0 + 3 + 3 + 9 + 13 + 3 + 44 + 43 + 27 + 27 + 34 + 35 + 80 + 89 + 34 + 34 + 42 + 21 + 21 + 15 + 24 + 42 + 15 + 80 + 89 + 42 + 42 + 6 + 26 + 1 + 16 + 3 + 37 + 37 + 24 + 24 + 18 + 80 + 89 + 24 + 22 + 41 + 31 + 6 + 31 + 80 + 89 + 11 + 9 + 6 + 16 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,white] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +SLOOP +IP +SRP2 +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SHP[rp1] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +68 -424 m 1,0,-1 + 284 59 l 1,1,2 + 87 194 87 194 87 548 c 0,3,4 + 87 816 87 816 212.5 959 c 128,-1,5 + 338 1102 338 1102 571 1102 c 0,6,7 + 665 1102 665 1102 739 1080 c 1,8,-1 + 920 1484 l 1,9,-1 + 1062 1484 l 1,10,-1 + 857 1024 l 1,11,12 + 1048 888 1048 888 1048 527 c 2,13,-1 + 1048 503 l 1,14,-1 + 624 503 l 1,15,-1 + 460 135 l 1,16,17 + 512 115 512 115 578 115 c 0,18,19 + 695 115 695 115 765.5 162 c 128,-1,20 + 836 209 836 209 861 281 c 1,21,-1 + 1019 236 l 1,22,23 + 922 -20 922 -20 578 -20 c 0,24,25 + 482 -20 482 -20 402 3 c 1,26,-1 + 211 -424 l 1,27,-1 + 68 -424 l 1,0,-1 +543 641 m 1,28,-1 + 682 951 l 1,29,30 + 631 969 631 969 568 969 c 0,31,32 + 437 969 437 969 360.5 881.5 c 128,-1,33 + 284 794 284 794 278 641 c 1,34,-1 + 543 641 l 1,28,-1 +276 503 m 1,35,36 + 276 315 276 315 353 215 c 1,37,-1 + 482 503 l 1,38,-1 + 276 503 l 1,35,36 +862 641 m 1,39,40 + 849 792 849 792 789 873 c 1,41,-1 + 686 641 l 1,42,-1 + 862 641 l 1,39,40 +EndSplineSet +EndChar + +StartChar: uni0248 +Encoding: 584 584 522 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 16 + 3 + 24 + 24 + 15 + 10 + 1 + 22 + 22 + 8 + 6 + 10 + 15 + 10 + 25 + 26 + 9 + 24 + 0 + 24 + 95 + 89 + 6 + 0 + 0 + 13 + 4 + 13 + 19 + 95 + 89 + 16 + 16 + 13 + 19 + 4 + 3 + 95 + 89 + 4 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 460 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 660 1540 basechar 0 +AnchorPoint: "Anchor-15" 880 1540 basechar 0 +AnchorPoint: "Anchor-14" 460 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +420 809 m 1,0,-1 + 682 809 l 1,1,-1 + 682 1253 l 1,2,-1 + 411 1253 l 1,3,-1 + 411 1409 l 1,4,-1 + 872 1409 l 1,5,-1 + 872 809 l 1,6,-1 + 1007 809 l 1,7,-1 + 1007 657 l 1,8,-1 + 872 657 l 1,9,-1 + 872 420 l 2,10,11 + 872 215 872 215 761 97.5 c 128,-1,12 + 650 -20 650 -20 457 -20 c 0,13,14 + 99 -20 99 -20 32 350 c 1,15,-1 + 219 381 l 1,16,17 + 237 265 237 265 300 200 c 128,-1,18 + 363 135 363 135 458 135 c 0,19,20 + 562 135 562 135 622 206.5 c 128,-1,21 + 682 278 682 278 682 416 c 2,22,-1 + 682 657 l 1,23,-1 + 420 657 l 1,24,-1 + 420 809 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0249 +Encoding: 585 585 523 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 16 + 25 + 4 + 21 + 18 + 14 + 14 + 24 + 2 + 0 + 4 + 4 + 26 + 9 + 25 + 22 + 21 + 83 + 89 + 22 + 0 + 3 + 16 + 17 + 16 + 80 + 89 + 0 + 17 + 17 + 7 + 19 + 15 + 7 + 11 + 80 + 89 + 7 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 100 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 140 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +317 617 m 1,0,-1 + 428 617 l 1,1,-1 + 428 484 l 1,2,-1 + 317 484 l 1,3,-1 + 317 -134 l 2,4,5 + 317 -287 317 -287 257 -356 c 128,-1,6 + 197 -425 197 -425 77 -425 c 0,7,8 + 0 -425 0 -425 -50 -416 c 1,9,-1 + -50 -277 l 1,10,-1 + 12 -283 l 1,11,12 + 81 -283 81 -283 109 -247 c 128,-1,13 + 137 -211 137 -211 137 -107 c 2,14,-1 + 137 484 l 1,15,-1 + 25 484 l 1,16,-1 + 25 617 l 1,17,-1 + 137 617 l 1,18,-1 + 137 1082 l 1,19,-1 + 317 1082 l 1,20,-1 + 317 617 l 1,0,-1 +137 1312 m 1,21,-1 + 137 1484 l 1,22,-1 + 317 1484 l 1,23,-1 + 317 1312 l 1,24,-1 + 137 1312 l 1,21,-1 +EndSplineSet +EndChar + +StartChar: uni024A +Encoding: 586 586 524 +Width: 1510 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 27 + 11 + 11 + 5 + 0 + 33 + 17 + 0 + 17 + 37 + 36 + 12 + 22 + 14 + 23 + 3 + 20 + 30 + 95 + 89 + 20 + 4 + 8 + 3 + 95 + 89 + 8 + 14 + 14 + 25 + 95 + 89 + 14 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1360 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1510 1540 basechar 0 +AnchorPoint: "Anchor-20" 1510 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1333 -115 m 2,0,1 + 1333 -196 1333 -196 1361 -229.5 c 128,-1,2 + 1389 -263 1389 -263 1444 -263 c 0,3,4 + 1495 -263 1495 -263 1542 -249 c 1,5,-1 + 1542 -411 l 1,6,7 + 1484 -425 1484 -425 1406 -425 c 0,8,9 + 1275 -425 1275 -425 1208.5 -349.5 c 128,-1,10 + 1142 -274 1142 -274 1142 -129 c 2,11,-1 + 1142 71 l 1,12,13 + 960 -20 960 -20 790 -20 c 0,14,15 + 463 -20 463 -20 280 175 c 128,-1,16 + 97 370 97 370 97 711 c 0,17,18 + 97 1049 97 1049 282 1239.5 c 128,-1,19 + 467 1430 467 1430 797 1430 c 0,20,21 + 992 1430 992 1430 1152 1353 c 1,22,-1 + 1302 1409 l 1,23,-1 + 1333 1409 l 1,24,-1 + 1333 -115 l 2,0,1 +790 133 m 0,25,26 + 1024 133 1024 133 1142 236 c 1,27,-1 + 1142 1177 l 1,28,29 + 1027 1277 1027 1277 797 1277 c 0,30,31 + 556 1277 556 1277 423.5 1128.5 c 128,-1,32 + 291 980 291 980 291 711 c 0,33,34 + 291 440 291 440 424.5 286.5 c 128,-1,35 + 558 133 558 133 790 133 c 0,25,26 +EndSplineSet +EndChar + +StartChar: uni024B +Encoding: 587 587 525 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 33 + 14 + 1 + 32 + 32 + 26 + 21 + 39 + 8 + 21 + 8 + 46 + 45 + 29 + 24 + 80 + 89 + 29 + 27 + 1 + 2 + 2 + 14 + 5 + 17 + 16 + 10 + 36 + 80 + 89 + 10 + 16 + 5 + 42 + 80 + 89 + 5 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1060 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 530 1200 basechar 0 +AnchorPoint: "Anchor-15" 1010 1260 basechar 0 +AnchorPoint: "Anchor-14" 515 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +821 49 m 1,0,-1 + 825 178 l 1,1,-1 + 823 178 l 1,2,3 + 769 71 769 71 690 25.5 c 128,-1,4 + 611 -20 611 -20 484 -20 c 0,5,6 + 278 -20 278 -20 182 119 c 128,-1,7 + 86 258 86 258 86 536 c 0,8,9 + 86 1102 86 1102 484 1102 c 0,10,11 + 607 1102 607 1102 687 1058.5 c 128,-1,12 + 767 1015 767 1015 821 914 c 1,13,-1 + 823 914 l 1,14,15 + 823 944 823 944 827 1017.5 c 128,-1,16 + 831 1091 831 1091 835 1096 c 1,17,-1 + 1008 1096 l 1,18,19 + 1001 1037 1001 1037 1001 801 c 2,20,-1 + 1001 -115 l 2,21,22 + 1001 -196 1001 -196 1029 -229.5 c 128,-1,23 + 1057 -263 1057 -263 1112 -263 c 0,24,25 + 1150 -263 1150 -263 1198 -251 c 1,26,-1 + 1198 -413 l 1,27,28 + 1148 -425 1148 -425 1074 -425 c 0,29,30 + 950 -425 950 -425 885.5 -350.5 c 128,-1,31 + 821 -276 821 -276 821 -129 c 2,32,-1 + 821 49 l 1,0,-1 +821 554 m 0,33,34 + 821 765 821 765 752 867 c 128,-1,35 + 683 969 683 969 532 969 c 0,36,37 + 395 969 395 969 335 867 c 128,-1,38 + 275 765 275 765 275 542 c 0,39,40 + 275 315 275 315 335.5 217 c 128,-1,41 + 396 119 396 119 530 119 c 0,42,43 + 683 119 683 119 752 228 c 128,-1,44 + 821 337 821 337 821 554 c 0,33,34 +EndSplineSet +EndChar + +StartChar: uni024C +Encoding: 588 588 526 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 0 + 17 + 17 + 18 + 16 + 1 + 13 + 23 + 23 + 3 + 3 + 8 + 6 + 4 + 13 + 4 + 28 + 27 + 16 + 2 + 6 + 7 + 6 + 95 + 89 + 23 + 7 + 7 + 4 + 9 + 9 + 22 + 95 + 89 + 9 + 3 + 0 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1164 0 m 1,0,-1 + 798 585 l 1,1,-1 + 359 585 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 585 l 1,5,-1 + 0 585 l 1,6,-1 + 0 735 l 1,7,-1 + 168 735 l 1,8,-1 + 168 1409 l 1,9,-1 + 831 1409 l 2,10,11 + 1069 1409 1069 1409 1198.5 1302.5 c 128,-1,12 + 1328 1196 1328 1196 1328 1006 c 0,13,14 + 1328 849 1328 849 1236.5 742 c 128,-1,15 + 1145 635 1145 635 984 607 c 1,16,-1 + 1384 0 l 1,17,-1 + 1164 0 l 1,0,-1 +1136 1004 m 0,18,19 + 1136 1127 1136 1127 1052.5 1191.5 c 128,-1,20 + 969 1256 969 1256 812 1256 c 2,21,-1 + 359 1256 l 1,22,-1 + 359 736 l 1,23,-1 + 820 736 l 2,24,25 + 971 736 971 736 1053.5 806.5 c 128,-1,26 + 1136 877 1136 877 1136 1004 c 0,18,19 +EndSplineSet +EndChar + +StartChar: uni024D +Encoding: 589 589 527 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 21 + 10 + 25 + 25 + 23 + 16 + 5 + 4 + 2 + 0 + 16 + 0 + 27 + 26 + 14 + 19 + 83 + 89 + 14 + 16 + 24 + 2 + 3 + 2 + 80 + 89 + 21 + 10 + 7 + 3 + 3 + 7 + 15 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +SRP2 +IP +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP2 +IP +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +142 0 m 1,0,-1 + 142 486 l 1,1,-1 + 20 486 l 1,2,-1 + 20 632 l 1,3,-1 + 142 632 l 1,4,-1 + 142 830 l 2,5,6 + 142 944 142 944 136 1082 c 1,7,-1 + 306 1082 l 1,8,9 + 314 898 314 898 314 861 c 1,10,-1 + 318 861 l 1,11,12 + 361 1000 361 1000 417 1051 c 128,-1,13 + 473 1102 473 1102 575 1102 c 0,14,15 + 611 1102 611 1102 648 1092 c 1,16,-1 + 648 927 l 1,17,18 + 612 937 612 937 552 937 c 0,19,20 + 346 937 346 937 324 632 c 1,21,-1 + 505 632 l 1,22,-1 + 505 486 l 1,23,-1 + 322 486 l 1,24,-1 + 322 0 l 1,25,-1 + 142 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni024E +Encoding: 590 590 528 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 2 + 5 + 6 + 0 + 19 + 18 + 20 + 11 + 5 + 17 + 9 + 12 + 12 + 6 + 17 + 3 + 22 + 21 + 20 + 3 + 9 + 10 + 9 + 96 + 89 + 14 + 0 + 18 + 10 + 10 + 6 + 16 + 12 + 3 + 6 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +IP +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1169 1179 m 1,0,-1 + 1316 1179 l 1,1,-1 + 1316 1033 l 1,2,-1 + 1073 1033 l 1,3,-1 + 777 584 l 1,4,-1 + 777 0 l 1,5,-1 + 587 0 l 1,6,-1 + 587 584 l 1,7,-1 + 292 1033 l 1,8,-1 + 50 1033 l 1,9,-1 + 50 1179 l 1,10,-1 + 196 1179 l 1,11,-1 + 45 1409 l 1,12,-1 + 255 1409 l 1,13,-1 + 402 1179 l 1,14,-1 + 964 1179 l 1,15,-1 + 1111 1409 l 1,16,-1 + 1321 1409 l 1,17,-1 + 1169 1179 l 1,0,-1 +684 738 m 1,18,-1 + 871 1033 l 1,19,-1 + 495 1033 l 1,20,-1 + 684 738 l 1,18,-1 +EndSplineSet +EndChar + +StartChar: uni024F +Encoding: 591 591 529 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 1 + 27 + 16 + 3 + 24 + 16 + 23 + 17 + 5 + 26 + 18 + 11 + 21 + 26 + 21 + 36 + 35 + 25 + 15 + 23 + 30 + 80 + 89 + 23 + 23 + 20 + 3 + 17 + 20 + 17 + 80 + 89 + 0 + 27 + 16 + 20 + 20 + 8 + 22 + 15 + 8 + 13 + 80 + 89 + 8 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +IP +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 460 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +889 741 m 1,0,-1 + 1000 741 l 1,1,-1 + 1000 595 l 1,2,-1 + 833 595 l 1,3,-1 + 604 0 l 2,4,5 + 537 -173 537 -173 479 -257.5 c 128,-1,6 + 421 -342 421 -342 350.5 -383.5 c 128,-1,7 + 280 -425 280 -425 191 -425 c 0,8,9 + 117 -425 117 -425 67 -414 c 1,10,-1 + 67 -279 l 1,11,12 + 105 -285 105 -285 151 -285 c 0,13,14 + 319 -285 319 -285 417 -38 c 2,15,-1 + 434 5 l 1,16,-1 + 199 595 l 1,17,-1 + 37 595 l 1,18,-1 + 37 741 l 1,19,-1 + 141 741 l 1,20,-1 + 5 1082 l 1,21,-1 + 197 1082 l 1,22,-1 + 327 741 l 1,23,-1 + 713 741 l 1,24,-1 + 830 1082 l 1,25,-1 + 1020 1082 l 1,26,-1 + 889 741 l 1,0,-1 +523 196 m 1,27,-1 + 593 393 l 1,28,-1 + 663 595 l 1,29,-1 + 382 595 l 1,30,-1 + 425 484 l 2,31,32 + 430 470 430 470 437 450.5 c 128,-1,33 + 444 431 444 431 482 320 c 128,-1,34 + 520 209 520 209 523 196 c 1,27,-1 +EndSplineSet +EndChar + +StartChar: uni0250 +Encoding: 592 592 530 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 41 + 32 + 8 + 8 + 20 + 14 + 15 + 15 + 46 + 3 + 3 + 20 + 26 + 3 + 49 + 50 + 29 + 24 + 81 + 89 + 29 + 16 + 41 + 7 + 81 + 89 + 33 + 41 + 41 + 0 + 17 + 14 + 14 + 17 + 17 + 11 + 80 + 89 + 17 + 22 + 0 + 36 + 80 + 89 + 0 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +IP +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 1030 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +726 1102 m 0,0,1 + 889 1102 889 1102 971 1016 c 128,-1,2 + 1053 930 1053 930 1053 780 c 0,3,4 + 1053 607 1053 607 938.5 518.5 c 128,-1,5 + 824 430 824 430 586 426 c 2,6,-1 + 343 422 l 1,7,-1 + 343 363 l 2,8,9 + 343 231 343 231 399 174 c 128,-1,10 + 455 117 455 117 575 117 c 0,11,12 + 698 117 698 117 752.5 159 c 128,-1,13 + 807 201 807 201 817 289 c 1,14,-1 + 1005 272 l 1,15,16 + 959 -20 959 -20 571 -20 c 0,17,18 + 367 -20 367 -20 264 73.5 c 128,-1,19 + 161 167 161 167 161 344 c 2,20,-1 + 161 810 l 2,21,22 + 161 890 161 890 140 930.5 c 128,-1,23 + 119 971 119 971 60 971 c 0,24,25 + 34 971 34 971 1 964 c 1,26,-1 + 1 1076 l 1,27,28 + 69 1092 69 1092 140 1092 c 0,29,30 + 240 1092 240 1092 285.5 1039.5 c 128,-1,31 + 331 987 331 987 337 875 c 1,32,-1 + 343 875 l 1,33,34 + 407 995 407 995 499.5 1048.5 c 128,-1,35 + 592 1102 592 1102 726 1102 c 0,0,1 +685 967 m 0,36,37 + 586 967 586 967 509 922 c 128,-1,38 + 432 877 432 877 387.5 798.5 c 128,-1,39 + 343 720 343 720 343 637 c 2,40,-1 + 343 548 l 1,41,-1 + 540 552 l 2,42,43 + 667 554 667 554 732.5 578 c 128,-1,44 + 798 602 798 602 833 651.5 c 128,-1,45 + 868 701 868 701 868 783 c 0,46,47 + 868 871 868 871 820.5 919 c 128,-1,48 + 773 967 773 967 685 967 c 0,36,37 +EndSplineSet +EndChar + +StartChar: uni0251 +Encoding: 593 593 531 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 13 + 0 + 29 + 29 + 16 + 23 + 6 + 16 + 6 + 36 + 35 + 19 + 21 + 14 + 15 + 11 + 0 + 8 + 3 + 8 + 32 + 80 + 89 + 8 + 16 + 3 + 26 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 860 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 1100 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +821 174 m 1,0,1 + 771 70 771 70 688.5 25 c 128,-1,2 + 606 -20 606 -20 484 -20 c 0,3,4 + 279 -20 279 -20 182.5 118 c 128,-1,5 + 86 256 86 256 86 536 c 0,6,7 + 86 1102 86 1102 484 1102 c 0,8,9 + 607 1102 607 1102 689 1057 c 128,-1,10 + 771 1012 771 1012 821 914 c 1,11,-1 + 823 914 l 1,12,-1 + 821 1035 l 1,13,-1 + 821 1082 l 1,14,-1 + 1001 1082 l 1,15,-1 + 1001 223 l 2,16,17 + 1001 54 1001 54 1007 0 c 1,18,-1 + 835 0 l 1,19,20 + 832 16 832 16 828.5 74 c 128,-1,21 + 825 132 825 132 825 174 c 1,22,-1 + 821 174 l 1,0,1 +275 542 m 0,23,24 + 275 315 275 315 335 217 c 128,-1,25 + 395 119 395 119 530 119 c 0,26,27 + 683 119 683 119 752 225 c 128,-1,28 + 821 331 821 331 821 554 c 0,29,30 + 821 769 821 769 752 869 c 128,-1,31 + 683 969 683 969 532 969 c 0,32,33 + 396 969 396 969 335.5 868.5 c 128,-1,34 + 275 768 275 768 275 542 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni0252 +Encoding: 594 594 532 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 23 + 6 + 13 + 0 + 29 + 29 + 15 + 6 + 15 + 36 + 35 + 18 + 15 + 15 + 21 + 0 + 11 + 3 + 8 + 8 + 32 + 80 + 89 + 8 + 22 + 3 + 26 + 80 + 89 + 3 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +312 908 m 1,0,1 + 362 1012 362 1012 444.5 1057 c 128,-1,2 + 527 1102 527 1102 649 1102 c 0,3,4 + 854 1102 854 1102 950.5 964 c 128,-1,5 + 1047 826 1047 826 1047 546 c 0,6,7 + 1047 -20 1047 -20 649 -20 c 0,8,9 + 526 -20 526 -20 444 25 c 128,-1,10 + 362 70 362 70 312 168 c 1,11,-1 + 310 168 l 1,12,-1 + 312 47 l 1,13,-1 + 312 0 l 1,14,-1 + 132 0 l 1,15,-1 + 132 859 l 2,16,17 + 132 1028 132 1028 126 1082 c 1,18,-1 + 298 1082 l 1,19,20 + 301 1066 301 1066 304.5 1008 c 128,-1,21 + 308 950 308 950 308 908 c 1,22,-1 + 312 908 l 1,0,1 +858 540 m 0,23,24 + 858 767 858 767 798 865 c 128,-1,25 + 738 963 738 963 603 963 c 0,26,27 + 450 963 450 963 381 857 c 128,-1,28 + 312 751 312 751 312 528 c 0,29,30 + 312 314 312 314 380.5 213.5 c 128,-1,31 + 449 113 449 113 601 113 c 0,32,33 + 737 113 737 113 797.5 213.5 c 128,-1,34 + 858 314 858 314 858 540 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni0253 +Encoding: 595 595 533 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 33 + 0 + 25 + 5 + 39 + 39 + 12 + 12 + 19 + 0 + 3 + 46 + 45 + 26 + 5 + 30 + 2 + 30 + 36 + 80 + 89 + 30 + 16 + 16 + 21 + 80 + 89 + 16 + 1 + 10 + 21 + 2 + 42 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 -20 1053 -20 655 -20 c 0,2,3 + 532 -20 532 -20 450.5 24.5 c 128,-1,4 + 369 69 369 69 318 168 c 1,5,-1 + 316 168 l 1,6,7 + 316 137 316 137 312 73.5 c 128,-1,8 + 308 10 308 10 306 0 c 1,9,-1 + 132 0 l 1,10,11 + 138 54 138 54 138 223 c 2,12,-1 + 138 1202 l 2,13,14 + 138 1345 138 1345 213 1421.5 c 128,-1,15 + 288 1498 288 1498 433 1498 c 0,16,17 + 499 1498 499 1498 578 1481 c 1,18,-1 + 578 1315 l 1,19,20 + 520 1336 520 1336 451 1336 c 0,21,22 + 388 1336 388 1336 353.5 1298 c 128,-1,23 + 319 1260 319 1260 319 1188 c 2,24,-1 + 319 1061 l 1,25,-1 + 314 908 l 1,26,-1 + 318 908 l 1,27,28 + 368 1012 368 1012 450.5 1057 c 128,-1,29 + 533 1102 533 1102 655 1102 c 0,30,31 + 860 1102 860 1102 956.5 964 c 128,-1,32 + 1053 826 1053 826 1053 546 c 0,0,1 +864 540 m 0,33,34 + 864 767 864 767 804 865 c 128,-1,35 + 744 963 744 963 609 963 c 0,36,37 + 457 963 457 963 387.5 859 c 128,-1,38 + 318 755 318 755 318 529 c 0,39,40 + 318 316 318 316 386 214.5 c 128,-1,41 + 454 113 454 113 607 113 c 0,42,43 + 743 113 743 113 803.5 213.5 c 128,-1,44 + 864 314 864 314 864 540 c 0,33,34 +EndSplineSet +EndChar + +StartChar: uni0254 +Encoding: 596 596 534 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 6 + 7 + 7 + 19 + 0 + 13 + 19 + 13 + 26 + 27 + 16 + 23 + 80 + 89 + 20 + 20 + 16 + 22 + 6 + 6 + 10 + 10 + 3 + 80 + 89 + 10 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-18" 880 900 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +756 546 m 0,0,1 + 756 772 756 772 691.5 866.5 c 128,-1,2 + 627 961 627 961 485 961 c 0,3,4 + 380 961 380 961 323 908 c 128,-1,5 + 266 855 266 855 252 765 c 1,6,-1 + 67 779 l 1,7,8 + 96 930 96 930 204.5 1016 c 128,-1,9 + 313 1102 313 1102 480 1102 c 0,10,11 + 704 1102 704 1102 824 958.5 c 128,-1,12 + 944 815 944 815 944 542 c 0,13,14 + 944 267 944 267 824.5 123.5 c 128,-1,15 + 705 -20 705 -20 478 -20 c 0,16,17 + 307 -20 307 -20 194.5 73 c 128,-1,18 + 82 166 82 166 61 322 c 1,19,-1 + 243 334 l 1,20,21 + 258 226 258 226 322.5 174 c 128,-1,22 + 387 122 387 122 483 122 c 0,23,24 + 621 122 621 122 688.5 226.5 c 128,-1,25 + 756 331 756 331 756 546 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0255 +Encoding: 597 597 535 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 56 + 22 + 5 + 9 + 16 + 15 + 15 + 36 + 28 + 28 + 42 + 24 + 2 + 7 + 9 + 6 + 44 + 45 + 24 + 42 + 7 + 2 + 4 + 4 + 26 + 26 + 39 + 80 + 89 + 16 + 12 + 15 + 26 + 31 + 26 + 2 + 9 + 3 + 26 + 26 + 0 + 12 + 12 + 19 + 80 + 89 + 12 + 16 + 4 + 4 + 0 + 0 + 32 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP2 +IP +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +561 -20 m 0,0,1 + 400 -20 400 -20 288 59 c 1,2,3 + 236 -19 236 -19 201 -92 c 1,4,-1 + 77 0 l 1,5,6 + 149 116 149 116 186 166 c 1,7,8 + 87 310 87 310 87 542 c 0,9,10 + 87 815 87 815 207 958.5 c 128,-1,11 + 327 1102 327 1102 551 1102 c 0,12,13 + 717 1102 717 1102 826.5 1016 c 128,-1,14 + 936 930 936 930 964 779 c 1,15,-1 + 779 765 l 1,16,17 + 765 855 765 855 708 908 c 128,-1,18 + 651 961 651 961 546 961 c 0,19,20 + 403 961 403 961 339 866 c 128,-1,21 + 275 771 275 771 275 546 c 0,22,23 + 275 416 275 416 309 314 c 1,24,25 + 500 510 500 510 698 510 c 0,26,27 + 965 510 965 510 965 281 c 0,28,29 + 965 193 965 193 914.5 122 c 128,-1,30 + 864 51 864 51 774.5 15.5 c 128,-1,31 + 685 -20 685 -20 561 -20 c 0,0,1 +560 114 m 0,32,33 + 643 114 643 114 699.5 135 c 128,-1,34 + 756 156 756 156 786.5 190 c 128,-1,35 + 817 224 817 224 817 265 c 0,36,37 + 817 322 817 322 785 347 c 128,-1,38 + 753 372 753 372 693 372 c 0,39,40 + 610 372 610 372 528.5 320.5 c 128,-1,41 + 447 269 447 269 383 186 c 1,42,43 + 451 114 451 114 560 114 c 0,32,33 +EndSplineSet +EndChar + +StartChar: uni0256 +Encoding: 598 598 536 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 34 + 19 + 4 + 4 + 22 + 28 + 12 + 22 + 12 + 40 + 0 + 41 + 20 + 0 + 17 + 5 + 14 + 9 + 14 + 37 + 80 + 89 + 14 + 16 + 9 + 31 + 80 + 89 + 9 + 22 + 2 + 25 + 80 + 89 + 2 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 990 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1198 -413 m 1,0,1 + 1148 -425 1148 -425 1074 -425 c 0,2,3 + 827 -425 827 -425 827 -129 c 2,4,-1 + 827 174 l 1,5,-1 + 823 174 l 1,6,7 + 773 70 773 70 689.5 25 c 128,-1,8 + 606 -20 606 -20 484 -20 c 0,9,10 + 279 -20 279 -20 182.5 118 c 128,-1,11 + 86 256 86 256 86 536 c 0,12,13 + 86 1102 86 1102 484 1102 c 0,14,15 + 607 1102 607 1102 689 1057 c 128,-1,16 + 771 1012 771 1012 821 914 c 1,17,-1 + 823 914 l 1,18,-1 + 821 1035 l 1,19,-1 + 821 1484 l 1,20,-1 + 1001 1484 l 1,21,-1 + 1001 -115 l 2,22,23 + 1001 -196 1001 -196 1029 -229.5 c 128,-1,24 + 1057 -263 1057 -263 1112 -263 c 0,25,26 + 1150 -263 1150 -263 1198 -251 c 1,27,-1 + 1198 -413 l 1,0,1 +275 542 m 0,28,29 + 275 315 275 315 335 217 c 128,-1,30 + 395 119 395 119 530 119 c 0,31,32 + 683 119 683 119 752 225 c 128,-1,33 + 821 331 821 331 821 554 c 0,34,35 + 821 769 821 769 752 869 c 128,-1,36 + 683 969 683 969 532 969 c 0,37,38 + 396 969 396 969 335.5 868.5 c 128,-1,39 + 275 768 275 768 275 542 c 0,28,29 +EndSplineSet +EndChar + +StartChar: uni0257 +Encoding: 599 599 537 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 20 + 6 + 37 + 37 + 0 + 31 + 13 + 0 + 13 + 43 + 25 + 44 + 23 + 28 + 80 + 89 + 23 + 1 + 18 + 6 + 15 + 10 + 15 + 40 + 80 + 89 + 15 + 16 + 10 + 34 + 80 + 89 + 10 + 22 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1001 223 m 2,0,1 + 1001 54 1001 54 1007 0 c 1,2,-1 + 835 0 l 1,3,4 + 832 16 832 16 828.5 74 c 128,-1,5 + 825 132 825 132 825 174 c 1,6,-1 + 821 174 l 1,7,8 + 771 70 771 70 688.5 25 c 128,-1,9 + 606 -20 606 -20 484 -20 c 0,10,11 + 279 -20 279 -20 182.5 118 c 128,-1,12 + 86 256 86 256 86 536 c 0,13,14 + 86 1102 86 1102 484 1102 c 0,15,16 + 607 1102 607 1102 689 1057 c 128,-1,17 + 771 1012 771 1012 821 914 c 1,18,-1 + 823 914 l 1,19,-1 + 821 1035 l 1,20,-1 + 821 1202 l 2,21,22 + 821 1498 821 1498 1104 1498 c 0,23,24 + 1169 1498 1169 1498 1239 1483 c 1,25,-1 + 1239 1315 l 1,26,27 + 1181 1336 1181 1336 1122 1336 c 0,28,29 + 1001 1336 1001 1336 1001 1188 c 2,30,-1 + 1001 223 l 2,0,1 +275 542 m 0,31,32 + 275 315 275 315 335 217 c 128,-1,33 + 395 119 395 119 530 119 c 0,34,35 + 683 119 683 119 752 225 c 128,-1,36 + 821 331 821 331 821 554 c 0,37,38 + 821 769 821 769 752 869 c 128,-1,39 + 683 969 683 969 532 969 c 0,40,41 + 396 969 396 969 335.5 868.5 c 128,-1,42 + 275 768 275 768 275 542 c 0,31,32 +EndSplineSet +EndChar + +StartChar: uni0258 +Encoding: 600 600 538 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 19 + 18 + 18 + 6 + 12 + 11 + 11 + 25 + 0 + 6 + 0 + 27 + 26 + 12 + 12 + 0 + 15 + 25 + 0 + 80 + 89 + 25 + 25 + 9 + 3 + 9 + 15 + 80 + 89 + 9 + 22 + 3 + 22 + 80 + 89 + 3 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 980 900 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +87 503 m 1,0,-1 + 87 527 l 2,1,2 + 87 1102 87 1102 564 1102 c 0,3,4 + 797 1102 797 1102 922.5 959 c 128,-1,5 + 1048 816 1048 816 1048 548 c 0,6,7 + 1048 266 1048 266 922.5 123 c 128,-1,8 + 797 -20 797 -20 557 -20 c 0,9,10 + 213 -20 213 -20 116 236 c 1,11,-1 + 274 281 l 1,12,13 + 299 209 299 209 369.5 162 c 128,-1,14 + 440 115 440 115 557 115 c 0,15,16 + 704 115 704 115 781.5 215.5 c 128,-1,17 + 859 316 859 316 859 503 c 1,18,-1 + 87 503 l 1,0,-1 +857 641 m 1,19,20 + 851 795 851 795 774 882 c 128,-1,21 + 697 969 697 969 567 969 c 0,22,23 + 432 969 432 969 360 890.5 c 128,-1,24 + 288 812 288 812 273 641 c 1,25,-1 + 857 641 l 1,19,20 +EndSplineSet +EndChar + +StartChar: uni0259 +Encoding: 601 601 539 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 0 + 25 + 25 + 12 + 6 + 7 + 7 + 19 + 17 + 12 + 17 + 27 + 26 + 18 + 19 + 80 + 89 + 18 + 6 + 18 + 6 + 15 + 9 + 15 + 22 + 80 + 89 + 15 + 22 + 9 + 3 + 80 + 89 + 9 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +859 579 m 1,0,1 + 859 765 859 765 782 866 c 128,-1,2 + 705 967 705 967 557 967 c 0,3,4 + 440 967 440 967 369.5 920 c 128,-1,5 + 299 873 299 873 274 801 c 1,6,-1 + 116 846 l 1,7,8 + 213 1102 213 1102 557 1102 c 0,9,10 + 797 1102 797 1102 922.5 959 c 128,-1,11 + 1048 816 1048 816 1048 534 c 0,12,13 + 1048 266 1048 266 922.5 123 c 128,-1,14 + 797 -20 797 -20 564 -20 c 0,15,16 + 87 -20 87 -20 87 555 c 2,17,-1 + 87 579 l 1,18,-1 + 859 579 l 1,0,1 +273 441 m 1,19,20 + 288 270 288 270 360 191.5 c 128,-1,21 + 432 113 432 113 567 113 c 0,22,23 + 698 113 698 113 774.5 200.5 c 128,-1,24 + 851 288 851 288 857 441 c 1,25,-1 + 273 441 l 1,19,20 +EndSplineSet +EndChar + +StartChar: uni025A +Encoding: 602 602 540 +Width: 1513 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 6 + 7 + 7 + 33 + 31 + 0 + 39 + 39 + 11 + 26 + 19 + 26 + 31 + 3 + 41 + 42 + 16 + 21 + 83 + 89 + 24 + 40 + 0 + 40 + 80 + 89 + 6 + 6 + 3 + 32 + 11 + 0 + 16 + 0 + 16 + 0 + 29 + 9 + 29 + 36 + 80 + 89 + 29 + 22 + 9 + 3 + 80 + 89 + 9 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1513 1540 basechar 0 +AnchorPoint: "Anchor-20" 1513 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +844 723 m 1,0,1 + 814 850 814 850 741 908.5 c 128,-1,2 + 668 967 668 967 557 967 c 0,3,4 + 440 967 440 967 369.5 920 c 128,-1,5 + 299 873 299 873 274 801 c 1,6,-1 + 116 846 l 1,7,8 + 213 1102 213 1102 557 1102 c 0,9,10 + 936 1102 936 1102 1024 754 c 1,11,-1 + 1172 780 l 1,12,-1 + 1200 651 l 2,13,14 + 1215 583 1215 583 1240.5 549.5 c 128,-1,15 + 1266 516 1266 516 1316 516 c 0,16,17 + 1368 516 1368 516 1448 556 c 1,18,-1 + 1507 409 l 1,19,20 + 1381 357 1381 357 1296 357 c 0,21,22 + 1197 357 1197 357 1130.5 429 c 128,-1,23 + 1064 501 1064 501 1044 627 c 1,24,25 + 1048 587 1048 587 1048 534 c 0,26,27 + 1048 266 1048 266 922.5 123 c 128,-1,28 + 797 -20 797 -20 564 -20 c 0,29,30 + 87 -20 87 -20 87 555 c 2,31,-1 + 87 579 l 1,32,-1 + 844 723 l 1,0,1 +270 468 m 1,33,34 + 285 284 285 284 356 198.5 c 128,-1,35 + 427 113 427 113 567 113 c 0,36,37 + 706 113 706 113 785 212.5 c 128,-1,38 + 864 312 864 312 864 500 c 1,39,-1 + 861 579 l 1,40,-1 + 270 468 l 1,33,34 +EndSplineSet +EndChar + +StartChar: uni025B +Encoding: 603 603 541 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 65 + 21 + 3 + 11 + 17 + 5 + 5 + 26 + 0 + 12 + 11 + 11 + 31 + 32 + 0 + 32 + 38 + 39 + 3 + 20 + 23 + 20 + 23 + 80 + 89 + 0 + 31 + 16 + 31 + 96 + 31 + 3 + 9 + 175 + 20 + 1 + 15 + 20 + 207 + 20 + 223 + 20 + 3 + 11 + 3 + 31 + 20 + 12 + 12 + 20 + 31 + 3 + 35 + 8 + 35 + 29 + 80 + 89 + 35 + 22 + 8 + 14 + 80 + 89 + 8 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 939 1540 basechar 0 +AnchorPoint: "Anchor-20" 939 -380 basechar 0 +AnchorPoint: "Anchor-18" 780 900 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 480 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +72 289 m 0,0,1 + 72 400 72 400 136 469 c 128,-1,2 + 200 538 200 538 321 558 c 1,3,4 + 101 625 101 625 101 803 c 0,5,6 + 101 942 101 942 201.5 1022 c 128,-1,7 + 302 1102 302 1102 478 1102 c 0,8,9 + 640 1102 640 1102 741 1018 c 128,-1,10 + 842 934 842 934 863 781 c 1,11,-1 + 684 765 l 1,12,13 + 653 969 653 969 480 969 c 0,14,15 + 387 969 387 969 334 924 c 128,-1,16 + 281 879 281 879 281 794 c 0,17,18 + 281 716 281 716 337.5 670 c 128,-1,19 + 394 624 394 624 486 624 c 2,20,-1 + 576 624 l 1,21,-1 + 576 483 l 1,22,-1 + 480 483 l 2,23,24 + 363 483 363 483 307.5 435 c 128,-1,25 + 252 387 252 387 252 300 c 0,26,27 + 252 212 252 212 311.5 162.5 c 128,-1,28 + 371 113 371 113 476 113 c 0,29,30 + 689 113 689 113 709 336 c 1,31,-1 + 886 322 l 1,32,33 + 870 149 870 149 764 65 c 128,-1,34 + 658 -19 658 -19 476 -19 c 0,35,36 + 283 -19 283 -19 177.5 63.5 c 128,-1,37 + 72 146 72 146 72 289 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni025C +Encoding: 604 604 542 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 70 + 35 + 16 + 27 + 21 + 33 + 33 + 12 + 0 + 26 + 27 + 27 + 7 + 6 + 0 + 6 + 39 + 38 + 0 + 39 + 1 + 10 + 3 + 35 + 17 + 16 + 17 + 16 + 80 + 89 + 0 + 7 + 16 + 7 + 96 + 7 + 3 + 9 + 175 + 17 + 1 + 15 + 17 + 207 + 17 + 223 + 17 + 3 + 11 + 3 + 7 + 17 + 26 + 26 + 17 + 7 + 3 + 3 + 30 + 30 + 24 + 80 + 89 + 30 + 16 + 3 + 9 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 939 1540 basechar 0 +AnchorPoint: "Anchor-20" 939 -380 basechar 0 +AnchorPoint: "Anchor-18" 810 900 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 480 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +867 289 m 0,0,1 + 867 146 867 146 761 63.5 c 128,-1,2 + 655 -19 655 -19 463 -19 c 0,3,4 + 280 -19 280 -19 174.5 65 c 128,-1,5 + 69 149 69 149 53 322 c 1,6,-1 + 230 336 l 1,7,8 + 250 113 250 113 463 113 c 0,9,10 + 571 113 571 113 629 160 c 128,-1,11 + 687 207 687 207 687 300 c 0,12,13 + 687 387 687 387 631 435 c 128,-1,14 + 575 483 575 483 459 483 c 2,15,-1 + 363 483 l 1,16,-1 + 363 624 l 1,17,-1 + 453 624 l 2,18,19 + 546 624 546 624 602 670 c 128,-1,20 + 658 716 658 716 658 794 c 0,21,22 + 658 876 658 876 605.5 922.5 c 128,-1,23 + 553 969 553 969 459 969 c 0,24,25 + 286 969 286 969 255 765 c 1,26,-1 + 76 781 l 1,27,28 + 97 933 97 933 198 1017.5 c 128,-1,29 + 299 1102 299 1102 461 1102 c 0,30,31 + 638 1102 638 1102 738 1021 c 128,-1,32 + 838 940 838 940 838 803 c 0,33,34 + 838 625 838 625 618 558 c 1,35,36 + 739 538 739 538 803 469 c 128,-1,37 + 867 400 867 400 867 289 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni025D +Encoding: 605 605 543 +Width: 1293 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 71 + 49 + 16 + 27 + 35 + 21 + 47 + 47 + 12 + 0 + 26 + 27 + 27 + 7 + 6 + 6 + 0 + 42 + 3 + 53 + 52 + 49 + 17 + 16 + 17 + 16 + 80 + 89 + 38 + 44 + 83 + 89 + 47 + 33 + 33 + 26 + 30 + 175 + 17 + 1 + 15 + 17 + 207 + 17 + 223 + 17 + 3 + 11 + 3 + 7 + 17 + 38 + 26 + 26 + 38 + 17 + 7 + 4 + 3 + 30 + 30 + 24 + 80 + 89 + 30 + 16 + 3 + 9 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1293 1540 basechar 0 +AnchorPoint: "Anchor-20" 1293 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 480 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +867 289 m 0,0,1 + 867 146 867 146 761 63.5 c 128,-1,2 + 655 -19 655 -19 463 -19 c 0,3,4 + 280 -19 280 -19 174.5 65 c 128,-1,5 + 69 149 69 149 53 322 c 1,6,-1 + 230 336 l 1,7,8 + 250 113 250 113 463 113 c 0,9,10 + 571 113 571 113 629 160 c 128,-1,11 + 687 207 687 207 687 300 c 0,12,13 + 687 387 687 387 631 435 c 128,-1,14 + 575 483 575 483 459 483 c 2,15,-1 + 363 483 l 1,16,-1 + 363 624 l 1,17,-1 + 453 624 l 2,18,19 + 546 624 546 624 602 670 c 128,-1,20 + 658 716 658 716 658 794 c 0,21,22 + 658 876 658 876 605.5 922.5 c 128,-1,23 + 553 969 553 969 459 969 c 0,24,25 + 286 969 286 969 255 765 c 1,26,-1 + 76 781 l 1,27,28 + 97 933 97 933 198 1017.5 c 128,-1,29 + 299 1102 299 1102 461 1102 c 0,30,31 + 599 1102 599 1102 692 1051.5 c 128,-1,32 + 785 1001 785 1001 819 909 c 1,33,-1 + 956 933 l 1,34,-1 + 984 804 l 2,35,36 + 999 736 999 736 1022.5 702.5 c 128,-1,37 + 1046 669 1046 669 1096 669 c 0,38,39 + 1133 669 1133 669 1163.5 680.5 c 128,-1,40 + 1194 692 1194 692 1228 709 c 1,41,-1 + 1287 562 l 1,42,43 + 1161 510 1161 510 1076 510 c 0,44,45 + 985 510 985 510 921 570.5 c 128,-1,46 + 857 631 857 631 831 743 c 1,47,48 + 798 613 798 613 618 558 c 1,49,50 + 739 538 739 538 803 469 c 128,-1,51 + 867 400 867 400 867 289 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni025E +Encoding: 606 606 544 +Width: 1039 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 0 + 30 + 12 + 22 + 16 + 28 + 28 + 7 + 33 + 22 + 33 + 39 + 40 + 30 + 12 + 11 + 12 + 11 + 80 + 89 + 15 + 12 + 207 + 12 + 223 + 12 + 3 + 11 + 3 + 12 + 12 + 36 + 25 + 36 + 4 + 80 + 89 + 36 + 22 + 25 + 19 + 80 + 89 + 25 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1039 1540 basechar 0 +AnchorPoint: "Anchor-20" 1039 -380 basechar 0 +AnchorPoint: "Anchor-18" 920 900 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 560 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +264 556 m 0,0,1 + 264 397 264 397 297.5 300.5 c 128,-1,2 + 331 204 331 204 394 158.5 c 128,-1,3 + 457 113 457 113 571 113 c 0,4,5 + 679 113 679 113 737 160 c 128,-1,6 + 795 207 795 207 795 300 c 0,7,8 + 795 387 795 387 739 435 c 128,-1,9 + 683 483 683 483 567 483 c 2,10,-1 + 471 483 l 1,11,-1 + 471 624 l 1,12,-1 + 561 624 l 2,13,14 + 654 624 654 624 710 670 c 128,-1,15 + 766 716 766 716 766 794 c 0,16,17 + 766 876 766 876 713.5 922.5 c 128,-1,18 + 661 969 661 969 567 969 c 0,19,20 + 406 969 406 969 335 864.5 c 128,-1,21 + 264 760 264 760 264 556 c 0,0,1 +75 556 m 0,22,23 + 75 817 75 817 198 959.5 c 128,-1,24 + 321 1102 321 1102 548 1102 c 0,25,26 + 736 1102 736 1102 841 1022.5 c 128,-1,27 + 946 943 946 943 946 803 c 0,28,29 + 946 625 946 625 726 558 c 1,30,31 + 847 538 847 538 911 469 c 128,-1,32 + 975 400 975 400 975 289 c 0,33,34 + 975 146 975 146 869 63.5 c 128,-1,35 + 763 -19 763 -19 571 -19 c 0,36,37 + 320 -19 320 -19 197.5 125 c 128,-1,38 + 75 269 75 269 75 556 c 0,22,23 +EndSplineSet +EndChar + +StartChar: uni025F +Encoding: 607 607 545 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 3 + 0 + 0 + 6 + 19 + 21 + 13 + 13 + 19 + 4 + 3 + 23 + 22 + 20 + 21 + 81 + 89 + 20 + 21 + 10 + 15 + 80 + 89 + 10 + 6 + 3 + 81 + 89 + 6 + 21 + 1 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 150 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +219 131 m 1,0,-1 + 219 1082 l 1,1,-1 + 399 1082 l 1,2,-1 + 399 131 l 1,3,-1 + 551 131 l 1,4,-1 + 551 0 l 1,5,-1 + 399 0 l 1,6,-1 + 399 -148 l 2,7,8 + 399 -296 399 -296 334 -361 c 128,-1,9 + 269 -426 269 -426 135 -426 c 0,10,11 + 60 -426 60 -426 8 -414 c 1,12,-1 + 8 -277 l 1,13,14 + 53 -285 53 -285 88 -285 c 0,15,16 + 157 -285 157 -285 188 -250 c 128,-1,17 + 219 -215 219 -215 219 -123 c 2,18,-1 + 219 0 l 1,19,-1 + 8 0 l 1,20,-1 + 8 131 l 1,21,-1 + 219 131 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0260 +Encoding: 608 608 546 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 40 + 27 + 11 + 11 + 0 + 6 + 5 + 5 + 47 + 19 + 0 + 19 + 54 + 34 + 55 + 30 + 36 + 80 + 89 + 30 + 1 + 25 + 12 + 22 + 16 + 22 + 44 + 80 + 89 + 22 + 16 + 16 + 50 + 80 + 89 + 16 + 21 + 2 + 9 + 80 + 89 + 6 + 2 + 27 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 560 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1001 31 m 2,0,1 + 1001 -425 1001 -425 548 -425 c 0,2,3 + 371 -425 371 -425 266 -355.5 c 128,-1,4 + 161 -286 161 -286 131 -158 c 1,5,-1 + 312 -132 l 1,6,7 + 330 -207 330 -207 391.5 -247.5 c 128,-1,8 + 453 -288 453 -288 553 -288 c 0,9,10 + 822 -288 822 -288 822 27 c 2,11,-1 + 822 201 l 1,12,-1 + 820 201 l 1,13,14 + 769 97 769 97 680 44.5 c 128,-1,15 + 591 -8 591 -8 472 -8 c 0,16,17 + 273 -8 273 -8 179.5 124 c 128,-1,18 + 86 256 86 256 86 539 c 0,19,20 + 86 826 86 826 186.5 962.5 c 128,-1,21 + 287 1099 287 1099 492 1099 c 0,22,23 + 607 1099 607 1099 691 1046.5 c 128,-1,24 + 775 994 775 994 821 897 c 1,25,-1 + 823 897 l 1,26,-1 + 823 1202 l 2,27,28 + 823 1347 823 1347 896 1422.5 c 128,-1,29 + 969 1498 969 1498 1112 1498 c 0,30,31 + 1144 1498 1144 1498 1163 1496.5 c 128,-1,32 + 1182 1495 1182 1495 1237 1484 c 1,33,-1 + 1237 1318 l 1,34,35 + 1187 1336 1187 1336 1130 1336 c 0,36,37 + 1066 1336 1066 1336 1033.5 1297 c 128,-1,38 + 1001 1258 1001 1258 1001 1188 c 2,39,-1 + 1001 31 l 2,0,1 +822 541 m 0,40,41 + 822 673 822 673 786 768.5 c 128,-1,42 + 750 864 750 864 684.5 914.5 c 128,-1,43 + 619 965 619 965 536 965 c 0,44,45 + 398 965 398 965 335 865 c 128,-1,46 + 272 765 272 765 272 541 c 0,47,48 + 272 319 272 319 331 222 c 128,-1,49 + 390 125 390 125 533 125 c 0,50,51 + 618 125 618 125 684 175 c 128,-1,52 + 750 225 750 225 786 318.5 c 128,-1,53 + 822 412 822 412 822 541 c 0,40,41 +EndSplineSet +EndChar + +StartChar: uni0261 +Encoding: 609 609 547 +Width: 1139 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 560 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 74 103 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni0262 +Encoding: 610 610 548 +Width: 1144 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 21 + 28 + 8 + 2 + 15 + 14 + 14 + 26 + 2 + 8 + 2 + 29 + 30 + 0 + 28 + 80 + 89 + 0 + 15 + 0 + 15 + 5 + 11 + 11 + 18 + 80 + 89 + 11 + 16 + 5 + 24 + 80 + 89 + 5 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 640 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1144 1540 basechar 0 +AnchorPoint: "Anchor-20" 1144 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +576 541 m 1,0,-1 + 1007 541 l 1,1,-1 + 1007 123 l 1,2,3 + 932 55 932 55 824.5 17.5 c 128,-1,4 + 717 -20 717 -20 595 -20 c 0,5,6 + 350 -20 350 -20 222 123 c 128,-1,7 + 94 266 94 266 94 542 c 0,8,9 + 94 812 94 812 219.5 957 c 128,-1,10 + 345 1102 345 1102 574 1102 c 0,11,12 + 740 1102 740 1102 849.5 1016 c 128,-1,13 + 959 930 959 930 987 779 c 1,14,-1 + 802 765 l 1,15,16 + 788 855 788 855 731 908 c 128,-1,17 + 674 961 674 961 569 961 c 0,18,19 + 416 961 416 961 348 858.5 c 128,-1,20 + 280 756 280 756 280 546 c 0,21,22 + 280 324 280 324 356 221 c 128,-1,23 + 432 118 432 118 591 118 c 0,24,25 + 722 118 722 118 825 185 c 1,26,-1 + 825 404 l 1,27,-1 + 576 404 l 1,28,-1 + 576 541 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0263 +Encoding: 611 611 549 +Width: 1026 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 2 + 1 + 22 + 6 + 20 + 3 + 0 + 4 + 14 + 18 + 8 + 4 + 5 + 5 + 8 + 14 + 1 + 4 + 28 + 29 + 3 + 6 + 0 + 20 + 4 + 11 + 1 + 11 + 25 + 80 + 89 + 11 + 27 + 4 + 1 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 500 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1026 1540 basechar 0 +AnchorPoint: "Anchor-20" 1026 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1260 basechar 0 +AnchorPoint: "Anchor-14" 510 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +400 150 m 1,0,-1 + 7 1082 l 1,1,-1 + 199 1082 l 1,2,-1 + 508 347 l 1,3,-1 + 826 1082 l 1,4,-1 + 1017 1082 l 1,5,-1 + 613 151 l 1,6,7 + 740 -71 740 -71 740 -188 c 0,8,9 + 740 -297 740 -297 677.5 -361 c 128,-1,10 + 615 -425 615 -425 508 -425 c 0,11,12 + 402 -425 402 -425 339.5 -361 c 128,-1,13 + 277 -297 277 -297 277 -188 c 0,14,15 + 277 -148 277 -148 288.5 -103 c 128,-1,16 + 300 -58 300 -58 318.5 -12 c 128,-1,17 + 337 34 337 34 400 150 c 1,0,-1 +584 -182 m 0,18,19 + 584 -99 584 -99 508 37 c 1,20,21 + 433 -101 433 -101 433 -182 c 0,22,23 + 433 -228 433 -228 452.5 -254 c 128,-1,24 + 472 -280 472 -280 508 -280 c 0,25,26 + 545 -280 545 -280 564.5 -254.5 c 128,-1,27 + 584 -229 584 -229 584 -182 c 0,18,19 +EndSplineSet +EndChar + +StartChar: uni0264 +Encoding: 612 612 550 +Width: 1263 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 9 + 33 + 0 + 27 + 16 + 27 + 24 + 4 + 52 + 36 + 33 + 44 + 8 + 57 + 58 + 52 + 24 + 36 + 4 + 4 + 30 + 47 + 43 + 43 + 47 + 47 + 40 + 80 + 89 + 47 + 15 + 30 + 11 + 80 + 89 + 30 + 22 + 13 + 20 + 80 + 89 + 17 + 17 + 13 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 640 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1263 1540 basechar 0 +AnchorPoint: "Anchor-20" 1263 -380 basechar 0 +AnchorPoint: "Anchor-18" 1152 1000 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +703 214 m 0,0,1 + 703 235 703 235 698 256 c 128,-1,2 + 693 277 693 277 682.5 302.5 c 128,-1,3 + 672 328 672 328 631 404 c 1,4,5 + 619 381 619 381 606 357 c 128,-1,6 + 593 333 593 333 583 309 c 128,-1,7 + 573 285 573 285 566.5 261.5 c 128,-1,8 + 560 238 560 238 560 214 c 0,9,10 + 560 121 560 121 631 121 c 0,11,12 + 703 121 703 121 703 214 c 0,0,1 +961 1089 m 0,13,14 + 1037 1089 1037 1089 1109 1041 c 128,-1,15 + 1181 993 1181 993 1237 901 c 1,16,-1 + 1123 790 l 1,17,-1 + 1090 840 l 2,18,19 + 1027 931 1027 931 964 931 c 0,20,21 + 929 931 929 931 906.5 904.5 c 128,-1,22 + 884 878 884 878 861 825 c 2,23,-1 + 730 522 l 1,24,-1 + 781 428 l 2,25,26 + 863 283 863 283 863 202 c 0,27,28 + 863 96 863 96 800.5 36 c 128,-1,29 + 738 -24 738 -24 631 -24 c 0,30,31 + 525 -24 525 -24 462.5 36 c 128,-1,32 + 400 96 400 96 400 202 c 0,33,34 + 400 288 400 288 480 428 c 1,35,-1 + 529 521 l 1,36,-1 + 398 825 l 2,37,38 + 375 878 375 878 352.5 904.5 c 128,-1,39 + 330 931 330 931 295 931 c 0,40,41 + 232 931 232 931 170 840 c 2,42,-1 + 136 790 l 1,43,-1 + 22 901 l 1,44,45 + 78 993 78 993 150 1041 c 128,-1,46 + 222 1089 222 1089 298 1089 c 0,47,48 + 395 1089 395 1089 453.5 1045.5 c 128,-1,49 + 512 1002 512 1002 553 892 c 2,50,-1 + 608 741 l 1,51,-1 + 630 671 l 1,52,-1 + 651 741 l 1,53,-1 + 706 892 l 2,54,55 + 746 1001 746 1001 804.5 1045 c 128,-1,56 + 863 1089 863 1089 961 1089 c 0,13,14 +EndSplineSet +EndChar + +StartChar: uni0265 +Encoding: 613 613 551 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 20 + 16 + 19 + 9 + 6 + 19 + 6 + 25 + 24 + 20 + 0 + 3 + 17 + 7 + 15 + 3 + 13 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +831 186 m 1,0,1 + 772 77 772 77 690 29 c 128,-1,2 + 608 -19 608 -19 485 -19 c 0,3,4 + 309 -19 309 -19 225.5 68.5 c 128,-1,5 + 142 156 142 156 142 362 c 2,6,-1 + 142 1083 l 1,7,-1 + 323 1083 l 1,8,-1 + 323 397 l 2,9,10 + 323 283 323 283 344 227.5 c 128,-1,11 + 365 172 365 172 413 146 c 128,-1,12 + 461 120 461 120 546 120 c 0,13,14 + 673 120 673 120 749.5 208 c 128,-1,15 + 826 296 826 296 826 445 c 2,16,-1 + 826 1083 l 1,17,-1 + 1006 1083 l 1,18,-1 + 1006 -401 l 1,19,-1 + 826 -401 l 1,20,-1 + 826 -15 l 1,21,-1 + 830 112 l 1,22,-1 + 834 186 l 1,23,-1 + 831 186 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0266 +Encoding: 614 614 552 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 29 + 17 + 17 + 18 + 8 + 7 + 7 + 24 + 18 + 3 + 32 + 33 + 21 + 26 + 80 + 89 + 21 + 1 + 0 + 3 + 8 + 18 + 21 + 3 + 13 + 80 + 89 + 3 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +317 897 m 1,0,1 + 375 1003 375 1003 456.5 1052.5 c 128,-1,2 + 538 1102 538 1102 663 1102 c 0,3,4 + 839 1102 839 1102 922.5 1014.5 c 128,-1,5 + 1006 927 1006 927 1006 721 c 2,6,-1 + 1006 0 l 1,7,-1 + 825 0 l 1,8,-1 + 825 686 l 2,9,10 + 825 800 825 800 804 855.5 c 128,-1,11 + 783 911 783 911 735 937 c 128,-1,12 + 687 963 687 963 602 963 c 0,13,14 + 475 963 475 963 398.5 875 c 128,-1,15 + 322 787 322 787 322 638 c 2,16,-1 + 322 0 l 1,17,-1 + 142 0 l 1,18,-1 + 142 1202 l 2,19,20 + 142 1498 142 1498 426 1498 c 0,21,22 + 495 1498 495 1498 568 1482 c 1,23,-1 + 568 1317 l 1,24,25 + 515 1336 515 1336 449 1336 c 0,26,27 + 323 1336 323 1336 323 1194 c 2,28,-1 + 323 1098 l 2,29,30 + 323 960 323 960 314 897 c 1,31,-1 + 317 897 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0267 +Encoding: 615 615 553 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 19 + 10 + 2 + 0 + 28 + 28 + 29 + 29 + 35 + 14 + 10 + 4 + 41 + 40 + 32 + 37 + 80 + 89 + 32 + 1 + 2 + 6 + 29 + 21 + 12 + 17 + 80 + 89 + 12 + 27 + 6 + 24 + 80 + 89 + 6 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 740 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +323 1098 m 2,0,1 + 323 960 323 960 314 897 c 1,2,-1 + 317 897 l 1,3,4 + 375 1003 375 1003 456.5 1052.5 c 128,-1,5 + 538 1102 538 1102 663 1102 c 0,6,7 + 839 1102 839 1102 922.5 1014.5 c 128,-1,8 + 1006 927 1006 927 1006 721 c 2,9,-1 + 1006 -129 l 2,10,11 + 1006 -425 1006 -425 725 -425 c 0,12,13 + 674 -425 674 -425 589 -409 c 1,14,-1 + 589 -242 l 1,15,16 + 647 -263 647 -263 708 -263 c 0,17,18 + 825 -263 825 -263 825 -115 c 2,19,-1 + 825 686 l 2,20,21 + 825 800 825 800 804 855.5 c 128,-1,22 + 783 911 783 911 735 937 c 128,-1,23 + 687 963 687 963 602 963 c 0,24,25 + 475 963 475 963 398.5 875 c 128,-1,26 + 322 787 322 787 322 638 c 2,27,-1 + 322 0 l 1,28,-1 + 142 0 l 1,29,-1 + 142 1202 l 2,30,31 + 142 1498 142 1498 426 1498 c 0,32,33 + 495 1498 495 1498 568 1482 c 1,34,-1 + 568 1317 l 1,35,36 + 515 1336 515 1336 449 1336 c 0,37,38 + 323 1336 323 1336 323 1194 c 2,39,-1 + 323 1098 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0268 +Encoding: 616 616 554 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 15 + 8 + 8 + 12 + 9 + 9 + 16 + 17 + 13 + 12 + 83 + 89 + 13 + 0 + 7 + 11 + 0 + 11 + 80 + 89 + 4 + 0 + 0 + 2 + 9 + 21 + 2 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-18" 310 1100 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +24 617 m 1,0,-1 + 137 617 l 1,1,-1 + 137 1082 l 1,2,-1 + 317 1082 l 1,3,-1 + 317 617 l 1,4,-1 + 431 617 l 1,5,-1 + 431 484 l 1,6,-1 + 317 484 l 1,7,-1 + 317 0 l 1,8,-1 + 137 0 l 1,9,-1 + 137 484 l 1,10,-1 + 24 484 l 1,11,-1 + 24 617 l 1,0,-1 +137 1312 m 1,12,-1 + 137 1484 l 1,13,-1 + 317 1484 l 1,14,-1 + 317 1312 l 1,15,-1 + 137 1312 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: uni0269 +Encoding: 617 617 555 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 0 + 10 + 5 + 10 + 14 + 13 + 11 + 15 + 8 + 3 + 83 + 89 + 8 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 300 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 200 1200 basechar 0 +AnchorPoint: "Anchor-15" 300 1260 basechar 0 +AnchorPoint: "Anchor-14" 320 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +266 293 m 2,0,1 + 266 212 266 212 294.5 177 c 128,-1,2 + 323 142 323 142 378 142 c 0,3,4 + 411 142 411 142 455 153 c 1,5,-1 + 455 -7 l 1,6,7 + 405 -17 405 -17 360 -17 c 0,8,9 + 86 -17 86 -17 86 279 c 2,10,-1 + 86 1082 l 1,11,-1 + 266 1082 l 1,12,-1 + 266 293 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni026A +Encoding: 618 618 556 +Width: 729 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 10 + 1 + 0 + 5 + 7 + 3 + 3 + 5 + 1 + 3 + 13 + 12 + 11 + 7 + 8 + 7 + 80 + 89 + 8 + 15 + 0 + 4 + 3 + 4 + 80 + 89 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 729 1540 basechar 0 +AnchorPoint: "Anchor-20" 729 -380 basechar 0 +AnchorPoint: "Anchor-18" 560 1100 basechar 0 +AnchorPoint: "Anchor-16" 360 1200 basechar 0 +AnchorPoint: "Anchor-15" 600 1260 basechar 0 +AnchorPoint: "Anchor-14" 360 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +455 140 m 1,0,-1 + 662 140 l 1,1,-1 + 662 0 l 1,2,-1 + 68 0 l 1,3,-1 + 68 140 l 1,4,-1 + 274 140 l 1,5,-1 + 274 943 l 1,6,-1 + 68 943 l 1,7,-1 + 68 1082 l 1,8,-1 + 662 1082 l 1,9,-1 + 662 943 l 1,10,-1 + 455 943 l 1,11,-1 + 455 140 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni026B +Encoding: 619 619 557 +Width: 670 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 14 + 26 + 26 + 11 + 0 + 0 + 7 + 20 + 20 + 28 + 7 + 27 + 16 + 23 + 80 + 89 + 19 + 19 + 16 + 16 + 10 + 7 + 7 + 3 + 10 + 3 + 80 + 89 + 10 + 10 + 12 + 0 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SHP[rp1] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 280 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 670 1540 basechar 0 +AnchorPoint: "Anchor-20" 670 -380 basechar 0 +AnchorPoint: "Anchor-16" 340 1580 basechar 0 +AnchorPoint: "Anchor-15" 460 1540 basechar 0 +AnchorPoint: "Anchor-14" 340 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +248 0 m 1,0,-1 + 248 715 l 1,1,2 + 222 723 222 723 196 723 c 0,3,4 + 157 723 157 723 143.5 699 c 128,-1,5 + 130 675 130 675 130 628 c 1,6,-1 + 0 628 l 1,7,8 + 2 732 2 732 55.5 794 c 128,-1,9 + 109 856 109 856 193 856 c 1,10,-1 + 248 851 l 1,11,-1 + 248 1484 l 1,12,-1 + 428 1484 l 1,13,-1 + 428 782 l 1,14,15 + 444 776 444 776 476 776 c 0,16,17 + 507 776 507 776 520 799.5 c 128,-1,18 + 533 823 533 823 539 871 c 1,19,-1 + 669 871 l 1,20,21 + 669 757 669 757 624 700 c 128,-1,22 + 579 643 579 643 483 643 c 0,23,24 + 448 643 448 643 428 648 c 1,25,-1 + 428 0 l 1,26,-1 + 248 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni026C +Encoding: 620 620 558 +Width: 622 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 22 + 8 + 17 + 12 + 3 + 3 + 15 + 2 + 0 + 2 + 8 + 3 + 25 + 26 + 18 + 19 + 12 + 19 + 81 + 89 + 1 + 4 + 17 + 4 + 81 + 89 + 15 + 17 + 12 + 17 + 12 + 17 + 3 + 13 + 0 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 280 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 622 1540 basechar 0 +AnchorPoint: "Anchor-20" 622 -380 basechar 0 +AnchorPoint: "Anchor-16" 340 1580 basechar 0 +AnchorPoint: "Anchor-15" 460 1540 basechar 0 +AnchorPoint: "Anchor-14" 340 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +602 601 m 1,0,-1 + 433 601 l 1,1,-1 + 433 0 l 1,2,-1 + 253 0 l 1,3,-1 + 253 601 l 1,4,-1 + 248 601 l 2,5,6 + 148 601 148 601 81.5 666.5 c 128,-1,7 + 15 732 15 732 15 839 c 0,8,9 + 15 938 15 938 79.5 999.5 c 128,-1,10 + 144 1061 144 1061 246 1061 c 2,11,-1 + 253 1061 l 1,12,-1 + 253 1466 l 1,13,-1 + 433 1466 l 1,14,-1 + 433 730 l 1,15,-1 + 602 730 l 1,16,-1 + 602 601 l 1,0,-1 +253 730 m 1,17,-1 + 253 946 l 1,18,-1 + 246 946 l 2,19,20 + 195 946 195 946 165.5 916 c 128,-1,21 + 136 886 136 886 136 835 c 0,22,23 + 136 730 136 730 246 730 c 2,24,-1 + 253 730 l 1,17,-1 +EndSplineSet +EndChar + +StartChar: uni026D +Encoding: 621 621 559 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 0 + 10 + 10 + 13 + 5 + 14 + 11 + 0 + 8 + 3 + 80 + 89 + 8 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 360 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +314 -115 m 2,0,1 + 315 -196 315 -196 343.5 -229.5 c 128,-1,2 + 372 -263 372 -263 427 -263 c 256,3,4 + 482 -263 482 -263 529 -248 c 1,5,-1 + 529 -410 l 1,6,7 + 460 -425 460 -425 415 -425 c 0,8,9 + 134 -425 134 -425 134 -129 c 2,10,-1 + 134 1484 l 1,11,-1 + 314 1484 l 1,12,-1 + 314 -115 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni026E +Encoding: 622 622 560 +Width: 1171 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 29 + 5 + 5 + 23 + 9 + 6 + 28 + 17 + 16 + 16 + 31 + 0 + 0 + 28 + 9 + 3 + 33 + 32 + 17 + 17 + 13 + 0 + 13 + 19 + 80 + 89 + 13 + 27 + 5 + 30 + 3 + 30 + 80 + 89 + 6 + 27 + 81 + 89 + 6 + 6 + 3 + 15 + 1 + 0 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 690 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1171 1540 basechar 0 +AnchorPoint: "Anchor-20" 1172 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +131 0 m 1,0,-1 + 131 1484 l 1,1,-1 + 311 1484 l 1,2,-1 + 311 1082 l 1,3,-1 + 1067 1082 l 1,4,-1 + 1067 904 l 1,5,-1 + 698 540 l 1,6,7 + 887 516 887 516 995 389 c 128,-1,8 + 1103 262 1103 262 1103 69 c 0,9,10 + 1103 -68 1103 -68 1039.5 -182 c 128,-1,11 + 976 -296 976 -296 860.5 -360.5 c 128,-1,12 + 745 -425 745 -425 599 -425 c 0,13,14 + 411 -425 411 -425 294.5 -349 c 128,-1,15 + 178 -273 178 -273 139 -123 c 1,16,-1 + 316 -102 l 1,17,18 + 371 -284 371 -284 598 -284 c 0,19,20 + 695 -284 695 -284 769 -236.5 c 128,-1,21 + 843 -189 843 -189 882.5 -105.5 c 128,-1,22 + 922 -22 922 -22 922 75 c 0,23,24 + 922 227 922 227 827.5 319 c 128,-1,25 + 733 411 733 411 576 411 c 2,26,-1 + 494 411 l 1,27,-1 + 494 555 l 1,28,-1 + 877 941 l 1,29,-1 + 311 941 l 1,30,-1 + 311 0 l 1,31,-1 + 131 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni026F +Encoding: 623 623 561 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 34 + 31 + 24 + 1 + 40 + 17 + 7 + 7 + 12 + 10 + 10 + 40 + 31 + 3 + 42 + 43 + 24 + 17 + 28 + 41 + 8 + 32 + 15 + 28 + 37 + 80 + 89 + 28 + 22 + 21 + 4 + 80 + 89 + 21 + 22 + 13 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1430 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +940 1082 m 1,0,-1 + 940 396 l 2,1,2 + 940 239 940 239 983 179 c 128,-1,3 + 1026 119 1026 119 1138 119 c 0,4,5 + 1253 119 1253 119 1320 207 c 128,-1,6 + 1387 295 1387 295 1387 455 c 2,7,-1 + 1387 1082 l 1,8,-1 + 1566 1082 l 1,9,-1 + 1566 231 l 2,10,11 + 1566 42 1566 42 1572 0 c 1,12,-1 + 1402 0 l 1,13,14 + 1401 5 1401 5 1400 27 c 128,-1,15 + 1399 49 1399 49 1397.5 77.5 c 128,-1,16 + 1396 106 1396 106 1394 185 c 1,17,-1 + 1391 185 l 1,18,19 + 1333 70 1333 70 1258 25 c 128,-1,20 + 1183 -20 1183 -20 1075 -20 c 0,21,22 + 952 -20 952 -20 880.5 29 c 128,-1,23 + 809 78 809 78 781 185 c 1,24,-1 + 778 185 l 1,25,26 + 722 76 722 76 642.5 28 c 128,-1,27 + 563 -20 563 -20 450 -20 c 0,28,29 + 286 -20 286 -20 211.5 69 c 128,-1,30 + 137 158 137 158 137 361 c 2,31,-1 + 137 1082 l 1,32,-1 + 315 1082 l 1,33,-1 + 315 396 l 2,34,35 + 315 239 315 239 358 179 c 128,-1,36 + 401 119 401 119 513 119 c 0,37,38 + 631 119 631 119 696.5 206.5 c 128,-1,39 + 762 294 762 294 762 455 c 2,40,-1 + 762 1082 l 1,41,-1 + 940 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0270 +Encoding: 624 624 562 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 7 + 11 + 11 + 10 + 1 + 34 + 28 + 25 + 25 + 34 + 10 + 3 + 37 + 36 + 18 + 12 + 22 + 35 + 8 + 26 + 15 + 22 + 31 + 80 + 89 + 22 + 22 + 15 + 4 + 80 + 89 + 15 + 22 + 11 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1430 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 820 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +940 1082 m 1,0,-1 + 940 396 l 2,1,2 + 940 239 940 239 983 179 c 128,-1,3 + 1026 119 1026 119 1138 119 c 0,4,5 + 1253 119 1253 119 1320 207 c 128,-1,6 + 1387 295 1387 295 1387 455 c 2,7,-1 + 1387 1082 l 1,8,-1 + 1566 1082 l 1,9,-1 + 1566 -425 l 1,10,-1 + 1389 -425 l 1,11,-1 + 1389 175 l 1,12,13 + 1334 68 1334 68 1259.5 24 c 128,-1,14 + 1185 -20 1185 -20 1075 -20 c 0,15,16 + 952 -20 952 -20 880.5 29 c 128,-1,17 + 809 78 809 78 781 185 c 1,18,-1 + 778 185 l 1,19,20 + 722 76 722 76 642.5 28 c 128,-1,21 + 563 -20 563 -20 450 -20 c 0,22,23 + 286 -20 286 -20 211.5 69 c 128,-1,24 + 137 158 137 158 137 361 c 2,25,-1 + 137 1082 l 1,26,-1 + 315 1082 l 1,27,-1 + 315 396 l 2,28,29 + 315 239 315 239 358 179 c 128,-1,30 + 401 119 401 119 513 119 c 0,31,32 + 631 119 631 119 696.5 206.5 c 128,-1,33 + 762 294 762 294 762 455 c 2,34,-1 + 762 1082 l 1,35,-1 + 940 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0271 +Encoding: 625 625 563 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 25 + 16 + 16 + 17 + 32 + 7 + 7 + 8 + 49 + 40 + 40 + 45 + 8 + 17 + 4 + 50 + 51 + 42 + 47 + 80 + 89 + 42 + 27 + 36 + 3 + 80 + 89 + 36 + 16 + 32 + 25 + 29 + 17 + 29 + 12 + 80 + 89 + 29 + 16 + 20 + 15 + 8 + 17 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1360 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 850 1200 basechar 0 +AnchorPoint: "Anchor-15" 1560 1260 basechar 0 +AnchorPoint: "Anchor-14" 860 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1393 686 m 2,0,1 + 1393 843 1393 843 1350 903 c 128,-1,2 + 1307 963 1307 963 1195 963 c 0,3,4 + 1077 963 1077 963 1011.5 875.5 c 128,-1,5 + 946 788 946 788 946 627 c 2,6,-1 + 946 0 l 1,7,-1 + 768 0 l 1,8,-1 + 768 686 l 2,9,10 + 768 843 768 843 725 903 c 128,-1,11 + 682 963 682 963 570 963 c 0,12,13 + 455 963 455 963 388 875 c 128,-1,14 + 321 787 321 787 321 627 c 2,15,-1 + 321 0 l 1,16,-1 + 142 0 l 1,17,-1 + 142 851 l 2,18,19 + 142 1040 142 1040 136 1082 c 1,20,-1 + 306 1082 l 1,21,22 + 307 1077 307 1077 308 1055 c 128,-1,23 + 309 1033 309 1033 310.5 1004.5 c 128,-1,24 + 312 976 312 976 314 897 c 1,25,-1 + 317 897 l 1,26,27 + 375 1012 375 1012 450 1057 c 128,-1,28 + 525 1102 525 1102 633 1102 c 0,29,30 + 756 1102 756 1102 827.5 1053 c 128,-1,31 + 899 1004 899 1004 927 897 c 1,32,-1 + 930 897 l 1,33,34 + 986 1006 986 1006 1065.5 1054 c 128,-1,35 + 1145 1102 1145 1102 1258 1102 c 0,36,37 + 1422 1102 1422 1102 1496.5 1013 c 128,-1,38 + 1571 924 1571 924 1571 721 c 2,39,-1 + 1571 -129 l 2,40,41 + 1571 -425 1571 -425 1290 -425 c 0,42,43 + 1239 -425 1239 -425 1154 -409 c 1,44,-1 + 1154 -245 l 1,45,46 + 1204 -263 1204 -263 1273 -263 c 0,47,48 + 1393 -263 1393 -263 1393 -115 c 2,49,-1 + 1393 686 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0272 +Encoding: 626 626 564 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 16 + 15 + 7 + 25 + 25 + 30 + 2 + 34 + 15 + 34 + 36 + 35 + 27 + 32 + 80 + 89 + 27 + 27 + 7 + 11 + 16 + 21 + 11 + 21 + 80 + 89 + 11 + 16 + 2 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 840 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +142 851 m 2,0,1 + 142 1040 142 1040 136 1082 c 1,2,-1 + 306 1082 l 1,3,4 + 307 1077 307 1077 308 1055 c 128,-1,5 + 309 1033 309 1033 310.5 1004.5 c 128,-1,6 + 312 976 312 976 314 897 c 1,7,-1 + 317 897 l 1,8,9 + 379 1009 379 1009 460.5 1055.5 c 128,-1,10 + 542 1102 542 1102 663 1102 c 0,11,12 + 841 1102 841 1102 923.5 1013.5 c 128,-1,13 + 1006 925 1006 925 1006 721 c 2,14,-1 + 1006 0 l 1,15,-1 + 825 0 l 1,16,-1 + 825 686 l 2,17,18 + 825 793 825 793 804 852 c 128,-1,19 + 783 911 783 911 737 937 c 128,-1,20 + 691 963 691 963 602 963 c 0,21,22 + 472 963 472 963 397 874 c 128,-1,23 + 322 785 322 785 322 627 c 2,24,-1 + 322 -129 l 2,25,26 + 322 -425 322 -425 41 -425 c 0,27,28 + -10 -425 -10 -425 -95 -409 c 1,29,-1 + -95 -246 l 1,30,31 + -48 -263 -48 -263 24 -263 c 0,32,33 + 142 -263 142 -263 142 -115 c 2,34,-1 + 142 851 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0273 +Encoding: 627 627 565 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 9 + 0 + 27 + 18 + 18 + 22 + 19 + 0 + 19 + 35 + 4 + 36 + 27 + 31 + 19 + 31 + 14 + 80 + 89 + 31 + 16 + 22 + 15 + 19 + 21 + 7 + 2 + 80 + 89 + 7 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1080 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1006 -115 m 2,0,1 + 1006 -263 1006 -263 1123 -263 c 0,2,3 + 1185 -263 1185 -263 1229 -247 c 1,4,-1 + 1229 -411 l 1,5,6 + 1165 -425 1165 -425 1106 -425 c 0,7,8 + 825 -425 825 -425 825 -129 c 2,9,-1 + 825 686 l 2,10,11 + 825 793 825 793 804 852 c 128,-1,12 + 783 911 783 911 737 937 c 128,-1,13 + 691 963 691 963 602 963 c 0,14,15 + 472 963 472 963 397 874 c 128,-1,16 + 322 785 322 785 322 627 c 2,17,-1 + 322 0 l 1,18,-1 + 142 0 l 1,19,-1 + 142 851 l 2,20,21 + 142 1040 142 1040 136 1082 c 1,22,-1 + 306 1082 l 1,23,24 + 307 1077 307 1077 308 1055 c 128,-1,25 + 309 1033 309 1033 310.5 1004.5 c 128,-1,26 + 312 976 312 976 314 897 c 1,27,-1 + 317 897 l 1,28,29 + 379 1009 379 1009 460.5 1055.5 c 128,-1,30 + 542 1102 542 1102 663 1102 c 0,31,32 + 841 1102 841 1102 923.5 1013.5 c 128,-1,33 + 1006 925 1006 925 1006 721 c 2,34,-1 + 1006 -115 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0274 +Encoding: 628 628 566 +Width: 1132 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 8 + 4 + 4 + 7 + 0 + 14 + 14 + 15 + 15 + 7 + 17 + 18 + 3 + 11 + 15 + 5 + 16 + 15 + 8 + 15 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 860 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1132 1540 basechar 0 +AnchorPoint: "Anchor-20" 1132 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +316 1082 m 1,0,-1 + 781 397 l 2,1,2 + 802 367 802 367 839 293 c 1,3,-1 + 835 418 l 1,4,-1 + 835 1082 l 1,5,-1 + 1005 1082 l 1,6,-1 + 1005 0 l 1,7,-1 + 838 0 l 1,8,-1 + 377 699 l 2,9,10 + 337 757 337 757 304 828 c 1,11,12 + 311 730 311 730 311 665 c 2,13,-1 + 311 0 l 1,14,-1 + 142 0 l 1,15,-1 + 142 1082 l 1,16,-1 + 316 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0275 +Encoding: 629 629 567 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 22 + 14 + 14 + 0 + 21 + 15 + 15 + 6 + 0 + 6 + 26 + 25 + 21 + 15 + 80 + 89 + 15 + 21 + 207 + 21 + 223 + 21 + 3 + 11 + 3 + 21 + 21 + 3 + 8 + 8 + 18 + 80 + 89 + 8 + 16 + 3 + 11 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 900 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 560 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 542 m 0,0,1 + 1053 258 1053 258 928 119 c 128,-1,2 + 803 -20 803 -20 565 -20 c 0,3,4 + 328 -20 328 -20 207 124.5 c 128,-1,5 + 86 269 86 269 86 542 c 0,6,7 + 86 1102 86 1102 571 1102 c 0,8,9 + 819 1102 819 1102 936 965.5 c 128,-1,10 + 1053 829 1053 829 1053 542 c 0,0,1 +563 113 m 0,11,12 + 712 113 712 113 782 200 c 128,-1,13 + 852 287 852 287 862 470 c 1,14,-1 + 277 470 l 1,15,16 + 287 294 287 294 356.5 203.5 c 128,-1,17 + 426 113 426 113 563 113 c 0,11,12 +574 969 m 256,18,19 + 430 969 430 969 359 883 c 128,-1,20 + 288 797 288 797 277 617 c 1,21,-1 + 862 617 l 1,22,23 + 852 797 852 797 785 883 c 128,-1,24 + 718 969 718 969 574 969 c 256,18,19 +EndSplineSet +EndChar + +StartChar: uni0276 +Encoding: 630 630 568 +Width: 1619 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 58 + 19 + 0 + 4 + 21 + 3 + 3 + 22 + 16 + 6 + 28 + 12 + 12 + 6 + 4 + 3 + 35 + 34 + 21 + 2 + 81 + 89 + 15 + 21 + 1 + 11 + 3 + 21 + 21 + 6 + 17 + 17 + 20 + 80 + 89 + 17 + 15 + 16 + 7 + 14 + 9 + 14 + 25 + 80 + 89 + 14 + 16 + 9 + 31 + 80 + 89 + 9 + 21 + 6 + 3 + 80 + 89 + 6 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1397 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1619 1540 basechar 0 +AnchorPoint: "Anchor-20" 1619 -380 basechar 0 +AnchorPoint: "Anchor-18" 1520 1100 basechar 0 +AnchorPoint: "Anchor-16" 860 1540 basechar 0 +AnchorPoint: "Anchor-15" 1540 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1481 625 m 1,0,-1 + 1481 495 l 1,1,-1 + 1040 495 l 1,2,-1 + 1040 133 l 1,3,-1 + 1550 133 l 1,4,-1 + 1550 0 l 1,5,-1 + 869 0 l 1,6,-1 + 869 93 l 1,7,8 + 754 -20 754 -20 565 -20 c 0,9,10 + 328 -20 328 -20 207 124.5 c 128,-1,11 + 86 269 86 269 86 542 c 0,12,13 + 86 1102 86 1102 571 1102 c 0,14,15 + 751 1102 751 1102 869 989 c 1,16,-1 + 869 1082 l 1,17,-1 + 1527 1082 l 1,18,-1 + 1527 945 l 1,19,-1 + 1040 945 l 1,20,-1 + 1040 625 l 1,21,-1 + 1481 625 l 1,0,-1 +864 542 m 0,22,23 + 864 766 864 766 797.5 867.5 c 128,-1,24 + 731 969 731 969 574 969 c 0,25,26 + 416 969 416 969 345.5 865.5 c 128,-1,27 + 275 762 275 762 275 542 c 0,28,29 + 275 328 275 328 344.5 220.5 c 128,-1,30 + 414 113 414 113 563 113 c 0,31,32 + 725 113 725 113 794.5 217 c 128,-1,33 + 864 321 864 321 864 542 c 0,22,23 +EndSplineSet +EndChar + +StartChar: uni0277 +Encoding: 631 631 569 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 7 + 26 + 32 + 1 + 1 + 21 + 15 + 38 + 38 + 21 + 26 + 3 + 42 + 41 + 32 + 22 + 22 + 35 + 23 + 35 + 18 + 80 + 89 + 35 + 22 + 29 + 4 + 80 + 89 + 29 + 22 + 23 + 11 + 80 + 89 + 23 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1170 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1599 1540 basechar 0 +AnchorPoint: "Anchor-20" 1599 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +885 589 m 1,0,-1 + 885 493 l 2,1,2 + 885 298 885 298 941 205 c 128,-1,3 + 997 112 997 112 1111 112 c 0,4,5 + 1230 112 1230 112 1282.5 200 c 128,-1,6 + 1335 288 1335 288 1335 475 c 0,7,8 + 1335 626 1335 626 1269.5 740 c 128,-1,9 + 1204 854 1204 854 1085 909.5 c 128,-1,10 + 966 965 966 965 799 965 c 0,11,12 + 633 965 633 965 514 909.5 c 128,-1,13 + 395 854 395 854 329.5 740 c 128,-1,14 + 264 626 264 626 264 475 c 0,15,16 + 264 288 264 288 316.5 200 c 128,-1,17 + 369 112 369 112 488 112 c 0,18,19 + 602 112 602 112 658 205 c 128,-1,20 + 714 298 714 298 714 493 c 2,21,-1 + 714 589 l 1,22,-1 + 885 589 l 1,0,-1 +799 1102 m 0,23,24 + 1132 1102 1132 1102 1322 935.5 c 128,-1,25 + 1512 769 1512 769 1512 475 c 0,26,27 + 1512 239 1512 239 1411 109.5 c 128,-1,28 + 1310 -20 1310 -20 1126 -20 c 0,29,30 + 997 -20 997 -20 912 43.5 c 128,-1,31 + 827 107 827 107 798 227 c 1,32,33 + 771 105 771 105 686.5 42.5 c 128,-1,34 + 602 -20 602 -20 473 -20 c 0,35,36 + 290 -20 290 -20 188.5 109 c 128,-1,37 + 87 238 87 238 87 475 c 0,38,39 + 87 768 87 768 276 935 c 128,-1,40 + 465 1102 465 1102 799 1102 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni0278 +Encoding: 632 632 570 +Width: 1126 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 16 + 12 + 20 + 9 + 15 + 15 + 26 + 6 + 0 + 23 + 4 + 4 + 0 + 12 + 3 + 31 + 30 + 14 + 20 + 80 + 89 + 14 + 22 + 9 + 19 + 80 + 89 + 9 + 16 + 7 + 0 + 6 + 27 + 80 + 89 + 6 + 16 + 1 + 26 + 80 + 89 + 1 + 22 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 500 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1126 1540 basechar 0 +AnchorPoint: "Anchor-20" 1126 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 560 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +482 -425 m 1,0,-1 + 482 -15 l 1,1,2 + 293 8 293 8 189.5 145.5 c 128,-1,3 + 86 283 86 283 86 542 c 0,4,5 + 86 1047 86 1047 482 1097 c 1,6,-1 + 482 1484 l 1,7,-1 + 646 1484 l 1,8,-1 + 646 1098 l 1,9,10 + 858 1078 858 1078 955.5 939.5 c 128,-1,11 + 1053 801 1053 801 1053 542 c 0,12,13 + 1053 30 1053 30 646 -15 c 1,14,-1 + 646 -425 l 1,15,-1 + 482 -425 l 1,0,-1 +864 542 m 0,16,17 + 864 741 864 741 812 842 c 128,-1,18 + 760 943 760 943 646 963 c 1,19,-1 + 646 120 l 1,20,21 + 759 142 759 142 811.5 245.5 c 128,-1,22 + 864 349 864 349 864 542 c 0,16,17 +275 542 m 0,23,24 + 275 358 275 358 325.5 254 c 128,-1,25 + 376 150 376 150 482 122 c 1,26,-1 + 482 958 l 1,27,28 + 374 932 374 932 324.5 830 c 128,-1,29 + 275 728 275 728 275 542 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni0279 +Encoding: 633 633 571 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 5 + 19 + 19 + 1 + 14 + 1 + 21 + 22 + 7 + 4 + 20 + 15 + 11 + 16 + 83 + 89 + 11 + 22 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 440 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 200 1200 basechar 0 +AnchorPoint: "Anchor-15" 300 1260 basechar 0 +AnchorPoint: "Anchor-14" 320 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +549 1082 m 1,0,-1 + 549 252 l 2,1,2 + 549 132 549 132 555 0 c 1,3,-1 + 385 0 l 1,4,-1 + 380 113 l 1,5,-1 + 377 221 l 1,6,-1 + 373 221 l 1,7,8 + 339 117 339 117 307.5 70 c 128,-1,9 + 276 23 276 23 230.5 1.5 c 128,-1,10 + 185 -20 185 -20 116 -20 c 0,11,12 + 80 -20 80 -20 43 -10 c 1,13,-1 + 43 155 l 1,14,15 + 79 145 79 145 139 145 c 0,16,17 + 251 145 251 145 310 241.5 c 128,-1,18 + 369 338 369 338 369 518 c 2,19,-1 + 369 1082 l 1,20,-1 + 549 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni027A +Encoding: 634 634 572 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 5 + 19 + 19 + 1 + 14 + 1 + 21 + 22 + 7 + 4 + 20 + 0 + 11 + 16 + 83 + 89 + 11 + 22 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 440 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 200 1200 basechar 0 +AnchorPoint: "Anchor-15" 300 1260 basechar 0 +AnchorPoint: "Anchor-14" 320 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +549 1483 m 1,0,-1 + 549 252 l 2,1,2 + 549 132 549 132 555 0 c 1,3,-1 + 385 0 l 1,4,-1 + 380 113 l 1,5,-1 + 377 221 l 1,6,-1 + 373 221 l 1,7,8 + 339 117 339 117 307.5 70 c 128,-1,9 + 276 23 276 23 230.5 1.5 c 128,-1,10 + 185 -20 185 -20 116 -20 c 0,11,12 + 80 -20 80 -20 43 -10 c 1,13,-1 + 43 155 l 1,14,15 + 79 145 79 145 139 145 c 0,16,17 + 251 145 251 145 310 241.5 c 128,-1,18 + 369 338 369 338 369 518 c 2,19,-1 + 369 1483 l 1,20,-1 + 549 1483 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni027B +Encoding: 635 635 573 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 23 + 11 + 11 + 1 + 1 + 17 + 25 + 6 + 26 + 12 + 15 + 24 + 15 + 15 + 20 + 83 + 89 + 15 + 22 + 9 + 4 + 83 + 89 + 9 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 460 1200 basechar 0 +AnchorPoint: "Anchor-15" 560 1260 basechar 0 +AnchorPoint: "Anchor-14" 320 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +549 1082 m 1,0,-1 + 549 -120 l 2,1,2 + 549 -201 549 -201 577 -234.5 c 128,-1,3 + 605 -268 605 -268 660 -268 c 0,4,5 + 711 -268 711 -268 758 -254 c 1,6,-1 + 758 -414 l 1,7,8 + 699 -425 699 -425 628 -425 c 0,9,10 + 374 -425 374 -425 374 -129 c 2,11,-1 + 374 192 l 1,12,13 + 336 73 336 73 277 26.5 c 128,-1,14 + 218 -20 218 -20 116 -20 c 0,15,16 + 80 -20 80 -20 43 -10 c 1,17,-1 + 43 155 l 1,18,19 + 79 145 79 145 139 145 c 0,20,21 + 251 145 251 145 310 241.5 c 128,-1,22 + 369 338 369 338 369 518 c 2,23,-1 + 369 1082 l 1,24,-1 + 549 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni027C +Encoding: 636 636 574 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 6 + 19 + 19 + 1 + 0 + 0 + 12 + 20 + 21 + 10 + 15 + 83 + 89 + 10 + 16 + 6 + 3 + 15 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 180 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 400 1200 basechar 0 +AnchorPoint: "Anchor-15" 600 1260 basechar 0 +AnchorPoint: "Anchor-14" 240 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +142 -425 m 1,0,-1 + 142 830 l 2,1,2 + 142 944 142 944 136 1082 c 1,3,-1 + 306 1082 l 1,4,5 + 314 898 314 898 314 861 c 1,6,-1 + 318 861 l 1,7,8 + 361 1000 361 1000 417 1051 c 128,-1,9 + 473 1102 473 1102 575 1102 c 0,10,11 + 611 1102 611 1102 648 1092 c 1,12,-1 + 648 927 l 1,13,14 + 612 937 612 937 552 937 c 0,15,16 + 440 937 440 937 381 840.5 c 128,-1,17 + 322 744 322 744 322 564 c 2,18,-1 + 322 -425 l 1,19,-1 + 142 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni027D +Encoding: 637 637 575 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 5 + 18 + 18 + 0 + 29 + 29 + 24 + 11 + 3 + 31 + 30 + 5 + 27 + 2 + 27 + 21 + 83 + 89 + 27 + 27 + 9 + 14 + 83 + 89 + 9 + 16 + 2 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 385 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +142 830 m 2,0,1 + 142 944 142 944 136 1082 c 1,2,-1 + 306 1082 l 1,3,4 + 314 898 314 898 314 861 c 1,5,-1 + 318 861 l 1,6,7 + 361 1000 361 1000 417 1051 c 128,-1,8 + 473 1102 473 1102 575 1102 c 0,9,10 + 611 1102 611 1102 648 1092 c 1,11,-1 + 648 927 l 1,12,13 + 612 937 612 937 552 937 c 0,14,15 + 440 937 440 937 381 840.5 c 128,-1,16 + 322 744 322 744 322 564 c 2,17,-1 + 322 -115 l 2,18,19 + 322 -196 322 -196 350 -229.5 c 128,-1,20 + 378 -263 378 -263 433 -263 c 0,21,22 + 487 -263 487 -263 530 -250 c 1,23,-1 + 530 -414 l 1,24,-1 + 496 -419 l 2,25,26 + 465 -425 465 -425 419 -425 c 0,27,28 + 142 -425 142 -425 142 -129 c 2,29,-1 + 142 830 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni027E +Encoding: 638 638 576 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 14 + 0 + 7 + 0 + 16 + 15 + 5 + 10 + 83 + 89 + 5 + 16 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +142 0 m 1,0,-1 + 142 686 l 2,1,2 + 142 814 142 814 188 907 c 128,-1,3 + 234 1000 234 1000 329 1051 c 128,-1,4 + 424 1102 424 1102 552 1102 c 0,5,6 + 611 1102 611 1102 648 1092 c 1,7,-1 + 648 927 l 1,8,9 + 612 937 612 937 552 937 c 0,10,11 + 427 937 427 937 372.5 866.5 c 128,-1,12 + 318 796 318 796 318 629 c 2,13,-1 + 318 0 l 1,14,-1 + 142 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni027F +Encoding: 639 639 577 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 0 + 14 + 14 + 6 + 16 + 15 + 9 + 4 + 83 + 89 + 9 + 16 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 385 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 420 1200 basechar 0 +AnchorPoint: "Anchor-15" 560 1260 basechar 0 +AnchorPoint: "Anchor-14" 450 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +358 -425 m 1,0,-1 + 358 600 l 2,1,2 + 358 775 358 775 303 856 c 128,-1,3 + 248 937 248 937 128 937 c 0,4,5 + 68 937 68 937 32 927 c 1,6,-1 + 32 1092 l 1,7,8 + 69 1102 69 1102 128 1102 c 0,9,10 + 256 1102 256 1102 351 1051 c 128,-1,11 + 446 1000 446 1000 492 907 c 128,-1,12 + 538 814 538 814 538 686 c 2,13,-1 + 538 -425 l 1,14,-1 + 358 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0280 +Encoding: 640 640 578 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 11 + 10 + 9 + 12 + 6 + 15 + 15 + 0 + 0 + 1 + 18 + 6 + 10 + 6 + 1 + 3 + 22 + 23 + 9 + 13 + 15 + 13 + 80 + 89 + 15 + 15 + 1 + 2 + 2 + 14 + 80 + 89 + 2 + 15 + 11 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 869 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1109 1540 basechar 0 +AnchorPoint: "Anchor-20" 1109 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +322 0 m 1,0,-1 + 142 0 l 1,1,-1 + 142 1082 l 1,2,-1 + 604 1082 l 2,3,4 + 788 1082 788 1082 896 1000 c 128,-1,5 + 1004 918 1004 918 1004 773 c 0,6,7 + 1004 644 1004 644 929.5 559 c 128,-1,8 + 855 474 855 474 717 449 c 1,9,-1 + 1072 0 l 1,10,-1 + 854 0 l 1,11,-1 + 522 439 l 1,12,-1 + 322 439 l 1,13,-1 + 322 0 l 1,0,-1 +322 945 m 1,14,-1 + 322 575 l 1,15,-1 + 596 575 l 2,16,17 + 815 575 815 575 815 762 c 0,18,19 + 815 854 815 854 757 899.5 c 128,-1,20 + 699 945 699 945 592 945 c 2,21,-1 + 322 945 l 1,14,-1 +EndSplineSet +EndChar + +StartChar: uni0281 +Encoding: 641 641 579 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 1 + 4 + 0 + 2 + 3 + 3 + 17 + 7 + 0 + 21 + 21 + 11 + 7 + 11 + 23 + 22 + 0 + 20 + 80 + 89 + 4 + 0 + 0 + 11 + 2 + 12 + 15 + 11 + 21 + 80 + 89 + 11 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 620 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1109 1540 basechar 0 +AnchorPoint: "Anchor-20" 1109 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +322 643 m 1,0,-1 + 522 643 l 1,1,-1 + 854 1082 l 1,2,-1 + 1072 1082 l 1,3,-1 + 717 633 l 1,4,5 + 855 608 855 608 929.5 522.5 c 128,-1,6 + 1004 437 1004 437 1004 309 c 0,7,8 + 1004 164 1004 164 895.5 82 c 128,-1,9 + 787 0 787 0 604 0 c 2,10,-1 + 142 0 l 1,11,-1 + 142 1082 l 1,12,-1 + 322 1082 l 1,13,-1 + 322 643 l 1,0,-1 +592 137 m 2,14,15 + 700 137 700 137 757.5 182.5 c 128,-1,16 + 815 228 815 228 815 320 c 0,17,18 + 815 507 815 507 596 507 c 2,19,-1 + 322 507 l 1,20,-1 + 322 137 l 1,21,-1 + 592 137 l 2,14,15 +EndSplineSet +EndChar + +StartChar: uni0282 +Encoding: 642 642 580 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 0 + 42 + 42 + 52 + 27 + 14 + 14 + 52 + 21 + 20 + 20 + 6 + 36 + 36 + 46 + 52 + 3 + 54 + 55 + 50 + 44 + 80 + 89 + 50 + 27 + 41 + 6 + 27 + 3 + 17 + 39 + 39 + 3 + 80 + 89 + 0 + 39 + 22 + 17 + 24 + 80 + 89 + 21 + 17 + 16 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 300 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 560 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +216 285 m 1,0,1 + 239 198 239 198 311 157.5 c 128,-1,2 + 383 117 383 117 511 117 c 0,3,4 + 648 117 648 117 711.5 159 c 128,-1,5 + 775 201 775 201 775 285 c 0,6,7 + 775 349 775 349 731 389 c 128,-1,8 + 687 429 687 429 589 455 c 2,9,-1 + 460 489 l 2,10,11 + 305 529 305 529 239.5 567.5 c 128,-1,12 + 174 606 174 606 137 661 c 128,-1,13 + 100 716 100 716 100 796 c 0,14,15 + 100 944 100 944 205.5 1021.5 c 128,-1,16 + 311 1099 311 1099 513 1099 c 0,17,18 + 692 1099 692 1099 797.5 1036 c 128,-1,19 + 903 973 903 973 931 834 c 1,20,-1 + 769 814 l 1,21,22 + 754 886 754 886 688.5 924.5 c 128,-1,23 + 623 963 623 963 513 963 c 0,24,25 + 391 963 391 963 333 926 c 128,-1,26 + 275 889 275 889 275 814 c 0,27,28 + 275 768 275 768 299 738 c 128,-1,29 + 323 708 323 708 370 687 c 128,-1,30 + 417 666 417 666 568 629 c 0,31,32 + 711 593 711 593 774 562.5 c 128,-1,33 + 837 532 837 532 873.5 495 c 128,-1,34 + 910 458 910 458 930 409.5 c 128,-1,35 + 950 361 950 361 950 299 c 0,36,37 + 950 146 950 146 834.5 63 c 128,-1,38 + 719 -20 719 -20 511 -20 c 0,39,40 + 338 -20 338 -20 227 39 c 1,41,-1 + 227 -120 l 2,42,43 + 227 -263 227 -263 349 -263 c 0,44,45 + 406 -263 406 -263 448 -251 c 1,46,-1 + 448 -413 l 1,47,-1 + 414 -418 l 2,48,49 + 378 -425 378 -425 335 -425 c 0,50,51 + 57 -425 57 -425 57 -129 c 2,52,-1 + 57 254 l 1,53,-1 + 216 285 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0283 +Encoding: 643 643 581 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 22 + 9 + 9 + 25 + 15 + 26 + 2 + 25 + 13 + 18 + 83 + 89 + 13 + 0 + 0 + 5 + 83 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 44 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 420 1580 basechar 0 +AnchorPoint: "Anchor-15" 600 1540 basechar 0 +AnchorPoint: "Anchor-14" 129 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +16 -425 m 0,0,1 + -63 -425 -63 -425 -118 -406 c 1,2,-1 + -118 -246 l 1,3,4 + -58 -270 -58 -270 -1 -270 c 0,5,6 + 53 -270 53 -270 83.5 -248 c 128,-1,7 + 114 -226 114 -226 127.5 -183.5 c 128,-1,8 + 141 -141 141 -141 141 -37 c 2,9,-1 + 141 1130 l 2,10,11 + 141 1303 141 1303 216.5 1393.5 c 128,-1,12 + 292 1484 292 1484 439 1484 c 0,13,14 + 546 1484 546 1484 590 1466 c 1,15,-1 + 590 1299 l 1,16,17 + 541 1326 541 1326 475 1326 c 0,18,19 + 398 1326 398 1326 360.5 1273.5 c 128,-1,20 + 323 1221 323 1221 323 1093 c 2,21,-1 + 323 -70 l 2,22,23 + 323 -250 323 -250 247 -337.5 c 128,-1,24 + 171 -425 171 -425 16 -425 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0284 +Encoding: 644 644 582 +Width: 532 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 17 + 14 + 14 + 31 + 1 + 0 + 1 + 33 + 15 + 7 + 34 + 24 + 33 + 32 + 0 + 80 + 89 + 32 + 21 + 21 + 26 + 83 + 89 + 21 + 27 + 17 + 14 + 80 + 89 + 17 + 21 + 5 + 10 + 83 + 89 + 5 + 0 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 99 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 532 1540 basechar 0 +AnchorPoint: "Anchor-20" 532 -380 basechar 0 +AnchorPoint: "Anchor-16" 480 1580 basechar 0 +AnchorPoint: "Anchor-15" 680 1540 basechar 0 +AnchorPoint: "Anchor-14" 173 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +5 140 m 1,0,-1 + 198 140 l 1,1,-1 + 198 1130 l 2,2,3 + 198 1308 198 1308 274 1396 c 128,-1,4 + 350 1484 350 1484 508 1484 c 0,5,6 + 597 1484 597 1484 647 1466 c 1,7,-1 + 647 1299 l 1,8,9 + 598 1326 598 1326 532 1326 c 0,10,11 + 455 1326 455 1326 417.5 1273.5 c 128,-1,12 + 380 1221 380 1221 380 1093 c 2,13,-1 + 380 140 l 1,14,-1 + 550 140 l 1,15,-1 + 550 0 l 1,16,-1 + 380 0 l 1,17,-1 + 380 -70 l 2,18,19 + 380 -250 380 -250 304 -337.5 c 128,-1,20 + 228 -425 228 -425 73 -425 c 0,21,22 + -6 -425 -6 -425 -61 -406 c 1,23,-1 + -61 -246 l 1,24,25 + -1 -270 -1 -270 56 -270 c 0,26,27 + 110 -270 110 -270 140.5 -248 c 128,-1,28 + 171 -226 171 -226 184.5 -183.5 c 128,-1,29 + 198 -141 198 -141 198 -37 c 2,30,-1 + 198 0 l 1,31,-1 + 5 0 l 1,32,-1 + 5 140 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0285 +Encoding: 645 645 583 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 16 + 3 + 3 + 25 + 22 + 26 + 9 + 25 + 12 + 7 + 83 + 89 + 12 + 16 + 0 + 20 + 83 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 400 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 520 1580 basechar 0 +AnchorPoint: "Anchor-15" 1000 1260 basechar 0 +AnchorPoint: "Anchor-14" 400 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +436 -425 m 0,0,1 + 283 -425 283 -425 211 -339 c 128,-1,2 + 139 -253 139 -253 139 -70 c 2,3,-1 + 139 711 l 2,4,5 + 139 842 139 842 101.5 893 c 128,-1,6 + 64 944 64 944 -11 944 c 0,7,8 + -77 944 -77 944 -126 917 c 1,9,-1 + -126 1084 l 1,10,11 + -82 1102 -82 1102 5 1102 c 0,12,13 + 167 1102 167 1102 244 1017.5 c 128,-1,14 + 321 933 321 933 321 759 c 2,15,-1 + 321 -37 l 2,16,17 + 321 -139 321 -139 333 -182.5 c 128,-1,18 + 345 -226 345 -226 373 -248 c 128,-1,19 + 401 -270 401 -270 453 -270 c 0,20,21 + 510 -270 510 -270 570 -246 c 1,22,-1 + 570 -406 l 1,23,24 + 515 -425 515 -425 436 -425 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0286 +Encoding: 646 646 584 +Width: 715 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 28 + 8 + 2 + 25 + 25 + 34 + 13 + 8 + 13 + 39 + 27 + 19 + 40 + 2 + 34 + 25 + 13 + 4 + 11 + 0 + 11 + 36 + 80 + 89 + 11 + 11 + 4 + 16 + 16 + 21 + 83 + 89 + 16 + 0 + 0 + 4 + 4 + 31 + 80 + 89 + 4 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 275 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 715 1540 basechar 0 +AnchorPoint: "Anchor-20" 715 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1580 basechar 0 +AnchorPoint: "Anchor-15" 880 1540 basechar 0 +AnchorPoint: "Anchor-14" 327 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +695 -426 m 1,0,-1 + 625 -338 l 1,1,-1 + 541 -237 l 1,2,3 + 460 -425 460 -425 269 -425 c 0,4,5 + 196 -425 196 -425 134.5 -394.5 c 128,-1,6 + 73 -364 73 -364 36.5 -307.5 c 128,-1,7 + 0 -251 0 -251 0 -167 c 0,8,9 + 0 -49 0 -49 69.5 19 c 128,-1,10 + 139 87 139 87 268 87 c 0,11,12 + 332 87 332 87 400 63 c 1,13,-1 + 400 1130 l 2,14,15 + 400 1484 400 1484 692 1484 c 0,16,17 + 799 1484 799 1484 843 1466 c 1,18,-1 + 843 1299 l 1,19,20 + 794 1326 794 1326 728 1326 c 0,21,22 + 651 1326 651 1326 613.5 1273.5 c 128,-1,23 + 576 1221 576 1221 576 1093 c 2,24,-1 + 576 -44 l 1,25,26 + 684 -140 684 -140 805 -309 c 1,27,-1 + 695 -426 l 1,0,-1 +155 -171 m 0,28,29 + 155 -227 155 -227 187.5 -254 c 128,-1,30 + 220 -281 220 -281 267 -281 c 0,31,32 + 329 -281 329 -281 365.5 -233.5 c 128,-1,33 + 402 -186 402 -186 402 -107 c 1,34,35 + 324 -58 324 -58 267 -58 c 0,36,37 + 209 -58 209 -58 182 -90.5 c 128,-1,38 + 155 -123 155 -123 155 -171 c 0,28,29 +EndSplineSet +EndChar + +StartChar: uni0287 +Encoding: 647 647 585 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 5 + 8 + 8 + 14 + 11 + 20 + 13 + 11 + 3 + 21 + 6 + 22 + 5 + 8 + 81 + 89 + 5 + 5 + 14 + 14 + 11 + 81 + 89 + 14 + 14 + 2 + 10 + 21 + 2 + 18 + 80 + 89 + 2 + 0 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 275 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 320 1580 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 327 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +31 1405 m 1,0,1 + 120 1429 120 1429 213 1429 c 0,2,3 + 429 1429 429 1429 429 1184 c 2,4,-1 + 429 372 l 1,5,-1 + 554 372 l 1,6,-1 + 554 241 l 1,7,-1 + 422 241 l 1,8,-1 + 369 -1 l 1,9,-1 + 249 -1 l 1,10,-1 + 249 241 l 1,11,-1 + 49 241 l 1,12,-1 + 49 372 l 1,13,-1 + 249 372 l 1,14,-1 + 249 1145 l 2,15,16 + 249 1223 249 1223 223.5 1254.5 c 128,-1,17 + 198 1286 198 1286 135 1286 c 0,18,19 + 99 1286 99 1286 31 1272 c 1,20,-1 + 31 1405 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0288 +Encoding: 648 648 586 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 11 + 15 + 15 + 8 + 4 + 6 + 4 + 13 + 20 + 4 + 22 + 21 + 14 + 6 + 7 + 6 + 81 + 89 + 11 + 9 + 7 + 15 + 2 + 18 + 80 + 89 + 2 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MDRP[rnd,white] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 363 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 393 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +554 -401 m 1,0,1 + 465 -425 465 -425 372 -425 c 0,2,3 + 156 -425 156 -425 156 -180 c 2,4,-1 + 156 951 l 1,5,-1 + 31 951 l 1,6,-1 + 31 1082 l 1,7,-1 + 163 1082 l 1,8,-1 + 216 1324 l 1,9,-1 + 336 1324 l 1,10,-1 + 336 1082 l 1,11,-1 + 536 1082 l 1,12,-1 + 536 951 l 1,13,-1 + 336 951 l 1,14,-1 + 336 -136 l 2,15,16 + 336 -214 336 -214 361.5 -245.5 c 128,-1,17 + 387 -277 387 -277 450 -277 c 0,18,19 + 486 -277 486 -277 554 -263 c 1,20,-1 + 554 -401 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0289 +Encoding: 649 649 587 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 16 + 32 + 32 + 9 + 2 + 5 + 5 + 9 + 1 + 35 + 35 + 27 + 23 + 9 + 23 + 40 + 39 + 34 + 8 + 25 + 26 + 25 + 80 + 89 + 5 + 1 + 16 + 26 + 26 + 20 + 3 + 28 + 15 + 20 + 29 + 80 + 89 + 20 + 22 + 12 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +IP +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-18" 990 1100 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 560 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +314 1082 m 1,0,-1 + 314 617 l 1,1,-1 + 817 617 l 1,2,-1 + 817 1082 l 1,3,-1 + 997 1082 l 1,4,-1 + 997 617 l 1,5,-1 + 1105 617 l 1,6,-1 + 1105 484 l 1,7,-1 + 997 484 l 1,8,-1 + 997 231 l 2,9,10 + 997 42 997 42 1003 0 c 1,11,-1 + 833 0 l 1,12,13 + 832 5 832 5 831 27 c 128,-1,14 + 830 49 830 49 828.5 77.5 c 128,-1,15 + 827 106 827 106 825 185 c 1,16,-1 + 822 185 l 1,17,18 + 760 73 760 73 678.5 26.5 c 128,-1,19 + 597 -20 597 -20 476 -20 c 0,20,21 + 298 -20 298 -20 215.5 68.5 c 128,-1,22 + 133 157 133 157 133 361 c 2,23,-1 + 133 484 l 1,24,-1 + 26 484 l 1,25,-1 + 26 617 l 1,26,-1 + 133 617 l 1,27,-1 + 133 1082 l 1,28,-1 + 314 1082 l 1,0,-1 +537 119 m 0,29,30 + 667 119 667 119 742 212 c 128,-1,31 + 817 305 817 305 817 463 c 2,32,-1 + 817 484 l 1,33,-1 + 314 484 l 1,34,-1 + 314 396 l 2,35,36 + 314 289 314 289 335 230 c 128,-1,37 + 356 171 356 171 402 145 c 128,-1,38 + 448 119 448 119 537 119 c 0,29,30 +EndSplineSet +EndChar + +StartChar: uni028A +Encoding: 650 650 588 +Width: 1164 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 36 + 27 + 17 + 8 + 40 + 31 + 8 + 31 + 45 + 21 + 12 + 3 + 45 + 3 + 49 + 48 + 34 + 37 + 80 + 89 + 34 + 15 + 27 + 21 + 40 + 8 + 4 + 13 + 0 + 13 + 12 + 80 + 89 + 13 + 15 + 0 + 24 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 671 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1164 1540 basechar 0 +AnchorPoint: "Anchor-20" 1164 -380 basechar 0 +AnchorPoint: "Anchor-18" 1068 1100 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +581 -20 m 0,0,1 + 356 -20 356 -20 220 108 c 128,-1,2 + 84 236 84 236 84 448 c 0,3,4 + 84 588 84 588 168 706 c 0,5,6 + 219 778 219 778 235.5 810 c 128,-1,7 + 252 842 252 842 252 870 c 0,8,9 + 252 901 252 901 230.5 922 c 128,-1,10 + 209 943 209 943 166 943 c 2,11,-1 + 84 943 l 1,12,-1 + 84 1082 l 1,13,-1 + 208 1082 l 2,14,15 + 297 1082 297 1082 351.5 1030.5 c 128,-1,16 + 406 979 406 979 406 892 c 0,17,18 + 406 797 406 797 339 681 c 0,19,20 + 271 565 271 565 271 472 c 0,21,22 + 271 313 271 313 354.5 218 c 128,-1,23 + 438 123 438 123 581 123 c 0,24,25 + 723 123 723 123 807 218 c 128,-1,26 + 891 313 891 313 891 472 c 0,27,28 + 891 565 891 565 824 681 c 0,29,30 + 756 797 756 797 756 892 c 0,31,32 + 756 980 756 980 811 1031 c 128,-1,33 + 866 1082 866 1082 954 1082 c 2,34,-1 + 1078 1082 l 1,35,-1 + 1078 943 l 1,36,-1 + 996 943 l 2,37,38 + 953 943 953 943 931.5 922 c 128,-1,39 + 910 901 910 901 910 870 c 0,40,41 + 910 841 910 841 926 810 c 128,-1,42 + 942 779 942 779 994 706 c 0,43,44 + 1078 588 1078 588 1078 448 c 0,45,46 + 1078 239 1078 239 943 109.5 c 128,-1,47 + 808 -20 808 -20 581 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni028B +Encoding: 651 651 589 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 9 + 6 + 17 + 14 + 14 + 0 + 6 + 0 + 21 + 22 + 17 + 7 + 15 + 3 + 12 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 561 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1120 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 560 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +997 571 m 0,0,1 + 997 293 997 293 880 136.5 c 128,-1,2 + 763 -20 763 -20 545 -20 c 0,3,4 + 330 -20 330 -20 231.5 85 c 128,-1,5 + 133 190 133 190 133 419 c 2,6,-1 + 133 1082 l 1,7,-1 + 314 1082 l 1,8,-1 + 314 413 l 2,9,10 + 314 267 314 267 370 193 c 128,-1,11 + 426 119 426 119 553 119 c 0,12,13 + 812 119 812 119 812 567 c 0,14,15 + 812 706 812 706 779.5 845.5 c 128,-1,16 + 747 985 747 985 698 1082 c 1,17,-1 + 886 1082 l 1,18,19 + 939 964 939 964 968 826 c 128,-1,20 + 997 688 997 688 997 571 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni028C +Encoding: 652 652 590 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 3 + 2 + 1 + 0 + 5 + 8 + 9 + 9 + 5 + 2 + 3 + 11 + 10 + 5 + 3 + 3 + 9 + 21 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP1 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 858 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-18" 625 1100 basechar 0 +AnchorPoint: "Anchor-16" 420 1580 basechar 0 +AnchorPoint: "Anchor-15" 600 1540 basechar 0 +AnchorPoint: "Anchor-14" 520 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +411 1082 m 1,0,-1 + 624 1082 l 1,1,-1 + 1017 0 l 1,2,-1 + 825 0 l 1,3,-1 + 570 758 l 1,4,-1 + 518 941 l 1,5,-1 + 483 824 l 1,6,-1 + 444 706 l 1,7,-1 + 198 0 l 1,8,-1 + 7 0 l 1,9,-1 + 411 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni028D +Encoding: 653 653 591 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 10 + 9 + 23 + 24 + 24 + 4 + 9 + 3 + 26 + 25 + 10 + 24 + 21 + 14 + 20 + 4 + 3 + 17 + 21 + 7 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SLOOP +IP +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1310 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 720 1200 basechar 0 +AnchorPoint: "Anchor-15" 1260 1260 basechar 0 +AnchorPoint: "Anchor-14" 723 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +304 1082 m 1,0,-1 + 513 1082 l 1,1,-1 + 688 391 l 2,2,3 + 714 288 714 288 740 148 c 1,4,-1 + 759 241 l 1,5,-1 + 794 395 l 1,6,-1 + 970 1082 l 1,7,-1 + 1178 1082 l 1,8,-1 + 1473 0 l 1,9,-1 + 1295 0 l 1,10,-1 + 1120 714 l 2,11,12 + 1111 749 1111 749 1095.5 825 c 128,-1,13 + 1080 901 1080 901 1077 932 c 1,14,-1 + 1030 722 l 1,15,-1 + 836 0 l 1,16,-1 + 643 0 l 1,17,-1 + 452 725 l 2,18,19 + 409 898 409 898 406 932 c 1,20,-1 + 399 894 l 1,21,-1 + 361 717 l 1,22,-1 + 182 0 l 1,23,-1 + 6 0 l 1,24,-1 + 304 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni028E +Encoding: 654 654 592 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 10 + 9 + 16 + 17 + 17 + 9 + 14 + 2 + 4 + 23 + 22 + 14 + 0 + 10 + 17 + 21 + 0 + 5 + 80 + 89 + 0 + 1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 847 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1580 basechar 0 +AnchorPoint: "Anchor-15" 980 1540 basechar 0 +AnchorPoint: "Anchor-14" 492 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +834 1507 m 0,0,1 + 908 1507 908 1507 958 1496 c 1,2,-1 + 958 1361 l 1,3,4 + 920 1367 920 1367 874 1367 c 0,5,6 + 706 1367 706 1367 608 1120 c 2,7,-1 + 591 1077 l 1,8,-1 + 1010 0 l 1,9,-1 + 818 0 l 1,10,-1 + 598 598 l 2,11,12 + 578 652 578 652 542 760 c 128,-1,13 + 506 868 506 868 502 886 c 1,14,-1 + 434 689 l 1,15,-1 + 205 0 l 1,16,-1 + 15 0 l 1,17,-1 + 421 1082 l 2,18,19 + 485 1251 485 1251 542 1336 c 128,-1,20 + 599 1421 599 1421 670.5 1464 c 128,-1,21 + 742 1507 742 1507 834 1507 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni028F +Encoding: 655 655 593 +Width: 1064 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 6 + 8 + 0 + 3 + 2 + 2 + 0 + 6 + 3 + 10 + 9 + 4 + 5 + 2 + 15 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 462 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1064 1540 basechar 0 +AnchorPoint: "Anchor-20" 1064 -380 basechar 0 +AnchorPoint: "Anchor-16" 530 1200 basechar 0 +AnchorPoint: "Anchor-15" 1020 1260 basechar 0 +AnchorPoint: "Anchor-14" 525 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +436 0 m 1,0,-1 + 436 440 l 1,1,-1 + 27 1082 l 1,2,-1 + 229 1082 l 1,3,-1 + 529 588 l 1,4,-1 + 838 1082 l 1,5,-1 + 1037 1082 l 1,6,-1 + 616 437 l 1,7,-1 + 616 0 l 1,8,-1 + 436 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0290 +Encoding: 656 656 594 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 10 + 0 + 14 + 18 + 19 + 12 + 12 + 15 + 18 + 0 + 4 + 21 + 5 + 22 + 16 + 15 + 80 + 89 + 16 + 15 + 12 + 19 + 80 + 89 + 12 + 21 + 8 + 3 + 80 + 89 + 8 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 979 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 492 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +950 -115 m 2,0,1 + 950 -196 950 -196 971.5 -229.5 c 128,-1,2 + 993 -263 993 -263 1048 -263 c 0,3,4 + 1101 -263 1101 -263 1138 -252 c 1,5,-1 + 1138 -413 l 1,6,7 + 1071 -425 1071 -425 1013 -425 c 0,8,9 + 773 -425 773 -425 773 -129 c 2,10,-1 + 773 0 l 1,11,-1 + 49 0 l 1,12,-1 + 49 137 l 1,13,-1 + 710 943 l 1,14,-1 + 89 943 l 1,15,-1 + 89 1082 l 1,16,-1 + 913 1082 l 1,17,-1 + 913 945 l 1,18,-1 + 251 139 l 1,19,-1 + 950 139 l 1,20,-1 + 950 -115 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0291 +Encoding: 657 657 595 +Width: 1108 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 47 + 10 + 14 + 26 + 0 + 14 + 0 + 22 + 30 + 30 + 6 + 17 + 21 + 22 + 15 + 15 + 18 + 21 + 6 + 4 + 34 + 33 + 21 + 18 + 19 + 18 + 80 + 89 + 3 + 23 + 80 + 89 + 3 + 3 + 15 + 19 + 15 + 26 + 16 + 22 + 15 + 22 + 80 + 89 + 12 + 10 + 15 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[rnd,grey] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 792 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1108 1540 basechar 0 +AnchorPoint: "Anchor-20" 1108 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 525 -300 basechar 0 +LayerCount: 2 +Fore +SplineSet +424 139 m 1,0,1 + 525 309 525 309 619.5 388 c 128,-1,2 + 714 467 714 467 811 467 c 0,3,4 + 929 467 929 467 997 405.5 c 128,-1,5 + 1065 344 1065 344 1065 241 c 0,6,7 + 1065 121 1065 121 995 60.5 c 128,-1,8 + 925 0 925 0 773 0 c 2,9,-1 + 520 0 l 1,10,11 + 472 -94 472 -94 438 -178 c 1,12,-1 + 299 -117 l 1,13,-1 + 354 0 l 1,14,-1 + 49 0 l 1,15,-1 + 49 137 l 1,16,-1 + 710 943 l 1,17,-1 + 89 943 l 1,18,-1 + 89 1082 l 1,19,-1 + 913 1082 l 1,20,-1 + 913 945 l 1,21,-1 + 251 139 l 1,22,-1 + 424 139 l 1,0,1 +809 322 m 0,23,24 + 762 322 762 322 712 281.5 c 128,-1,25 + 662 241 662 241 592 139 c 1,26,-1 + 764 139 l 2,27,28 + 841 139 841 139 876 161 c 128,-1,29 + 911 183 911 183 911 238 c 0,30,31 + 911 277 911 277 884 299.5 c 128,-1,32 + 857 322 857 322 809 322 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni0292 +Encoding: 658 658 596 +Width: 1116 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 3 + 24 + 24 + 27 + 26 + 2 + 2 + 20 + 6 + 13 + 27 + 6 + 3 + 29 + 28 + 25 + 3 + 3 + 24 + 80 + 89 + 3 + 3 + 10 + 0 + 10 + 17 + 80 + 89 + 14 + 14 + 10 + 27 + 2 + 27 + 0 + 27 + 80 + 89 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 590 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1116 1540 basechar 0 +AnchorPoint: "Anchor-20" 1116 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +116 1082 m 1,0,-1 + 999 1082 l 1,1,-1 + 999 904 l 1,2,-1 + 616 544 l 1,3,4 + 812 519 812 519 923.5 393.5 c 128,-1,5 + 1035 268 1035 268 1035 69 c 0,6,7 + 1035 -70 1035 -70 976 -184 c 128,-1,8 + 917 -298 917 -298 809 -361.5 c 128,-1,9 + 701 -425 701 -425 561 -425 c 0,10,11 + 345 -425 345 -425 218 -330 c 128,-1,12 + 91 -235 91 -235 68 -48 c 1,13,-1 + 246 -36 l 1,14,15 + 265 -169 265 -169 342 -228.5 c 128,-1,16 + 419 -288 419 -288 555 -288 c 0,17,18 + 692 -288 692 -288 773 -188.5 c 128,-1,19 + 854 -89 854 -89 854 75 c 0,20,21 + 854 231 854 231 762.5 321 c 128,-1,22 + 671 411 671 411 508 411 c 2,23,-1 + 426 411 l 1,24,-1 + 426 555 l 1,25,-1 + 819 941 l 1,26,-1 + 116 941 l 1,27,-1 + 116 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0293 +Encoding: 659 659 597 +Width: 1116 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 60 + 40 + 7 + 20 + 24 + 25 + 18 + 18 + 35 + 12 + 1 + 30 + 5 + 32 + 7 + 32 + 14 + 28 + 28 + 24 + 21 + 7 + 4 + 43 + 44 + 24 + 21 + 22 + 21 + 80 + 89 + 1 + 35 + 30 + 12 + 4 + 10 + 0 + 10 + 37 + 80 + 89 + 25 + 18 + 80 + 89 + 10 + 25 + 10 + 25 + 3 + 22 + 15 + 0 + 3 + 3 + 33 + 81 + 89 + 3 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 561 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1116 1540 basechar 0 +AnchorPoint: "Anchor-20" 1116 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +999 -426 m 1,0,-1 + 875 -290 l 1,1,2 + 727 -425 727 -425 510 -425 c 0,3,4 + 383 -425 383 -425 293 -390.5 c 128,-1,5 + 203 -356 203 -356 155.5 -295 c 128,-1,6 + 108 -234 108 -234 108 -160 c 0,7,8 + 108 -43 108 -43 193 22 c 128,-1,9 + 278 87 278 87 435 87 c 0,10,11 + 621 87 621 87 835 -62 c 1,12,13 + 854 6 854 6 854 75 c 0,14,15 + 854 230 854 230 758 320.5 c 128,-1,16 + 662 411 662 411 509 411 c 2,17,-1 + 427 411 l 1,18,-1 + 427 555 l 1,19,-1 + 818 942 l 1,20,-1 + 117 942 l 1,21,-1 + 117 1083 l 1,22,-1 + 1000 1083 l 1,23,-1 + 1000 905 l 1,24,-1 + 621 545 l 1,25,26 + 810 521 810 521 922.5 391.5 c 128,-1,27 + 1035 262 1035 262 1035 69 c 0,28,29 + 1035 -60 1035 -60 970 -172 c 1,30,31 + 1032 -228 1032 -228 1099 -301 c 1,32,-1 + 999 -426 l 1,0,-1 +487 -295 m 0,33,34 + 668 -295 668 -295 765 -190 c 1,35,36 + 591 -49 591 -49 427 -49 c 0,37,38 + 354 -49 354 -49 312.5 -78 c 128,-1,39 + 271 -107 271 -107 271 -160 c 0,40,41 + 271 -221 271 -221 331 -258 c 128,-1,42 + 391 -295 391 -295 487 -295 c 0,33,34 +EndSplineSet +EndChar + +StartChar: uni0294 +Encoding: 660 660 598 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 12 + 13 + 23 + 0 + 6 + 19 + 19 + 0 + 13 + 3 + 24 + 25 + 3 + 22 + 80 + 89 + 3 + 3 + 0 + 16 + 12 + 12 + 16 + 16 + 9 + 80 + 89 + 16 + 0 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 385 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1580 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 440 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +364 0 m 1,0,-1 + 364 542 l 1,1,2 + 410 524 410 524 471 524 c 0,3,4 + 616 524 616 524 686 623.5 c 128,-1,5 + 756 723 756 723 756 938 c 0,6,7 + 756 1157 756 1157 688.5 1250 c 128,-1,8 + 621 1343 621 1343 475 1343 c 0,9,10 + 370 1343 370 1343 313 1290 c 128,-1,11 + 256 1237 256 1237 242 1147 c 1,12,-1 + 57 1161 l 1,13,14 + 86 1312 86 1312 194.5 1398 c 128,-1,15 + 303 1484 303 1484 470 1484 c 0,16,17 + 698 1484 698 1484 821 1345.5 c 128,-1,18 + 944 1207 944 1207 944 934 c 0,19,20 + 944 691 944 691 840.5 546.5 c 128,-1,21 + 737 402 737 402 544 386 c 1,22,-1 + 544 0 l 1,23,-1 + 364 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0295 +Encoding: 661 661 599 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 11 + 10 + 23 + 0 + 17 + 4 + 4 + 0 + 10 + 3 + 25 + 24 + 20 + 1 + 80 + 89 + 20 + 20 + 0 + 7 + 7 + 14 + 80 + 89 + 11 + 11 + 7 + 0 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 528 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +491 0 m 1,0,-1 + 491 386 l 1,1,2 + 297 403 297 403 194 547 c 128,-1,3 + 91 691 91 691 91 934 c 0,4,5 + 91 1207 91 1207 210.5 1345.5 c 128,-1,6 + 330 1484 330 1484 555 1484 c 0,7,8 + 721 1484 721 1484 830.5 1398 c 128,-1,9 + 940 1312 940 1312 968 1161 c 1,10,-1 + 783 1147 l 1,11,12 + 769 1237 769 1237 712 1290 c 128,-1,13 + 655 1343 655 1343 550 1343 c 0,14,15 + 406 1343 406 1343 342.5 1252.5 c 128,-1,16 + 279 1162 279 1162 279 938 c 0,17,18 + 279 725 279 725 348.5 624.5 c 128,-1,19 + 418 524 418 524 564 524 c 0,20,21 + 625 524 625 524 671 542 c 1,22,-1 + 671 0 l 1,23,-1 + 491 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0296 +Encoding: 662 662 600 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 17 + 4 + 1 + 22 + 10 + 22 + 4 + 3 + 25 + 24 + 23 + 0 + 7 + 14 + 80 + 89 + 11 + 11 + 7 + 22 + 1 + 20 + 80 + 89 + 1 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 517 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 480 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +544 1484 m 1,0,-1 + 544 1078 l 1,1,2 + 738 1061 738 1061 841 917 c 128,-1,3 + 944 773 944 773 944 530 c 0,4,5 + 944 258 944 258 821.5 119 c 128,-1,6 + 699 -20 699 -20 470 -20 c 0,7,8 + 304 -20 304 -20 194.5 66 c 128,-1,9 + 85 152 85 152 57 303 c 1,10,-1 + 242 317 l 1,11,12 + 256 227 256 227 313 174 c 128,-1,13 + 370 121 370 121 475 121 c 0,14,15 + 622 121 622 121 689 214.5 c 128,-1,16 + 756 308 756 308 756 526 c 0,17,18 + 756 737 756 737 686.5 835 c 128,-1,19 + 617 933 617 933 471 933 c 0,20,21 + 410 933 410 933 364 915 c 1,22,-1 + 364 1484 l 1,23,-1 + 544 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0297 +Encoding: 663 663 601 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 14 + 27 + 7 + 6 + 6 + 20 + 21 + 27 + 21 + 28 + 29 + 20 + 20 + 24 + 24 + 17 + 80 + 89 + 24 + 3 + 10 + 80 + 89 + 7 + 7 + 3 + 16 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 583 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 560 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +87 542 m 2,0,1 + 87 815 87 815 207 958.5 c 128,-1,2 + 327 1102 327 1102 551 1102 c 0,3,4 + 717 1102 717 1102 826.5 1016 c 128,-1,5 + 936 930 936 930 964 779 c 1,6,-1 + 779 765 l 1,7,8 + 765 855 765 855 708 908 c 128,-1,9 + 651 961 651 961 546 961 c 0,10,11 + 401 961 401 961 333 865 c 128,-1,12 + 265 769 265 769 265 546 c 2,13,-1 + 265 140 l 2,14,15 + 265 -71 265 -71 336.5 -177.5 c 128,-1,16 + 408 -284 408 -284 548 -284 c 0,17,18 + 644 -284 644 -284 708.5 -232 c 128,-1,19 + 773 -180 773 -180 788 -72 c 1,20,-1 + 970 -84 l 1,21,22 + 949 -240 949 -240 837 -333 c 128,-1,23 + 725 -426 725 -426 553 -426 c 0,24,25 + 326 -426 326 -426 206.5 -282.5 c 128,-1,26 + 87 -139 87 -139 87 136 c 2,27,-1 + 87 542 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0298 +Encoding: 664 664 602 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 15 + 30 + 27 + 27 + 0 + 21 + 8 + 0 + 8 + 32 + 31 + 28 + 27 + 28 + 27 + 11 + 4 + 11 + 18 + 83 + 89 + 11 + 4 + 4 + 24 + 83 + 89 + 4 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 800 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1495 711 m 0,0,1 + 1495 490 1495 490 1410.5 324 c 128,-1,2 + 1326 158 1326 158 1168 69 c 128,-1,3 + 1010 -20 1010 -20 795 -20 c 0,4,5 + 578 -20 578 -20 420.5 68 c 128,-1,6 + 263 156 263 156 180 322.5 c 128,-1,7 + 97 489 97 489 97 711 c 0,8,9 + 97 1049 97 1049 282 1239.5 c 128,-1,10 + 467 1430 467 1430 797 1430 c 0,11,12 + 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 + 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 + 1495 933 1495 933 1495 711 c 0,0,1 +1300 711 m 0,15,16 + 1300 974 1300 974 1168.5 1124 c 128,-1,17 + 1037 1274 1037 1274 797 1274 c 0,18,19 + 555 1274 555 1274 423 1126 c 128,-1,20 + 291 978 291 978 291 711 c 0,21,22 + 291 446 291 446 424.5 290.5 c 128,-1,23 + 558 135 558 135 795 135 c 0,24,25 + 1039 135 1039 135 1169.5 285.5 c 128,-1,26 + 1300 436 1300 436 1300 711 c 0,15,16 +700 606 m 1,27,-1 + 700 825 l 1,28,-1 + 895 825 l 1,29,-1 + 895 606 l 1,30,-1 + 700 606 l 1,27,-1 +EndSplineSet +EndChar + +StartChar: uni0299 +Encoding: 665 665 603 +Width: 1088 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 6 + 26 + 3 + 26 + 16 + 16 + 14 + 30 + 3 + 3 + 20 + 10 + 14 + 10 + 34 + 35 + 48 + 35 + 1 + 35 +PUSHW_1 + -64 +NPUSHB + 40 + 30 + 35 + 72 + 15 + 35 + 47 + 35 + 223 + 35 + 3 + 9 + 3 + 6 + 26 + 24 + 26 + 24 + 81 + 89 + 15 + 26 + 1 + 11 + 3 + 26 + 26 + 14 + 15 + 15 + 25 + 80 + 89 + 15 + 15 + 14 + 16 + 80 + 89 + 14 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +CALL +DELTAP2 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1088 1540 basechar 0 +AnchorPoint: "Anchor-20" 1088 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +564 1082 m 2,0,1 + 764 1082 764 1082 864 1012 c 128,-1,2 + 964 942 964 942 964 811 c 0,3,4 + 964 718 964 718 907 656 c 128,-1,5 + 850 594 850 594 741 573 c 1,6,-1 + 741 566 l 1,7,8 + 870 549 870 549 934.5 484 c 128,-1,9 + 999 419 999 419 999 312 c 0,10,11 + 999 165 999 165 889.5 82.5 c 128,-1,12 + 780 0 780 0 587 0 c 2,13,-1 + 142 0 l 1,14,-1 + 142 1082 l 1,15,-1 + 564 1082 l 2,0,1 +322 133 m 1,16,-1 + 558 133 l 2,17,18 + 696 133 696 133 752 175.5 c 128,-1,19 + 808 218 808 218 808 311 c 0,20,21 + 808 412 808 412 748.5 453.5 c 128,-1,22 + 689 495 689 495 546 495 c 2,23,-1 + 322 495 l 1,24,-1 + 322 133 l 1,16,-1 +322 945 m 1,25,-1 + 322 625 l 1,26,-1 + 538 625 l 2,27,28 + 666 625 666 625 720.5 661 c 128,-1,29 + 775 697 775 697 775 787 c 0,30,31 + 775 869 775 869 724 907 c 128,-1,32 + 673 945 673 945 552 945 c 2,33,-1 + 322 945 l 1,25,-1 +EndSplineSet +EndChar + +StartChar: uni029A +Encoding: 666 666 604 +Width: 1039 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 0 + 30 + 6 + 6 + 33 + 33 + 11 + 22 + 15 + 28 + 22 + 28 + 40 + 39 + 30 + 9 + 12 + 9 + 12 + 80 + 89 + 15 + 9 + 1 + 11 + 3 + 9 + 9 + 25 + 36 + 36 + 3 + 80 + 89 + 36 + 16 + 25 + 18 + 80 + 89 + 25 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1039 1540 basechar 0 +AnchorPoint: "Anchor-20" 1039 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 480 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +784 556 m 0,0,1 + 784 762 784 762 713 865.5 c 128,-1,2 + 642 969 642 969 481 969 c 0,3,4 + 388 969 388 969 335 924 c 128,-1,5 + 282 879 282 879 282 794 c 0,6,7 + 282 716 282 716 338.5 670 c 128,-1,8 + 395 624 395 624 487 624 c 2,9,-1 + 577 624 l 1,10,-1 + 577 483 l 1,11,-1 + 481 483 l 2,12,13 + 364 483 364 483 308.5 435 c 128,-1,14 + 253 387 253 387 253 300 c 0,15,16 + 253 208 253 208 310.5 160.5 c 128,-1,17 + 368 113 368 113 477 113 c 0,18,19 + 592 113 592 113 657 161 c 128,-1,20 + 722 209 722 209 753 308 c 128,-1,21 + 784 407 784 407 784 556 c 0,0,1 +973 556 m 0,22,23 + 973 269 973 269 850.5 125 c 128,-1,24 + 728 -19 728 -19 477 -19 c 0,25,26 + 289 -19 289 -19 181 65.5 c 128,-1,27 + 73 150 73 150 73 297 c 0,28,29 + 73 517 73 517 322 558 c 1,30,31 + 211 592 211 592 156.5 648.5 c 128,-1,32 + 102 705 102 705 102 793 c 0,33,34 + 102 935 102 935 207.5 1018.5 c 128,-1,35 + 313 1102 313 1102 500 1102 c 0,36,37 + 727 1102 727 1102 850 959.5 c 128,-1,38 + 973 817 973 817 973 556 c 0,22,23 +EndSplineSet +EndChar + +StartChar: uni029B +Encoding: 667 667 605 +Width: 1144 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 27 + 0 + 39 + 39 + 11 + 16 + 6 + 22 + 33 + 22 + 14 + 16 + 3 + 41 + 40 + 30 + 35 + 80 + 89 + 30 + 25 + 14 + 13 + 80 + 89 + 27 + 0 + 25 + 14 + 0 + 14 + 0 + 19 + 25 + 25 + 3 + 80 + 89 + 25 + 16 + 19 + 9 + 80 + 89 + 19 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1144 1540 basechar 0 +AnchorPoint: "Anchor-20" 1144 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +802 765 m 1,0,1 + 788 855 788 855 731 908 c 128,-1,2 + 674 961 674 961 569 961 c 0,3,4 + 416 961 416 961 348 858.5 c 128,-1,5 + 280 756 280 756 280 546 c 0,6,7 + 280 324 280 324 356 221 c 128,-1,8 + 432 118 432 118 591 118 c 0,9,10 + 722 118 722 118 825 185 c 1,11,-1 + 825 404 l 1,12,-1 + 576 404 l 1,13,-1 + 576 541 l 1,14,-1 + 1007 541 l 1,15,-1 + 1007 123 l 1,16,17 + 932 55 932 55 824.5 17.5 c 128,-1,18 + 717 -20 717 -20 595 -20 c 0,19,20 + 350 -20 350 -20 222 123 c 128,-1,21 + 94 266 94 266 94 542 c 0,22,23 + 94 812 94 812 219.5 957 c 128,-1,24 + 345 1102 345 1102 574 1102 c 0,25,26 + 724 1102 724 1102 830 1030 c 1,27,28 + 839 1151 839 1151 904.5 1217 c 128,-1,29 + 970 1283 970 1283 1088 1283 c 0,30,31 + 1135 1283 1135 1283 1187 1271 c 1,32,-1 + 1187 1121 l 1,33,34 + 1151 1137 1151 1137 1108 1137 c 0,35,36 + 1042 1137 1042 1137 1014.5 1101.5 c 128,-1,37 + 987 1066 987 1066 987 989 c 2,38,-1 + 987 779 l 1,39,-1 + 802 765 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni029C +Encoding: 668 668 606 +Width: 1131 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 1 + 9 + 9 + 10 + 2 + 6 + 6 + 5 + 10 + 5 + 12 + 13 + 64 + 13 + 80 + 13 + 96 + 13 + 3 + 64 + 13 + 128 + 13 + 2 + 0 + 13 + 1 + 16 + 3 + 13 +PUSHW_1 + -64 +NPUSHB + 19 + 19 + 23 + 72 + 1 + 8 + 81 + 89 + 47 + 1 + 1 + 1 + 1 + 10 + 3 + 11 + 15 + 6 + 10 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +DELTAP1 +CALL +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 836 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1131 1540 basechar 0 +AnchorPoint: "Anchor-20" 1131 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +314 1082 m 1,0,-1 + 314 624 l 1,1,-1 + 817 624 l 1,2,-1 + 817 1082 l 1,3,-1 + 997 1082 l 1,4,-1 + 997 0 l 1,5,-1 + 817 0 l 1,6,-1 + 817 493 l 1,7,-1 + 314 493 l 1,8,-1 + 314 0 l 1,9,-1 + 134 0 l 1,10,-1 + 134 1082 l 1,11,-1 + 314 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni029D +Encoding: 669 669 607 +Width: 814 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 29 + 7 + 21 + 21 + 32 + 12 + 10 + 14 + 26 + 3 + 14 + 3 + 34 + 33 + 30 + 29 + 83 + 89 + 30 + 0 + 13 + 23 + 6 + 23 + 80 + 89 + 10 + 15 + 6 + 1 + 10 + 3 + 6 + 6 + 0 + 8 + 15 + 0 + 18 + 80 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 352 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 814 1540 basechar 0 +AnchorPoint: "Anchor-20" 814 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 720 1540 basechar 0 +AnchorPoint: "Anchor-14" 360 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +343 -425 m 0,0,1 + 184 -425 184 -425 92.5 -355.5 c 128,-1,2 + 1 -286 1 -286 1 -161 c 0,3,4 + 1 -35 1 -35 74 29.5 c 128,-1,5 + 147 94 147 94 304 94 c 2,6,-1 + 493 94 l 1,7,-1 + 493 1082 l 1,8,-1 + 673 1082 l 1,9,-1 + 673 94 l 1,10,-1 + 809 94 l 1,11,-1 + 809 -45 l 1,12,-1 + 673 -45 l 1,13,-1 + 673 -82 l 2,14,15 + 673 -180 673 -180 633.5 -258 c 128,-1,16 + 594 -336 594 -336 520 -380.5 c 128,-1,17 + 446 -425 446 -425 343 -425 c 0,0,1 +315 -283 m 0,18,19 + 401 -283 401 -283 447 -229.5 c 128,-1,20 + 493 -176 493 -176 493 -69 c 2,21,-1 + 493 -45 l 1,22,-1 + 310 -45 l 2,23,24 + 233 -45 233 -45 200.5 -75 c 128,-1,25 + 168 -105 168 -105 168 -162 c 0,26,27 + 168 -218 168 -218 208.5 -250.5 c 128,-1,28 + 249 -283 249 -283 315 -283 c 0,18,19 +493 1312 m 1,29,-1 + 493 1484 l 1,30,-1 + 673 1484 l 1,31,-1 + 673 1312 l 1,32,-1 + 493 1312 l 1,29,-1 +EndSplineSet +EndChar + +StartChar: uni029E +Encoding: 670 670 608 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 10 + 1 + 11 + 2 + 2 + 6 + 6 + 5 + 8 + 9 + 9 + 0 + 11 + 5 + 11 + 13 + 12 + 7 + 2 + 2 + 1 + 10 + 3 + 9 + 3 + 11 + 15 + 6 + 9 + 21 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,white] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 748 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +212 1082 m 1,0,-1 + 578 588 l 1,1,-1 + 710 697 l 1,2,-1 + 710 1082 l 1,3,-1 + 890 1082 l 1,4,-1 + 890 -402 l 1,5,-1 + 710 -402 l 1,6,-1 + 710 525 l 1,7,-1 + 235 0 l 1,8,-1 + 24 0 l 1,9,-1 + 463 465 l 1,10,-1 + 1 1082 l 1,11,-1 + 212 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni029F +Encoding: 671 671 609 +Width: 827 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 4 + 1 + 0 + 1 + 7 + 6 + 2 + 15 + 1 + 4 + 80 + 89 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 627 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 827 1540 basechar 0 +AnchorPoint: "Anchor-20" 827 -380 basechar 0 +AnchorPoint: "Anchor-16" 480 1200 basechar 0 +AnchorPoint: "Anchor-15" 680 1260 basechar 0 +AnchorPoint: "Anchor-14" 430 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +765 0 m 1,0,-1 + 134 0 l 1,1,-1 + 134 1082 l 1,2,-1 + 311 1082 l 1,3,-1 + 311 149 l 1,4,-1 + 765 149 l 1,5,-1 + 765 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02A0 +Encoding: 672 672 610 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 29 + 10 + 23 + 23 + 22 + 35 + 3 + 22 + 3 + 41 + 16 + 42 + 23 + 27 + 13 + 19 + 80 + 89 + 13 + 1 + 8 + 25 + 5 + 0 + 5 + 32 + 80 + 89 + 5 + 16 + 0 + 38 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 847 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1540 basechar 0 +AnchorPoint: "Anchor-15" 1260 1540 basechar 0 +AnchorPoint: "Anchor-14" 530 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +484 -20 m 0,0,1 + 278 -20 278 -20 182 119 c 128,-1,2 + 86 258 86 258 86 536 c 0,3,4 + 86 1102 86 1102 484 1102 c 0,5,6 + 607 1102 607 1102 687 1058.5 c 128,-1,7 + 767 1015 767 1015 821 914 c 1,8,-1 + 823 914 l 1,9,-1 + 823 1202 l 2,10,11 + 823 1347 823 1347 896 1422.5 c 128,-1,12 + 969 1498 969 1498 1112 1498 c 0,13,14 + 1166 1498 1166 1498 1205 1490 c 2,15,-1 + 1242 1482 l 1,16,-1 + 1242 1316 l 1,17,18 + 1186 1336 1186 1336 1126 1336 c 0,19,20 + 1001 1336 1001 1336 1001 1188 c 2,21,-1 + 1001 -425 l 1,22,-1 + 821 -425 l 1,23,-1 + 821 14 l 1,24,-1 + 825 178 l 1,25,-1 + 823 178 l 1,26,27 + 769 71 769 71 690 25.5 c 128,-1,28 + 611 -20 611 -20 484 -20 c 0,0,1 +821 554 m 0,29,30 + 821 765 821 765 752 867 c 128,-1,31 + 683 969 683 969 532 969 c 0,32,33 + 395 969 395 969 335 867 c 128,-1,34 + 275 765 275 765 275 542 c 0,35,36 + 275 315 275 315 335.5 217 c 128,-1,37 + 396 119 396 119 530 119 c 0,38,39 + 683 119 683 119 752 228 c 128,-1,40 + 821 337 821 337 821 554 c 0,29,30 +EndSplineSet +EndChar + +StartChar: uni02A1 +Encoding: 673 673 611 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 57 + 13 + 0 + 14 + 24 + 28 + 28 + 1 + 29 + 26 + 7 + 20 + 20 + 29 + 14 + 3 + 32 + 33 + 0 + 31 + 81 + 89 + 0 + 0 + 24 + 24 + 27 + 81 + 89 + 4 + 23 + 80 + 89 + 15 + 4 + 31 + 4 + 63 + 4 + 3 + 9 + 3 + 24 + 4 + 24 + 4 + 17 + 29 + 21 + 13 + 13 + 17 + 17 + 10 + 80 + 89 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 396 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 660 1540 basechar 0 +AnchorPoint: "Anchor-15" 880 1540 basechar 0 +AnchorPoint: "Anchor-14" 460 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +47 276 m 1,0,-1 + 364 276 l 1,1,-1 + 364 542 l 1,2,3 + 410 524 410 524 471 524 c 0,4,5 + 616 524 616 524 686 623.5 c 128,-1,6 + 756 723 756 723 756 938 c 0,7,8 + 756 1157 756 1157 688.5 1250 c 128,-1,9 + 621 1343 621 1343 475 1343 c 0,10,11 + 370 1343 370 1343 313 1290 c 128,-1,12 + 256 1237 256 1237 242 1147 c 1,13,-1 + 57 1161 l 1,14,15 + 86 1312 86 1312 194.5 1398 c 128,-1,16 + 303 1484 303 1484 470 1484 c 0,17,18 + 698 1484 698 1484 821 1345.5 c 128,-1,19 + 944 1207 944 1207 944 934 c 0,20,21 + 944 691 944 691 840.5 546.5 c 128,-1,22 + 737 402 737 402 544 386 c 1,23,-1 + 544 276 l 1,24,-1 + 875 276 l 1,25,-1 + 875 153 l 1,26,-1 + 544 153 l 1,27,-1 + 544 0 l 1,28,-1 + 364 0 l 1,29,-1 + 364 153 l 1,30,-1 + 47 153 l 1,31,-1 + 47 276 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02A2 +Encoding: 674 674 612 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 54 + 24 + 5 + 11 + 30 + 2 + 2 + 7 + 3 + 31 + 18 + 17 + 17 + 3 + 11 + 3 + 32 + 33 + 1 + 5 + 6 + 5 + 81 + 89 + 30 + 6 + 27 + 8 + 80 + 89 + 15 + 27 + 31 + 27 + 63 + 27 + 3 + 9 + 3 + 6 + 27 + 6 + 27 + 3 + 14 + 14 + 21 + 80 + 89 + 18 + 18 + 14 + 0 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 506 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 530 1580 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 570 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +976 153 m 1,0,-1 + 659 153 l 1,1,-1 + 659 0 l 1,2,-1 + 479 0 l 1,3,-1 + 479 153 l 1,4,-1 + 148 153 l 1,5,-1 + 148 276 l 1,6,-1 + 479 276 l 1,7,-1 + 479 386 l 1,8,9 + 285 403 285 403 182 547 c 128,-1,10 + 79 691 79 691 79 934 c 0,11,12 + 79 1206 79 1206 201.5 1345 c 128,-1,13 + 324 1484 324 1484 553 1484 c 0,14,15 + 719 1484 719 1484 828.5 1398 c 128,-1,16 + 938 1312 938 1312 966 1161 c 1,17,-1 + 781 1147 l 1,18,19 + 767 1237 767 1237 710 1290 c 128,-1,20 + 653 1343 653 1343 548 1343 c 0,21,22 + 401 1343 401 1343 334 1249.5 c 128,-1,23 + 267 1156 267 1156 267 938 c 0,24,25 + 267 725 267 725 336.5 624.5 c 128,-1,26 + 406 524 406 524 552 524 c 0,27,28 + 613 524 613 524 659 542 c 1,29,-1 + 659 276 l 1,30,-1 + 976 276 l 1,31,-1 + 976 153 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02A3 +Encoding: 675 675 613 +Width: 1975 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 53 + 26 + 10 + 23 + 38 + 38 + 19 + 19 + 32 + 3 + 18 + 39 + 22 + 24 + 22 + 18 + 10 + 4 + 41 + 42 + 22 + 39 + 21 + 39 + 80 + 89 + 21 + 15 + 18 + 0 + 15 + 3 + 12 + 7 + 12 + 35 + 80 + 89 + 12 + 16 + 7 + 29 + 80 + 89 + 7 + 22 + 23 + 38 + 0 + 38 + 80 + 89 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1760 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1975 1540 basechar 0 +AnchorPoint: "Anchor-20" 1975 -380 basechar 0 +AnchorPoint: "Anchor-16" 1420 1200 basechar 0 +AnchorPoint: "Anchor-15" 1890 1260 basechar 0 +AnchorPoint: "Anchor-14" 1416 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +835 0 m 1,0,1 + 832 16 832 16 828.5 74 c 128,-1,2 + 825 132 825 132 825 174 c 1,3,-1 + 821 174 l 1,4,5 + 771 70 771 70 688.5 25 c 128,-1,6 + 606 -20 606 -20 484 -20 c 0,7,8 + 279 -20 279 -20 182.5 118 c 128,-1,9 + 86 256 86 256 86 536 c 0,10,11 + 86 1102 86 1102 484 1102 c 0,12,13 + 607 1102 607 1102 689 1057 c 128,-1,14 + 771 1012 771 1012 821 914 c 1,15,-1 + 823 914 l 1,16,-1 + 821 1035 l 1,17,-1 + 821 1484 l 1,18,-1 + 1001 1484 l 1,19,-1 + 1001 1082 l 1,20,-1 + 1883 1082 l 1,21,-1 + 1883 945 l 1,22,-1 + 1201 139 l 1,23,-1 + 1920 139 l 1,24,-1 + 1920 0 l 1,25,-1 + 835 0 l 1,0,1 +275 542 m 0,26,27 + 275 315 275 315 335 217 c 128,-1,28 + 395 119 395 119 530 119 c 0,29,30 + 683 119 683 119 752 225 c 128,-1,31 + 821 331 821 331 821 554 c 0,32,33 + 821 769 821 769 752 869 c 128,-1,34 + 683 969 683 969 532 969 c 0,35,36 + 396 969 396 969 335.5 868.5 c 128,-1,37 + 275 768 275 768 275 542 c 0,26,27 +1001 139 m 1,38,-1 + 1680 943 l 1,39,-1 + 1001 943 l 1,40,-1 + 1001 139 l 1,38,-1 +EndSplineSet +EndChar + +StartChar: uni02A4 +Encoding: 676 676 614 +Width: 1856 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 73 + 19 + 40 + 40 + 56 + 35 + 35 + 22 + 41 + 17 + 56 + 14 + 29 + 28 + 28 + 14 + 42 + 15 + 15 + 46 + 14 + 50 + 6 + 6 + 14 + 17 + 22 + 4 + 63 + 62 + 29 + 26 + 46 + 19 + 39 + 80 + 89 + 19 + 19 + 16 + 46 + 21 + 18 + 42 + 16 + 42 + 80 + 89 + 16 + 15 + 14 + 0 + 11 + 0 + 8 + 3 + 8 + 59 + 80 + 89 + 8 + 16 + 26 + 32 + 80 + 89 + 26 + 3 + 3 + 53 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1375 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1856 1540 basechar 0 +AnchorPoint: "Anchor-20" 1856 -380 basechar 0 +AnchorPoint: "Anchor-16" 1420 1200 basechar 0 +AnchorPoint: "Anchor-15" 1780 1260 basechar 0 +AnchorPoint: "Anchor-14" 1306 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +821 174 m 1,0,1 + 771 70 771 70 688.5 25 c 128,-1,2 + 606 -20 606 -20 484 -20 c 0,3,4 + 279 -20 279 -20 182.5 118 c 128,-1,5 + 86 256 86 256 86 536 c 0,6,7 + 86 1102 86 1102 484 1102 c 0,8,9 + 607 1102 607 1102 689 1057 c 128,-1,10 + 771 1012 771 1012 821 914 c 1,11,-1 + 823 914 l 1,12,-1 + 821 1035 l 1,13,-1 + 821 1484 l 1,14,-1 + 1001 1484 l 1,15,-1 + 1001 1082 l 1,16,-1 + 1764 1082 l 1,17,-1 + 1764 904 l 1,18,-1 + 1385 543 l 1,19,20 + 1575 518 1575 518 1687.5 390 c 128,-1,21 + 1800 262 1800 262 1800 69 c 0,22,23 + 1800 -64 1800 -64 1738.5 -179 c 128,-1,24 + 1677 -294 1677 -294 1567 -360 c 128,-1,25 + 1457 -426 1457 -426 1318 -426 c 0,26,27 + 950 -426 950 -426 862 -154 c 1,28,-1 + 1026 -115 l 1,29,30 + 1061 -206 1061 -206 1131 -246 c 128,-1,31 + 1201 -286 1201 -286 1312 -286 c 0,32,33 + 1446 -286 1446 -286 1532.5 -183.5 c 128,-1,34 + 1619 -81 1619 -81 1619 75 c 256,35,36 + 1619 231 1619 231 1527 321 c 128,-1,37 + 1435 411 1435 411 1273 411 c 2,38,-1 + 1191 411 l 1,39,-1 + 1191 555 l 1,40,-1 + 1580 941 l 1,41,-1 + 1001 941 l 1,42,-1 + 1001 223 l 2,43,44 + 1001 54 1001 54 1007 0 c 1,45,-1 + 835 0 l 1,46,47 + 832 16 832 16 828.5 74 c 128,-1,48 + 825 132 825 132 825 174 c 1,49,-1 + 821 174 l 1,0,1 +275 542 m 0,50,51 + 275 315 275 315 335 217 c 128,-1,52 + 395 119 395 119 530 119 c 0,53,54 + 683 119 683 119 752 225 c 128,-1,55 + 821 331 821 331 821 554 c 0,56,57 + 821 769 821 769 752 869 c 128,-1,58 + 683 969 683 969 532 969 c 0,59,60 + 396 969 396 969 335.5 868.5 c 128,-1,61 + 275 768 275 768 275 542 c 0,50,51 +EndSplineSet +EndChar + +StartChar: uni02A5 +Encoding: 677 677 615 +Width: 2059 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 71 + 39 + 6 + 19 + 51 + 51 + 15 + 15 + 45 + 0 + 14 + 30 + 57 + 57 + 34 + 20 + 53 + 18 + 61 + 26 + 26 + 18 + 20 + 14 + 6 + 5 + 64 + 65 + 19 + 52 + 35 + 52 + 80 + 89 + 32 + 35 + 21 + 30 + 58 + 80 + 89 + 30 + 21 + 23 + 54 + 80 + 89 + 23 + 17 + 53 + 80 + 89 + 17 + 15 + 14 + 0 + 11 + 0 + 8 + 3 + 8 + 48 + 80 + 89 + 8 + 16 + 3 + 42 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1683 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 2059 1540 basechar 0 +AnchorPoint: "Anchor-20" 2059 -380 basechar 0 +AnchorPoint: "Anchor-16" 1420 1200 basechar 0 +AnchorPoint: "Anchor-15" 1890 1260 basechar 0 +AnchorPoint: "Anchor-14" 1383 -300 basechar 0 +LayerCount: 2 +Fore +SplineSet +821 174 m 1,0,1 + 771 70 771 70 688.5 25 c 128,-1,2 + 606 -20 606 -20 484 -20 c 0,3,4 + 279 -20 279 -20 182.5 118 c 128,-1,5 + 86 256 86 256 86 536 c 0,6,7 + 86 1102 86 1102 484 1102 c 0,8,9 + 607 1102 607 1102 689 1057 c 128,-1,10 + 771 1012 771 1012 821 914 c 1,11,-1 + 823 914 l 1,12,-1 + 821 1035 l 1,13,-1 + 821 1484 l 1,14,-1 + 1001 1484 l 1,15,-1 + 1001 1082 l 1,16,-1 + 1884 1082 l 1,17,-1 + 1884 945 l 1,18,-1 + 1200 139 l 1,19,-1 + 1373 139 l 1,20,21 + 1474 309 1474 309 1568.5 388 c 128,-1,22 + 1663 467 1663 467 1760 467 c 0,23,24 + 1878 467 1878 467 1946 405.5 c 128,-1,25 + 2014 344 2014 344 2014 241 c 0,26,27 + 2014 121 2014 121 1944 60.5 c 128,-1,28 + 1874 0 1874 0 1722 0 c 2,29,-1 + 1469 0 l 1,30,31 + 1421 -94 1421 -94 1387 -178 c 1,32,-1 + 1248 -117 l 1,33,-1 + 1303 0 l 1,34,-1 + 835 0 l 1,35,36 + 832 16 832 16 828.5 74 c 128,-1,37 + 825 132 825 132 825 174 c 1,38,-1 + 821 174 l 1,0,1 +275 542 m 0,39,40 + 275 315 275 315 335 217 c 128,-1,41 + 395 119 395 119 530 119 c 0,42,43 + 683 119 683 119 752 225 c 128,-1,44 + 821 331 821 331 821 554 c 0,45,46 + 821 769 821 769 752 869 c 128,-1,47 + 683 969 683 969 532 969 c 0,48,49 + 396 969 396 969 335.5 868.5 c 128,-1,50 + 275 768 275 768 275 542 c 0,39,40 +1001 943 m 1,51,-1 + 1001 140 l 1,52,-1 + 1681 943 l 1,53,-1 + 1001 943 l 1,51,-1 +1758 322 m 0,54,55 + 1711 322 1711 322 1661 281.5 c 128,-1,56 + 1611 241 1611 241 1541 139 c 1,57,-1 + 1713 139 l 2,58,59 + 1790 139 1790 139 1825 161 c 128,-1,60 + 1860 183 1860 183 1860 238 c 0,61,62 + 1860 277 1860 277 1833 299.5 c 128,-1,63 + 1806 322 1806 322 1758 322 c 0,54,55 +EndSplineSet +EndChar + +StartChar: uni02A6 +Encoding: 678 678 616 +Width: 1459 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 20 + 19 + 19 + 38 + 0 + 26 + 46 + 13 + 50 + 50 + 10 + 8 + 6 + 6 + 46 + 0 + 3 + 55 + 54 + 26 + 38 + 16 + 4 + 16 + 23 + 80 + 89 + 20 + 16 + 16 + 13 + 49 + 81 + 89 + 13 + 15 + 11 + 9 + 9 + 8 + 81 + 89 + 9 + 16 + 4 + 53 + 80 + 89 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 990 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1459 1540 basechar 0 +AnchorPoint: "Anchor-20" 1459 -380 basechar 0 +AnchorPoint: "Anchor-16" 920 1200 basechar 0 +AnchorPoint: "Anchor-15" 1280 1260 basechar 0 +AnchorPoint: "Anchor-14" 877 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1380 299 m 0,0,1 + 1380 152 1380 152 1269 76 c 128,-1,2 + 1158 0 1158 0 941 0 c 2,3,-1 + 382 0 l 2,4,5 + 166 0 166 0 166 245 c 2,6,-1 + 166 951 l 1,7,-1 + 41 951 l 1,8,-1 + 41 1082 l 1,9,-1 + 173 1082 l 1,10,-1 + 226 1324 l 1,11,-1 + 346 1324 l 1,12,-1 + 346 1082 l 1,13,-1 + 777 1082 l 1,14,15 + 851 1099 851 1099 943 1099 c 0,16,17 + 1122 1099 1122 1099 1227.5 1036 c 128,-1,18 + 1333 973 1333 973 1361 834 c 1,19,-1 + 1199 814 l 1,20,21 + 1184 886 1184 886 1118.5 924.5 c 128,-1,22 + 1053 963 1053 963 943 963 c 0,23,24 + 821 963 821 963 763 926 c 128,-1,25 + 705 889 705 889 705 814 c 0,26,27 + 705 768 705 768 729 738 c 128,-1,28 + 753 708 753 708 800 687 c 128,-1,29 + 847 666 847 666 998 629 c 0,30,31 + 1141 593 1141 593 1204 562.5 c 128,-1,32 + 1267 532 1267 532 1303.5 495 c 128,-1,33 + 1340 458 1340 458 1360 409.5 c 128,-1,34 + 1380 361 1380 361 1380 299 c 0,0,1 +941 140 m 2,35,36 + 1084 140 1084 140 1144.5 175 c 128,-1,37 + 1205 210 1205 210 1205 285 c 0,38,39 + 1205 349 1205 349 1161 389 c 128,-1,40 + 1117 429 1117 429 1019 455 c 2,41,-1 + 890 489 l 2,42,43 + 735 529 735 529 669.5 567.5 c 128,-1,44 + 604 606 604 606 567 661 c 128,-1,45 + 530 716 530 716 530 796 c 0,46,47 + 530 885 530 885 570 951 c 1,48,-1 + 346 951 l 1,49,-1 + 346 284 l 2,50,51 + 346 206 346 206 371.5 173 c 128,-1,52 + 397 140 397 140 460 140 c 2,53,-1 + 941 140 l 2,35,36 +EndSplineSet +EndChar + +StartChar: uni02A7 +Encoding: 679 679 617 +Width: 879 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 40 + 23 + 10 + 10 + 35 + 21 + 43 + 43 + 18 + 16 + 14 + 15 + 35 + 1 + 0 + 14 + 1 + 10 + 6 + 14 + 3 + 35 + 3 + 46 + 29 + 47 + 26 + 31 + 80 + 89 + 26 + 0 + 42 + 16 + 17 + 16 + 81 + 89 + 21 + 20 + 64 + 17 + 15 + 12 + 38 + 80 + 89 + 12 + 22 + 0 + 5 + 80 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,grey] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +SLOOP +IP +SDS +SDB +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 506 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 879 1540 basechar 0 +AnchorPoint: "Anchor-20" 879 -380 basechar 0 +AnchorPoint: "Anchor-16" 480 1540 basechar 0 +AnchorPoint: "Anchor-15" 1020 1540 basechar 0 +AnchorPoint: "Anchor-14" 470 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +434 -425 m 0,0,1 + 355 -425 355 -425 300 -406 c 1,2,-1 + 300 -246 l 1,3,4 + 360 -270 360 -270 417 -270 c 0,5,6 + 471 -270 471 -270 501.5 -248 c 128,-1,7 + 532 -226 532 -226 545.5 -183.5 c 128,-1,8 + 559 -141 559 -141 559 -37 c 2,9,-1 + 559 6 l 1,10,11 + 471 -16 471 -16 382 -16 c 0,12,13 + 166 -16 166 -16 166 229 c 2,14,-1 + 166 951 l 1,15,-1 + 41 951 l 1,16,-1 + 41 1082 l 1,17,-1 + 173 1082 l 1,18,-1 + 226 1324 l 1,19,-1 + 346 1324 l 1,20,-1 + 346 1082 l 1,21,-1 + 559 1082 l 1,22,-1 + 559 1130 l 2,23,24 + 559 1303 559 1303 634.5 1393.5 c 128,-1,25 + 710 1484 710 1484 857 1484 c 0,26,27 + 964 1484 964 1484 1008 1466 c 1,28,-1 + 1008 1299 l 1,29,30 + 959 1326 959 1326 893 1326 c 0,31,32 + 816 1326 816 1326 778.5 1273.5 c 128,-1,33 + 741 1221 741 1221 741 1093 c 2,34,-1 + 741 -70 l 2,35,36 + 741 -250 741 -250 665 -337.5 c 128,-1,37 + 589 -425 589 -425 434 -425 c 0,0,1 +460 141 m 0,38,39 + 498 141 498 141 559 154 c 1,40,-1 + 559 951 l 1,41,-1 + 346 951 l 1,42,-1 + 346 282 l 2,43,44 + 346 204 346 204 371.5 172.5 c 128,-1,45 + 397 141 397 141 460 141 c 0,38,39 +EndSplineSet +EndChar + +StartChar: uni02A8 +Encoding: 680 680 618 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 69 + 14 + 18 + 18 + 11 + 9 + 7 + 38 + 16 + 25 + 32 + 31 + 31 + 53 + 45 + 45 + 59 + 40 + 2 + 23 + 25 + 7 + 7 + 61 + 62 + 28 + 35 + 80 + 89 + 32 + 32 + 28 + 16 + 40 + 23 + 59 + 2 + 4 + 4 + 43 + 43 + 56 + 80 + 89 + 43 + 43 + 0 + 10 + 17 + 9 + 10 + 9 + 81 + 89 + 14 + 12 + 10 + 16 + 4 + 21 + 80 + 89 + 4 + 22 + 0 + 49 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MDRP[rnd,white] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1111 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1472 1540 basechar 0 +AnchorPoint: "Anchor-20" 1472 -380 basechar 0 +AnchorPoint: "Anchor-16" 1100 1540 basechar 0 +AnchorPoint: "Anchor-15" 1860 1540 basechar 0 +AnchorPoint: "Anchor-14" 1020 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1003 -20 m 0,0,1 + 826 -20 826 -20 707 80 c 1,2,3 + 581 -20 581 -20 420 -20 c 0,4,5 + 298 -20 298 -20 227 47.5 c 128,-1,6 + 156 115 156 115 156 239 c 2,7,-1 + 156 951 l 1,8,-1 + 31 951 l 1,9,-1 + 31 1082 l 1,10,-1 + 163 1082 l 1,11,-1 + 216 1324 l 1,12,-1 + 336 1324 l 1,13,-1 + 336 1082 l 1,14,-1 + 536 1082 l 1,15,-1 + 536 951 l 1,16,-1 + 336 951 l 1,17,-1 + 336 290 l 2,18,19 + 336 203 336 203 366 169 c 128,-1,20 + 396 135 396 135 470 135 c 0,21,22 + 545 135 545 135 615 188 c 1,23,24 + 529 329 529 329 529 542 c 0,25,26 + 529 815 529 815 649 958.5 c 128,-1,27 + 769 1102 769 1102 993 1102 c 0,28,29 + 1159 1102 1159 1102 1268.5 1016 c 128,-1,30 + 1378 930 1378 930 1406 779 c 1,31,-1 + 1221 765 l 1,32,33 + 1207 855 1207 855 1150 908 c 128,-1,34 + 1093 961 1093 961 988 961 c 0,35,36 + 845 961 845 961 781 866 c 128,-1,37 + 717 771 717 771 717 546 c 0,38,39 + 717 416 717 416 755 302 c 1,40,41 + 866 413 866 413 960 461.5 c 128,-1,42 + 1054 510 1054 510 1140 510 c 0,43,44 + 1407 510 1407 510 1407 278 c 0,45,46 + 1407 192 1407 192 1361 125.5 c 128,-1,47 + 1315 59 1315 59 1226.5 19.5 c 128,-1,48 + 1138 -20 1138 -20 1003 -20 c 0,0,1 +1002 114 m 0,49,50 + 1085 114 1085 114 1141.5 135 c 128,-1,51 + 1198 156 1198 156 1228.5 190 c 128,-1,52 + 1259 224 1259 224 1259 265 c 0,53,54 + 1259 322 1259 322 1227 347 c 128,-1,55 + 1195 372 1195 372 1135 372 c 0,56,57 + 1064 372 1064 372 990 328.5 c 128,-1,58 + 916 285 916 285 828 184 c 1,59,60 + 894 114 894 114 1002 114 c 0,49,50 +EndSplineSet +EndChar + +StartChar: uni02A9 +Encoding: 681 681 619 +Width: 1564 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 56 + 50 + 32 + 32 + 37 + 35 + 33 + 0 + 27 + 27 + 28 + 18 + 9 + 9 + 14 + 28 + 43 + 33 + 5 + 51 + 52 + 50 + 31 + 81 + 89 + 50 + 15 + 41 + 46 + 80 + 89 + 41 + 0 + 36 + 35 + 81 + 89 + 36 + 16 + 33 + 21 + 1 + 5 + 27 + 21 + 11 + 16 + 80 + 89 + 11 + 27 + 5 + 23 + 80 + 89 + 5 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1199 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1564 1540 basechar 0 +AnchorPoint: "Anchor-20" 1564 -380 basechar 0 +AnchorPoint: "Anchor-16" 1017 1200 basechar 0 +AnchorPoint: "Anchor-15" 1360 1260 basechar 0 +AnchorPoint: "Anchor-14" 998 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +736 1082 m 1,0,-1 + 744 908 l 1,1,-1 + 747 908 l 1,2,3 + 807 1016 807 1016 885 1059 c 128,-1,4 + 963 1102 963 1102 1083 1102 c 0,5,6 + 1261 1102 1261 1102 1343.5 1013.5 c 128,-1,7 + 1426 925 1426 925 1426 721 c 2,8,-1 + 1426 -129 l 2,9,10 + 1426 -425 1426 -425 1145 -425 c 0,11,12 + 1094 -425 1094 -425 1009 -409 c 1,13,-1 + 1009 -245 l 1,14,15 + 1059 -263 1059 -263 1128 -263 c 0,16,17 + 1245 -263 1245 -263 1245 -115 c 2,18,-1 + 1245 686 l 2,19,20 + 1245 793 1245 793 1224 852 c 128,-1,21 + 1203 911 1203 911 1157 937 c 128,-1,22 + 1111 963 1111 963 1022 963 c 0,23,24 + 894 963 894 963 823 876 c 128,-1,25 + 752 789 752 789 752 627 c 2,26,-1 + 752 0 l 1,27,-1 + 572 0 l 1,28,-1 + 572 851 l 1,29,-1 + 571 951 l 1,30,-1 + 361 951 l 1,31,-1 + 361 0 l 1,32,-1 + 181 0 l 1,33,-1 + 181 951 l 1,34,-1 + 29 951 l 1,35,-1 + 29 1082 l 1,36,-1 + 181 1082 l 1,37,-1 + 181 1204 l 2,38,39 + 181 1352 181 1352 246 1417 c 128,-1,40 + 311 1482 311 1482 445 1482 c 0,41,42 + 520 1482 520 1482 572 1470 c 1,43,-1 + 572 1333 l 1,44,45 + 527 1341 527 1341 492 1341 c 0,46,47 + 423 1341 423 1341 392 1306 c 128,-1,48 + 361 1271 361 1271 361 1179 c 2,49,-1 + 361 1082 l 1,50,-1 + 736 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02AA +Encoding: 682 682 620 +Width: 1354 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 45 + 3 + 3 + 0 + 30 + 17 + 24 + 23 + 9 + 39 + 39 + 23 + 17 + 0 + 4 + 47 + 48 + 30 + 9 + 20 + 42 + 42 + 6 + 80 + 89 + 42 + 22 + 45 + 0 + 20 + 20 + 27 + 80 + 89 + 24 + 20 + 16 + 1 + 0 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 900 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1354 1540 basechar 0 +AnchorPoint: "Anchor-20" 1354 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +138 0 m 1,0,-1 + 138 1484 l 1,1,-1 + 318 1484 l 1,2,-1 + 318 286 l 1,3,4 + 396 205 396 205 523.5 161 c 128,-1,5 + 651 117 651 117 794 117 c 0,6,7 + 942 117 942 117 1020.5 160.5 c 128,-1,8 + 1099 204 1099 204 1099 285 c 0,9,10 + 1099 349 1099 349 1055 389 c 128,-1,11 + 1011 429 1011 429 913 455 c 2,12,-1 + 784 489 l 2,13,14 + 629 529 629 529 563.5 567.5 c 128,-1,15 + 498 606 498 606 461 661 c 128,-1,16 + 424 716 424 716 424 796 c 0,17,18 + 424 944 424 944 529.5 1021.5 c 128,-1,19 + 635 1099 635 1099 837 1099 c 0,20,21 + 1016 1099 1016 1099 1121.5 1036 c 128,-1,22 + 1227 973 1227 973 1255 834 c 1,23,-1 + 1093 814 l 1,24,25 + 1078 886 1078 886 1012.5 924.5 c 128,-1,26 + 947 963 947 963 837 963 c 0,27,28 + 715 963 715 963 657 926 c 128,-1,29 + 599 889 599 889 599 814 c 0,30,31 + 599 768 599 768 623 738 c 128,-1,32 + 647 708 647 708 694 687 c 128,-1,33 + 741 666 741 666 892 629 c 0,34,35 + 1035 593 1035 593 1098 562.5 c 128,-1,36 + 1161 532 1161 532 1197.5 495 c 128,-1,37 + 1234 458 1234 458 1254 409.5 c 128,-1,38 + 1274 361 1274 361 1274 299 c 0,39,40 + 1274 153 1274 153 1143 66.5 c 128,-1,41 + 1012 -20 1012 -20 794 -20 c 0,42,43 + 656 -20 656 -20 528.5 15.5 c 128,-1,44 + 401 51 401 51 318 111 c 1,45,-1 + 318 0 l 1,46,-1 + 138 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02AB +Encoding: 683 683 621 +Width: 1295 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 11 + 5 + 6 + 3 + 10 + 10 + 0 + 0 + 5 + 8 + 3 + 13 + 12 + 5 + 9 + 3 + 9 + 80 + 89 + 3 + 15 + 1 + 0 + 6 + 10 + 0 + 10 + 80 + 89 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1080 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1295 1540 basechar 0 +AnchorPoint: "Anchor-20" 1295 -380 basechar 0 +AnchorPoint: "Anchor-16" 775 1200 basechar 0 +AnchorPoint: "Anchor-15" 1200 1260 basechar 0 +AnchorPoint: "Anchor-14" 767 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +138 0 m 1,0,-1 + 138 1484 l 1,1,-1 + 318 1484 l 1,2,-1 + 318 1082 l 1,3,-1 + 1214 1082 l 1,4,-1 + 1214 945 l 1,5,-1 + 512 139 l 1,6,-1 + 1251 139 l 1,7,-1 + 1251 0 l 1,8,-1 + 138 0 l 1,0,-1 +318 943 m 1,9,-1 + 318 141 l 1,10,-1 + 1011 943 l 1,11,-1 + 318 943 l 1,9,-1 +EndSplineSet +EndChar + +StartChar: uni02AC +Encoding: 684 684 622 +Width: 994 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 12 + 25 + 15 + 2 + 5 + 18 + 6 + 26 + 27 + 15 + 23 + 20 + 3 + 14 + 24 + 24 + 19 + 7 + 10 + 2 + 3 + 9 + 1 + 1 + 3 + 22 + 19 + 19 + 6 + 16 + 21 + 14 + 21 + 12 + 0 + 9 + 0 + 6 + 0 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,white] +SHP[rp2] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 671 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 994 1540 basechar 0 +AnchorPoint: "Anchor-20" 994 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1540 basechar 0 +AnchorPoint: "Anchor-15" 980 1540 basechar 0 +AnchorPoint: "Anchor-14" 503 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +773 777 m 1,0,-1 + 640 777 l 1,1,-1 + 497 1324 l 1,2,-1 + 349 777 l 1,3,-1 + 216 777 l 1,4,-1 + 25 1484 l 1,5,-1 + 149 1484 l 1,6,-1 + 283 916 l 1,7,-1 + 436 1484 l 1,8,-1 + 559 1484 l 1,9,-1 + 714 916 l 1,10,-1 + 847 1484 l 1,11,-1 + 969 1484 l 1,12,-1 + 773 777 l 1,0,-1 +773 1 m 1,13,-1 + 640 1 l 1,14,-1 + 497 548 l 1,15,-1 + 349 1 l 1,16,-1 + 216 1 l 1,17,-1 + 25 708 l 1,18,-1 + 149 708 l 1,19,-1 + 283 140 l 1,20,-1 + 436 708 l 1,21,-1 + 559 708 l 1,22,-1 + 714 140 l 1,23,-1 + 847 708 l 1,24,-1 + 969 708 l 1,25,-1 + 773 1 l 1,13,-1 +EndSplineSet +EndChar + +StartChar: uni02AD +Encoding: 685 685 623 +Width: 1080 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 4 + 12 + 12 + 5 + 13 + 1 + 9 + 9 + 0 + 8 + 13 + 8 + 16 + 17 + 14 + 11 + 83 + 89 + 1 + 5 + 14 + 5 + 14 + 5 + 6 + 9 + 13 + 21 + 6 + 3 + 83 + 89 + 6 + 0 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 847 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1080 1540 basechar 0 +AnchorPoint: "Anchor-20" 1080 -380 basechar 0 +AnchorPoint: "Anchor-16" 530 1200 basechar 0 +AnchorPoint: "Anchor-15" 1020 1260 basechar 0 +AnchorPoint: "Anchor-14" 525 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +981 997 m 1,0,-1 + 807 997 l 1,1,-1 + 807 1316 l 1,2,-1 + 274 1316 l 1,3,-1 + 274 997 l 1,4,-1 + 99 997 l 1,5,-1 + 99 1484 l 1,6,-1 + 981 1484 l 1,7,-1 + 981 997 l 1,0,-1 +981 0 m 1,8,-1 + 807 0 l 1,9,-1 + 807 319 l 1,10,-1 + 274 319 l 1,11,-1 + 274 0 l 1,12,-1 + 99 0 l 1,13,-1 + 99 487 l 1,14,-1 + 981 487 l 1,15,-1 + 981 0 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: uni02AE +Encoding: 686 686 624 +Width: 1407 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 28 + 32 + 32 + 31 + 21 + 7 + 15 + 7 + 31 + 3 + 34 + 33 + 0 + 4 + 29 + 15 + 17 + 12 + 80 + 89 + 17 + 16 + 32 + 4 + 4 + 25 + 80 + 89 + 4 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1407 1540 basechar 0 +AnchorPoint: "Anchor-20" 1407 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1095 144 m 1,0,-1 + 1092 144 l 1,1,2 + 1039 64 1039 64 958.5 21.5 c 128,-1,3 + 878 -21 878 -21 755 -21 c 0,4,5 + 579 -21 579 -21 495.5 66.5 c 128,-1,6 + 412 154 412 154 412 360 c 2,7,-1 + 412 632 l 2,8,9 + 412 766 412 766 394.5 822.5 c 128,-1,10 + 377 879 377 879 337.5 908.5 c 128,-1,11 + 298 938 298 938 228 938 c 0,12,13 + 139 938 139 938 81 900 c 1,14,-1 + 39 1059 l 1,15,16 + 119 1100 119 1100 250 1100 c 0,17,18 + 417 1100 417 1100 505 996 c 128,-1,19 + 593 892 593 892 593 678 c 2,20,-1 + 593 395 l 2,21,22 + 593 281 593 281 614 225.5 c 128,-1,23 + 635 170 635 170 683 144 c 128,-1,24 + 731 118 731 118 816 118 c 0,25,26 + 943 118 943 118 1019.5 206 c 128,-1,27 + 1096 294 1096 294 1096 443 c 2,28,-1 + 1096 1082 l 1,29,-1 + 1276 1082 l 1,30,-1 + 1276 -426 l 1,31,-1 + 1095 -426 l 1,32,-1 + 1095 144 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02AF +Encoding: 687 687 625 +Width: 1407 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 36 + 43 + 21 + 7 + 31 + 28 + 41 + 41 + 7 + 15 + 3 + 42 + 43 + 38 + 33 + 80 + 89 + 38 + 27 + 0 + 4 + 29 + 15 + 17 + 12 + 80 + 89 + 17 + 16 + 4 + 25 + 80 + 89 + 4 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1410 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1407 1540 basechar 0 +AnchorPoint: "Anchor-20" 1407 -380 basechar 0 +AnchorPoint: "Anchor-16" 780 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 780 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1095 144 m 1,0,-1 + 1092 144 l 1,1,2 + 1039 64 1039 64 958.5 21.5 c 128,-1,3 + 878 -21 878 -21 755 -21 c 0,4,5 + 579 -21 579 -21 495.5 66.5 c 128,-1,6 + 412 154 412 154 412 360 c 2,7,-1 + 412 632 l 2,8,9 + 412 766 412 766 394.5 822.5 c 128,-1,10 + 377 879 377 879 337.5 908.5 c 128,-1,11 + 298 938 298 938 228 938 c 0,12,13 + 139 938 139 938 81 900 c 1,14,-1 + 39 1059 l 1,15,16 + 119 1100 119 1100 242 1100 c 0,17,18 + 420 1100 420 1100 506.5 1002 c 128,-1,19 + 593 904 593 904 593 682 c 2,20,-1 + 593 395 l 2,21,22 + 593 281 593 281 614 225.5 c 128,-1,23 + 635 170 635 170 683 144 c 128,-1,24 + 731 118 731 118 816 118 c 0,25,26 + 943 118 943 118 1019.5 206 c 128,-1,27 + 1096 294 1096 294 1096 443 c 2,28,-1 + 1096 1082 l 1,29,-1 + 1276 1082 l 1,30,-1 + 1276 -20 l 2,31,32 + 1276 -263 1276 -263 1466 -263 c 0,33,34 + 1525 -263 1525 -263 1597 -243 c 1,35,-1 + 1626 -402 l 1,36,37 + 1529 -425 1529 -425 1449 -425 c 0,38,39 + 1279 -425 1279 -425 1187 -322 c 128,-1,40 + 1095 -219 1095 -219 1095 -27 c 2,41,-1 + 1095 144 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02B0 +Encoding: 688 688 626 +Width: 785 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 812 874 N 1 0 0 1 394 0 2 +EndChar + +StartChar: uni02B1 +Encoding: 689 689 627 +Width: 785 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 8 + 7 + 28 + 16 + 16 + 17 + 17 + 23 + 7 + 3 + 32 + 31 + 20 + 25 + 229 + 89 + 20 + 0 + 30 + 30 + 3 + 8 + 17 + 232 + 3 + 12 + 228 + 89 + 0 + 3 + 32 + 3 + 2 + 3 + 236 +SVTCA[y-axis] +MIAP[rnd] +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +216 1122 m 1,0,1 + 257 1199 257 1199 312.5 1233 c 128,-1,2 + 368 1267 368 1267 452 1267 c 0,3,4 + 570 1267 570 1267 627.5 1205.5 c 128,-1,5 + 685 1144 685 1144 685 998 c 2,6,-1 + 685 490 l 1,7,-1 + 562 490 l 1,8,-1 + 562 974 l 2,9,10 + 562 1087 562 1087 527 1128 c 128,-1,11 + 492 1169 492 1169 410 1169 c 0,12,13 + 322 1169 322 1169 271 1106.5 c 128,-1,14 + 220 1044 220 1044 220 940 c 2,15,-1 + 220 490 l 1,16,-1 + 97 490 l 1,17,-1 + 97 1337 l 2,18,19 + 97 1546 97 1546 290 1546 c 0,20,21 + 339 1546 339 1546 387 1535 c 1,22,-1 + 387 1418 l 1,23,24 + 353 1432 353 1432 306 1432 c 0,25,26 + 220 1432 220 1432 220 1332 c 2,27,-1 + 220 1264 l 2,28,29 + 220 1152 220 1152 214 1122 c 1,30,-1 + 216 1122 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni02B2 +Encoding: 690 690 628 +Width: 326 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 0 + 14 + 14 + 3 + 4 + 4 + 18 + 9 + 17 + 15 + 235 + 7 + 11 + 228 + 89 + 7 + 1 + 0 + 229 + 89 + 1 + 234 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +104 1415 m 1,0,-1 + 104 1536 l 1,1,-1 + 226 1536 l 1,2,-1 + 226 1415 l 1,3,-1 + 104 1415 l 1,0,-1 +226 396 m 2,4,5 + 226 289 226 289 186 240 c 128,-1,6 + 146 191 146 191 63 191 c 0,7,8 + 6 191 6 191 -23 197 c 1,9,-1 + -23 295 l 1,10,-1 + 19 291 l 1,11,12 + 67 291 67 291 85.5 317 c 128,-1,13 + 104 343 104 343 104 415 c 2,14,-1 + 104 1253 l 1,15,-1 + 226 1253 l 1,16,-1 + 226 396 l 2,4,5 +EndSplineSet +EndChar + +StartChar: uni02B3 +Encoding: 691 691 629 +Width: 491 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 5 + 18 + 18 + 1 + 0 + 0 + 11 + 19 + 20 + 5 + 9 + 0 + 9 + 14 + 229 + 89 + 9 + 236 + 3 + 235 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +107 490 m 1,0,-1 + 107 1076 l 2,1,2 + 107 1189 107 1189 103 1253 c 1,3,-1 + 219 1253 l 1,4,-1 + 224 1098 l 1,5,-1 + 227 1098 l 1,6,7 + 257 1196 257 1196 294 1231.5 c 128,-1,8 + 331 1267 331 1267 401 1267 c 0,9,10 + 423 1267 423 1267 451 1260 c 1,11,-1 + 451 1144 l 1,12,13 + 423 1151 423 1151 386 1151 c 0,14,15 + 308 1151 308 1151 268.5 1082 c 128,-1,16 + 229 1013 229 1013 229 888 c 2,17,-1 + 229 490 l 1,18,-1 + 107 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02B4 +Encoding: 692 692 630 +Width: 491 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 5 + 17 + 17 + 1 + 1 + 11 + 20 + 19 + 5 + 6 + 6 + 4 + 18 + 235 + 9 + 14 + 229 + 89 + 9 + 233 + 4 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +384 1253 m 1,0,-1 + 384 667 l 2,1,2 + 384 554 384 554 388 490 c 1,3,-1 + 272 490 l 1,4,-1 + 267 645 l 1,5,-1 + 264 645 l 1,6,7 + 236 549 236 549 198 512.5 c 128,-1,8 + 160 476 160 476 90 476 c 0,9,10 + 68 476 68 476 40 483 c 1,11,-1 + 40 599 l 1,12,13 + 68 592 68 592 105 592 c 0,14,15 + 184 592 184 592 223 661 c 128,-1,16 + 262 730 262 730 262 855 c 2,17,-1 + 262 1253 l 1,18,-1 + 384 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02B5 +Encoding: 693 693 631 +Width: 491 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 11 + 23 + 23 + 1 + 1 + 18 + 25 + 7 + 26 + 12 + 15 + 24 + 235 + 9 + 4 + 229 + 89 + 9 + 15 + 64 + 15 + 20 + 229 + 89 + 15 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +366 1253 m 1,0,-1 + 366 405 l 2,1,2 + 366 348 366 348 385 324.5 c 128,-1,3 + 404 301 404 301 442 301 c 0,4,5 + 481 301 481 301 509 311 c 1,6,-1 + 509 198 l 1,7,8 + 458 190 458 190 420 190 c 0,9,10 + 247 190 247 190 247 399 c 2,11,-1 + 247 625 l 1,12,13 + 222 545 222 545 183 510.5 c 128,-1,14 + 144 476 144 476 72 476 c 0,15,16 + 50 476 50 476 22 483 c 1,17,-1 + 22 599 l 1,18,19 + 52 592 52 592 88 592 c 0,20,21 + 165 592 165 592 204.5 661 c 128,-1,22 + 244 730 244 730 244 855 c 2,23,-1 + 244 1253 l 1,24,-1 + 366 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02B6 +Encoding: 694 694 632 +Width: 746 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 4 + 1 + 3 + 0 + 0 + 20 + 20 + 11 + 2 + 3 + 3 + 16 + 7 + 11 + 7 + 21 + 22 + 0 + 19 + 228 + 89 + 4 + 0 + 0 + 11 + 2 + 12 + 235 + 11 + 20 + 228 + 89 + 11 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +222 944 m 1,0,-1 + 358 944 l 1,1,-1 + 584 1253 l 1,2,-1 + 732 1253 l 1,3,-1 + 491 937 l 1,4,5 + 584 919 584 919 635 859 c 128,-1,6 + 686 799 686 799 686 707 c 0,7,8 + 686 605 686 605 612.5 547.5 c 128,-1,9 + 539 490 539 490 414 490 c 2,10,-1 + 100 490 l 1,11,-1 + 100 1253 l 1,12,-1 + 222 1253 l 1,13,-1 + 222 944 l 1,0,-1 +406 586 m 2,14,15 + 557 586 557 586 557 715 c 0,16,17 + 557 848 557 848 409 848 c 2,18,-1 + 222 848 l 1,19,-1 + 222 586 l 1,20,-1 + 406 586 l 2,14,15 +EndSplineSet +EndChar + +StartChar: uni02B7 +Encoding: 695 695 633 +Width: 985 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 21 + 22 + 22 + 4 + 23 + 24 + 10 + 9 + 9 + 23 + 18 + 13 + 4 + 3 + 8 + 21 + 15 + 9 + 235 + 0 + 8 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +786 491 m 1,0,-1 + 644 491 l 1,1,-1 + 527 983 l 2,2,3 + 516 1022 516 1022 491 1148 c 1,4,5 + 481 1100 481 1100 473.5 1063.5 c 128,-1,6 + 466 1027 466 1027 333 491 c 1,7,-1 + 192 491 l 1,8,-1 + -14 1253 l 1,9,-1 + 107 1253 l 1,10,-1 + 231 735 l 2,11,12 + 253 653 253 653 261 596 c 1,13,-1 + 275 656 l 1,14,-1 + 426 1253 l 1,15,-1 + 557 1253 l 1,16,-1 + 686 730 l 1,17,-1 + 717 596 l 1,18,-1 + 730 658 l 1,19,-1 + 748 735 l 1,20,-1 + 877 1253 l 1,21,-1 + 997 1253 l 1,22,-1 + 786 491 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02B8 +Encoding: 696 696 634 +Width: 657 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 13 + 14 + 14 + 3 + 11 + 18 + 19 + 9 + 8 + 8 + 18 + 13 + 235 + 11 + 7 + 0 + 9 + 235 + 0 + 4 + 228 + 89 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +116 190 m 0,0,1 + 67 190 67 190 32 198 c 1,2,-1 + 32 293 l 1,3,-1 + 89 289 l 2,4,5 + 145 289 145 289 191.5 333 c 128,-1,6 + 238 377 238 377 281 493 c 1,7,-1 + -11 1253 l 1,8,-1 + 120 1253 l 1,9,-1 + 275 831 l 1,10,-1 + 342 628 l 1,11,-1 + 389 767 l 1,12,-1 + 550 1253 l 1,13,-1 + 680 1253 l 1,14,-1 + 397 490 l 2,15,16 + 332 318 332 318 268.5 254 c 128,-1,17 + 205 190 205 190 116 190 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni02B9 +Encoding: 697 697 635 +Width: 391 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 10 39 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni02BA +Encoding: 698 698 636 +Width: 727 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 5 34 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni02BB +Encoding: 699 699 637 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 7 + 5 + 0 + 5 + 0 + 9 + 9 + 10 + 11 + 7 + 7 + 5 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +127 1027 m 1,0,-1 + 127 1173 l 2,1,2 + 127 1270 127 1270 145.5 1343.5 c 128,-1,3 + 164 1417 164 1417 207 1484 c 1,4,-1 + 328 1484 l 1,5,6 + 233 1347 233 1347 233 1222 c 1,7,-1 + 322 1222 l 1,8,-1 + 322 1027 l 1,9,-1 + 127 1027 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02BC +Encoding: 700 700 638 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 4 + 5 + 0 + 8 + 5 + 8 + 10 + 11 + 7 + 7 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +319 1484 m 1,0,-1 + 319 1338 l 2,1,2 + 319 1241 319 1241 300.5 1167.5 c 128,-1,3 + 282 1094 282 1094 239 1027 c 1,4,-1 + 118 1027 l 1,5,6 + 213 1164 213 1164 213 1289 c 1,7,-1 + 124 1289 l 1,8,-1 + 124 1484 l 1,9,-1 + 319 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02BD +Encoding: 701 701 639 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 8 + 8 + 4 + 1 + 1 + 11 + 10 + 2 + 2 + 0 + 5 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +333 1484 m 1,0,-1 + 333 1289 l 1,1,-1 + 244 1289 l 1,2,3 + 244 1164 244 1164 339 1027 c 1,4,-1 + 218 1027 l 1,5,6 + 174 1097 174 1097 156 1170.5 c 128,-1,7 + 138 1244 138 1244 138 1338 c 2,8,-1 + 138 1484 l 1,9,-1 + 333 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02BE +Encoding: 702 702 640 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 6 + 13 + 3 + 10 + 13 + 10 + 14 + 15 + 6 + 0 + 7 + 128 + 13 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +246 1229 m 1,0,1 + 288 1229 288 1229 315.5 1257 c 128,-1,2 + 343 1285 343 1285 343 1334 c 256,3,4 + 343 1383 343 1383 315.5 1410.5 c 128,-1,5 + 288 1438 288 1438 246 1438 c 1,6,-1 + 246 1523 l 1,7,8 + 330 1523 330 1523 380.5 1472 c 128,-1,9 + 431 1421 431 1421 431 1334 c 256,10,11 + 431 1247 431 1247 380.5 1195.5 c 128,-1,12 + 330 1144 330 1144 246 1144 c 1,13,-1 + 246 1229 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni02BF +Encoding: 703 703 641 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 10 + 3 + 7 + 0 + 3 + 0 + 14 + 15 + 7 + 13 + 6 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +435 1144 m 1,0,1 + 350 1144 350 1144 300 1196 c 128,-1,2 + 250 1248 250 1248 250 1334 c 0,3,4 + 250 1421 250 1421 300 1472 c 128,-1,5 + 350 1523 350 1523 435 1523 c 1,6,-1 + 435 1438 l 1,7,8 + 393 1438 393 1438 365.5 1410.5 c 128,-1,9 + 338 1383 338 1383 338 1334 c 256,10,11 + 338 1285 338 1285 365.5 1257 c 128,-1,12 + 393 1229 393 1229 435 1229 c 1,13,-1 + 435 1144 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni02C0 +Encoding: 704 704 642 +Width: 714 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 6 + 18 + 22 + 0 + 11 + 12 + 12 + 0 + 18 + 3 + 24 + 23 + 11 + 11 + 15 + 3 + 21 + 228 + 89 + 3 + 3 + 0 + 15 + 15 + 9 + 228 + 89 + 15 + 230 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +261 490 m 1,0,-1 + 261 844 l 1,1,2 + 291 831 291 831 333 831 c 0,3,4 + 438 831 438 831 482.5 904.5 c 128,-1,5 + 527 978 527 978 527 1113 c 0,6,7 + 527 1255 527 1255 483.5 1321.5 c 128,-1,8 + 440 1388 440 1388 336 1388 c 0,9,10 + 199 1388 199 1388 178 1255 c 1,11,-1 + 52 1265 l 1,12,13 + 72 1369 72 1369 146.5 1426.5 c 128,-1,14 + 221 1484 221 1484 333 1484 c 0,15,16 + 491 1484 491 1484 573 1388 c 128,-1,17 + 655 1292 655 1292 655 1110 c 0,18,19 + 655 945 655 945 585 847 c 128,-1,20 + 515 749 515 749 383 738 c 1,21,-1 + 383 490 l 1,22,-1 + 261 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02C1 +Encoding: 705 705 643 +Width: 714 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 16 + 4 + 22 + 0 + 11 + 10 + 10 + 0 + 4 + 3 + 23 + 24 + 19 + 1 + 228 + 89 + 19 + 19 + 0 + 7 + 11 + 11 + 7 + 7 + 13 + 228 + 89 + 7 + 230 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +323 490 m 1,0,-1 + 323 738 l 1,1,2 + 191 749 191 749 121 847 c 128,-1,3 + 51 945 51 945 51 1110 c 0,4,5 + 51 1291 51 1291 133 1387.5 c 128,-1,6 + 215 1484 215 1484 373 1484 c 0,7,8 + 486 1484 486 1484 560 1426.5 c 128,-1,9 + 634 1369 634 1369 654 1265 c 1,10,-1 + 528 1255 l 1,11,12 + 507 1388 507 1388 370 1388 c 0,13,14 + 266 1388 266 1388 222.5 1321.5 c 128,-1,15 + 179 1255 179 1255 179 1113 c 0,16,17 + 179 978 179 978 223.5 904.5 c 128,-1,18 + 268 831 268 831 373 831 c 0,19,20 + 415 831 415 831 445 844 c 1,21,-1 + 445 490 l 1,22,-1 + 323 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02C2 +Encoding: 706 706 644 +Width: 1196 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 31 60 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni02C3 +Encoding: 707 707 645 +Width: 1196 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 33 62 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni02C4 +Encoding: 708 708 646 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 0 + 2 + 4 + 3 + 7 + 8 + 2 + 1 + 6 + 4 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1094 237 m 1,0,-1 + 927 237 l 1,1,-1 + 596 1019 l 1,2,-1 + 268 237 l 1,3,-1 + 101 237 l 1,4,-1 + 511 1208 l 1,5,-1 + 679 1208 l 1,6,-1 + 1094 237 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02C5 +Encoding: 709 709 647 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 6 + 4 + 2 + 3 + 7 + 8 + 4 + 1 + 5 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +679 237 m 1,0,-1 + 511 237 l 1,1,-1 + 101 1208 l 1,2,-1 + 268 1208 l 1,3,-1 + 596 426 l 1,4,-1 + 927 1208 l 1,5,-1 + 1094 1208 l 1,6,-1 + 679 237 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: circumflex +Encoding: 710 710 648 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 9 + 8 + 3 + 3 + 1 + 6 + 1 + 6 + 11 + 10 + 1 + 8 + 148 + 91 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +662 1221 m 1,0,-1 + 662 1201 l 1,1,-1 + 557 1201 l 1,2,-1 + 338 1370 l 1,3,-1 + 336 1370 l 1,4,-1 + 104 1201 l 1,5,-1 + 0 1201 l 1,6,-1 + 0 1221 l 1,7,-1 + 234 1491 l 1,8,-1 + 438 1491 l 1,9,-1 + 662 1221 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: caron +Encoding: 711 711 649 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 0 + 1 + 5 + 5 + 8 + 3 + 8 + 3 + 11 + 10 + 1 + 3 + 148 + 91 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +438 1201 m 1,0,-1 + 234 1201 l 1,1,-1 + 0 1471 l 1,2,-1 + 0 1491 l 1,3,-1 + 104 1491 l 1,4,-1 + 336 1322 l 1,5,-1 + 338 1322 l 1,6,-1 + 557 1491 l 1,7,-1 + 662 1491 l 1,8,-1 + 662 1471 l 1,9,-1 + 438 1201 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02C8 +Encoding: 712 712 650 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 0 + 1 + 1 + 4 + 5 + 3 + 128 + 1 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +397 1152 m 1,0,-1 + 284 1152 l 1,1,-1 + 284 1484 l 1,2,-1 + 397 1484 l 1,3,-1 + 397 1152 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: macron +Encoding: 713 713 651 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 0 + 4 + 5 + 1 + 2 + 142 + 89 + 15 + 1 + 1 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +600 1236 m 1,0,-1 + 51 1236 l 1,1,-1 + 51 1363 l 1,2,-1 + 600 1363 l 1,3,-1 + 600 1236 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02CA +Encoding: 714 714 652 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 3 + 6 + 7 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +199 1205 m 1,0,-1 + 199 1225 l 1,1,-1 + 329 1484 l 1,2,-1 + 536 1484 l 1,3,-1 + 536 1455 l 1,4,-1 + 293 1205 l 1,5,-1 + 199 1205 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02CB +Encoding: 715 715 653 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 4 + 6 + 7 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +392 1205 m 1,0,-1 + 149 1455 l 1,1,-1 + 149 1484 l 1,2,-1 + 356 1484 l 1,3,-1 + 486 1225 l 1,4,-1 + 486 1205 l 1,5,-1 + 392 1205 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02CC +Encoding: 716 716 654 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 0 + 1 + 1 + 4 + 5 + 1 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +397 -406 m 1,0,-1 + 284 -406 l 1,1,-1 + 284 -74 l 1,2,-1 + 397 -74 l 1,3,-1 + 397 -406 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02CD +Encoding: 717 717 655 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 0 + 4 + 5 + 0 + 3 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +616 -276 m 1,0,-1 + 67 -276 l 1,1,-1 + 67 -149 l 1,2,-1 + 616 -149 l 1,3,-1 + 616 -276 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02CE +Encoding: 718 718 656 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 4 + 6 + 7 + 0 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +362 -406 m 1,0,-1 + 119 -156 l 1,1,-1 + 119 -127 l 1,2,-1 + 326 -127 l 1,3,-1 + 456 -386 l 1,4,-1 + 456 -406 l 1,5,-1 + 362 -406 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02CF +Encoding: 719 719 657 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 3 + 6 + 7 + 0 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +229 -406 m 1,0,-1 + 229 -386 l 1,1,-1 + 359 -127 l 1,2,-1 + 566 -127 l 1,3,-1 + 566 -156 l 1,4,-1 + 323 -406 l 1,5,-1 + 229 -406 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02D0 +Encoding: 720 720 658 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 0 + 7 + 4 + 3 + 4 + 8 + 9 + 6 + 4 + 21 + 1 + 3 + 15 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +392 1082 m 1,0,-1 + 291 867 l 1,1,-1 + 278 867 l 1,2,-1 + 177 1082 l 1,3,-1 + 392 1082 l 1,0,-1 +177 0 m 1,4,-1 + 278 215 l 1,5,-1 + 291 215 l 1,6,-1 + 392 0 l 1,7,-1 + 177 0 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni02D1 +Encoding: 721 721 659 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 3 + 0 + 4 + 5 + 1 + 3 + 15 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +392 1082 m 1,0,-1 + 291 867 l 1,1,-1 + 278 867 l 1,2,-1 + 177 1082 l 1,3,-1 + 392 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02D2 +Encoding: 722 722 660 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 3 + 10 + 6 + 13 + 10 + 13 + 15 + 14 + 6 + 0 + 7 + 128 + 13 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +246 177 m 1,0,1 + 288 177 288 177 315.5 205 c 128,-1,2 + 343 233 343 233 343 282 c 256,3,4 + 343 331 343 331 315.5 358.5 c 128,-1,5 + 288 386 288 386 246 386 c 1,6,-1 + 246 471 l 1,7,8 + 330 471 330 471 380.5 420 c 128,-1,9 + 431 369 431 369 431 282 c 256,10,11 + 431 195 431 195 380.5 143.5 c 128,-1,12 + 330 92 330 92 246 92 c 1,13,-1 + 246 177 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni02D3 +Encoding: 723 723 661 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 10 + 3 + 7 + 0 + 3 + 0 + 14 + 15 + 7 + 13 + 6 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +435 92 m 1,0,1 + 350 92 350 92 300 144 c 128,-1,2 + 250 196 250 196 250 282 c 0,3,4 + 250 369 250 369 300 420 c 128,-1,5 + 350 471 350 471 435 471 c 1,6,-1 + 435 386 l 1,7,8 + 393 386 393 386 365.5 358.5 c 128,-1,9 + 338 331 338 331 338 282 c 256,10,11 + 338 233 338 233 365.5 205 c 128,-1,12 + 393 177 393 177 435 177 c 1,13,-1 + 435 92 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni02D4 +Encoding: 724 724 662 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 6 + 3 + 0 + 3 + 1 + 3 + 8 + 9 + 6 + 2 + 2 + 5 + 128 + 1 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +520 173 m 1,0,-1 + 161 173 l 1,1,-1 + 161 281 l 1,2,-1 + 284 281 l 1,3,-1 + 284 510 l 1,4,-1 + 397 510 l 1,5,-1 + 397 281 l 1,6,-1 + 520 281 l 1,7,-1 + 520 173 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02D5 +Encoding: 725 725 663 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 3 + 7 + 3 + 5 + 3 + 8 + 9 + 1 + 5 + 5 + 7 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +520 402 m 1,0,-1 + 397 402 l 1,1,-1 + 397 173 l 1,2,-1 + 284 173 l 1,3,-1 + 284 402 l 1,4,-1 + 161 402 l 1,5,-1 + 161 510 l 1,6,-1 + 520 510 l 1,7,-1 + 520 402 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02D6 +Encoding: 726 726 664 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 10 + 2 + 2 + 7 + 3 + 0 + 3 + 5 + 3 + 12 + 13 + 10 + 6 + 1 + 5 + 6 + 5 + 9 + 192 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +520 288 m 1,0,-1 + 397 288 l 1,1,-1 + 397 163 l 1,2,-1 + 284 163 l 1,3,-1 + 284 288 l 1,4,-1 + 161 288 l 1,5,-1 + 161 396 l 1,6,-1 + 284 396 l 1,7,-1 + 284 520 l 1,8,-1 + 397 520 l 1,9,-1 + 397 396 l 1,10,-1 + 520 396 l 1,11,-1 + 520 288 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02D7 +Encoding: 727 727 665 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 0 + 1 + 5 + 4 + 2 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +653 275 m 1,0,-1 + 29 275 l 1,1,-1 + 29 416 l 1,2,-1 + 653 416 l 1,3,-1 + 653 275 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: breve +Encoding: 728 728 666 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 9 + 13 + 3 + 12 + 8 + 80 + 3 + 96 + 3 + 2 + 128 + 3 + 240 + 3 + 2 + 15 + 3 + 1 + 9 + 3 + 3 + 0 + 0 + 6 + 143 + 89 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +SHP[rp2] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +297 1201 m 0,0,1 + 165 1201 165 1201 74 1286 c 128,-1,2 + -17 1371 -17 1371 -35 1510 c 1,3,-1 + 82 1510 l 1,4,5 + 110 1357 110 1357 299 1357 c 0,6,7 + 485 1357 485 1357 514 1510 c 1,8,-1 + 631 1510 l 1,9,10 + 610 1368 610 1368 520.5 1284.5 c 128,-1,11 + 431 1201 431 1201 297 1201 c 0,0,1 +EndSplineSet +EndChar + +StartChar: dotaccent +Encoding: 729 729 667 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 3 + 0 + 0 + 5 + 4 + 0 + 1 + 144 + 89 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +156 1312 m 1,0,-1 + 156 1484 l 1,1,-1 + 336 1484 l 1,2,-1 + 336 1312 l 1,3,-1 + 156 1312 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: ring +Encoding: 730 730 668 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 47 + 12 + 0 + 18 + 6 + 0 + 6 + 25 + 24 + 9 + 15 + 141 + 89 + 240 + 9 + 1 + 15 + 9 + 31 + 9 + 2 + 9 + 3 + 9 + 3 + 64 + 3 + 21 + 141 + 89 + 15 + 3 + 47 + 3 + 63 + 3 + 79 + 3 + 127 + 3 + 159 + 3 + 191 + 3 + 239 + 3 + 8 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +535 1410 m 256,0,1 + 535 1310 535 1310 464 1239 c 128,-1,2 + 393 1168 393 1168 293 1168 c 256,3,4 + 193 1168 193 1168 122 1239 c 128,-1,5 + 51 1310 51 1310 51 1410 c 0,6,7 + 51 1511 51 1511 122 1581 c 128,-1,8 + 193 1651 193 1651 293 1651 c 0,9,10 + 392 1651 392 1651 463.5 1580.5 c 128,-1,11 + 535 1510 535 1510 535 1410 c 256,0,1 +427 1410 m 256,12,13 + 427 1466 427 1466 388 1505 c 128,-1,14 + 349 1544 349 1544 293 1544 c 0,15,16 + 236 1544 236 1544 197 1505 c 128,-1,17 + 158 1466 158 1466 158 1410 c 0,18,19 + 158 1355 158 1355 196 1314 c 128,-1,20 + 234 1273 234 1273 293 1273 c 0,21,22 + 351 1273 351 1273 389 1313.5 c 128,-1,23 + 427 1354 427 1354 427 1410 c 256,12,13 +EndSplineSet +EndChar + +StartChar: ogonek +Encoding: 731 731 669 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 9 + 14 + 14 + 5 + 0 + 5 + 21 + 20 + 8 + 64 + 7 + 10 + 72 + 8 + 2 + 17 + 141 + 89 + 16 + 2 + 1 + 32 + 2 + 80 + 2 + 96 + 2 + 112 + 2 + 176 + 2 + 192 + 2 + 6 + 2 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +430 -400 m 1,0,1 + 367 -427 367 -427 291 -427 c 0,2,3 + 186 -427 186 -427 133 -376 c 128,-1,4 + 80 -325 80 -325 80 -240 c 0,5,6 + 80 -170 80 -170 123.5 -104 c 128,-1,7 + 167 -38 167 -38 235 0 c 1,8,-1 + 368 0 l 1,9,10 + 343 -14 343 -14 317 -36.5 c 128,-1,11 + 291 -59 291 -59 269.5 -88.5 c 128,-1,12 + 248 -118 248 -118 234.5 -153 c 128,-1,13 + 221 -188 221 -188 221 -227 c 0,14,15 + 221 -269 221 -269 245.5 -293 c 128,-1,16 + 270 -317 270 -317 315 -317 c 0,17,18 + 369 -317 369 -317 430 -293 c 1,19,-1 + 430 -400 l 1,0,1 +EndSplineSet +EndChar + +StartChar: tilde +Encoding: 732 732 670 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 21 + 25 + 9 + 24 + 20 + 20 + 13 + 13 + 5 + 143 + 89 + 32 + 13 + 1 + 176 + 13 + 192 + 13 + 208 + 13 + 3 + 15 + 13 + 31 + 13 + 47 + 13 + 3 + 9 + 3 + 13 + 0 + 64 + 0 + 18 + 143 + 89 + 8 + 0 + 157 + 25 + 1 + 141 + 25 + 1 + 121 + 25 + 1 + 105 + 25 + 1 + 91 + 25 + 1 + 73 + 25 + 1 + 57 + 25 + 1 + 43 + 25 + 1 + 27 + 25 + 1 + 9 + 25 + 1 + 246 + 25 + 1 + 230 + 25 + 1 + 214 + 25 + 1 + 150 + 25 + 1 + 134 + 25 + 1 + 116 + 25 + 1 + 98 + 25 + 1 + 82 + 25 + 1 + 66 + 25 + 1 + 50 + 25 + 1 + 34 + 25 + 1 + 18 + 25 + 1 + 2 + 25 + 1 + 103 + 242 + 25 + 1 + 226 + 25 + 1 + 212 + 25 + 1 + 192 + 25 + 1 + 176 + 25 + 1 + 162 + 25 + 1 + 146 + 25 + 1 + 128 + 25 + 1 + 114 + 25 + 1 + 98 + 25 + 1 + 82 + 25 + 1 + 68 + 25 + 1 + 52 + 25 + 1 + 36 + 25 + 1 + 22 + 25 + 1 + 4 + 25 + 1 + 240 + 25 + 1 + 226 + 25 + 1 + 208 + 25 + 1 + 192 + 25 + 1 + 178 + 25 + 1 + 162 + 25 + 1 + 146 + 25 + 1 + 132 + 25 + 1 + 116 + 25 + 1 + 100 + 25 + 1 + 86 + 25 + 1 + 70 + 25 + 1 + 54 + 25 + 1 + 34 + 25 + 1 + 18 + 25 + 1 + 0 + 25 + 1 + 242 + 25 + 1 + 226 + 25 + 1 + 210 + 25 + 1 + 196 + 25 + 1 + 180 + 25 + 1 + 164 + 25 + 1 + 150 + 25 + 1 + 134 + 25 + 1 + 118 + 25 + 1 + 102 + 25 + 1 + 86 + 25 + 1 + 66 + 25 + 1 + 1 + 48 + 25 + 1 + 32 + 25 + 1 + 16 + 25 + 1 + 0 + 25 + 1 + 55 +NPUSHB + 116 + 240 + 25 + 1 + 224 + 25 + 1 + 212 + 25 + 1 + 196 + 25 + 1 + 176 + 25 + 1 + 164 + 25 + 1 + 148 + 25 + 1 + 132 + 25 + 1 + 112 + 25 + 1 + 96 + 25 + 1 + 80 + 25 + 1 + 68 + 25 + 1 + 52 + 25 + 1 + 36 + 25 + 1 + 0 + 25 + 1 + 240 + 25 + 1 + 228 + 25 + 1 + 212 + 25 + 1 + 196 + 25 + 1 + 160 + 25 + 1 + 144 + 25 + 1 + 132 + 25 + 1 + 116 + 25 + 1 + 100 + 25 + 1 + 84 + 25 + 1 + 68 + 25 + 1 + 52 + 25 + 1 + 4 + 25 + 1 + 196 + 25 + 1 + 180 + 25 + 1 + 160 + 25 + 1 + 2 + 144 + 25 + 1 + 128 + 25 + 1 + 112 + 25 + 1 + 63 + 25 + 1 + 47 + 25 + 1 + 31 + 25 + 1 + 15 + 25 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,black] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +492 1201 m 0,0,1 + 450 1201 450 1201 408 1219.5 c 128,-1,2 + 366 1238 366 1238 327 1260.5 c 128,-1,3 + 288 1283 288 1283 252.5 1301.5 c 128,-1,4 + 217 1320 217 1320 186 1320 c 0,5,6 + 131 1320 131 1320 104 1289 c 128,-1,7 + 77 1258 77 1258 68 1201 c 1,8,-1 + -23 1201 l 1,9,10 + -12 1303 -12 1303 12 1355.5 c 128,-1,11 + 36 1408 36 1408 76.5 1438.5 c 128,-1,12 + 117 1469 117 1469 180 1469 c 0,13,14 + 224 1469 224 1469 266 1450.5 c 128,-1,15 + 308 1432 308 1432 347 1409.5 c 128,-1,16 + 386 1387 386 1387 420.5 1368.5 c 128,-1,17 + 455 1350 455 1350 485 1350 c 0,18,19 + 585 1350 585 1350 602 1469 c 1,20,-1 + 694 1469 l 1,21,22 + 677 1321 677 1321 627 1261 c 128,-1,23 + 577 1201 577 1201 492 1201 c 0,0,1 +EndSplineSet +EndChar + +StartChar: hungarumlaut +Encoding: 733 733 671 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 6 + 10 + 4 + 0 + 10 + 0 + 13 + 12 + 8 + 2 + 0 + 2 + 149 + 91 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +22 1201 m 1,0,-1 + 22 1221 l 1,1,-1 + 239 1508 l 1,2,-1 + 446 1508 l 1,3,-1 + 446 1479 l 1,4,-1 + 116 1201 l 1,5,-1 + 22 1201 l 1,0,-1 +369 1201 m 1,6,-1 + 369 1221 l 1,7,-1 + 586 1508 l 1,8,-1 + 793 1508 l 1,9,-1 + 793 1479 l 1,10,-1 + 463 1201 l 1,11,-1 + 369 1201 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni02DE +Encoding: 734 734 672 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 2 + 0 + 12 + 12 + 8 + 14 + 15 + 12 + 5 + 1 + 10 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-18" 0 748 mark 0 +LayerCount: 2 +Fore +SplineSet +-26 745 m 1,0,-1 + 203 780 l 1,1,-1 + 232 644 l 2,2,3 + 246 576 246 576 271.5 546 c 128,-1,4 + 297 516 297 516 347 516 c 0,5,6 + 399 516 399 516 479 556 c 1,7,-1 + 538 409 l 1,8,9 + 412 357 412 357 327 357 c 0,10,11 + 117 357 117 357 75 625 c 1,12,-1 + -3 606 l 1,13,-1 + -26 745 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02DF +Encoding: 735 735 673 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 10 + 11 + 8 + 2 + 5 + 4 + 0 + 6 + 4 + 0 + 4 + 13 + 12 + 8 + 11 + 5 + 2 + 4 + 9 + 7 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +SHP[rp2] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +679 901 m 1,0,-1 + 591 813 l 1,1,-1 + 341 1064 l 1,2,-1 + 91 813 l 1,3,-1 + 3 901 l 1,4,-1 + 254 1151 l 1,5,-1 + 3 1401 l 1,6,-1 + 91 1489 l 1,7,-1 + 341 1238 l 1,8,-1 + 591 1489 l 1,9,-1 + 679 1401 l 1,10,-1 + 428 1151 l 1,11,-1 + 679 901 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02E0 +Encoding: 736 736 674 +Width: 660 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 23 + 15 + 18 + 9 + 9 + 6 + 3 + 21 + 0 + 15 + 6 + 1 + 4 + 5 + 5 + 29 + 2 + 1 + 1 + 28 + 21 + 0 + 6 + 3 + 4 + 4 + 26 + 12 + 4 + 1 + 235 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +253 596 m 1,0,-1 + -14 1253 l 1,1,-1 + 116 1253 l 1,2,-1 + 326 735 l 1,3,-1 + 543 1253 l 1,4,-1 + 672 1253 l 1,5,-1 + 398 596 l 1,6,7 + 440 524 440 524 462 460.5 c 128,-1,8 + 484 397 484 397 484 357 c 0,9,10 + 484 281 484 281 441.5 235.5 c 128,-1,11 + 399 190 399 190 326 190 c 0,12,13 + 252 190 252 190 210.5 235.5 c 128,-1,14 + 169 281 169 281 169 357 c 0,15,16 + 169 441 169 441 243 577 c 2,17,-1 + 253 596 l 1,0,-1 +378 362 m 0,18,19 + 378 385 378 385 368.5 417 c 128,-1,20 + 359 449 359 449 326 516 c 1,21,22 + 275 417 275 417 275 362 c 0,23,24 + 275 330 275 330 288.5 311.5 c 128,-1,25 + 302 293 302 293 326 293 c 0,26,27 + 378 293 378 293 378 362 c 0,18,19 +EndSplineSet +EndChar + +StartChar: uni02E1 +Encoding: 737 737 675 +Width: 322 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 0 + 3 + 3 + 4 + 5 + 1 + 234 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 490 m 1,0,-1 + 100 1536 l 1,1,-1 + 222 1536 l 1,2,-1 + 222 490 l 1,3,-1 + 100 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02E2 +Encoding: 738 738 676 +Width: 696 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 7 + 6 + 32 + 20 + 27 + 26 + 12 + 0 + 0 + 26 + 20 + 6 + 4 + 40 + 41 + 32 + 12 + 23 + 3 + 23 + 29 + 228 + 89 + 27 + 23 + 236 + 3 + 10 + 228 + 89 + 7 + 3 + 233 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +651 703 m 0,0,1 + 651 595 651 595 573.5 536.5 c 128,-1,2 + 496 478 496 478 353 478 c 0,3,4 + 225 478 225 478 147 521 c 128,-1,5 + 69 564 69 564 44 671 c 1,6,-1 + 152 693 l 1,7,8 + 168 632 168 632 217 603.5 c 128,-1,9 + 266 575 266 575 353 575 c 0,10,11 + 532 575 532 575 532 693 c 0,12,13 + 532 729 532 729 515.5 751.5 c 128,-1,14 + 499 774 499 774 468.5 789.5 c 128,-1,15 + 438 805 438 805 318 837 c 0,16,17 + 215 865 215 865 169.5 892 c 128,-1,18 + 124 919 124 919 98.5 957.5 c 128,-1,19 + 73 996 73 996 73 1053 c 0,20,21 + 73 1158 73 1158 145 1212.5 c 128,-1,22 + 217 1267 217 1267 354 1267 c 0,23,24 + 476 1267 476 1267 547.5 1223 c 128,-1,25 + 619 1179 619 1179 638 1080 c 1,26,-1 + 528 1066 l 1,27,28 + 507 1171 507 1171 354 1171 c 0,29,30 + 271 1171 271 1171 231.5 1145.5 c 128,-1,31 + 192 1120 192 1120 192 1066 c 0,32,33 + 192 1026 192 1026 219 1001 c 128,-1,34 + 246 976 246 976 311 958 c 2,35,-1 + 391 936 l 2,36,37 + 512 903 512 903 555.5 876 c 128,-1,38 + 599 849 599 849 625 807 c 128,-1,39 + 651 765 651 765 651 703 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni02E3 +Encoding: 739 739 677 +Width: 672 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 817 879 N 1 0 0 1 334 0 2 +EndChar + +StartChar: uni02E4 +Encoding: 740 740 678 +Width: 714 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 643 705 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni02E5 +Encoding: 741 741 679 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 1 + 0 + 3 + 0 + 6 + 7 + 3 + 4 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 1273 l 1,2,-1 + 160 1273 l 1,3,-1 + 160 1409 l 1,4,-1 + 624 1409 l 1,5,-1 + 624 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02E6 +Encoding: 742 742 680 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 5 + 1 + 1 + 0 + 3 + 0 + 8 + 9 + 3 + 4 + 4 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 995 l 1,2,-1 + 160 995 l 1,3,-1 + 160 1131 l 1,4,-1 + 488 1131 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02E7 +Encoding: 743 743 681 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 5 + 1 + 1 + 0 + 3 + 0 + 8 + 9 + 3 + 4 + 4 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 667 l 1,2,-1 + 160 667 l 1,3,-1 + 160 803 l 1,4,-1 + 488 803 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02E8 +Encoding: 744 744 682 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 5 + 1 + 1 + 0 + 3 + 0 + 8 + 9 + 3 + 4 + 4 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 342 l 1,2,-1 + 160 342 l 1,3,-1 + 160 478 l 1,4,-1 + 488 478 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02E9 +Encoding: 745 745 683 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 3 + 0 + 1 + 0 + 6 + 7 + 4 + 3 + 2 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 160 0 l 1,1,-1 + 160 136 l 1,2,-1 + 488 136 l 1,3,-1 + 488 1409 l 1,4,-1 + 624 1409 l 1,5,-1 + 624 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02EA +Encoding: 746 746 684 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 4 + 1 + 1 + 0 + 6 + 7 + 4 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +585 0 m 1,0,-1 + 98 0 l 1,1,-1 + 98 880 l 1,2,-1 + 234 880 l 1,3,-1 + 234 121 l 1,4,-1 + 585 121 l 1,5,-1 + 585 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02EB +Encoding: 747 747 685 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 6 + 2 + 2 + 3 + 3 + 0 + 8 + 9 + 1 + 6 + 6 + 5 + 3 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +585 393 m 1,0,-1 + 214 393 l 1,1,-1 + 214 0 l 1,2,-1 + 98 0 l 1,3,-1 + 98 880 l 1,4,-1 + 214 880 l 1,5,-1 + 214 493 l 1,6,-1 + 585 493 l 1,7,-1 + 585 393 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02EC +Encoding: 748 748 686 +Width: 682 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 649 711 N 1 0 0 1 0 -1625 2 +EndChar + +StartChar: uni02ED +Encoding: 749 749 687 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 5 + 1 + 4 + 0 + 1 + 0 + 8 + 9 + 1 + 6 + 3 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +653 1446 m 1,0,-1 + 29 1446 l 1,1,-1 + 29 1564 l 1,2,-1 + 653 1564 l 1,3,-1 + 653 1446 l 1,0,-1 +653 1239 m 1,4,-1 + 29 1239 l 1,5,-1 + 29 1357 l 1,6,-1 + 653 1357 l 1,7,-1 + 653 1239 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni02EE +Encoding: 750 750 688 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 17 + 15 + 18 + 7 + 18 + 11 + 5 + 1 + 8 + 11 + 8 + 21 + 20 + 18 + 8 + 8 + 19 + 0 + 128 + 15 + 5 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +281 1484 m 1,0,-1 + 281 1338 l 2,1,2 + 281 1241 281 1241 262.5 1167.5 c 128,-1,3 + 244 1094 244 1094 201 1027 c 1,4,-1 + 80 1027 l 1,5,6 + 175 1164 175 1164 175 1289 c 1,7,-1 + 86 1289 l 1,8,-1 + 86 1484 l 1,9,-1 + 281 1484 l 1,0,-1 +590 1484 m 1,10,-1 + 590 1338 l 2,11,12 + 590 1241 590 1241 571.5 1167.5 c 128,-1,13 + 553 1094 553 1094 510 1027 c 1,14,-1 + 389 1027 l 1,15,16 + 484 1164 484 1164 484 1289 c 1,17,-1 + 395 1289 l 1,18,-1 + 395 1484 l 1,19,-1 + 590 1484 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni02EF +Encoding: 751 751 689 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 6 + 2 + 8 + 7 + 4 + 1 + 128 + 5 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +380 -353 m 1,0,-1 + 298 -353 l 1,1,-1 + 129 -72 l 1,2,-1 + 243 -72 l 1,3,-1 + 339 -242 l 1,4,-1 + 435 -72 l 1,5,-1 + 549 -72 l 1,6,-1 + 380 -353 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02F0 +Encoding: 752 752 690 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 4 + 0 + 7 + 8 + 2 + 4 + 1 + 128 + 6 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +549 -353 m 1,0,-1 + 435 -353 l 1,1,-1 + 339 -183 l 1,2,-1 + 243 -353 l 1,3,-1 + 129 -353 l 1,4,-1 + 298 -72 l 1,5,-1 + 380 -72 l 1,6,-1 + 549 -353 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02F1 +Encoding: 753 753 691 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 4 + 0 + 2 + 5 + 0 + 5 + 8 + 7 + 2 + 4 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +481 -6 m 1,0,-1 + 481 -120 l 1,1,-1 + 311 -216 l 1,2,-1 + 481 -312 l 1,3,-1 + 481 -426 l 1,4,-1 + 200 -257 l 1,5,-1 + 200 -175 l 1,6,-1 + 481 -6 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02F2 +Encoding: 754 754 692 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 5 + 2 + 4 + 1 + 2 + 1 + 7 + 8 + 4 + 2 + 128 + 6 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +481 -175 m 1,0,-1 + 481 -257 l 1,1,-1 + 200 -426 l 1,2,-1 + 200 -312 l 1,3,-1 + 370 -216 l 1,4,-1 + 200 -120 l 1,5,-1 + 200 -6 l 1,6,-1 + 481 -175 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02F3 +Encoding: 755 755 693 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 12 + 0 + 18 + 6 + 0 + 6 + 25 + 24 + 21 + 3 + 128 + 15 + 9 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +541 -234 m 0,0,1 + 541 -315 541 -315 481 -370 c 128,-1,2 + 421 -425 421 -425 341 -425 c 256,3,4 + 261 -425 261 -425 201 -369.5 c 128,-1,5 + 141 -314 141 -314 141 -234 c 256,6,7 + 141 -154 141 -154 200.5 -99 c 128,-1,8 + 260 -44 260 -44 341 -44 c 0,9,10 + 423 -44 423 -44 482 -99 c 128,-1,11 + 541 -154 541 -154 541 -234 c 0,0,1 +445 -234 m 256,12,13 + 445 -189 445 -189 415.5 -161.5 c 128,-1,14 + 386 -134 386 -134 341 -134 c 256,15,16 + 296 -134 296 -134 266 -161.5 c 128,-1,17 + 236 -189 236 -189 236 -234 c 256,18,19 + 236 -279 236 -279 266 -307.5 c 128,-1,20 + 296 -336 296 -336 341 -336 c 256,21,22 + 386 -336 386 -336 415.5 -307.5 c 128,-1,23 + 445 -279 445 -279 445 -234 c 256,12,13 +EndSplineSet +EndChar + +StartChar: uni02F4 +Encoding: 756 756 694 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 4 + 1 + 7 + 6 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +431 271 m 1,0,-1 + 141 549 l 1,1,-1 + 141 578 l 1,2,-1 + 348 578 l 1,3,-1 + 525 291 l 1,4,-1 + 525 271 l 1,5,-1 + 431 271 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02F5 +Encoding: 757 757 695 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 11 + 8 + 4 + 4 + 13 + 8 + 12 + 3 + 9 + 128 + 0 + 6 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +611 271 m 1,0,-1 + 321 549 l 1,1,-1 + 321 578 l 1,2,-1 + 528 578 l 1,3,-1 + 705 291 l 1,4,-1 + 705 271 l 1,5,-1 + 611 271 l 1,0,-1 +264 271 m 1,6,-1 + -26 549 l 1,7,-1 + -26 578 l 1,8,-1 + 181 578 l 1,9,-1 + 358 291 l 1,10,-1 + 358 271 l 1,11,-1 + 264 271 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni02F6 +Encoding: 758 758 696 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 6 + 4 + 0 + 9 + 9 + 13 + 0 + 12 + 8 + 3 + 128 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-25 271 m 1,0,-1 + -25 291 l 1,1,-1 + 152 578 l 1,2,-1 + 359 578 l 1,3,-1 + 359 549 l 1,4,-1 + 69 271 l 1,5,-1 + -25 271 l 1,0,-1 +322 271 m 1,6,-1 + 322 291 l 1,7,-1 + 499 578 l 1,8,-1 + 706 578 l 1,9,-1 + 706 549 l 1,10,-1 + 416 271 l 1,11,-1 + 322 271 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni02F7 +Encoding: 759 759 697 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 21 + 25 + 9 + 24 + 18 + 5 + 9 + 0 + 128 + 20 + 13 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +492 -404 m 0,0,1 + 450 -404 450 -404 408 -385.5 c 128,-1,2 + 366 -367 366 -367 327 -344.5 c 128,-1,3 + 288 -322 288 -322 252.5 -303.5 c 128,-1,4 + 217 -285 217 -285 186 -285 c 0,5,6 + 131 -285 131 -285 104 -316 c 128,-1,7 + 77 -347 77 -347 68 -404 c 1,8,-1 + -23 -404 l 1,9,10 + -12 -302 -12 -302 12 -249.5 c 128,-1,11 + 36 -197 36 -197 76.5 -166.5 c 128,-1,12 + 117 -136 117 -136 180 -136 c 0,13,14 + 224 -136 224 -136 266 -154.5 c 128,-1,15 + 308 -173 308 -173 347 -195.5 c 128,-1,16 + 386 -218 386 -218 420.5 -236.5 c 128,-1,17 + 455 -255 455 -255 485 -255 c 0,18,19 + 585 -255 585 -255 602 -136 c 1,20,-1 + 694 -136 l 1,21,22 + 677 -284 677 -284 627 -344 c 128,-1,23 + 577 -404 577 -404 492 -404 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni02F8 +Encoding: 760 760 698 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 0 + 4 + 4 + 3 + 7 + 7 + 8 + 9 + 5 + 0 + 5 + 0 + 2 + 4 + 2 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +187 1277 m 1,0,-1 + 187 1484 l 1,1,-1 + 382 1484 l 1,2,-1 + 382 1277 l 1,3,-1 + 187 1277 l 1,0,-1 +187 402 m 1,4,-1 + 187 609 l 1,5,-1 + 382 609 l 1,6,-1 + 382 402 l 1,7,-1 + 187 402 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni02F9 +Encoding: 761 761 699 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 2 + 3 + 3 + 0 + 6 + 7 + 1 + 5 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +544 1361 m 1,0,-1 + 268 1361 l 1,1,-1 + 268 1148 l 1,2,-1 + 138 1148 l 1,3,-1 + 138 1484 l 1,4,-1 + 544 1484 l 1,5,-1 + 544 1361 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02FA +Encoding: 762 762 700 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 3 + 2 + 0 + 2 + 6 + 7 + 5 + 1 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +138 1484 m 1,0,-1 + 544 1484 l 1,1,-1 + 544 1148 l 1,2,-1 + 414 1148 l 1,3,-1 + 414 1361 l 1,4,-1 + 138 1361 l 1,5,-1 + 138 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02FB +Encoding: 763 763 701 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 4 + 1 + 1 + 0 + 6 + 7 + 4 + 127 + 1 + 1 + 1 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +544 -425 m 1,0,-1 + 138 -425 l 1,1,-1 + 138 -89 l 1,2,-1 + 268 -89 l 1,3,-1 + 268 -302 l 1,4,-1 + 544 -302 l 1,5,-1 + 544 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02FC +Encoding: 764 764 702 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 4 + 0 + 4 + 6 + 7 + 0 + 127 + 5 + 1 + 5 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +138 -302 m 1,0,-1 + 414 -302 l 1,1,-1 + 414 -89 l 1,2,-1 + 544 -89 l 1,3,-1 + 544 -425 l 1,4,-1 + 138 -425 l 1,5,-1 + 138 -302 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02FD +Encoding: 765 765 703 +Width: 814 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 4 + 1 + 5 + 0 + 1 + 0 + 8 + 9 + 4 + 127 + 1 + 1 + 1 + 128 + 6 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +784 -425 m 1,0,-1 + 30 -425 l 1,1,-1 + 30 -89 l 1,2,-1 + 166 -89 l 1,3,-1 + 166 -290 l 1,4,-1 + 647 -290 l 1,5,-1 + 647 -89 l 1,6,-1 + 784 -89 l 1,7,-1 + 784 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02FE +Encoding: 766 766 704 +Width: 814 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 5 + 3 + 5 + 7 + 6 + 2 + 127 + 5 + 1 + 5 + 128 + 1 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +23 -89 m 1,0,-1 + 166 -89 l 1,1,-1 + 166 -289 l 1,2,-1 + 783 -289 l 1,3,-1 + 783 -424 l 1,4,-1 + 23 -424 l 1,5,-1 + 23 -89 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni02FF +Encoding: 767 767 705 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 2 + 7 + 0 + 7 + 4 + 3 + 10 + 11 + 2 + 64 + 13 + 16 + 72 + 2 + 2 + 0 + 9 + 7 +PUSHW_1 + -64 +NPUSHB + 11 + 13 + 16 + 72 + 7 + 7 + 16 + 9 + 32 + 9 + 2 + 9 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +MDAP[rnd] +CALL +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +625 -181 m 1,0,-1 + 199 -181 l 1,1,-1 + 384 -424 l 1,2,-1 + 272 -424 l 1,3,-1 + 58 -141 l 1,4,-1 + 58 -127 l 1,5,-1 + 272 156 l 1,6,-1 + 384 156 l 1,7,-1 + 199 -87 l 1,8,-1 + 625 -87 l 1,9,-1 + 625 -181 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: gravecomb +Encoding: 768 768 706 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" -310 1940 basemark 0 +AnchorPoint: "Anchor-27" -297 1520 mark 0 +AnchorPoint: "Anchor-17" -240 1540 mark 0 +AnchorPoint: "Anchor-16" -297 1540 mark 0 +LayerCount: 2 +Fore +SplineSet +-273 1548 m 1,0,-1 + -516 1798 l 1,1,-1 + -516 1827 l 1,2,-1 + -309 1827 l 1,3,-1 + -179 1568 l 1,4,-1 + -179 1548 l 1,5,-1 + -273 1548 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: acutecomb +Encoding: 769 769 707 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" -240 1940 basemark 0 +AnchorPoint: "Anchor-27" -275 1520 mark 0 +AnchorPoint: "Anchor-17" -300 1540 mark 0 +AnchorPoint: "Anchor-16" -275 1540 mark 0 +LayerCount: 2 +Fore +SplineSet +-363 1548 m 1,0,-1 + -363 1568 l 1,1,-1 + -233 1827 l 1,2,-1 + -26 1827 l 1,3,-1 + -26 1798 l 1,4,-1 + -269 1548 l 1,5,-1 + -363 1548 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0302 +Encoding: 770 770 708 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 3 + 4 + 9 + 128 + 6 + 2 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1180 mark 0 +AnchorPoint: "Anchor-16" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +331 1221 m 1,0,-1 + 331 1201 l 1,1,-1 + 226 1201 l 1,2,-1 + 7 1370 l 1,3,-1 + 5 1370 l 1,4,-1 + -227 1201 l 1,5,-1 + -331 1201 l 1,6,-1 + -331 1221 l 1,7,-1 + -97 1491 l 1,8,-1 + 107 1491 l 1,9,-1 + 331 1221 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: tildecomb +Encoding: 771 771 709 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-27" 320 1600 basemark 0 +AnchorPoint: "Anchor-27" 330 1180 mark 0 +AnchorPoint: "Anchor-16" 330 1200 mark 0 +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni0304 +Encoding: 772 772 710 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 2 + 142 + 89 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-17" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1230 mark 0 +LayerCount: 2 +Fore +SplineSet +274 1236 m 1,0,-1 + -275 1236 l 1,1,-1 + -275 1363 l 1,2,-1 + 274 1363 l 1,3,-1 + 274 1236 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0305 +Encoding: 773 773 711 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 0 + 1 + 142 + 89 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1800 basemark 0 +AnchorPoint: "Anchor-27" 0 1520 mark 0 +AnchorPoint: "Anchor-16" 0 1560 mark 0 +LayerCount: 2 +Fore +SplineSet +-597 1571 m 1,0,-1 + -597 1701 l 1,1,-1 + 596 1701 l 1,2,-1 + 596 1571 l 1,3,-1 + -597 1571 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0306 +Encoding: 774 774 712 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 10 + 4 + 128 + 7 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1180 mark 0 +AnchorPoint: "Anchor-16" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +0 1206 m 256,0,1 + -120 1206 -120 1206 -198.5 1276.5 c 128,-1,2 + -277 1347 -277 1347 -292 1466 c 1,3,-1 + -187 1466 l 1,4,5 + -175 1407 -175 1407 -125.5 1370.5 c 128,-1,6 + -76 1334 -76 1334 0 1334 c 0,7,8 + 74 1334 74 1334 123.5 1369.5 c 128,-1,9 + 173 1405 173 1405 187 1466 c 1,10,-1 + 292 1466 l 1,11,12 + 274 1344 274 1344 197 1275 c 128,-1,13 + 120 1206 120 1206 0 1206 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni0307 +Encoding: 775 775 713 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 0 + 2 + 144 + 89 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1230 mark 0 +LayerCount: 2 +Fore +SplineSet +-90 1237 m 1,0,-1 + -90 1409 l 1,1,-1 + 90 1409 l 1,2,-1 + 90 1237 l 1,3,-1 + -90 1237 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0308 +Encoding: 776 776 714 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 5 + 2 + 0 + 2 + 145 + 89 + 4 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1210 mark 0 +LayerCount: 2 +Fore +SplineSet +115 1219 m 1,0,-1 + 115 1403 l 1,1,-1 + 278 1403 l 1,2,-1 + 278 1219 l 1,3,-1 + 115 1219 l 1,0,-1 +-279 1219 m 1,4,-1 + -279 1403 l 1,5,-1 + -114 1403 l 1,6,-1 + -114 1219 l 1,7,-1 + -279 1219 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: hookabovecomb +Encoding: 777 777 715 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 3 + 16 + 112 + 8 + 208 + 8 + 224 + 8 + 240 + 8 + 4 + 8 +PUSHW_1 + -64 +PUSHB_5 + 43 + 47 + 72 + 8 + 15 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +CALL +DELTAP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" -290 1940 basemark 0 +AnchorPoint: "Anchor-27" -290 1470 mark 0 +AnchorPoint: "Anchor-16" -290 1474 mark 0 +LayerCount: 2 +Fore +SplineSet +-223 1665 m 256,0,1 + -223 1696 -223 1696 -248.5 1713 c 128,-1,2 + -274 1730 -274 1730 -316 1730 c 0,3,4 + -388 1730 -388 1730 -458 1706 c 1,5,-1 + -489 1805 l 1,6,7 + -399 1835 -399 1835 -293 1835 c 0,8,9 + -56 1835 -56 1835 -56 1686 c 0,10,11 + -56 1627 -56 1627 -96.5 1584.5 c 128,-1,12 + -137 1542 -137 1542 -228 1531 c 1,13,-1 + -228 1481 l 1,14,-1 + -340 1481 l 1,15,-1 + -340 1601 l 1,16,17 + -271 1604 -271 1604 -247 1619 c 128,-1,18 + -223 1634 -223 1634 -223 1665 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni030A +Encoding: 778 778 716 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 15 + 9 + 128 + 21 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1220 mark 0 +AnchorPoint: "Anchor-16" 0 1240 mark 0 +LayerCount: 2 +Fore +SplineSet +200 1444 m 0,0,1 + 200 1363 200 1363 140 1308 c 128,-1,2 + 80 1253 80 1253 0 1253 c 256,3,4 + -80 1253 -80 1253 -140 1308.5 c 128,-1,5 + -200 1364 -200 1364 -200 1444 c 256,6,7 + -200 1524 -200 1524 -140.5 1579 c 128,-1,8 + -81 1634 -81 1634 0 1634 c 0,9,10 + 82 1634 82 1634 141 1579 c 128,-1,11 + 200 1524 200 1524 200 1444 c 0,0,1 +104 1444 m 256,12,13 + 104 1489 104 1489 74.5 1516.5 c 128,-1,14 + 45 1544 45 1544 0 1544 c 256,15,16 + -45 1544 -45 1544 -75 1516.5 c 128,-1,17 + -105 1489 -105 1489 -105 1444 c 256,18,19 + -105 1399 -105 1399 -75 1370.5 c 128,-1,20 + -45 1342 -45 1342 0 1342 c 256,21,22 + 45 1342 45 1342 74.5 1370.5 c 128,-1,23 + 104 1399 104 1399 104 1444 c 256,12,13 +EndSplineSet +EndChar + +StartChar: uni030B +Encoding: 779 779 717 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 8 + 3 + 128 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1600 basemark 0 +AnchorPoint: "Anchor-27" -80 1180 mark 0 +AnchorPoint: "Anchor-16" -80 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +-385 1201 m 1,0,-1 + -385 1221 l 1,1,-1 + -168 1508 l 1,2,-1 + 39 1508 l 1,3,-1 + 39 1479 l 1,4,-1 + -291 1201 l 1,5,-1 + -385 1201 l 1,0,-1 +-38 1201 m 1,6,-1 + -38 1221 l 1,7,-1 + 179 1508 l 1,8,-1 + 386 1508 l 1,9,-1 + 386 1479 l 1,10,-1 + 56 1201 l 1,11,-1 + -38 1201 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni030C +Encoding: 780 780 718 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 5 + 7 + 4 + 128 + 1 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1180 mark 0 +AnchorPoint: "Anchor-17" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +107 1201 m 1,0,-1 + -97 1201 l 1,1,-1 + -331 1471 l 1,2,-1 + -331 1491 l 1,3,-1 + -227 1491 l 1,4,-1 + 5 1322 l 1,5,-1 + 7 1322 l 1,6,-1 + 226 1491 l 1,7,-1 + 331 1491 l 1,8,-1 + 331 1471 l 1,9,-1 + 107 1201 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni030D +Encoding: 781 781 719 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 3 + 128 + 1 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1160 mark 0 +LayerCount: 2 +Fore +SplineSet +58 1152 m 1,0,-1 + -55 1152 l 1,1,-1 + -55 1484 l 1,2,-1 + 58 1484 l 1,3,-1 + 58 1152 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni030E +Encoding: 782 782 720 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 6 + 3 + 128 + 5 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1160 mark 0 +LayerCount: 2 +Fore +SplineSet +-54 1152 m 1,0,-1 + -167 1152 l 1,1,-1 + -167 1484 l 1,2,-1 + -54 1484 l 1,3,-1 + -54 1152 l 1,0,-1 +167 1152 m 1,4,-1 + 54 1152 l 1,5,-1 + 54 1484 l 1,6,-1 + 167 1484 l 1,7,-1 + 167 1152 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni030F +Encoding: 783 783 721 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 8 + 128 + 3 + 1 + 3 + 128 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1600 basemark 0 +AnchorPoint: "Anchor-27" 100 1180 mark 0 +AnchorPoint: "Anchor-16" 100 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +292 1201 m 1,0,-1 + -38 1479 l 1,1,-1 + -38 1508 l 1,2,-1 + 169 1508 l 1,3,-1 + 386 1221 l 1,4,-1 + 386 1201 l 1,5,-1 + 292 1201 l 1,0,-1 +-55 1201 m 1,6,-1 + -385 1479 l 1,7,-1 + -385 1508 l 1,8,-1 + -178 1508 l 1,9,-1 + 39 1221 l 1,10,-1 + 39 1201 l 1,11,-1 + -55 1201 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni0310 +Encoding: 784 784 722 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 14 + 16 + 10 + 3 + 128 + 7 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp2] +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1180 mark 0 +AnchorPoint: "Anchor-16" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +0 1203 m 256,0,1 + -120 1203 -120 1203 -198.5 1273.5 c 128,-1,2 + -277 1344 -277 1344 -292 1463 c 1,3,-1 + -187 1463 l 1,4,5 + -175 1404 -175 1404 -125.5 1367.5 c 128,-1,6 + -76 1331 -76 1331 0 1331 c 0,7,8 + 74 1331 74 1331 123.5 1366.5 c 128,-1,9 + 173 1402 173 1402 187 1463 c 1,10,-1 + 292 1463 l 1,11,12 + 274 1341 274 1341 197 1272 c 128,-1,13 + 120 1203 120 1203 0 1203 c 256,0,1 +91 1636 m 1,14,-1 + 91 1464 l 1,15,-1 + -89 1464 l 1,16,-1 + -89 1636 l 1,17,-1 + 91 1636 l 1,14,-1 +EndSplineSet +EndChar + +StartChar: uni0311 +Encoding: 785 785 723 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 7 + 0 + 128 + 11 + 4 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1180 mark 0 +AnchorPoint: "Anchor-16" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +0 1466 m 256,0,1 + 119 1466 119 1466 196.5 1397.5 c 128,-1,2 + 274 1329 274 1329 292 1206 c 1,3,-1 + 187 1206 l 1,4,5 + 172 1268 172 1268 123 1303 c 128,-1,6 + 74 1338 74 1338 0 1338 c 0,7,8 + -76 1338 -76 1338 -125.5 1301.5 c 128,-1,9 + -175 1265 -175 1265 -187 1206 c 1,10,-1 + -292 1206 l 1,11,12 + -277 1325 -277 1325 -198 1395.5 c 128,-1,13 + -119 1466 -119 1466 0 1466 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni0312 +Encoding: 786 786 724 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 7 + 7 + 5 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 990 mark 0 +AnchorPoint: "Anchor-16" 0 990 mark 0 +LayerCount: 2 +Fore +SplineSet +-101 1003 m 1,0,-1 + -101 1171 l 2,1,2 + -101 1277 -101 1277 -82 1348 c 128,-1,3 + -63 1419 -63 1419 -23 1484 c 1,4,-1 + 100 1484 l 1,5,6 + 6 1348 6 1348 6 1222 c 1,7,-1 + 94 1222 l 1,8,-1 + 94 1003 l 1,9,-1 + -101 1003 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0313 +Encoding: 787 787 725 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 8 + 8 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 990 mark 0 +AnchorPoint: "Anchor-16" 0 990 mark 0 +LayerCount: 2 +Fore +SplineSet +100 1484 m 1,0,-1 + 100 1316 l 2,1,2 + 100 1210 100 1210 81 1139 c 128,-1,3 + 62 1068 62 1068 22 1003 c 1,4,-1 + -101 1003 l 1,5,6 + -7 1139 -7 1139 -7 1265 c 1,7,-1 + -95 1265 l 1,8,-1 + -95 1484 l 1,9,-1 + 100 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0314 +Encoding: 788 788 726 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 2 + 2 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 990 mark 0 +AnchorPoint: "Anchor-16" 0 990 mark 0 +LayerCount: 2 +Fore +SplineSet +94 1484 m 1,0,-1 + 94 1265 l 1,1,-1 + 6 1265 l 1,2,3 + 6 1139 6 1139 100 1003 c 1,4,-1 + -23 1003 l 1,5,6 + -63 1067 -63 1067 -82 1139.5 c 128,-1,7 + -101 1212 -101 1212 -101 1316 c 2,8,-1 + -101 1484 l 1,9,-1 + 94 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0315 +Encoding: 789 789 727 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 8 + 8 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-15" -100 990 mark 0 +LayerCount: 2 +Fore +SplineSet +100 1484 m 1,0,-1 + 100 1316 l 2,1,2 + 100 1210 100 1210 81 1139 c 128,-1,3 + 62 1068 62 1068 22 1003 c 1,4,-1 + -101 1003 l 1,5,6 + -7 1139 -7 1139 -7 1265 c 1,7,-1 + -95 1265 l 1,8,-1 + -95 1484 l 1,9,-1 + 100 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0316 +Encoding: 790 790 728 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 0 + 16 + 0 + 2 + 0 + 3 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -120 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +78 -407 m 1,0,-1 + -165 -157 l 1,1,-1 + -165 -128 l 1,2,-1 + 42 -128 l 1,3,-1 + 172 -387 l 1,4,-1 + 172 -407 l 1,5,-1 + 78 -407 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0317 +Encoding: 791 791 729 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 0 + 16 + 0 + 2 + 0 + 3 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -120 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +-177 -406 m 1,0,-1 + -177 -386 l 1,1,-1 + -47 -127 l 1,2,-1 + 160 -127 l 1,3,-1 + 160 -156 l 1,4,-1 + -83 -406 l 1,5,-1 + -177 -406 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0318 +Encoding: 792 792 730 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 3 + 4 + 4 + 15 + 1 + 31 + 1 + 2 + 7 + 1 + 192 + 95 + 7 + 111 + 7 + 127 + 7 + 3 + 7 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SMD +MDRP[min,rnd,black] +SDB +DELTAP1 +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +162 -417 m 1,0,-1 + 51 -417 l 1,1,-1 + 51 -302 l 1,2,-1 + -193 -302 l 1,3,-1 + -193 -189 l 1,4,-1 + 51 -189 l 1,5,-1 + 51 -75 l 1,6,-1 + 162 -75 l 1,7,-1 + 162 -417 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0319 +Encoding: 793 793 731 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 5 + 2 + 2 + 15 + 7 + 31 + 7 + 2 + 7 + 7 + 192 + 95 + 1 + 111 + 1 + 127 + 1 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SMD +MDRP[min,rnd,black] +SDB +DELTAP1 +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +-162 -75 m 1,0,-1 + -51 -75 l 1,1,-1 + -51 -189 l 1,2,-1 + 193 -189 l 1,3,-1 + 193 -302 l 1,4,-1 + -51 -302 l 1,5,-1 + -51 -417 l 1,6,-1 + -162 -417 l 1,7,-1 + -162 -75 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni031A +Encoding: 794 794 732 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 5 + 128 + 1 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1760 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +377 1221 m 1,0,-1 + 234 1221 l 1,1,-1 + 234 1534 l 1,2,-1 + -377 1534 l 1,3,-1 + -377 1672 l 1,4,-1 + 377 1672 l 1,5,-1 + 377 1221 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni031B +Encoding: 795 795 733 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 8 + 8 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-19" 70 1020 mark 0 +LayerCount: 2 +Fore +SplineSet +263 1484 m 1,0,-1 + 263 1338 l 2,1,2 + 263 1241 263 1241 244.5 1167.5 c 128,-1,3 + 226 1094 226 1094 183 1027 c 1,4,-1 + 62 1027 l 1,5,6 + 157 1164 157 1164 157 1289 c 1,7,-1 + 68 1289 l 1,8,-1 + 68 1484 l 1,9,-1 + 263 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni031C +Encoding: 796 796 734 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 13 + 7 + 15 + 0 + 1 + 0 + 128 + 6 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +DELTAP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 20 -50 mark 0 +AnchorPoint: "Anchor-14" 20 -50 mark 0 +LayerCount: 2 +Fore +SplineSet +95 -425 m 1,0,1 + 10 -425 10 -425 -40 -373 c 128,-1,2 + -90 -321 -90 -321 -90 -235 c 0,3,4 + -90 -148 -90 -148 -40 -97 c 128,-1,5 + 10 -46 10 -46 95 -46 c 1,6,-1 + 95 -131 l 1,7,8 + 53 -131 53 -131 25.5 -158.5 c 128,-1,9 + -2 -186 -2 -186 -2 -235 c 256,10,11 + -2 -284 -2 -284 25.5 -312 c 128,-1,12 + 53 -340 53 -340 95 -340 c 1,13,-1 + 95 -425 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni031D +Encoding: 797 797 735 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 6 + 2 + 2 + 127 + 1 + 1 + 1 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -80 mark 0 +LayerCount: 2 +Fore +SplineSet +179 -425 m 1,0,-1 + -180 -425 l 1,1,-1 + -180 -317 l 1,2,-1 + -57 -317 l 1,3,-1 + -57 -88 l 1,4,-1 + 56 -88 l 1,5,-1 + 56 -317 l 1,6,-1 + 179 -317 l 1,7,-1 + 179 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni031E +Encoding: 798 798 736 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 4 + 0 + 0 + 127 + 3 + 1 + 3 + 128 + 7 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -80 mark 0 +LayerCount: 2 +Fore +SplineSet +180 -196 m 1,0,-1 + 57 -196 l 1,1,-1 + 57 -425 l 1,2,-1 + -56 -425 l 1,3,-1 + -56 -196 l 1,4,-1 + -179 -196 l 1,5,-1 + -179 -88 l 1,6,-1 + 180 -88 l 1,7,-1 + 180 -196 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni031F +Encoding: 799 799 737 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 1 + 5 + 5 + 10 + 6 + 6 + 3 + 128 + 111 + 9 + 127 + 9 + 2 + 9 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SMD +MDRP[min,rnd,black] +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -80 mark 0 +LayerCount: 2 +Fore +SplineSet +178 -300 m 1,0,-1 + 55 -300 l 1,1,-1 + 55 -425 l 1,2,-1 + -58 -425 l 1,3,-1 + -58 -300 l 1,4,-1 + -181 -300 l 1,5,-1 + -181 -192 l 1,6,-1 + -58 -192 l 1,7,-1 + -58 -68 l 1,8,-1 + 55 -68 l 1,9,-1 + 55 -192 l 1,10,-1 + 178 -192 l 1,11,-1 + 178 -300 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0320 +Encoding: 800 800 738 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 3 + 0 + 143 + 89 + 3 +SVTCA[y-axis] +MDAP[rnd] +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -420 basemark 0 +AnchorPoint: "Anchor-28" 0 -140 mark 0 +AnchorPoint: "Anchor-14" 0 -140 mark 0 +LayerCount: 2 +Fore +SplineSet +313 -298 m 1,0,-1 + -311 -298 l 1,1,-1 + -311 -157 l 1,2,-1 + 313 -157 l 1,3,-1 + 313 -298 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0321 +Encoding: 801 801 739 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 8 + 127 + 3 + 1 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 90 110 mark 0 +LayerCount: 2 +Fore +SplineSet +178 155 m 1,0,-1 + 178 -129 l 2,1,2 + 178 -425 178 -425 -103 -425 c 0,3,4 + -154 -425 -154 -425 -239 -409 c 1,5,-1 + -239 -245 l 1,6,7 + -189 -263 -189 -263 -120 -263 c 0,8,9 + 0 -263 0 -263 0 -115 c 2,10,-1 + 0 155 l 1,11,-1 + 178 155 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0322 +Encoding: 802 802 740 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 3 + 127 + 8 + 1 + 8 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-26" 90 110 mark 0 +LayerCount: 2 +Fore +SplineSet +178 155 m 1,0,-1 + 178 -115 l 2,1,2 + 178 -263 178 -263 298 -263 c 0,3,4 + 367 -263 367 -263 417 -245 c 1,5,-1 + 417 -409 l 1,6,7 + 332 -425 332 -425 281 -425 c 0,8,9 + 0 -425 0 -425 0 -129 c 2,10,-1 + 0 155 l 1,11,-1 + 178 155 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: dotbelowcomb +Encoding: 803 803 741 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-28" -685 -420 basemark 0 +AnchorPoint: "Anchor-28" -680 -130 mark 0 +AnchorPoint: "Anchor-14" -680 -130 mark 0 +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -528 0 2 +EndChar + +StartChar: uni0324 +Encoding: 804 804 742 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 4 + 0 + 2 + 0 + 145 + 89 + 5 + 2 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -240 mark 0 +AnchorPoint: "Anchor-14" 0 -240 mark 0 +LayerCount: 2 +Fore +SplineSet +115 -425 m 1,0,-1 + 115 -241 l 1,1,-1 + 278 -241 l 1,2,-1 + 278 -425 l 1,3,-1 + 115 -425 l 1,0,-1 +-279 -425 m 1,4,-1 + -279 -241 l 1,5,-1 + -114 -241 l 1,6,-1 + -114 -425 l 1,7,-1 + -279 -425 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni0325 +Encoding: 805 805 743 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 21 + 15 + 3 + 1 + 3 + 128 + 15 + 9 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +DELTAP2 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -50 mark 0 +AnchorPoint: "Anchor-14" 0 -50 mark 0 +LayerCount: 2 +Fore +SplineSet +200 -234 m 0,0,1 + 200 -315 200 -315 140 -370 c 128,-1,2 + 80 -425 80 -425 0 -425 c 256,3,4 + -80 -425 -80 -425 -140 -369.5 c 128,-1,5 + -200 -314 -200 -314 -200 -234 c 256,6,7 + -200 -154 -200 -154 -140.5 -99 c 128,-1,8 + -81 -44 -81 -44 0 -44 c 0,9,10 + 82 -44 82 -44 141 -99 c 128,-1,11 + 200 -154 200 -154 200 -234 c 0,0,1 +104 -234 m 256,12,13 + 104 -189 104 -189 74.5 -161.5 c 128,-1,14 + 45 -134 45 -134 0 -134 c 256,15,16 + -45 -134 -45 -134 -75 -161.5 c 128,-1,17 + -105 -189 -105 -189 -105 -234 c 256,18,19 + -105 -279 -105 -279 -75 -307.5 c 128,-1,20 + -45 -336 -45 -336 0 -336 c 256,21,22 + 45 -336 45 -336 74.5 -307.5 c 128,-1,23 + 104 -279 104 -279 104 -234 c 256,12,13 +EndSplineSet +EndChar + +StartChar: uni0326 +Encoding: 806 806 744 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 7 + 7 + 4 + 128 + 0 + 9 + 16 + 9 + 2 + 9 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -90 mark 0 +AnchorPoint: "Anchor-14" 0 -90 mark 0 +LayerCount: 2 +Fore +SplineSet +98 -204 m 2,0,1 + 98 -291 98 -291 76 -349.5 c 128,-1,2 + 54 -408 54 -408 14 -455 c 1,3,-1 + -103 -455 l 1,4,5 + -9 -355 -9 -355 -9 -265 c 1,6,-1 + -97 -265 l 1,7,-1 + -97 -98 l 1,8,-1 + 98 -98 l 1,9,-1 + 98 -204 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0327 +Encoding: 807 807 745 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 12 + 17 + 17 + 7 + 2 + 128 + 16 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-24" -30 15 mark 0 +LayerCount: 2 +Fore +SplineSet +182 -258 m 0,0,1 + 182 -444 182 -444 -92 -444 c 0,2,3 + -149 -444 -149 -444 -182 -440 c 1,4,-1 + -182 -342 l 1,5,6 + -133 -348 -133 -348 -96 -348 c 0,7,8 + 51 -348 51 -348 51 -262 c 0,9,10 + 51 -222 51 -222 20.5 -201 c 128,-1,11 + -10 -180 -10 -180 -82 -180 c 2,12,-1 + -110 -180 l 1,13,-1 + -139 -182 l 1,14,-1 + -74 0 l 1,15,-1 + 33 0 l 1,16,-1 + -6 -100 l 1,17,18 + 88 -103 88 -103 135 -144.5 c 128,-1,19 + 182 -186 182 -186 182 -258 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0328 +Encoding: 808 808 746 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 15 + 2 + 128 + 9 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" -10 -10 mark 0 +LayerCount: 2 +Fore +SplineSet +170 -400 m 1,0,1 + 107 -427 107 -427 31 -427 c 0,2,3 + -74 -427 -74 -427 -127 -376 c 128,-1,4 + -180 -325 -180 -325 -180 -240 c 0,5,6 + -180 -170 -180 -170 -136.5 -104 c 128,-1,7 + -93 -38 -93 -38 -25 0 c 1,8,-1 + 108 0 l 1,9,10 + 44 -36 44 -36 2.5 -98.5 c 128,-1,11 + -39 -161 -39 -161 -39 -227 c 0,12,13 + -39 -269 -39 -269 -14.5 -293 c 128,-1,14 + 10 -317 10 -317 55 -317 c 0,15,16 + 109 -317 109 -317 170 -293 c 1,17,-1 + 170 -400 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0329 +Encoding: 809 809 747 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 111 + 1 + 127 + 1 + 2 + 1 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -60 mark 0 +AnchorPoint: "Anchor-14" 0 -60 mark 0 +LayerCount: 2 +Fore +SplineSet +67 -425 m 1,0,-1 + -67 -425 l 1,1,-1 + -67 -75 l 1,2,-1 + 67 -75 l 1,3,-1 + 67 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni032A +Encoding: 810 810 748 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 5 + 127 + 1 + 1 + 1 + 128 + 2 + 7 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -80 mark 0 +LayerCount: 2 +Fore +SplineSet +377 -425 m 1,0,-1 + 240 -425 l 1,1,-1 + 240 -224 l 1,2,-1 + -241 -224 l 1,3,-1 + -241 -425 l 1,4,-1 + -377 -425 l 1,5,-1 + -377 -89 l 1,6,-1 + 377 -89 l 1,7,-1 + 377 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni032B +Encoding: 811 811 749 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 17 + 10 + 10 + 24 + 3 + 128 + 20 + 13 + 15 + 7 + 1 + 8 + 7 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +SHP[rp1] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -120 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +0 -277 m 1,0,1 + -24 -315 -24 -315 -62.5 -341.5 c 128,-1,2 + -101 -368 -101 -368 -169 -368 c 0,3,4 + -263 -368 -263 -368 -309 -303.5 c 128,-1,5 + -355 -239 -355 -239 -355 -131 c 1,6,-1 + -258 -131 l 1,7,8 + -258 -207 -258 -207 -235 -240.5 c 128,-1,9 + -212 -274 -212 -274 -166 -274 c 0,10,11 + -111 -274 -111 -274 -78.5 -237 c 128,-1,12 + -46 -200 -46 -200 -46 -131 c 1,13,-1 + 46 -131 l 1,14,15 + 46 -200 46 -200 78.5 -237 c 128,-1,16 + 111 -274 111 -274 166 -274 c 0,17,18 + 212 -274 212 -274 235 -240 c 128,-1,19 + 258 -206 258 -206 258 -131 c 1,20,-1 + 355 -131 l 1,21,22 + 355 -239 355 -239 309 -303.5 c 128,-1,23 + 263 -368 263 -368 169 -368 c 0,24,25 + 55 -368 55 -368 0 -277 c 1,0,1 +EndSplineSet +EndChar + +StartChar: uni032C +Encoding: 812 812 750 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 5 + 6 + 223 + 1 + 1 + 1 + 128 + 7 + 15 + 4 + 31 + 4 + 2 + 7 + 4 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +SHP[rp1] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -150 mark 0 +AnchorPoint: "Anchor-14" 0 -150 mark 0 +LayerCount: 2 +Fore +SplineSet +101 -425 m 1,0,-1 + -103 -425 l 1,1,-1 + -327 -186 l 1,2,-1 + -327 -165 l 1,3,-1 + -223 -165 l 1,4,-1 + -1 -304 l 1,5,-1 + 1 -304 l 1,6,-1 + 220 -165 l 1,7,-1 + 325 -165 l 1,8,-1 + 325 -186 l 1,9,-1 + 101 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni032D +Encoding: 813 813 751 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 6 + 223 + 2 + 1 + 2 + 128 + 15 + 9 + 31 + 9 + 2 + 7 + 9 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -150 mark 0 +AnchorPoint: "Anchor-14" 0 -150 mark 0 +LayerCount: 2 +Fore +SplineSet +321 -404 m 1,0,-1 + 321 -425 l 1,1,-1 + 216 -425 l 1,2,-1 + -3 -286 l 1,3,-1 + -5 -286 l 1,4,-1 + -227 -425 l 1,5,-1 + -331 -425 l 1,6,-1 + -331 -404 l 1,7,-1 + -107 -165 l 1,8,-1 + 97 -165 l 1,9,-1 + 321 -404 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni032E +Encoding: 814 814 752 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 7 + 0 + 128 + 10 + 15 + 4 + 1 + 8 + 4 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -120 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +0 -398 m 256,0,1 + -120 -398 -120 -398 -198.5 -327.5 c 128,-1,2 + -277 -257 -277 -257 -292 -138 c 1,3,-1 + -187 -138 l 1,4,5 + -175 -197 -175 -197 -125.5 -233.5 c 128,-1,6 + -76 -270 -76 -270 0 -270 c 0,7,8 + 74 -270 74 -270 123.5 -234.5 c 128,-1,9 + 173 -199 173 -199 187 -138 c 1,10,-1 + 292 -138 l 1,11,12 + 274 -260 274 -260 197 -329 c 128,-1,13 + 120 -398 120 -398 0 -398 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni032F +Encoding: 815 815 753 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 11 + 4 + 128 + 7 + 15 + 0 + 1 + 8 + 0 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +SHP[rp2] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -120 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +0 -138 m 256,0,1 + 119 -138 119 -138 196.5 -206.5 c 128,-1,2 + 274 -275 274 -275 292 -398 c 1,3,-1 + 187 -398 l 1,4,5 + 172 -336 172 -336 123 -301 c 128,-1,6 + 74 -266 74 -266 0 -266 c 0,7,8 + -76 -266 -76 -266 -125.5 -302.5 c 128,-1,9 + -175 -339 -175 -339 -187 -398 c 1,10,-1 + -292 -398 l 1,11,12 + -277 -279 -277 -279 -198 -208.5 c 128,-1,13 + -119 -138 -119 -138 0 -138 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni0330 +Encoding: 816 816 754 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 18 + 5 + 9 + 223 + 0 + 1 + 0 + 128 + 20 + 15 + 13 + 31 + 13 + 2 + 7 + 13 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +SHP[rp1] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -140 mark 0 +AnchorPoint: "Anchor-14" 0 -140 mark 0 +LayerCount: 2 +Fore +SplineSet +157 -425 m 0,0,1 + 115 -425 115 -425 73 -406.5 c 128,-1,2 + 31 -388 31 -388 -8 -365.5 c 128,-1,3 + -47 -343 -47 -343 -82.5 -324.5 c 128,-1,4 + -118 -306 -118 -306 -149 -306 c 0,5,6 + -204 -306 -204 -306 -231 -337 c 128,-1,7 + -258 -368 -258 -368 -267 -425 c 1,8,-1 + -358 -425 l 1,9,10 + -347 -323 -347 -323 -323 -270.5 c 128,-1,11 + -299 -218 -299 -218 -258.5 -187.5 c 128,-1,12 + -218 -157 -218 -157 -155 -157 c 0,13,14 + -111 -157 -111 -157 -69 -175.5 c 128,-1,15 + -27 -194 -27 -194 12 -216.5 c 128,-1,16 + 51 -239 51 -239 85.5 -257.5 c 128,-1,17 + 120 -276 120 -276 150 -276 c 0,18,19 + 250 -276 250 -276 267 -157 c 1,20,-1 + 359 -157 l 1,21,22 + 342 -305 342 -305 292 -365 c 128,-1,23 + 242 -425 242 -425 157 -425 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0331 +Encoding: 817 817 755 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 3 + 0 + 142 + 89 + 3 +SVTCA[y-axis] +MDAP[rnd] +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -420 basemark 0 +AnchorPoint: "Anchor-28" 0 -180 mark 0 +AnchorPoint: "Anchor-14" 0 -180 mark 0 +LayerCount: 2 +Fore +SplineSet +274 -324 m 1,0,-1 + -275 -324 l 1,1,-1 + -275 -197 l 1,2,-1 + 274 -197 l 1,3,-1 + 274 -324 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0332 +Encoding: 818 818 756 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 2 + 3 + 142 + 89 + 2 +SVTCA[y-axis] +MDAP[rnd] +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -260 mark 0 +AnchorPoint: "Anchor-14" 0 -260 mark 0 +LayerCount: 2 +Fore +SplineSet +-597 -407 m 1,0,-1 + -597 -277 l 1,1,-1 + 596 -277 l 1,2,-1 + 596 -407 l 1,3,-1 + -597 -407 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0333 +Encoding: 819 819 757 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 0 + 6 + 16 + 5 + 32 + 5 + 48 + 5 + 3 + 127 + 5 + 1 + 5 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +DELTAP1 +DELTAP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -80 mark 0 +LayerCount: 2 +Fore +SplineSet +313 -218 m 1,0,-1 + -311 -218 l 1,1,-1 + -311 -100 l 1,2,-1 + 313 -100 l 1,3,-1 + 313 -218 l 1,0,-1 +313 -425 m 1,4,-1 + -311 -425 l 1,5,-1 + -311 -307 l 1,6,-1 + 313 -307 l 1,7,-1 + 313 -425 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni0334 +Encoding: 820 820 758 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 18 + 5 + 20 + 13 + 128 + 9 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +157 241 m 0,0,1 + 115 241 115 241 73 259.5 c 128,-1,2 + 31 278 31 278 -8 300.5 c 128,-1,3 + -47 323 -47 323 -82.5 341.5 c 128,-1,4 + -118 360 -118 360 -149 360 c 0,5,6 + -204 360 -204 360 -231 329 c 128,-1,7 + -258 298 -258 298 -267 241 c 1,8,-1 + -358 241 l 1,9,10 + -347 343 -347 343 -323 395.5 c 128,-1,11 + -299 448 -299 448 -258.5 478.5 c 128,-1,12 + -218 509 -218 509 -155 509 c 0,13,14 + -111 509 -111 509 -69 490.5 c 128,-1,15 + -27 472 -27 472 12 449.5 c 128,-1,16 + 51 427 51 427 85.5 408.5 c 128,-1,17 + 120 390 120 390 150 390 c 0,18,19 + 250 390 250 390 267 509 c 1,20,-1 + 359 509 l 1,21,22 + 342 361 342 361 292 301 c 128,-1,23 + 242 241 242 241 157 241 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0335 +Encoding: 821 821 759 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +351 274 m 1,0,-1 + -351 274 l 1,1,-1 + -351 417 l 1,2,-1 + 351 417 l 1,3,-1 + 351 274 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0336 +Encoding: 822 822 760 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +598 284 m 1,0,-1 + -595 284 l 1,1,-1 + -595 409 l 1,2,-1 + 598 409 l 1,3,-1 + 598 284 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0337 +Encoding: 823 823 761 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 0 + 3 + 2 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +512 898 m 1,0,-1 + -413 -28 l 1,1,-1 + -512 69 l 1,2,-1 + 413 995 l 1,3,-1 + 512 898 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0338 +Encoding: 824 824 762 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +287 1511 m 1,0,-1 + -137 -35 l 1,1,-1 + -282 -35 l 1,2,-1 + 143 1511 l 1,3,-1 + 287 1511 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0339 +Encoding: 825 825 763 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 6 + 0 + 15 + 13 + 1 + 175 + 13 + 191 + 13 + 2 + 13 + 128 + 7 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +DELTAP1 +DELTAP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" -20 -60 mark 0 +AnchorPoint: "Anchor-14" -20 -50 mark 0 +LayerCount: 2 +Fore +SplineSet +-93 -349 m 1,0,1 + -51 -349 -51 -349 -23.5 -321 c 128,-1,2 + 4 -293 4 -293 4 -244 c 256,3,4 + 4 -195 4 -195 -23.5 -167.5 c 128,-1,5 + -51 -140 -51 -140 -93 -140 c 1,6,-1 + -93 -55 l 1,7,8 + -9 -55 -9 -55 41.5 -106 c 128,-1,9 + 92 -157 92 -157 92 -244 c 256,10,11 + 92 -331 92 -331 41.5 -382.5 c 128,-1,12 + -9 -434 -9 -434 -93 -434 c 1,13,-1 + -93 -349 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni033A +Encoding: 826 826 764 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 4 + 127 + 1 + 1 + 1 + 128 + 6 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -80 mark 0 +LayerCount: 2 +Fore +SplineSet +377 -425 m 1,0,-1 + -377 -425 l 1,1,-1 + -377 -89 l 1,2,-1 + -241 -89 l 1,3,-1 + -241 -290 l 1,4,-1 + 240 -290 l 1,5,-1 + 240 -89 l 1,6,-1 + 377 -89 l 1,7,-1 + 377 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni033B +Encoding: 827 827 765 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 7 + 15 + 1 + 1 + 1 + 128 + 5 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +DELTAP2 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -40 mark 0 +AnchorPoint: "Anchor-14" 0 -40 mark 0 +LayerCount: 2 +Fore +SplineSet +188 -425 m 1,0,-1 + -188 -425 l 1,1,-1 + -188 -49 l 1,2,-1 + 188 -49 l 1,3,-1 + 188 -425 l 1,0,-1 +93 -330 m 1,4,-1 + 93 -144 l 1,5,-1 + -93 -144 l 1,6,-1 + -93 -330 l 1,7,-1 + 93 -330 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni033C +Encoding: 828 828 766 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 0 + 11 + 11 + 15 + 2 + 9 + 9 + 17 + 6 + 128 + 20 + 15 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +IP +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -120 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +252 -294 m 1,0,1 + 235 -220 235 -220 161 -220 c 0,2,3 + 106 -220 106 -220 76 -257 c 128,-1,4 + 46 -294 46 -294 46 -363 c 1,5,-1 + -46 -363 l 1,6,7 + -46 -294 -46 -294 -76 -257 c 128,-1,8 + -106 -220 -106 -220 -161 -220 c 0,9,10 + -235 -220 -235 -220 -252 -294 c 1,11,-1 + -350 -294 l 1,12,13 + -337 -216 -337 -216 -292 -171 c 128,-1,14 + -247 -126 -247 -126 -169 -126 c 0,15,16 + -57 -126 -57 -126 0 -217 c 1,17,18 + 32 -166 32 -166 71 -146 c 128,-1,19 + 110 -126 110 -126 164 -126 c 0,20,21 + 242 -126 242 -126 289.5 -171 c 128,-1,22 + 337 -216 337 -216 350 -294 c 1,23,-1 + 252 -294 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni033D +Encoding: 829 829 767 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 8 + 11 + 5 + 2 + 4 + 9 + 7 + 128 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1140 mark 0 +AnchorPoint: "Anchor-16" 0 1140 mark 0 +LayerCount: 2 +Fore +SplineSet +218 1223 m 1,0,-1 + 131 1138 l 1,1,-1 + -1 1272 l 1,2,-1 + -132 1139 l 1,3,-1 + -218 1222 l 1,4,-1 + -87 1355 l 1,5,-1 + -219 1488 l 1,6,-1 + -132 1573 l 1,7,-1 + 0 1440 l 1,8,-1 + 132 1572 l 1,9,-1 + 218 1489 l 1,10,-1 + 86 1357 l 1,11,-1 + 218 1223 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni033E +Encoding: 830 830 768 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 20 + 8 + 17 + 16 + 128 + 5 + 4 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1760 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1140 mark 0 +LayerCount: 2 +Fore +SplineSet +105 1290 m 0,0,1 + 105 1241 105 1241 81.5 1209.5 c 128,-1,2 + 58 1178 58 1178 18 1160 c 128,-1,3 + -22 1142 -22 1142 -105 1132 c 1,4,-1 + -105 1209 l 1,5,6 + -61 1215 -61 1215 -36.5 1234 c 128,-1,7 + -12 1253 -12 1253 -12 1295 c 0,8,9 + -12 1318 -12 1318 -26.5 1342.5 c 128,-1,10 + -41 1367 -41 1367 -58.5 1393.5 c 128,-1,11 + -76 1420 -76 1420 -90.5 1450 c 128,-1,12 + -105 1480 -105 1480 -105 1514 c 0,13,14 + -105 1582 -105 1582 -57.5 1621 c 128,-1,15 + -10 1660 -10 1660 105 1673 c 1,16,-1 + 105 1597 l 1,17,18 + 60 1589 60 1589 36 1571 c 128,-1,19 + 12 1553 12 1553 12 1509 c 0,20,21 + 12 1485 12 1485 26.5 1460 c 128,-1,22 + 41 1435 41 1435 58.5 1408.5 c 128,-1,23 + 76 1382 76 1382 90.5 1352.5 c 128,-1,24 + 105 1323 105 1323 105 1290 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni033F +Encoding: 831 831 769 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 7 + 1 + 6 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1940 basemark 0 +AnchorPoint: "Anchor-27" 0 1520 mark 0 +AnchorPoint: "Anchor-16" 0 1540 mark 0 +LayerCount: 2 +Fore +SplineSet +-596 1548 m 1,0,-1 + -596 1650 l 1,1,-1 + 597 1650 l 1,2,-1 + 597 1548 l 1,3,-1 + -596 1548 l 1,0,-1 +-596 1738 m 1,4,-1 + -596 1840 l 1,5,-1 + 597 1840 l 1,6,-1 + 597 1738 l 1,7,-1 + -596 1738 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni0340 +Encoding: 832 832 770 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 0 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-154 1474 m 1,0,-1 + -17 1206 l 1,1,-1 + -17 1194 l 1,2,-1 + -137 1194 l 1,3,-1 + -333 1459 l 1,4,-1 + -333 1474 l 1,5,-1 + -154 1474 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0341 +Encoding: 833 833 771 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 0 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +334 1474 m 1,0,-1 + 334 1459 l 1,1,-1 + 138 1194 l 1,2,-1 + 18 1194 l 1,3,-1 + 18 1206 l 1,4,-1 + 155 1474 l 1,5,-1 + 334 1474 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0342 +Encoding: 834 834 772 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 16 + 5 + 0 + 18 + 18 + 11 + 0 + 128 + 8 + 8 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +MDAP[rnd] +SMD +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +SRP1 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1540 basemark 0 +AnchorPoint: "Anchor-27" 0 1180 mark 0 +AnchorPoint: "Anchor-16" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +140 1211 m 0,0,1 + 98 1211 98 1211 62.5 1226.5 c 128,-1,2 + 27 1242 27 1242 -5.5 1260.5 c 128,-1,3 + -38 1279 -38 1279 -70.5 1294.5 c 128,-1,4 + -103 1310 -103 1310 -140 1310 c 0,5,6 + -187 1310 -187 1310 -212.5 1284 c 128,-1,7 + -238 1258 -238 1258 -247 1201 c 1,8,-1 + -348 1201 l 1,9,10 + -319 1459 -319 1459 -145 1459 c 0,11,12 + -101 1459 -101 1459 -64.5 1443.5 c 128,-1,13 + -28 1428 -28 1428 6 1409.5 c 128,-1,14 + 40 1391 40 1391 72.5 1375.5 c 128,-1,15 + 105 1360 105 1360 141 1360 c 0,16,17 + 232 1360 232 1360 247 1469 c 1,18,-1 + 349 1469 l 1,19,20 + 334 1333 334 1333 281.5 1272 c 128,-1,21 + 229 1211 229 1211 140 1211 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0343 +Encoding: 835 835 773 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 8 + 8 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1020 mark 0 +AnchorPoint: "Anchor-16" 0 1020 mark 0 +LayerCount: 2 +Fore +SplineSet +101 1484 m 1,0,-1 + 101 1338 l 2,1,2 + 101 1241 101 1241 82.5 1167.5 c 128,-1,3 + 64 1094 64 1094 21 1027 c 1,4,-1 + -100 1027 l 1,5,6 + -5 1164 -5 1164 -5 1289 c 1,7,-1 + -94 1289 l 1,8,-1 + -94 1484 l 1,9,-1 + 101 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0344 +Encoding: 836 836 774 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 11 + 7 + 7 + 0 + 128 + 10 + 6 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SMD +MDRP[min,rnd,black] +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1220 mark 0 +LayerCount: 2 +Fore +SplineSet +177 1507 m 1,0,-1 + 177 1492 l 1,1,-1 + -12 1231 l 1,2,-1 + -129 1231 l 1,3,-1 + -129 1243 l 1,4,-1 + 2 1507 l 1,5,-1 + 177 1507 l 1,0,-1 +-341 1231 m 1,6,-1 + -341 1403 l 1,7,-1 + -191 1403 l 1,8,-1 + -191 1231 l 1,9,-1 + -341 1231 l 1,6,-1 +189 1231 m 1,10,-1 + 189 1403 l 1,11,-1 + 339 1403 l 1,12,-1 + 339 1231 l 1,13,-1 + 189 1231 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni0345 +Encoding: 837 837 775 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 3 + 31 + 8 + 1 + 8 + 128 + 15 + 12 + 1 + 8 + 12 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +SMD +MDRP[min,rnd,grey] +DELTAP2 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -120 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +62 -252 m 2,0,1 + 62 -285 62 -285 72.5 -296.5 c 128,-1,2 + 83 -308 83 -308 107 -308 c 0,3,4 + 121 -308 121 -308 154 -302 c 1,5,-1 + 154 -414 l 1,6,7 + 110 -425 110 -425 72 -425 c 0,8,9 + -70 -425 -70 -425 -70 -273 c 2,10,-1 + -70 -127 l 1,11,-1 + 62 -127 l 1,12,-1 + 62 -252 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0346 +Encoding: 838 838 776 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 3 + 7 + 128 + 5 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1220 mark 0 +AnchorPoint: "Anchor-16" 0 1220 mark 0 +LayerCount: 2 +Fore +SplineSet +377 1234 m 1,0,-1 + 240 1234 l 1,1,-1 + 240 1435 l 1,2,-1 + -241 1435 l 1,3,-1 + -241 1234 l 1,4,-1 + -377 1234 l 1,5,-1 + -377 1570 l 1,6,-1 + 377 1570 l 1,7,-1 + 377 1234 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0347 +Encoding: 839 839 777 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 0 + 5 + 31 + 4 + 1 + 144 + 4 + 1 + 4 + 128 + 15 + 2 + 1 + 8 + 2 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +SMD +MDRP[min,rnd,grey] +DELTAP1 +DELTAP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -120 mark 0 +AnchorPoint: "Anchor-14" 0 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +-499 -236 m 1,0,-1 + -499 -130 l 1,1,-1 + 496 -130 l 1,2,-1 + 496 -236 l 1,3,-1 + -499 -236 l 1,0,-1 +-499 -425 m 1,4,-1 + -499 -319 l 1,5,-1 + 496 -319 l 1,6,-1 + 496 -425 l 1,7,-1 + -499 -425 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni0348 +Encoding: 840 840 778 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 5 + 111 + 1 + 127 + 1 + 2 + 1 + 128 + 6 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -60 mark 0 +AnchorPoint: "Anchor-14" 0 -60 mark 0 +LayerCount: 2 +Fore +SplineSet +-51 -425 m 1,0,-1 + -185 -425 l 1,1,-1 + -185 -75 l 1,2,-1 + -51 -75 l 1,3,-1 + -51 -425 l 1,0,-1 +190 -425 m 1,4,-1 + 56 -425 l 1,5,-1 + 56 -75 l 1,6,-1 + 190 -75 l 1,7,-1 + 190 -425 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni0349 +Encoding: 841 841 779 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 5 + 127 + 3 + 1 + 3 + 128 + 1 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -80 mark 0 +LayerCount: 2 +Fore +SplineSet +-203 -89 m 1,0,-1 + 203 -89 l 1,1,-1 + 203 -425 l 1,2,-1 + 73 -425 l 1,3,-1 + 73 -212 l 1,4,-1 + -203 -212 l 1,5,-1 + -203 -89 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni034A +Encoding: 842 842 780 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 16 + 2 + 18 + 12 + 9 + 128 + 25 + 4 + 22 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp2] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +-81 1304 m 1,0,1 + -121 1323 -121 1323 -150 1323 c 0,2,3 + -249 1323 -249 1323 -268 1201 c 1,4,-1 + -359 1201 l 1,5,6 + -348 1303 -348 1303 -324 1355.5 c 128,-1,7 + -300 1408 -300 1408 -259.5 1438.5 c 128,-1,8 + -219 1469 -219 1469 -156 1469 c 0,9,10 + -94 1469 -94 1469 -15 1421 c 1,11,-1 + 46 1529 l 1,12,-1 + 143 1475 l 1,13,-1 + 82 1367 l 1,14,15 + 124 1347 124 1347 149 1347 c 0,16,17 + 249 1347 249 1347 266 1469 c 1,18,-1 + 358 1469 l 1,19,20 + 341 1321 341 1321 291 1261 c 128,-1,21 + 241 1201 241 1201 156 1201 c 0,22,23 + 97 1201 97 1201 16 1250 c 1,24,-1 + -45 1141 l 1,25,-1 + -142 1196 l 1,26,-1 + -81 1304 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni034B +Encoding: 843 843 781 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 21 + 18 + 5 + 13 + 8 + 0 + 29 + 30 + 13 + 26 + 0 + 13 + 0 + 13 + 0 + 25 + 30 + 25 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1840 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1130 mark 0 +LayerCount: 2 +Fore +SplineSet +165 1335 m 0,0,1 + 122 1335 122 1335 81.5 1351 c 128,-1,2 + 41 1367 41 1367 3 1386.5 c 128,-1,3 + -35 1406 -35 1406 -69.5 1422.5 c 128,-1,4 + -104 1439 -104 1439 -135 1439 c 0,5,6 + -190 1439 -190 1439 -215 1412.5 c 128,-1,7 + -240 1386 -240 1386 -249 1335 c 1,8,-1 + -353 1335 l 1,9,10 + -342 1424 -342 1424 -318 1470.5 c 128,-1,11 + -294 1517 -294 1517 -253 1544 c 128,-1,12 + -212 1571 -212 1571 -149 1571 c 0,13,14 + -105 1571 -105 1571 -64 1554.5 c 128,-1,15 + -23 1538 -23 1538 14.5 1518.5 c 128,-1,16 + 52 1499 52 1499 86 1482.5 c 128,-1,17 + 120 1466 120 1466 150 1466 c 0,18,19 + 204 1466 204 1466 229 1493.5 c 128,-1,20 + 254 1521 254 1521 262 1571 c 1,21,-1 + 368 1571 l 1,22,23 + 351 1442 351 1442 300.5 1388.5 c 128,-1,24 + 250 1335 250 1335 165 1335 c 0,0,1 +-90 1122 m 1,25,-1 + -90 1294 l 1,26,-1 + 90 1294 l 1,27,-1 + 90 1122 l 1,28,-1 + -90 1122 l 1,25,-1 +-90 1622 m 1,29,-1 + -90 1794 l 1,30,-1 + 90 1794 l 1,31,-1 + 90 1622 l 1,32,-1 + -90 1622 l 1,29,-1 +EndSplineSet +EndChar + +StartChar: uni034C +Encoding: 844 844 782 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 43 + 30 + 46 + 38 + 33 + 25 + 25 + 18 + 5 + 21 + 13 + 8 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +MDRP[min,rnd,black] +SHP[rp2] +IP +IP +SHP[rp2] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +SHP[rp2] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1840 basemark 0 +AnchorPoint: "Anchor-27" 0 1180 mark 0 +AnchorPoint: "Anchor-16" 0 1220 mark 0 +LayerCount: 2 +Fore +SplineSet +165 1217 m 0,0,1 + 122 1217 122 1217 81.5 1233 c 128,-1,2 + 41 1249 41 1249 3 1268.5 c 128,-1,3 + -35 1288 -35 1288 -69.5 1304.5 c 128,-1,4 + -104 1321 -104 1321 -135 1321 c 0,5,6 + -190 1321 -190 1321 -215 1294.5 c 128,-1,7 + -240 1268 -240 1268 -249 1217 c 1,8,-1 + -353 1217 l 1,9,10 + -342 1306 -342 1306 -318 1352.5 c 128,-1,11 + -294 1399 -294 1399 -253 1426 c 128,-1,12 + -212 1453 -212 1453 -149 1453 c 0,13,14 + -105 1453 -105 1453 -64 1436.5 c 128,-1,15 + -23 1420 -23 1420 14.5 1400.5 c 128,-1,16 + 52 1381 52 1381 86 1364.5 c 128,-1,17 + 120 1348 120 1348 150 1348 c 0,18,19 + 204 1348 204 1348 229 1375.5 c 128,-1,20 + 254 1403 254 1403 262 1453 c 1,21,-1 + 368 1453 l 1,22,23 + 351 1324 351 1324 300.5 1270.5 c 128,-1,24 + 250 1217 250 1217 165 1217 c 0,0,1 +165 1481 m 0,25,26 + 122 1481 122 1481 81.5 1497 c 128,-1,27 + 41 1513 41 1513 3 1532.5 c 128,-1,28 + -35 1552 -35 1552 -69.5 1568.5 c 128,-1,29 + -104 1585 -104 1585 -135 1585 c 0,30,31 + -190 1585 -190 1585 -215 1558.5 c 128,-1,32 + -240 1532 -240 1532 -249 1481 c 1,33,-1 + -353 1481 l 1,34,35 + -342 1570 -342 1570 -318 1616.5 c 128,-1,36 + -294 1663 -294 1663 -253 1690 c 128,-1,37 + -212 1717 -212 1717 -149 1717 c 0,38,39 + -105 1717 -105 1717 -64 1700.5 c 128,-1,40 + -23 1684 -23 1684 14.5 1664.5 c 128,-1,41 + 52 1645 52 1645 86 1628.5 c 128,-1,42 + 120 1612 120 1612 150 1612 c 0,43,44 + 204 1612 204 1612 229 1639.5 c 128,-1,45 + 254 1667 254 1667 262 1717 c 1,46,-1 + 368 1717 l 1,47,48 + 351 1588 351 1588 300.5 1534.5 c 128,-1,49 + 250 1481 250 1481 165 1481 c 0,25,26 +EndSplineSet +EndChar + +StartChar: uni034D +Encoding: 845 845 783 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 7 + 3 + 4 + 6 + 4 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -100 mark 0 +AnchorPoint: "Anchor-14" 0 -100 mark 0 +LayerCount: 2 +Fore +SplineSet +273 -246 m 1,0,-1 + 123 -425 l 1,1,-1 + 123 -297 l 1,2,-1 + -123 -297 l 1,3,-1 + -123 -425 l 1,4,-1 + -273 -246 l 1,5,-1 + -123 -71 l 1,6,-1 + -123 -189 l 1,7,-1 + 123 -189 l 1,8,-1 + 123 -71 l 1,9,-1 + 273 -246 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni034E +Encoding: 846 846 784 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 5 + 2 + 2 + 15 + 0 + 1 + 0 + 128 + 3 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +DELTAP2 +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -60 mark 0 +AnchorPoint: "Anchor-14" 0 -60 mark 0 +LayerCount: 2 +Fore +SplineSet +-59 -425 m 1,0,-1 + -59 -187 l 1,1,-1 + -177 -187 l 1,2,-1 + 0 -44 l 1,3,-1 + 177 -187 l 1,4,-1 + 53 -187 l 1,5,-1 + 53 -425 l 1,6,-1 + -59 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni034F +Encoding: 847 847 785 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 90 + 160 + 78 + 166 + 166 + 163 + 7 + 3 + 71 + 71 + 48 + 52 + 24 + 56 + 56 + 28 + 60 + 1 + 73 + 16 + 84 + 84 + 20 + 88 + 32 + 108 + 108 + 36 + 112 + 12 + 156 + 40 + 116 + 116 + 44 + 120 + 64 + 132 + 132 + 68 + 136 + 11 + 155 + 92 + 148 + 148 + 96 + 152 + 100 + 140 + 140 + 104 + 144 + 80 + 164 + 124 + 128 + 52 + 60 + 73 + 88 + 112 + 156 + 120 + 136 + 155 + 152 + 144 + 164 + 128 + 128 + 164 + 144 + 152 + 155 + 136 + 120 + 156 + 112 + 88 + 73 + 60 + 52 + 13 + 8 + 4 + 74 + 159 + 77 + 163 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MDRP[rnd,white] +SHP[rp2] +SHP[rp2] +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +746 1155 m 1,0,-1 + 637 1155 l 1,1,-1 + 637 1375 l 1,2,-1 + 413 1375 l 1,3,-1 + 413 1484 l 1,4,-1 + 746 1484 l 1,5,-1 + 746 1155 l 1,0,-1 +167 1375 m 1,6,-1 + -167 1375 l 1,7,-1 + -167 1484 l 1,8,-1 + 167 1484 l 1,9,-1 + 167 1375 l 1,6,-1 +746 575 m 1,10,-1 + 637 575 l 1,11,-1 + 637 909 l 1,12,-1 + 746 909 l 1,13,-1 + 746 575 l 1,10,-1 +379 1056 m 0,14,15 + 379 1002 379 1002 327 1002 c 0,16,17 + 271 1002 271 1002 271 1056 c 0,18,19 + 271 1111 271 1111 327 1111 c 0,20,21 + 379 1111 379 1111 379 1056 c 0,14,15 +230 1155 m 0,22,23 + 230 1101 230 1101 178 1101 c 0,24,25 + 121 1101 121 1101 121 1155 c 0,26,27 + 121 1210 121 1210 178 1210 c 0,28,29 + 230 1210 230 1210 230 1155 c 0,22,23 +479 907 m 0,30,31 + 479 851 479 851 424 851 c 0,32,33 + 370 851 370 851 370 907 c 0,34,35 + 370 960 370 960 426 960 c 0,36,37 + 479 960 479 960 479 907 c 0,30,31 +515 731 m 0,38,39 + 515 677 515 677 463 677 c 0,40,41 + 407 677 407 677 407 731 c 0,42,43 + 407 786 407 786 463 786 c 0,44,45 + 515 786 515 786 515 731 c 0,38,39 +55 1192 m 0,46,47 + 55 1136 55 1136 1 1136 c 0,48,49 + -54 1136 -54 1136 -54 1192 c 0,50,51 + -54 1245 -54 1245 1 1245 c 0,52,53 + 55 1245 55 1245 55 1192 c 0,46,47 +-119 1155 m 0,54,55 + -119 1101 -119 1101 -175 1101 c 0,56,57 + -228 1101 -228 1101 -228 1155 c 0,58,59 + -228 1210 -228 1210 -175 1210 c 0,60,61 + -119 1210 -119 1210 -119 1155 c 0,54,55 +479 556 m 0,62,63 + 479 503 479 503 424 503 c 0,64,65 + 370 503 370 503 370 556 c 0,66,67 + 370 612 370 612 424 612 c 0,68,69 + 479 612 479 612 479 556 c 0,62,63 +-413 1375 m 1,70,-1 + -637 1375 l 1,71,-1 + -637 1155 l 1,72,-1 + -746 1155 l 1,73,-1 + -746 1484 l 1,74,-1 + -413 1484 l 1,75,-1 + -413 1375 l 1,70,-1 +746 0 m 1,76,-1 + 413 0 l 1,77,-1 + 413 109 l 1,78,-1 + 637 109 l 1,79,-1 + 637 329 l 1,80,-1 + 746 329 l 1,81,-1 + 746 0 l 1,76,-1 +-269 1056 m 0,82,83 + -269 1002 -269 1002 -323 1002 c 256,84,85 + -377 1002 -377 1002 -377 1053 c 0,86,87 + -377 1111 -377 1111 -323 1111 c 256,88,89 + -269 1111 -269 1111 -269 1056 c 0,82,83 +381 405 m 0,90,91 + 381 352 381 352 327 352 c 256,92,93 + 273 352 273 352 273 405 c 0,94,95 + 273 460 273 460 327 460 c 256,96,97 + 381 460 381 460 381 405 c 0,90,91 +231 306 m 0,98,99 + 231 254 231 254 178 254 c 0,100,101 + 122 254 122 254 122 306 c 0,102,103 + 122 363 122 363 178 363 c 0,104,105 + 231 363 231 363 231 306 c 0,98,99 +-368 907 m 0,106,107 + -368 851 -368 851 -421 851 c 0,108,109 + -477 851 -477 851 -477 907 c 0,110,111 + -477 960 -477 960 -423 960 c 0,112,113 + -368 960 -368 960 -368 907 c 0,106,107 +-403 731 m 0,114,115 + -403 677 -403 677 -457 677 c 256,116,117 + -511 677 -511 677 -511 731 c 0,118,119 + -511 786 -511 786 -457 786 c 256,120,121 + -403 786 -403 786 -403 731 c 0,114,115 +55 273 m 0,122,123 + 55 218 55 218 1 218 c 0,124,125 + -54 218 -54 218 -54 273 c 0,126,127 + -54 326 -54 326 1 326 c 0,128,129 + 55 326 55 326 55 273 c 0,122,123 +-368 556 m 0,130,131 + -368 503 -368 503 -423 503 c 0,132,133 + -477 503 -477 503 -477 556 c 0,134,135 + -477 612 -477 612 -423 612 c 0,136,137 + -368 612 -368 612 -368 556 c 0,130,131 +-119 310 m 0,138,139 + -119 254 -119 254 -175 254 c 0,140,141 + -228 254 -228 254 -228 306 c 0,142,143 + -228 363 -228 363 -175 363 c 0,144,145 + -119 363 -119 363 -119 310 c 0,138,139 +-269 405 m 0,146,147 + -269 352 -269 352 -323 352 c 256,148,149 + -377 352 -377 352 -377 405 c 0,150,151 + -377 460 -377 460 -323 460 c 256,152,153 + -269 460 -269 460 -269 405 c 0,146,147 +-637 575 m 1,154,-1 + -746 575 l 1,155,-1 + -746 909 l 1,156,-1 + -637 909 l 1,157,-1 + -637 575 l 1,154,-1 +167 0 m 1,158,-1 + -167 0 l 1,159,-1 + -167 109 l 1,160,-1 + 167 109 l 1,161,-1 + 167 0 l 1,158,-1 +-413 0 m 1,162,-1 + -746 0 l 1,163,-1 + -746 329 l 1,164,-1 + -637 329 l 1,165,-1 + -637 109 l 1,166,-1 + -413 109 l 1,167,-1 + -413 0 l 1,162,-1 +EndSplineSet +EndChar + +StartChar: uni0350 +Encoding: 848 848 786 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 4 + 6 + 128 + 2 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1150 mark 0 +LayerCount: 2 +Fore +SplineSet +141 1400 m 1,0,-1 + 141 1318 l 1,1,-1 + -140 1149 l 1,2,-1 + -140 1263 l 1,3,-1 + 30 1359 l 1,4,-1 + -140 1455 l 1,5,-1 + -140 1569 l 1,6,-1 + 141 1400 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0351 +Encoding: 849 849 787 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 7 + 6 + 128 + 13 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,white] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1150 mark 0 +LayerCount: 2 +Fore +SplineSet +92 1144 m 1,0,1 + 7 1144 7 1144 -43 1196 c 128,-1,2 + -93 1248 -93 1248 -93 1334 c 0,3,4 + -93 1421 -93 1421 -43 1472 c 128,-1,5 + 7 1523 7 1523 92 1523 c 1,6,-1 + 92 1438 l 1,7,8 + 50 1438 50 1438 22.5 1410.5 c 128,-1,9 + -5 1383 -5 1383 -5 1334 c 256,10,11 + -5 1285 -5 1285 22.5 1257 c 128,-1,12 + 50 1229 50 1229 92 1229 c 1,13,-1 + 92 1144 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0352 +Encoding: 850 850 788 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 4 + 11 + 15 + 11 + 15 + 11 + 7 + 0 + 14 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +SHP[rp2] +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1780 basemark 0 +AnchorPoint: "Anchor-27" 0 1220 mark 0 +AnchorPoint: "Anchor-16" 0 1230 mark 0 +LayerCount: 2 +Fore +SplineSet +0 1670 m 256,0,1 + 119 1670 119 1670 196.5 1601.5 c 128,-1,2 + 274 1533 274 1533 292 1410 c 1,3,-1 + 187 1410 l 1,4,5 + 172 1472 172 1472 123 1507 c 128,-1,6 + 74 1542 74 1542 0 1542 c 0,7,8 + -76 1542 -76 1542 -125.5 1505.5 c 128,-1,9 + -175 1469 -175 1469 -187 1410 c 1,10,-1 + -292 1410 l 1,11,12 + -277 1529 -277 1529 -198 1599.5 c 128,-1,13 + -119 1670 -119 1670 0 1670 c 256,0,1 +-89 1237 m 1,14,-1 + -89 1409 l 1,15,-1 + 91 1409 l 1,16,-1 + 91 1237 l 1,17,-1 + -89 1237 l 1,14,-1 +EndSplineSet +EndChar + +StartChar: uni0353 +Encoding: 851 851 789 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 8 + 11 + 5 + 2 + 4 + 3 + 1 + 128 + 9 + 7 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 0 mark 0 +AnchorPoint: "Anchor-14" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +218 -361 m 1,0,-1 + 131 -446 l 1,1,-1 + -1 -312 l 1,2,-1 + -132 -445 l 1,3,-1 + -218 -362 l 1,4,-1 + -87 -229 l 1,5,-1 + -219 -96 l 1,6,-1 + -132 -11 l 1,7,-1 + 0 -144 l 1,8,-1 + 132 -12 l 1,9,-1 + 218 -95 l 1,10,-1 + 86 -227 l 1,11,-1 + 218 -361 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0354 +Encoding: 852 852 790 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 3 + 4 + 128 + 1 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,white] +SHP[rp2] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 0 mark 0 +AnchorPoint: "Anchor-14" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +141 -6 m 1,0,-1 + 141 -120 l 1,1,-1 + -29 -216 l 1,2,-1 + 141 -312 l 1,3,-1 + 141 -426 l 1,4,-1 + -140 -257 l 1,5,-1 + -140 -175 l 1,6,-1 + 141 -6 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0355 +Encoding: 853 853 791 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 4 + 3 + 2 + 128 + 5 + 6 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,white] +SHP[rp2] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 0 mark 0 +AnchorPoint: "Anchor-14" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +141 -175 m 1,0,-1 + 141 -257 l 1,1,-1 + -140 -426 l 1,2,-1 + -140 -312 l 1,3,-1 + 30 -216 l 1,4,-1 + -140 -120 l 1,5,-1 + -140 -6 l 1,6,-1 + 141 -175 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0356 +Encoding: 854 854 792 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 9 + 8 + 11 + 12 + 4 + 3 + 2 + 128 + 5 + 6 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,white] +SHP[rp2] +IP +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp2] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 30 0 mark 0 +AnchorPoint: "Anchor-14" 30 0 mark 0 +LayerCount: 2 +Fore +SplineSet +1 -175 m 1,0,-1 + 1 -257 l 1,1,-1 + -280 -426 l 1,2,-1 + -280 -312 l 1,3,-1 + -110 -216 l 1,4,-1 + -280 -120 l 1,5,-1 + -280 -6 l 1,6,-1 + 1 -175 l 1,0,-1 +429 -353 m 1,7,-1 + 315 -353 l 1,8,-1 + 219 -183 l 1,9,-1 + 123 -353 l 1,10,-1 + 9 -353 l 1,11,-1 + 178 -72 l 1,12,-1 + 260 -72 l 1,13,-1 + 429 -353 l 1,7,-1 +EndSplineSet +EndChar + +StartChar: uni0357 +Encoding: 855 855 793 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 6 + 7 + 128 + 0 + 13 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,white] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1150 mark 0 +LayerCount: 2 +Fore +SplineSet +-92 1229 m 1,0,1 + -50 1229 -50 1229 -22.5 1257 c 128,-1,2 + 5 1285 5 1285 5 1334 c 256,3,4 + 5 1383 5 1383 -22.5 1410.5 c 128,-1,5 + -50 1438 -50 1438 -92 1438 c 1,6,-1 + -92 1523 l 1,7,8 + -8 1523 -8 1523 42.5 1472 c 128,-1,9 + 93 1421 93 1421 93 1334 c 256,10,11 + 93 1247 93 1247 42.5 1195.5 c 128,-1,12 + -8 1144 -8 1144 -92 1144 c 1,13,-1 + -92 1229 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0358 +Encoding: 856 856 794 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 3 + 9 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +245 1286 m 256,0,1 + 245 1325 245 1325 273 1353 c 128,-1,2 + 301 1381 301 1381 340 1381 c 256,3,4 + 379 1381 379 1381 407 1352.5 c 128,-1,5 + 435 1324 435 1324 435 1286 c 0,6,7 + 435 1247 435 1247 406.5 1219 c 128,-1,8 + 378 1191 378 1191 340 1191 c 0,9,10 + 301 1191 301 1191 273 1219 c 128,-1,11 + 245 1247 245 1247 245 1286 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni0359 +Encoding: 857 857 795 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 2 + 1 + 1 + 10 + 11 + 3 + 9 + 6 + 6 + 0 + 12 + 11 + 12 + 7 + 191 + 5 + 1 + 5 + 14 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 0 mark 0 +AnchorPoint: "Anchor-14" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +32 -202 m 1,0,-1 + 165 -151 l 1,1,-1 + 190 -226 l 1,2,-1 + 48 -263 l 1,3,-1 + 141 -385 l 1,4,-1 + 74 -426 l 1,5,-1 + -1 -299 l 1,6,-1 + -79 -425 l 1,7,-1 + -145 -384 l 1,8,-1 + -51 -263 l 1,9,-1 + -191 -226 l 1,10,-1 + -166 -150 l 1,11,-1 + -32 -203 l 1,12,-1 + -41 -61 l 1,13,-1 + 42 -61 l 1,14,-1 + 32 -202 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni035A +Encoding: 858 858 796 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 15 + 5 + 3 + 35 + 17 + 17 + 29 + 13 + 41 + 3 + 3 + 23 + 7 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp1] +MDAP[rnd] +MDRP[min,rnd,black] +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp1] +MDAP[rnd] +MDRP[min,rnd,black] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -60 mark 0 +AnchorPoint: "Anchor-14" 0 -60 mark 0 +LayerCount: 2 +Fore +SplineSet +325 -246 m 256,0,1 + 325 -324 325 -324 272.5 -374.5 c 128,-1,2 + 220 -425 220 -425 142 -425 c 0,3,4 + 53 -425 53 -425 2 -352 c 1,5,6 + -49 -425 -49 -425 -138 -425 c 0,7,8 + -217 -425 -217 -425 -269 -374.5 c 128,-1,9 + -321 -324 -321 -324 -321 -246 c 256,10,11 + -321 -168 -321 -168 -268.5 -117.5 c 128,-1,12 + -216 -67 -216 -67 -138 -67 c 0,13,14 + -48 -67 -48 -67 2 -139 c 1,15,16 + 52 -67 52 -67 142 -67 c 0,17,18 + 221 -67 221 -67 273 -117.5 c 128,-1,19 + 325 -168 325 -168 325 -246 c 256,0,1 +-243 -246 m 256,20,21 + -243 -297 -243 -297 -212.5 -324 c 128,-1,22 + -182 -351 -182 -351 -138 -351 c 256,23,24 + -94 -351 -94 -351 -64.5 -320.5 c 128,-1,25 + -35 -290 -35 -290 -35 -246 c 256,26,27 + -35 -202 -35 -202 -64.5 -171.5 c 128,-1,28 + -94 -141 -94 -141 -138 -141 c 256,29,30 + -182 -141 -182 -141 -212.5 -168 c 128,-1,31 + -243 -195 -243 -195 -243 -246 c 256,20,21 +247 -246 m 256,32,33 + 247 -195 247 -195 216.5 -168 c 128,-1,34 + 186 -141 186 -141 142 -141 c 256,35,36 + 98 -141 98 -141 68.5 -171.5 c 128,-1,37 + 39 -202 39 -202 39 -246 c 256,38,39 + 39 -290 39 -290 68.5 -320.5 c 128,-1,40 + 98 -351 98 -351 142 -351 c 256,41,42 + 186 -351 186 -351 216.5 -324 c 128,-1,43 + 247 -297 247 -297 247 -246 c 256,32,33 +EndSplineSet +EndChar + +StartChar: uni035B +Encoding: 859 859 797 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 3 + 6 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,white] +MDRP[rp0,min,rnd,black] +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1150 mark 0 +LayerCount: 2 +Fore +SplineSet +200 1409 m 1,0,-1 + 105 1127 l 1,1,-1 + -8 1127 l 1,2,-1 + 56 1306 l 1,3,-1 + -200 1306 l 1,4,-1 + -105 1588 l 1,5,-1 + 8 1588 l 1,6,-1 + -56 1409 l 1,7,-1 + 200 1409 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni035C +Encoding: 860 860 798 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 11 + 5 + 5 + 8 + 2 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-20" 600 0 mark 0 +LayerCount: 2 +Fore +SplineSet +1414 -54 m 1,0,1 + 1181 -425 1181 -425 621 -425 c 0,2,3 + 60 -425 60 -425 -173 -54 c 1,4,-1 + -40 -54 l 1,5,6 + 54 -184 54 -184 219 -243 c 128,-1,7 + 384 -302 384 -302 620 -302 c 256,8,9 + 856 -302 856 -302 1021.5 -243 c 128,-1,10 + 1187 -184 1187 -184 1281 -54 c 1,11,-1 + 1414 -54 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni035D +Encoding: 861 861 799 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 4 + 0 + 128 + 8 + 2 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-21" 600 1180 mark 0 +LayerCount: 2 +Fore +SplineSet +1414 1586 m 1,0,1 + 1181 1215 1181 1215 621 1215 c 0,2,3 + 60 1215 60 1215 -173 1586 c 1,4,-1 + -40 1586 l 1,5,6 + 54 1456 54 1456 219 1397 c 128,-1,7 + 384 1338 384 1338 620 1338 c 256,8,9 + 856 1338 856 1338 1021.5 1397 c 128,-1,10 + 1187 1456 1187 1456 1281 1586 c 1,11,-1 + 1414 1586 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni035E +Encoding: 862 862 800 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-21" 370 1280 mark 0 +LayerCount: 2 +Fore +SplineSet +1325 1309 m 1,0,-1 + -603 1309 l 1,1,-1 + -603 1436 l 1,2,-1 + 1325 1436 l 1,3,-1 + 1325 1309 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni035F +Encoding: 863 863 801 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-20" 370 -100 mark 0 +LayerCount: 2 +Fore +SplineSet +1225 -298 m 1,0,-1 + -563 -298 l 1,1,-1 + -563 -171 l 1,2,-1 + 1225 -171 l 1,3,-1 + 1225 -298 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0360 +Encoding: 864 864 802 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 7 + 19 + 21 + 14 + 128 + 10 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-21" 600 1180 mark 0 +LayerCount: 2 +Fore +SplineSet +1413 1535 m 1,0,1 + 1368 1375 1368 1375 1278 1299.5 c 128,-1,2 + 1188 1224 1188 1224 1054 1224 c 0,3,4 + 901 1224 901 1224 622 1310 c 0,5,6 + 342 1395 342 1395 200 1395 c 0,7,8 + 106 1395 106 1395 48 1353 c 128,-1,9 + -10 1311 -10 1311 -40 1219 c 1,10,-1 + -173 1219 l 1,11,12 + -128 1367 -128 1367 -31 1448.5 c 128,-1,13 + 66 1530 66 1530 189 1530 c 0,14,15 + 278 1530 278 1530 380.5 1510 c 128,-1,16 + 483 1490 483 1490 628 1445 c 0,17,18 + 899 1359 899 1359 1069 1359 c 0,19,20 + 1223 1359 1223 1359 1280 1535 c 1,21,-1 + 1413 1535 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0361 +Encoding: 865 865 803 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 4 + 10 + 128 + 8 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-21" 600 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +1414 1219 m 1,0,-1 + 1281 1219 l 1,1,2 + 1187 1349 1187 1349 1021.5 1408 c 128,-1,3 + 856 1467 856 1467 620 1467 c 256,4,5 + 384 1467 384 1467 219 1408 c 128,-1,6 + 54 1349 54 1349 -40 1219 c 1,7,-1 + -173 1219 l 1,8,9 + 61 1590 61 1590 621 1590 c 0,10,11 + 1180 1590 1180 1590 1414 1219 c 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0362 +Encoding: 866 866 804 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 5 + 2 + 1 + 6 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-20" 350 -120 mark 0 +LayerCount: 2 +Fore +SplineSet +975 -246 m 1,0,-1 + 825 -425 l 1,1,-1 + 825 -297 l 1,2,-1 + -173 -297 l 1,3,-1 + -173 -189 l 1,4,-1 + 825 -189 l 1,5,-1 + 825 -71 l 1,6,-1 + 975 -246 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0363 +Encoding: 867 867 805 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +Refer: 1379 7491 N 1 0 0 1 -384 0 2 +EndChar + +StartChar: uni0364 +Encoding: 868 868 806 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +Refer: 1385 7497 N 1 0 0 1 -385 0 2 +EndChar + +StartChar: uni0365 +Encoding: 869 869 807 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 7 + 3 + 1 + 6 + 235 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +SplineSet +-60 1415 m 1,0,-1 + -60 1536 l 1,1,-1 + 61 1536 l 1,2,-1 + 61 1415 l 1,3,-1 + -60 1415 l 1,0,-1 +-60 490 m 1,4,-1 + -60 1253 l 1,5,-1 + 61 1253 l 1,6,-1 + 61 490 l 1,7,-1 + -60 490 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni0366 +Encoding: 870 870 808 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +Refer: 1394 7506 N 1 0 0 1 -386 0 2 +EndChar + +StartChar: uni0367 +Encoding: 871 871 809 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +Refer: 1400 7512 N 1 0 0 1 -385 0 2 +EndChar + +StartChar: uni0368 +Encoding: 872 872 810 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 15 + 21 + 228 + 89 + 19 + 15 + 236 + 5 + 9 + 9 + 2 + 228 + 89 + 9 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +SplineSet +-179 876 m 0,0,1 + -179 577 -179 577 7 577 c 0,2,3 + 73 577 73 577 116 613.5 c 128,-1,4 + 159 650 159 650 170 726 c 1,5,-1 + 294 718 l 1,6,7 + 280 609 280 609 204.5 542.5 c 128,-1,8 + 129 476 129 476 10 476 c 0,9,10 + -142 476 -142 476 -224.5 576.5 c 128,-1,11 + -307 677 -307 677 -307 873 c 0,12,13 + -307 1063 -307 1063 -226.5 1165.5 c 128,-1,14 + -146 1268 -146 1268 9 1268 c 0,15,16 + 123 1268 123 1268 196.5 1208 c 128,-1,17 + 270 1148 270 1148 290 1040 c 1,18,-1 + 164 1030 l 1,19,20 + 142 1168 142 1168 5 1168 c 0,21,22 + -93 1168 -93 1168 -136 1100 c 128,-1,23 + -179 1032 -179 1032 -179 876 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0369 +Encoding: 873 873 811 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +Refer: 1384 7496 N 1 0 0 1 -371 0 2 +EndChar + +StartChar: uni036A +Encoding: 874 874 812 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 8 + 16 + 19 + 3 + 64 + 3 + 12 + 228 + 89 + 3 + 236 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,white] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +SplineSet +-178 1122 m 1,0,1 + -137 1199 -137 1199 -81.5 1233 c 128,-1,2 + -26 1267 -26 1267 58 1267 c 0,3,4 + 176 1267 176 1267 233.5 1205.5 c 128,-1,5 + 291 1144 291 1144 291 998 c 2,6,-1 + 291 490 l 1,7,-1 + 168 490 l 1,8,-1 + 168 974 l 2,9,10 + 168 1087 168 1087 133 1128 c 128,-1,11 + 98 1169 98 1169 16 1169 c 0,12,13 + -72 1169 -72 1169 -123 1106.5 c 128,-1,14 + -174 1044 -174 1044 -174 940 c 2,15,-1 + -174 490 l 1,16,-1 + -297 490 l 1,17,-1 + -297 1536 l 1,18,-1 + -174 1536 l 1,19,-1 + -174 1264 l 2,20,21 + -174 1152 -174 1152 -180 1122 c 1,22,-1 + -178 1122 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni036B +Encoding: 875 875 813 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +Refer: 1392 7504 N 1 0 0 1 -580 0 2 +EndChar + +StartChar: uni036C +Encoding: 876 876 814 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 18 + 9 + 14 + 229 + 89 + 9 + 236 + 3 + 235 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +SplineSet +-153 490 m 1,0,-1 + -153 1076 l 2,1,2 + -153 1189 -153 1189 -157 1253 c 1,3,-1 + -41 1253 l 1,4,-1 + -36 1098 l 1,5,-1 + -33 1098 l 1,6,7 + -3 1196 -3 1196 34 1231.5 c 128,-1,8 + 71 1267 71 1267 141 1267 c 0,9,10 + 163 1267 163 1267 191 1260 c 1,11,-1 + 191 1144 l 1,12,13 + 163 1151 163 1151 126 1151 c 0,14,15 + 48 1151 48 1151 8.5 1082 c 128,-1,16 + -31 1013 -31 1013 -31 888 c 2,17,-1 + -31 490 l 1,18,-1 + -153 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni036D +Encoding: 877 877 815 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +Refer: 1399 7511 N 1 0 0 1 -201 0 2 +EndChar + +StartChar: uni036E +Encoding: 878 878 816 +Width: 0 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +Refer: 1403 7515 N 1 0 0 1 -329 0 2 +EndChar + +StartChar: uni036F +Encoding: 879 879 817 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 1 + 4 + 10 + 7 + 4 + 2 + 8 + 5 + 235 + 0 + 2 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 480 mark 0 +AnchorPoint: "Anchor-16" 0 480 mark 0 +LayerCount: 2 +Fore +SplineSet +199 490 m 1,0,-1 + 1 804 l 1,1,-1 + -198 490 l 1,2,-1 + -330 490 l 1,3,-1 + -69 883 l 1,4,-1 + -318 1253 l 1,5,-1 + -183 1253 l 1,6,-1 + 1 957 l 1,7,-1 + 183 1253 l 1,8,-1 + 320 1253 l 1,9,-1 + 70 884 l 1,10,-1 + 335 490 l 1,11,-1 + 199 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0374 +Encoding: 884 884 818 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 3 + 0 + 7 + 6 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +249 1195 m 1,0,-1 + 249 1215 l 1,1,-1 + 359 1484 l 1,2,-1 + 566 1484 l 1,3,-1 + 566 1455 l 1,4,-1 + 343 1195 l 1,5,-1 + 249 1195 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0375 +Encoding: 885 885 819 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 3 + 0 + 6 + 7 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +434 -136 m 1,0,-1 + 434 -156 l 1,1,-1 + 324 -425 l 1,2,-1 + 117 -425 l 1,3,-1 + 117 -396 l 1,4,-1 + 340 -136 l 1,5,-1 + 434 -136 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni037A +Encoding: 890 890 820 +Width: 682 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 775 837 N 1 0 0 1 310 0 2 +EndChar + +StartChar: uni037B +Encoding: 891 891 821 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 65 + 6 + 7 + 7 + 19 + 0 + 13 + 19 + 13 + 26 + 27 + 16 + 23 + 80 + 89 + 32 + 20 + 112 + 20 + 128 + 20 + 208 + 20 + 224 + 20 + 5 + 0 + 20 + 16 + 20 + 96 + 20 + 112 + 20 + 128 + 20 + 192 + 20 + 208 + 20 + 7 + 9 + 20 + 20 + 16 + 22 + 15 + 6 + 111 + 6 + 127 + 6 + 207 + 6 + 4 + 10 + 3 + 6 + 6 + 10 + 10 + 3 + 80 + 89 + 10 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SDB +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +757 546 m 0,0,1 + 757 772 757 772 692.5 866.5 c 128,-1,2 + 628 961 628 961 486 961 c 0,3,4 + 381 961 381 961 324 908 c 128,-1,5 + 267 855 267 855 253 765 c 1,6,-1 + 68 779 l 1,7,8 + 97 930 97 930 205.5 1016 c 128,-1,9 + 314 1102 314 1102 481 1102 c 0,10,11 + 705 1102 705 1102 825 958.5 c 128,-1,12 + 945 815 945 815 945 542 c 0,13,14 + 945 267 945 267 825.5 123.5 c 128,-1,15 + 706 -20 706 -20 479 -20 c 0,16,17 + 308 -20 308 -20 195.5 73 c 128,-1,18 + 83 166 83 166 62 322 c 1,19,-1 + 244 334 l 1,20,21 + 259 226 259 226 323.5 174 c 128,-1,22 + 388 122 388 122 484 122 c 0,23,24 + 622 122 622 122 689.5 226.5 c 128,-1,25 + 757 331 757 331 757 546 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni037C +Encoding: 892 892 822 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 1 + 52 + 27 + 84 + 27 + 100 + 27 + 132 + 27 + 164 + 27 + 180 + 27 + 212 + 27 + 7 + 0 + 27 + 1 + 2 + 27 + 1 + 27 + 0 + 27 + 28 + 0 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +MDAP[rnd] +SDS +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 70 99 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 327 -769 2 +EndChar + +StartChar: uni037D +Encoding: 893 893 823 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 1 + 52 + 27 + 84 + 27 + 100 + 27 + 132 + 27 + 164 + 27 + 180 + 27 + 212 + 27 + 7 + 0 + 27 + 1 + 2 + 27 + 1 + 27 + 0 + 27 + 28 + 20 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +MDAP[rnd] +SDS +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 821 891 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 207 -769 2 +EndChar + +StartChar: uni037E +Encoding: 894 894 824 +Width: 569 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 30 59 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tonos +Encoding: 900 900 825 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 0 + 3 + 6 + 7 + 2 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +205 1218 m 1,0,-1 + 205 1251 l 1,1,-1 + 274 1543 l 1,2,-1 + 481 1543 l 1,3,-1 + 481 1506 l 1,4,-1 + 280 1218 l 1,5,-1 + 205 1218 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: dieresistonos +Encoding: 901 901 826 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 9 + 6 + 4 + 1 + 10 + 13 + 13 + 1 + 6 + 3 + 14 + 15 + 11 + 7 + 6 + 7 + 144 + 89 + 2 + 0 + 0 + 10 + 192 + 6 + 1 + 15 + 6 + 63 + 6 + 2 + 6 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHP[rp1] +SHP[rp1] +MDAP[rnd] +MDRP[min,rnd,black] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +250 1200 m 1,0,-1 + 250 1233 l 1,1,-1 + 319 1601 l 1,2,-1 + 506 1601 l 1,3,-1 + 506 1564 l 1,4,-1 + 325 1200 l 1,5,-1 + 250 1200 l 1,0,-1 +29 1231 m 1,6,-1 + 29 1403 l 1,7,-1 + 179 1403 l 1,8,-1 + 179 1231 l 1,9,-1 + 29 1231 l 1,6,-1 +501 1231 m 1,10,-1 + 501 1403 l 1,11,-1 + 651 1403 l 1,12,-1 + 651 1231 l 1,13,-1 + 501 1231 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: Alphatonos +Encoding: 902 902 827 +Width: 1367 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 20 +PUSHW_1 + -246 +NPUSHB + 27 + 20 + 20 + 5 + 5 + 37 + 47 + 24 + 1 + 80 + 24 + 176 + 24 + 2 + 48 + 24 + 96 + 24 + 144 + 24 + 192 + 24 + 240 + 24 + 5 + 2 + 19 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP2 +DELTAP1 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 2 +Refer: 825 900 N 1 0 0 1 -148 -132 2 +Kerns2: 889 -37 "'kern' Horizontal Kerning lookup 17 subtable" 879 -37 "'kern' Horizontal Kerning lookup 17 subtable" 869 -37 "'kern' Horizontal Kerning lookup 17 subtable" 861 -152 "'kern' Horizontal Kerning lookup 17 subtable" 856 -59 "'kern' Horizontal Kerning lookup 17 subtable" 855 -152 "'kern' Horizontal Kerning lookup 17 subtable" 854 -152 "'kern' Horizontal Kerning lookup 17 subtable" 850 -43 "'kern' Horizontal Kerning lookup 17 subtable" 843 -43 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: anoteleia +Encoding: 903 903 828 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 0 + 5 + 4 + 2 + 5 + 1 + 212 + 5 + 228 + 5 + 244 + 5 + 3 + 5 +PUSHW_1 + -64 +NPUSHB + 23 + 119 + 124 + 72 + 82 + 5 + 98 + 5 + 2 + 1 + 32 + 5 + 48 + 5 + 64 + 5 + 3 + 4 + 5 + 20 + 5 + 2 + 112 + 5 +PUSHW_1 + -128 +NPUSHB + 9 + 103 + 111 + 72 + 68 + 5 + 84 + 5 + 2 + 5 +PUSHW_1 + -64 +PUSHB_4 + 99 + 102 + 72 + 5 +PUSHW_1 + -128 +PUSHB_4 + 92 + 95 + 72 + 5 +PUSHW_1 + -64 +PUSHB_4 + 87 + 91 + 72 + 5 +PUSHW_1 + -128 +NPUSHB + 21 + 81 + 86 + 72 + 36 + 5 + 52 + 5 + 68 + 5 + 3 + 228 + 5 + 1 + 176 + 5 + 192 + 5 + 208 + 5 + 3 + 5 +PUSHW_1 + -64 +NPUSHB + 16 + 67 + 70 + 72 + 48 + 5 + 1 + 36 + 5 + 1 + 0 + 5 + 16 + 5 + 2 + 60 + 5 +PUSHW_1 + -64 +NPUSHB + 12 + 56 + 59 + 72 + 187 + 5 + 1 + 128 + 5 + 144 + 5 + 2 + 5 +PUSHW_1 + -64 +NPUSHB + 43 + 45 + 48 + 72 + 11 + 5 + 1 + 208 + 5 + 224 + 5 + 2 + 164 + 5 + 180 + 5 + 196 + 5 + 3 + 32 + 5 + 48 + 5 + 2 + 2 + 0 + 5 + 16 + 5 + 2 + 240 + 5 + 1 + 159 + 5 + 175 + 5 + 2 + 0 + 5 + 1 + 9 + 3 + 5 +PUSHW_1 + -64 +PUSHB_8 + 13 + 17 + 72 + 1 + 0 + 155 + 89 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +CALL +DELTAP3 +DELTAP3 +CALL +SDB +DELTAP1 +DELTAP1 +DELTAP1 +CALL +DELTAP1 +DELTAP1 +DELTAP2 +CALL +CALL +CALL +CALL +DELTAP3 +CALL +SDB +DELTAP1 +DELTAP1 +SDS +DELTAP1 +CALL +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +187 446 m 1,0,-1 + 187 666 l 1,1,-1 + 382 666 l 1,2,-1 + 382 446 l 1,3,-1 + 187 446 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: Epsilontonos +Encoding: 904 904 829 +Width: 1606 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 1 + 14 + 3 + 1 + 15 + 4 + 15 + 20 + 15 + 2 +PUSHW_1 + -143 +NPUSHB + 16 + 15 + 15 + 1 + 1 + 37 + 0 + 47 + 0 + 1 + 2 + 191 + 0 + 1 + 208 + 0 + 1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +SHC[rp1] +CALL +DELTAP1 +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 240 0 2 +Refer: 825 900 N 1 0 0 1 -216 -132 2 +EndChar + +StartChar: Etatonos +Encoding: 905 905 830 +Width: 1716 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 80 + 19 + 128 + 19 + 160 + 19 + 176 + 19 + 192 + 19 + 5 + 1 + 14 + 3 + 1 + 15 + 0 + 15 + 16 + 15 + 2 +PUSHW_1 + -143 +NPUSHB + 15 + 15 + 15 + 5 + 5 + 37 + 0 + 47 + 0 + 111 + 0 + 191 + 0 + 207 + 0 + 4 +DELTAP1 +SHC[rp1] +CALL +DELTAP1 +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 237 0 2 +Refer: 825 900 N 1 0 0 1 -219 -132 2 +EndChar + +StartChar: Iotatonos +Encoding: 906 906 831 +Width: 786 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 11 + 11 + 43 + 11 + 2 + 52 + 11 + 132 + 11 + 2 + 1 + 6 + 3 + 1 + 7 + 4 + 7 + 20 + 7 + 2 +PUSHW_1 + -154 +NPUSHB + 22 + 7 + 7 + 1 + 1 + 37 + 0 + 47 + 0 + 1 + 2 + 79 + 0 + 95 + 0 + 111 + 0 + 127 + 0 + 4 + 128 + 0 + 1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +SHC[rp1] +CALL +DELTAP1 +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 217 0 2 +Refer: 825 900 N 1 0 0 1 -229 -132 2 +EndChar + +StartChar: Omicrontonos +Encoding: 908 908 832 +Width: 1586 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 2 + 29 + 3 + 2 + 27 + 0 + 27 + 192 + 27 + 2 +PUSHW_1 + -162 +NPUSHB + 10 + 27 + 27 + 8 + 8 + 37 + 1 + 0 + 47 + 0 + 1 +DELTAP1 +SHC[rp1] +SHC[rp1] +CALL +DELTAP1 +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 -4 0 2 +Refer: 825 900 N 1 0 0 1 -274 -132 2 +Kerns2: 855 -66 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Upsilontonos +Encoding: 910 910 833 +Width: 1752 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 9 + 16 + 1 + 153 + 40 + 16 + 1 + 24 + 16 + 72 + 16 + 88 + 16 + 184 + 16 + 200 + 16 + 232 + 16 + 6 + 8 + 16 + 104 + 16 + 120 + 16 + 136 + 16 + 4 + 199 + 24 + 16 + 56 + 16 + 2 + 168 + 16 + 200 + 16 + 2 + 8 + 16 + 24 + 16 + 88 + 16 + 200 + 16 + 216 + 16 + 248 + 16 + 6 + 151 + 8 + 16 + 1 + 11 + 23 + 16 + 135 + 16 + 167 + 16 + 3 + 71 + 16 + 103 + 16 + 215 + 16 + 3 + 7 + 16 + 23 + 16 + 2 + 182 + 167 + 16 + 1 + 7 + 16 + 55 + 16 + 247 + 16 + 3 + 7 + 16 + 55 + 16 + 87 + 16 + 103 + 16 + 119 + 16 + 151 + 16 + 231 + 16 + 7 + 130 + 87 + 16 + 1 + 7 + 16 + 23 + 16 + 119 + 16 + 135 + 16 + 167 + 16 + 5 + 60 + 39 + 16 + 103 + 16 + 135 + 16 + 151 + 16 + 247 + 16 + 5 + 7 + 16 + 23 + 16 + 39 + 16 + 55 + 16 + 71 + 16 + 87 + 16 + 119 + 16 + 183 + 16 + 199 + 16 + 215 + 16 + 231 + 16 + 11 + 7 + 16 + 39 + 16 + 55 + 16 + 87 + 16 + 151 + 16 + 167 + 16 + 199 + 16 + 215 + 16 + 231 + 16 + 247 + 16 + 10 + 12 + 6 + 16 + 22 + 16 + 2 + 6 + 16 + 54 + 16 + 118 + 16 + 150 + 16 + 166 + 16 + 230 + 16 + 6 + 131 + 86 + 16 + 198 + 16 + 230 + 16 + 3 + 6 + 16 + 38 + 16 + 134 + 16 + 166 + 16 + 198 + 16 + 5 + 6 + 16 + 38 + 16 + 86 + 16 + 118 + 16 + 150 + 16 + 166 + 16 + 182 + 16 + 246 + 16 + 8 + 64 + 6 + 16 + 22 + 16 + 54 + 16 + 102 + 16 + 118 + 16 + 134 + 16 + 150 + 16 + 166 + 16 + 230 + 16 + 246 + 16 + 10 + 38 + 16 + 70 + 16 +NPUSHB + 141 + 86 + 16 + 102 + 16 + 182 + 16 + 198 + 16 + 214 + 16 + 246 + 16 + 8 + 6 + 16 + 118 + 16 + 2 + 16 + 5 + 16 + 37 + 16 + 69 + 16 + 149 + 16 + 165 + 16 + 181 + 16 + 6 + 113 + 5 + 16 + 37 + 16 + 53 + 16 + 85 + 16 + 101 + 16 + 117 + 16 + 149 + 16 + 197 + 16 + 229 + 16 + 245 + 16 + 10 + 37 + 16 + 53 + 16 + 69 + 16 + 85 + 16 + 101 + 16 + 133 + 16 + 165 + 16 + 197 + 16 + 213 + 16 + 229 + 16 + 245 + 16 + 11 + 5 + 16 + 117 + 16 + 181 + 16 + 197 + 16 + 213 + 16 + 5 + 65 + 4 + 16 + 36 + 16 + 68 + 16 + 84 + 16 + 116 + 16 + 180 + 16 + 196 + 16 + 228 + 16 + 244 + 16 + 9 + 4 + 16 + 116 + 16 + 148 + 16 + 3 + 98 + 3 + 16 + 115 + 16 + 2 + 120 + 0 + 1 + 11 + 3 + 1 + 12 + 0 + 12 + 16 + 12 + 64 + 12 + 96 + 12 + 112 + 12 + 128 + 12 + 6 +PUSHW_1 + -90 +NPUSHB + 11 + 12 + 12 + 4 + 4 + 37 + 0 + 0 + 0 + 176 + 0 + 2 +DELTAP1 +SHC[rp1] +CALL +DELTAP1 +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SDB +DELTAP1 +DELTAP2 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +EndTTInstrs +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 386 0 2 +Refer: 825 900 N 1 0 0 1 -140 -132 2 +Kerns2: 894 -186 "'kern' Horizontal Kerning lookup 17 subtable" 892 98 "'kern' Horizontal Kerning lookup 17 subtable" 888 -186 "'kern' Horizontal Kerning lookup 17 subtable" 885 -186 "'kern' Horizontal Kerning lookup 17 subtable" 881 -186 "'kern' Horizontal Kerning lookup 17 subtable" 878 -152 "'kern' Horizontal Kerning lookup 17 subtable" 876 -152 "'kern' Horizontal Kerning lookup 17 subtable" 875 -76 "'kern' Horizontal Kerning lookup 17 subtable" 873 -152 "'kern' Horizontal Kerning lookup 17 subtable" 867 -186 "'kern' Horizontal Kerning lookup 17 subtable" 865 -76 "'kern' Horizontal Kerning lookup 17 subtable" 864 -152 "'kern' Horizontal Kerning lookup 17 subtable" 859 -98 "'kern' Horizontal Kerning lookup 17 subtable" 856 -115 "'kern' Horizontal Kerning lookup 17 subtable" 850 -115 "'kern' Horizontal Kerning lookup 17 subtable" 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 843 -115 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 835 170 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Omegatonos +Encoding: 911 911 834 +Width: 1541 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 175 + 43 + 1 + 1 + 38 + 3 + 1 + 36 + 16 + 36 + 144 + 36 + 2 +PUSHW_1 + -194 +NPUSHB + 22 + 36 + 36 + 33 + 33 + 37 + 0 + 31 + 0 + 95 + 0 + 159 + 0 + 3 + 31 + 0 + 159 + 0 + 175 + 0 + 223 + 0 + 4 +DELTAP1 +DELTAP2 +SHC[rp1] +CALL +DELTAP1 +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 10 0 2 +Refer: 825 900 N 1 0 0 1 -274 -132 2 +Kerns2: 861 -47 "'kern' Horizontal Kerning lookup 17 subtable" 855 -47 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: iotadieresistonos +Encoding: 912 912 835 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 190 + 15 + 25 + 31 + 25 + 239 + 25 + 255 + 25 + 4 + 212 + 47 + 25 + 63 + 25 + 79 + 25 + 255 + 25 + 4 + 47 + 25 + 1 + 15 + 25 + 63 + 25 + 79 + 25 + 223 + 25 + 4 + 164 + 15 + 25 + 207 + 25 + 223 + 25 + 239 + 25 + 4 + 111 + 25 + 127 + 25 + 2 + 15 + 25 + 31 + 25 + 175 + 25 + 3 + 109 + 143 + 25 + 207 + 25 + 223 + 25 + 3 + 47 + 25 + 223 + 25 + 239 + 25 + 255 + 25 + 4 + 15 + 25 + 1 + 56 + 15 + 25 + 31 + 25 + 47 + 25 + 191 + 25 + 239 + 25 + 255 + 25 + 6 + 15 + 25 + 95 + 25 + 2 + 15 + 25 + 31 + 25 + 255 + 25 + 3 + 8 + 0 + 25 + 1 + 223 + 0 + 25 + 16 + 25 + 208 + 25 + 224 + 25 + 4 + 32 + 25 + 240 + 25 + 2 + 0 + 25 + 16 + 25 + 2 + 174 + 64 + 25 + 80 + 25 + 208 + 25 + 224 + 25 + 4 + 0 + 25 + 224 + 25 + 2 + 115 + 0 + 25 + 16 + 25 + 208 + 25 + 3 + 32 + 25 + 112 + 25 + 2 + 0 + 25 + 1 + 61 + 144 + 25 + 160 + 25 + 176 + 25 + 3 + 176 + 25 + 192 + 25 + 208 + 25 + 3 + 0 + 25 + 144 + 25 + 160 + 25 + 224 + 25 + 4 + 7 + 3 + 2 + 1 + 10 + 10 + 17 + 38 + 3 + 2 + 1 + 16 +PUSHW_1 + -36 +PUSHB_5 + 16 + 22 + 3 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[x-axis] +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 2 +Refer: 826 901 N 1 0 0 1 -109 0 2 +EndChar + +StartChar: Alpha +Encoding: 913 913 836 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Kerns2: 2021 -152 "'kern' Horizontal Kerning lookup 17 subtable" 889 -37 "'kern' Horizontal Kerning lookup 17 subtable" 879 -37 "'kern' Horizontal Kerning lookup 17 subtable" 869 -37 "'kern' Horizontal Kerning lookup 17 subtable" 861 -152 "'kern' Horizontal Kerning lookup 17 subtable" 856 -59 "'kern' Horizontal Kerning lookup 17 subtable" 855 -152 "'kern' Horizontal Kerning lookup 17 subtable" 854 -152 "'kern' Horizontal Kerning lookup 17 subtable" 850 -43 "'kern' Horizontal Kerning lookup 17 subtable" 843 -43 "'kern' Horizontal Kerning lookup 17 subtable" 3 -113 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Beta +Encoding: 914 914 837 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 37 66 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Gamma +Encoding: 915 915 838 +Width: 1128 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 4 + 0 + 4 + 7 + 6 + 5 + 2 + 95 + 89 + 5 + 3 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1071 1410 m 1,0,-1 + 1071 1254 l 1,1,-1 + 359 1254 l 1,2,-1 + 359 1 l 1,3,-1 + 168 1 l 1,4,-1 + 168 1410 l 1,5,-1 + 1071 1410 l 1,0,-1 +EndSplineSet +Kerns2: 892 88 "'kern' Horizontal Kerning lookup 17 subtable" 875 -88 "'kern' Horizontal Kerning lookup 17 subtable" 846 -188 "'kern' Horizontal Kerning lookup 17 subtable" 839 -188 "'kern' Horizontal Kerning lookup 17 subtable" 836 -188 "'kern' Horizontal Kerning lookup 17 subtable" 835 164 "'kern' Horizontal Kerning lookup 17 subtable" 17 -225 "'kern' Horizontal Kerning lookup 17 subtable" 15 -225 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Delta +Encoding: 916 916 839 +Width: 1368 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 6 + 2 + 1 + 0 + 10 + 14 + 5 + 5 + 10 + 2 + 3 + 16 + 15 + 16 + 16 + 1 + 15 + 16 + 1 + 11 + 3 + 5 + 2 + 14 + 4 + 14 + 95 + 89 + 4 + 18 + 10 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +579 1409 m 1,0,-1 + 796 1409 l 1,1,-1 + 1306 141 l 1,2,-1 + 1306 0 l 1,3,-1 + 61 0 l 1,4,-1 + 62 141 l 1,5,-1 + 579 1409 l 1,0,-1 +1106 156 m 1,6,-1 + 768 1018 l 2,7,8 + 738 1092 738 1092 712.5 1172.5 c 128,-1,9 + 687 1253 687 1253 685 1265 c 1,10,-1 + 676 1233 l 2,11,12 + 645 1122 645 1122 602 1016 c 2,13,-1 + 263 156 l 1,14,-1 + 1106 156 l 1,6,-1 +EndSplineSet +Kerns2: 861 -152 "'kern' Horizontal Kerning lookup 17 subtable" 855 -152 "'kern' Horizontal Kerning lookup 17 subtable" 854 -119 "'kern' Horizontal Kerning lookup 17 subtable" 850 -43 "'kern' Horizontal Kerning lookup 17 subtable" 843 -43 "'kern' Horizontal Kerning lookup 17 subtable" 3 -113 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Epsilon +Encoding: 917 917 840 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Zeta +Encoding: 918 918 841 +Width: 1251 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 61 90 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Eta +Encoding: 919 919 842 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Theta +Encoding: 920 920 843 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 30 + 21 + 15 + 15 + 0 + 21 + 8 + 0 + 8 + 32 + 31 + 0 + 32 + 96 + 32 + 2 + 11 + 3 + 27 + 30 + 95 + 89 + 15 + 27 + 1 + 11 + 3 + 27 + 27 + 4 + 11 + 11 + 18 + 95 + 89 + 11 + 4 + 4 + 24 + 95 + 89 + 4 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1495 711 m 0,0,1 + 1495 490 1495 490 1410.5 324 c 128,-1,2 + 1326 158 1326 158 1168 69 c 128,-1,3 + 1010 -20 1010 -20 795 -20 c 0,4,5 + 578 -20 578 -20 420.5 68 c 128,-1,6 + 263 156 263 156 180 322.5 c 128,-1,7 + 97 489 97 489 97 711 c 0,8,9 + 97 1049 97 1049 282 1239.5 c 128,-1,10 + 467 1430 467 1430 797 1430 c 0,11,12 + 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 + 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 + 1495 933 1495 933 1495 711 c 0,0,1 +1300 711 m 0,15,16 + 1300 974 1300 974 1168.5 1124 c 128,-1,17 + 1037 1274 1037 1274 797 1274 c 0,18,19 + 555 1274 555 1274 423 1126 c 128,-1,20 + 291 978 291 978 291 711 c 0,21,22 + 291 446 291 446 424.5 290.5 c 128,-1,23 + 558 135 558 135 795 135 c 0,24,25 + 1039 135 1039 135 1169.5 285.5 c 128,-1,26 + 1300 436 1300 436 1300 711 c 0,15,16 +502 794 m 1,27,-1 + 1089 794 l 1,28,-1 + 1089 634 l 1,29,-1 + 502 634 l 1,30,-1 + 502 794 l 1,27,-1 +EndSplineSet +Kerns2: 861 -66 "'kern' Horizontal Kerning lookup 17 subtable" 855 -66 "'kern' Horizontal Kerning lookup 17 subtable" 846 -37 "'kern' Horizontal Kerning lookup 17 subtable" 839 -37 "'kern' Horizontal Kerning lookup 17 subtable" 836 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Iota +Encoding: 921 921 844 +Width: 569 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Kappa +Encoding: 922 922 845 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 46 75 N 1 0 0 1 0 0 3 +Kerns2: 896 -25 "'kern' Horizontal Kerning lookup 17 subtable" 894 -25 "'kern' Horizontal Kerning lookup 17 subtable" 891 -25 "'kern' Horizontal Kerning lookup 17 subtable" 888 -25 "'kern' Horizontal Kerning lookup 17 subtable" 885 -25 "'kern' Horizontal Kerning lookup 17 subtable" 881 -25 "'kern' Horizontal Kerning lookup 17 subtable" 880 -25 "'kern' Horizontal Kerning lookup 17 subtable" 874 -25 "'kern' Horizontal Kerning lookup 17 subtable" 872 -25 "'kern' Horizontal Kerning lookup 17 subtable" 870 -25 "'kern' Horizontal Kerning lookup 17 subtable" 867 -25 "'kern' Horizontal Kerning lookup 17 subtable" 862 -25 "'kern' Horizontal Kerning lookup 17 subtable" 856 -113 "'kern' Horizontal Kerning lookup 17 subtable" 850 -63 "'kern' Horizontal Kerning lookup 17 subtable" 843 -63 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Lambda +Encoding: 923 923 846 +Width: 1368 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 8 + 7 + 3 + 5 + 6 + 1 + 0 + 6 + 3 + 0 + 3 + 10 + 9 + 118 + 3 + 134 + 3 + 2 + 3 + 7 + 3 + 6 + 0 + 18 + 111 + 10 + 1 + 48 + 10 + 1 + 47 + 10 + 1 + 0 + 10 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1358 1 m 1,0,-1 + 1157 1 l 1,1,-1 + 769 993 l 1,2,-1 + 685 1242 l 1,3,-1 + 601 993 l 1,4,-1 + 211 1 l 1,5,-1 + 10 1 l 1,6,-1 + 585 1410 l 1,7,-1 + 783 1410 l 1,8,-1 + 1358 1 l 1,0,-1 +EndSplineSet +Kerns2: 861 -152 "'kern' Horizontal Kerning lookup 17 subtable" 855 -152 "'kern' Horizontal Kerning lookup 17 subtable" 854 -152 "'kern' Horizontal Kerning lookup 17 subtable" 850 -43 "'kern' Horizontal Kerning lookup 17 subtable" 843 -43 "'kern' Horizontal Kerning lookup 17 subtable" 3 -113 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Mu +Encoding: 924 924 847 +Width: 1706 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 48 77 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Nu +Encoding: 925 925 848 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Xi +Encoding: 926 926 849 +Width: 1331 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 3 + 10 + 9 + 6 + 2 + 5 + 6 + 5 + 12 + 13 + 11 + 10 + 95 + 89 + 11 + 11 + 7 + 0 + 6 + 7 + 95 + 89 + 6 + 18 + 0 + 3 + 95 + 89 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +125 1409 m 1,0,-1 + 1206 1409 l 1,1,-1 + 1206 1253 l 1,2,-1 + 125 1253 l 1,3,-1 + 125 1409 l 1,0,-1 +1241 156 m 1,4,-1 + 1241 0 l 1,5,-1 + 90 0 l 1,6,-1 + 90 156 l 1,7,-1 + 1241 156 l 1,4,-1 +1086 801 m 1,8,-1 + 1086 647 l 1,9,-1 + 245 647 l 1,10,-1 + 245 801 l 1,11,-1 + 1086 801 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: Omicron +Encoding: 927 927 850 +Width: 1593 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Kerns2: 861 -66 "'kern' Horizontal Kerning lookup 17 subtable" 855 -66 "'kern' Horizontal Kerning lookup 17 subtable" 846 -37 "'kern' Horizontal Kerning lookup 17 subtable" 839 -43 "'kern' Horizontal Kerning lookup 17 subtable" 836 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Pi +Encoding: 928 928 851 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 0 + 7 + 3 + 4 + 7 + 4 + 9 + 8 + 0 + 9 + 1 + 0 + 9 + 128 + 9 + 144 + 9 + 160 + 9 + 4 + 11 + 3 + 9 +PUSHW_1 + -64 +NPUSHB + 12 + 14 + 17 + 72 + 5 + 2 + 95 + 89 + 5 + 3 + 4 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +CALL +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1121 0 m 1,0,-1 + 1121 1248 l 1,1,-1 + 359 1248 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 1312 1409 l 1,6,-1 + 1312 0 l 1,7,-1 + 1121 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: Rho +Encoding: 929 929 852 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 51 80 N 1 0 0 1 0 0 3 +Kerns2: 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 17 -262 "'kern' Horizontal Kerning lookup 17 subtable" 15 -262 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Sigma +Encoding: 931 931 853 +Width: 1266 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 7 + 3 + 3 + 10 + 8 + 2 + 2 + 6 + 1 + 11 + 1 + 11 + 13 + 14 + 3 + 7 + 4 + 7 + 95 + 89 + 9 + 2 + 8 + 3 + 0 + 4 + 3 + 1 + 10 + 0 + 10 + 95 + 89 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP2 +SLOOP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +108 0 m 1,0,-1 + 108 162 l 1,1,-1 + 646 741 l 1,2,-1 + 125 1248 l 1,3,-1 + 125 1409 l 1,4,-1 + 1124 1409 l 1,5,-1 + 1124 1253 l 1,6,-1 + 340 1253 l 1,7,-1 + 798 808 l 1,8,-1 + 798 684 l 1,9,-1 + 308 156 l 1,10,-1 + 1185 156 l 1,11,-1 + 1185 0 l 1,12,-1 + 108 0 l 1,0,-1 +EndSplineSet +Kerns2: 886 -98 "'kern' Horizontal Kerning lookup 17 subtable" 882 -98 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Tau +Encoding: 932 932 854 +Width: 1251 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 55 84 N 1 0 0 1 0 0 3 +Kerns2: 895 -178 "'kern' Horizontal Kerning lookup 17 subtable" 894 -225 "'kern' Horizontal Kerning lookup 17 subtable" 893 -178 "'kern' Horizontal Kerning lookup 17 subtable" 892 188 "'kern' Horizontal Kerning lookup 17 subtable" 890 -150 "'kern' Horizontal Kerning lookup 17 subtable" 889 -113 "'kern' Horizontal Kerning lookup 17 subtable" 888 -225 "'kern' Horizontal Kerning lookup 17 subtable" 887 -176 "'kern' Horizontal Kerning lookup 17 subtable" 885 -225 "'kern' Horizontal Kerning lookup 17 subtable" 881 -225 "'kern' Horizontal Kerning lookup 17 subtable" 879 -113 "'kern' Horizontal Kerning lookup 17 subtable" 878 -150 "'kern' Horizontal Kerning lookup 17 subtable" 875 -76 "'kern' Horizontal Kerning lookup 17 subtable" 873 -150 "'kern' Horizontal Kerning lookup 17 subtable" 871 -225 "'kern' Horizontal Kerning lookup 17 subtable" 869 -178 "'kern' Horizontal Kerning lookup 17 subtable" 867 -225 "'kern' Horizontal Kerning lookup 17 subtable" 866 -178 "'kern' Horizontal Kerning lookup 17 subtable" 863 -225 "'kern' Horizontal Kerning lookup 17 subtable" 862 -225 "'kern' Horizontal Kerning lookup 17 subtable" 859 -37 "'kern' Horizontal Kerning lookup 17 subtable" 856 -37 "'kern' Horizontal Kerning lookup 17 subtable" 850 -37 "'kern' Horizontal Kerning lookup 17 subtable" 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 843 -37 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 835 188 "'kern' Horizontal Kerning lookup 17 subtable" 30 -225 "'kern' Horizontal Kerning lookup 17 subtable" 29 -225 "'kern' Horizontal Kerning lookup 17 subtable" 17 -225 "'kern' Horizontal Kerning lookup 17 subtable" 15 -225 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Upsilon +Encoding: 933 933 855 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Kerns2: 894 -186 "'kern' Horizontal Kerning lookup 17 subtable" 892 121 "'kern' Horizontal Kerning lookup 17 subtable" 888 -186 "'kern' Horizontal Kerning lookup 17 subtable" 885 -186 "'kern' Horizontal Kerning lookup 17 subtable" 881 -186 "'kern' Horizontal Kerning lookup 17 subtable" 878 -152 "'kern' Horizontal Kerning lookup 17 subtable" 876 -152 "'kern' Horizontal Kerning lookup 17 subtable" 875 -76 "'kern' Horizontal Kerning lookup 17 subtable" 873 -152 "'kern' Horizontal Kerning lookup 17 subtable" 869 -98 "'kern' Horizontal Kerning lookup 17 subtable" 867 -186 "'kern' Horizontal Kerning lookup 17 subtable" 865 -76 "'kern' Horizontal Kerning lookup 17 subtable" 864 -152 "'kern' Horizontal Kerning lookup 17 subtable" 859 -98 "'kern' Horizontal Kerning lookup 17 subtable" 856 -115 "'kern' Horizontal Kerning lookup 17 subtable" 850 -115 "'kern' Horizontal Kerning lookup 17 subtable" 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 843 -115 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 835 188 "'kern' Horizontal Kerning lookup 17 subtable" 30 -113 "'kern' Horizontal Kerning lookup 17 subtable" 29 -113 "'kern' Horizontal Kerning lookup 17 subtable" 17 -262 "'kern' Horizontal Kerning lookup 17 subtable" 16 -186 "'kern' Horizontal Kerning lookup 17 subtable" 15 -262 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Phi +Encoding: 934 934 856 +Width: 1634 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 32 + 13 + 28 + 20 + 6 + 6 + 36 + 17 + 7 + 24 + 0 + 0 + 7 + 13 + 3 + 41 + 42 + 180 + 42 + 228 + 42 + 2 + 160 + 42 + 1 + 36 + 42 + 68 + 42 + 100 + 42 + 148 + 42 + 4 + 16 + 42 + 1 + 2 + 0 + 42 + 1 + 15 + 3 + 42 +PUSHW_1 + -64 +NPUSHB + 28 + 10 + 13 + 72 + 28 + 35 + 9 + 35 + 96 + 89 + 5 + 9 + 27 + 38 + 16 + 38 + 96 + 89 + 20 + 16 + 9 + 16 + 9 + 16 + 6 + 18 + 3 + 6 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1518 736 m 0,0,1 + 1518 583 1518 583 1454.5 464.5 c 128,-1,2 + 1391 346 1391 346 1272 281 c 128,-1,3 + 1153 216 1153 216 993 216 c 2,4,-1 + 910 216 l 1,5,-1 + 910 -11 l 1,6,-1 + 725 -11 l 1,7,-1 + 725 216 l 1,8,-1 + 642 216 l 2,9,10 + 481 216 481 216 362 281.5 c 128,-1,11 + 243 347 243 347 180 465.5 c 128,-1,12 + 117 584 117 584 117 736 c 0,13,14 + 117 974 117 974 256.5 1105.5 c 128,-1,15 + 396 1237 396 1237 653 1237 c 2,16,-1 + 725 1237 l 1,17,-1 + 725 1419 l 1,18,-1 + 910 1419 l 1,19,-1 + 910 1237 l 1,20,-1 + 981 1237 l 2,21,22 + 1239 1237 1239 1237 1378.5 1105 c 128,-1,23 + 1518 973 1518 973 1518 736 c 0,0,1 +1326 732 m 0,24,25 + 1326 1099 1326 1099 958 1099 c 2,26,-1 + 910 1099 l 1,27,-1 + 910 353 l 1,28,-1 + 966 353 l 2,29,30 + 1140 353 1140 353 1233 449 c 128,-1,31 + 1326 545 1326 545 1326 732 c 0,24,25 +309 732 m 256,32,33 + 309 545 309 545 402 449 c 128,-1,34 + 495 353 495 353 669 353 c 2,35,-1 + 725 353 l 1,36,-1 + 725 1099 l 1,37,-1 + 673 1099 l 2,38,39 + 491 1099 491 1099 400 1009 c 128,-1,40 + 309 919 309 919 309 732 c 256,32,33 +EndSplineSet +Kerns2: 861 -66 "'kern' Horizontal Kerning lookup 17 subtable" 855 -66 "'kern' Horizontal Kerning lookup 17 subtable" 836 -59 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Chi +Encoding: 935 935 857 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 59 88 N 1 0 0 1 0 0 3 +EndChar + +StartChar: Psi +Encoding: 936 936 858 +Width: 1711 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 57 + 20 + 23 + 16 + 29 + 29 + 13 + 0 + 9 + 6 + 6 + 0 + 23 + 3 + 31 + 30 + 4 + 31 + 68 + 31 + 132 + 31 + 148 + 31 + 4 + 164 + 31 + 180 + 31 + 196 + 31 + 228 + 31 + 244 + 31 + 5 + 96 + 31 + 1 + 68 + 31 + 84 + 31 + 2 + 32 + 31 + 48 + 31 + 2 + 20 + 31 + 1 + 0 + 31 + 1 + 13 + 2 + 31 +PUSHW_1 + -64 +NPUSHB + 21 + 9 + 12 + 72 + 28 + 2 + 12 + 2 + 96 + 89 + 16 + 239 + 12 + 1 + 12 + 12 + 21 + 14 + 7 + 3 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +IP +MDAP[rnd] +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +763 0 m 1,0,-1 + 763 427 l 1,1,-1 + 680 427 l 2,2,3 + 519 427 519 427 397 492.5 c 128,-1,4 + 275 558 275 558 210 676.5 c 128,-1,5 + 145 795 145 795 145 946 c 2,6,-1 + 145 1409 l 1,7,-1 + 336 1409 l 1,8,-1 + 336 942 l 2,9,10 + 336 770 336 770 435.5 669 c 128,-1,11 + 535 568 535 568 707 568 c 2,12,-1 + 763 568 l 1,13,-1 + 763 1409 l 1,14,-1 + 948 1409 l 1,15,-1 + 948 568 l 1,16,-1 + 1004 568 l 2,17,18 + 1180 568 1180 568 1277.5 667.5 c 128,-1,19 + 1375 767 1375 767 1375 942 c 2,20,-1 + 1375 1409 l 1,21,-1 + 1566 1409 l 1,22,-1 + 1566 946 l 2,23,24 + 1566 797 1566 797 1500.5 678 c 128,-1,25 + 1435 559 1435 559 1313.5 493 c 128,-1,26 + 1192 427 1192 427 1031 427 c 2,27,-1 + 948 427 l 1,28,-1 + 948 0 l 1,29,-1 + 763 0 l 1,0,-1 +EndSplineSet +Kerns2: 896 -78 "'kern' Horizontal Kerning lookup 17 subtable" 894 -78 "'kern' Horizontal Kerning lookup 17 subtable" 891 -78 "'kern' Horizontal Kerning lookup 17 subtable" 888 -78 "'kern' Horizontal Kerning lookup 17 subtable" 885 -78 "'kern' Horizontal Kerning lookup 17 subtable" 881 -78 "'kern' Horizontal Kerning lookup 17 subtable" 874 -39 "'kern' Horizontal Kerning lookup 17 subtable" 870 -78 "'kern' Horizontal Kerning lookup 17 subtable" 867 -78 "'kern' Horizontal Kerning lookup 17 subtable" 862 -78 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Omega +Encoding: 937 937 859 +Width: 1531 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 30 + 25 + 6 + 11 + 25 + 11 + 21 + 15 + 21 + 26 + 33 + 15 + 10 + 3 + 33 + 3 + 36 + 37 + 15 + 37 + 1 + 14 + 3 + 30 + 24 + 12 + 8 + 6 + 27 + 26 + 27 + 95 + 89 + 11 + 26 + 18 + 0 + 18 + 95 + 89 + 0 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +765 1430 m 256,0,1 + 1068 1430 1068 1430 1241.5 1262.5 c 128,-1,2 + 1415 1095 1415 1095 1415 801 c 0,3,4 + 1415 600 1415 600 1307.5 430 c 128,-1,5 + 1200 260 1200 260 991 145 c 1,6,-1 + 1072 150 l 1,7,-1 + 1199 156 l 1,8,-1 + 1443 156 l 1,9,-1 + 1443 0 l 1,10,-1 + 854 0 l 1,11,-1 + 854 224 l 1,12,13 + 1033 319 1033 319 1126.5 461.5 c 128,-1,14 + 1220 604 1220 604 1220 788 c 0,15,16 + 1220 1020 1220 1020 1101 1147 c 128,-1,17 + 982 1274 982 1274 766 1274 c 0,18,19 + 548 1274 548 1274 429 1147 c 128,-1,20 + 310 1020 310 1020 310 788 c 0,21,22 + 310 605 310 605 403 462.5 c 128,-1,23 + 496 320 496 320 676 224 c 1,24,-1 + 676 0 l 1,25,-1 + 87 0 l 1,26,-1 + 87 156 l 1,27,-1 + 331 156 l 1,28,-1 + 458 150 l 1,29,-1 + 539 145 l 1,30,31 + 331 258 331 258 223 428.5 c 128,-1,32 + 115 599 115 599 115 801 c 0,33,34 + 115 1095 115 1095 288.5 1262.5 c 128,-1,35 + 462 1430 462 1430 765 1430 c 256,0,1 +EndSplineSet +Kerns2: 861 -47 "'kern' Horizontal Kerning lookup 17 subtable" 855 -47 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: Iotadieresis +Encoding: 938 938 860 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 4 + 4 + 5 + 38 + 2 + 1 + 8 + 1 + 8 + 6 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 -38 0 2 +EndChar + +StartChar: Upsilondieresis +Encoding: 939 939 861 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 9 + 12 + 16 + 13 + 12 + 6 + 13 + 12 + 4 + 17 + 18 + 10 + 14 + 13 + 14 + 145 + 89 + 9 + 13 + 6 + 0 + 3 + 8 + 3 + 24 + 3 + 72 + 3 + 3 + 12 + 3 + 1 + 8 + 4 + 3 + 1 + 18 + 118 + 18 + 1 + 98 + 18 + 1 + 84 + 18 + 1 + 70 + 18 + 1 + 54 + 18 + 1 + 36 + 18 + 1 + 22 + 18 + 1 + 4 + 18 + 1 + 242 + 18 + 1 + 1 + 224 + 18 + 1 + 208 + 18 + 1 + 196 + 18 + 1 + 176 + 18 + 1 + 160 + 18 + 1 + 148 + 18 + 1 + 112 + 18 + 1 + 100 + 18 + 1 + 64 + 18 + 1 + 52 + 18 + 1 + 36 + 18 + 1 + 20 + 18 + 1 + 0 + 18 + 1 + 105 + 244 + 18 + 1 + 228 + 18 + 1 + 208 + 18 + 1 + 196 + 18 + 1 + 180 + 18 + 1 + 164 + 18 + 1 + 144 + 18 + 1 + 128 + 18 + 1 + 116 + 18 + 1 + 96 + 18 + 1 + 80 + 18 + 1 + 68 + 18 + 1 + 32 + 18 + 1 + 20 + 18 + 1 + 4 + 18 + 1 + 244 + 18 + 1 + 224 + 18 + 1 + 212 + 18 + 1 + 196 + 18 + 1 + 176 + 18 + 1 + 164 + 18 + 1 + 148 + 18 + 1 + 116 + 18 + 1 + 100 + 18 + 1 + 84 + 18 + 1 + 64 + 18 + 1 + 48 + 18 + 1 + 36 + 18 + 1 + 0 + 18 + 1 + 244 + 18 + 1 + 196 + 18 + 1 + 144 + 18 + 1 + 132 + 18 + 1 + 116 + 18 + 1 + 84 + 18 + 1 + 68 + 18 + 1 + 36 + 18 + 1 + 20 + 18 + 1 + 4 + 18 + 1 + 57 + 224 + 18 + 1 + 212 + 18 + 1 + 164 + 18 + 1 + 132 + 18 + 1 + 112 + 18 + 1 + 100 + 18 + 1 + 84 + 18 + 1 + 52 + 18 + 1 + 36 + 18 + 1 + 4 + 18 + 1 + 244 + 18 +NPUSHB + 56 + 1 + 228 + 18 + 1 + 192 + 18 + 1 + 180 + 18 + 1 + 144 + 18 + 1 + 132 + 18 + 1 + 84 + 18 + 1 + 52 + 18 + 1 + 20 + 18 + 1 + 4 + 18 + 1 + 228 + 18 + 1 + 212 + 18 + 1 + 187 + 18 + 1 + 164 + 18 + 1 + 112 + 18 + 1 + 2 + 96 + 18 + 1 + 48 + 18 + 1 + 47 + 18 + 1 + 15 + 18 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +SDB +DELTAP1 +SRP1 +SHP[rp1] +SHP[rp1] +MDRP[min,rnd,white] +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +777 584 m 1,0,-1 + 777 0 l 1,1,-1 + 587 0 l 1,2,-1 + 589 584 l 1,3,-1 + 45 1409 l 1,4,-1 + 250 1409 l 1,5,-1 + 684 738 l 1,6,-1 + 1116 1409 l 1,7,-1 + 1321 1409 l 1,8,-1 + 777 584 l 1,0,-1 +802 1530 m 1,9,-1 + 802 1714 l 1,10,-1 + 965 1714 l 1,11,-1 + 965 1530 l 1,12,-1 + 802 1530 l 1,9,-1 +408 1530 m 1,13,-1 + 408 1714 l 1,14,-1 + 573 1714 l 1,15,-1 + 573 1530 l 1,16,-1 + 408 1530 l 1,13,-1 +EndSplineSet +Kerns2: 894 -186 "'kern' Horizontal Kerning lookup 17 subtable" 892 98 "'kern' Horizontal Kerning lookup 17 subtable" 888 -186 "'kern' Horizontal Kerning lookup 17 subtable" 885 -186 "'kern' Horizontal Kerning lookup 17 subtable" 881 -186 "'kern' Horizontal Kerning lookup 17 subtable" 878 -152 "'kern' Horizontal Kerning lookup 17 subtable" 876 -152 "'kern' Horizontal Kerning lookup 17 subtable" 875 -76 "'kern' Horizontal Kerning lookup 17 subtable" 873 -152 "'kern' Horizontal Kerning lookup 17 subtable" 867 -186 "'kern' Horizontal Kerning lookup 17 subtable" 865 -76 "'kern' Horizontal Kerning lookup 17 subtable" 864 -152 "'kern' Horizontal Kerning lookup 17 subtable" 859 -98 "'kern' Horizontal Kerning lookup 17 subtable" 856 -115 "'kern' Horizontal Kerning lookup 17 subtable" 850 -115 "'kern' Horizontal Kerning lookup 17 subtable" 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 843 -115 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 835 170 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: alphatonos +Encoding: 940 940 862 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 39 + 17 + 38 + 2 + 39 + 26 + 39 + 42 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 289 0 2 +EndChar + +StartChar: epsilontonos +Encoding: 941 941 863 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 39 + 17 + 38 + 1 + 39 + 73 + 39 + 42 + 10 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 871 949 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 202 0 2 +EndChar + +StartChar: etatonos +Encoding: 942 942 864 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 26 + 17 + 38 + 1 + 26 + 100 + 26 + 29 + 13 + 24 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 313 0 2 +EndChar + +StartChar: iotatonos +Encoding: 943 943 865 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 1 + 10 + 17 + 38 + 1 + 10 + 0 + 10 + 16 + 10 + 2 + 29 + 10 + 13 + 3 + 9 + 37 +CALL +DELTAP1 +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 -47 0 2 +EndChar + +StartChar: upsilondieresistonos +Encoding: 944 944 866 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 3 + 2 + 1 + 22 + 22 + 17 + 38 + 3 + 2 + 1 + 28 +PUSHW_1 + -15 +PUSHB_5 + 28 + 34 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 826 901 N 1 0 0 1 222 0 2 +EndChar + +StartChar: alpha +Encoding: 945 945 867 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 15 + 16 + 16 + 19 + 19 + 12 + 0 + 33 + 33 + 40 + 27 + 6 + 23 + 22 + 6 + 22 + 39 + 40 + 0 + 40 + 1 + 10 + 3 + 0 + 33 + 19 + 12 + 4 + 16 + 22 + 21 + 16 + 15 + 9 + 36 + 80 + 89 + 9 + 16 + 3 + 30 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +843 237 m 1,0,1 + 780 101 780 101 692.5 40.5 c 128,-1,2 + 605 -20 605 -20 484 -20 c 0,3,4 + 279 -20 279 -20 182.5 118 c 128,-1,5 + 86 256 86 256 86 536 c 0,6,7 + 86 820 86 820 194.5 961 c 128,-1,8 + 303 1102 303 1102 512 1102 c 0,9,10 + 638 1102 638 1102 727.5 1035 c 128,-1,11 + 817 968 817 968 862 847 c 1,12,-1 + 864 847 l 1,13,14 + 887 966 887 966 937 1082 c 1,15,-1 + 1125 1082 l 1,16,17 + 1075 976 1075 976 1033 822.5 c 128,-1,18 + 991 669 991 669 983 571 c 1,19,20 + 988 411 988 411 1017.5 257 c 128,-1,21 + 1047 103 1047 103 1094 0 c 1,22,-1 + 911 0 l 1,23,24 + 887 61 887 61 869.5 132.5 c 128,-1,25 + 852 204 852 204 847 237 c 1,26,-1 + 843 237 l 1,0,1 +275 542 m 0,27,28 + 275 320 275 320 332 219.5 c 128,-1,29 + 389 119 389 119 521 119 c 0,30,31 + 641 119 641 119 723.5 234.5 c 128,-1,32 + 806 350 806 350 832 546 c 1,33,34 + 803 757 803 757 727 863 c 128,-1,35 + 651 969 651 969 532 969 c 0,36,37 + 396 969 396 969 335.5 868.5 c 128,-1,38 + 275 768 275 768 275 542 c 0,27,28 +EndSplineSet +EndChar + +StartChar: beta +Encoding: 946 946 868 +Width: 1178 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 19 + 31 + 17 + 31 + 10 + 28 + 28 + 0 + 35 + 17 + 17 + 0 + 22 + 9 + 9 + 10 + 0 + 10 + 43 + 42 + 19 + 32 + 31 + 32 + 31 + 80 + 89 + 32 + 32 + 14 + 3 + 14 + 38 + 80 + 89 + 14 + 0 + 9 + 27 + 3 + 25 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1097 405 m 0,0,1 + 1097 207 1097 207 978.5 93.5 c 128,-1,2 + 860 -20 860 -20 640 -20 c 0,3,4 + 457 -20 457 -20 322 74 c 1,5,-1 + 316 74 l 1,6,7 + 322 -40 322 -40 322 -128 c 2,8,-1 + 322 -425 l 1,9,-1 + 142 -425 l 1,10,-1 + 142 1027 l 2,11,12 + 142 1264 142 1264 256 1374 c 128,-1,13 + 370 1484 370 1484 596 1484 c 0,14,15 + 793 1484 793 1484 897.5 1392.5 c 128,-1,16 + 1002 1301 1002 1301 1002 1135 c 0,17,18 + 1002 882 1002 882 779 795 c 1,19,20 + 927 766 927 766 1012 664 c 128,-1,21 + 1097 562 1097 562 1097 405 c 0,0,1 +322 205 m 1,22,23 + 386 162 386 162 468.5 137.5 c 128,-1,24 + 551 113 551 113 632 113 c 0,25,26 + 773 113 773 113 849 190 c 128,-1,27 + 925 267 925 267 925 402 c 0,28,29 + 925 547 925 547 838.5 625 c 128,-1,30 + 752 703 752 703 589 703 c 1,31,-1 + 589 845 l 1,32,33 + 716 872 716 872 772.5 941.5 c 128,-1,34 + 829 1011 829 1011 829 1133 c 0,35,36 + 829 1231 829 1231 768.5 1287 c 128,-1,37 + 708 1343 708 1343 598 1343 c 0,38,39 + 451 1343 451 1343 386.5 1265.5 c 128,-1,40 + 322 1188 322 1188 322 1021 c 2,41,-1 + 322 205 l 1,22,23 +EndSplineSet +EndChar + +StartChar: gamma +Encoding: 947 947 869 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 10 + 11 + 18 + 12 + 7 + 15 + 16 + 1 + 0 + 0 + 16 + 7 + 11 + 4 + 20 + 19 + 64 + 20 + 1 + 0 + 20 + 48 + 20 + 96 + 20 + 144 + 20 + 4 + 20 +PUSHW_1 + -64 +NPUSHB + 13 + 21 + 26 + 72 + 12 + 7 + 18 + 18 + 15 + 27 + 10 + 10 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SVTCA[x-axis] +CALL +DELTAP1 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +7 1082 m 1,0,-1 + 199 1082 l 1,1,-1 + 444 407 l 2,2,3 + 451 385 451 385 461.5 353.5 c 128,-1,4 + 472 322 472 322 482 288.5 c 128,-1,5 + 492 255 492 255 500.5 223.5 c 128,-1,6 + 509 192 509 192 513 170 c 1,7,8 + 535 261 535 261 587 405 c 2,9,-1 + 826 1082 l 1,10,-1 + 1017 1082 l 1,11,-1 + 627 53 l 2,12,13 + 593 -37 593 -37 564 -172.5 c 128,-1,14 + 535 -308 535 -308 522 -424 c 1,15,-1 + 331 -424 l 1,16,17 + 356 -232 356 -232 420 11 c 1,18,-1 + 7 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: delta +Encoding: 948 948 870 +Width: 1140 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 7 + 14 + 29 + 4 + 28 + 29 + 3 + 25 + 0 + 32 + 19 + 25 + 19 + 33 + 34 + 29 + 13 + 30 + 13 + 80 + 89 + 4 + 28 + 22 + 30 + 0 + 22 + 10 + 80 + 89 + 22 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +864 471 m 0,0,1 + 864 558 864 558 837.5 634.5 c 128,-1,2 + 811 711 811 711 769.5 776.5 c 128,-1,3 + 728 842 728 842 644 929 c 1,4,5 + 465 865 465 865 370 746 c 128,-1,6 + 275 627 275 627 275 471 c 0,7,8 + 275 302 275 302 353.5 207.5 c 128,-1,9 + 432 113 432 113 571 113 c 0,10,11 + 715 113 715 113 789.5 203 c 128,-1,12 + 864 293 864 293 864 471 c 0,0,1 +607 1352 m 1,13,-1 + 453 1360 l 1,14,-1 + 769 1036 l 2,15,16 + 890 912 890 912 942.5 832.5 c 128,-1,17 + 995 753 995 753 1024 665.5 c 128,-1,18 + 1053 578 1053 578 1053 475 c 0,19,20 + 1053 248 1053 248 924 114 c 128,-1,21 + 795 -20 795 -20 571 -20 c 0,22,23 + 345 -20 345 -20 215.5 111 c 128,-1,24 + 86 242 86 242 86 473 c 0,25,26 + 86 667 86 667 203 806.5 c 128,-1,27 + 320 946 320 946 551 1026 c 1,28,-1 + 232 1365 l 1,29,-1 + 232 1484 l 1,30,-1 + 965 1484 l 1,31,-1 + 965 1352 l 1,32,-1 + 607 1352 l 1,13,-1 +EndSplineSet +Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: epsilon +Encoding: 949 949 871 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 36 + 28 + 17 + 32 + 13 + 17 + 3 + 10 + 22 + 4 + 10 + 4 + 39 + 40 + 15 + 40 + 79 + 40 + 2 + 10 + 0 + 40 + 1 + 33 + 3 + 13 + 31 + 32 + 31 + 32 + 80 + 89 + 15 + 31 + 1 + 11 + 3 + 31 + 31 + 7 + 20 + 20 + 25 + 80 + 89 + 23 + 20 + 16 + 7 + 0 + 80 + 89 + 3 + 7 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +456 114 m 0,0,1 + 543 114 543 114 626.5 158.5 c 128,-1,2 + 710 203 710 203 769 275 c 1,3,-1 + 874 175 l 1,4,5 + 794 78 794 78 685 29 c 128,-1,6 + 576 -20 576 -20 444 -20 c 0,7,8 + 263 -20 263 -20 166.5 63 c 128,-1,9 + 70 146 70 146 70 295 c 0,10,11 + 70 405 70 405 144.5 479 c 128,-1,12 + 219 553 219 553 334 564 c 1,13,-1 + 334 566 l 1,14,15 + 228 578 228 578 165.5 646 c 128,-1,16 + 103 714 103 714 103 813 c 0,17,18 + 103 943 103 943 204.5 1022.5 c 128,-1,19 + 306 1102 306 1102 471 1102 c 0,20,21 + 722 1102 722 1102 847 917 c 1,22,-1 + 719 829 l 1,23,24 + 627 968 627 968 472 968 c 0,25,26 + 381 968 381 968 333 925.5 c 128,-1,27 + 285 883 285 883 285 809 c 0,28,29 + 285 718 285 718 363 675.5 c 128,-1,30 + 441 633 441 633 643 633 c 1,31,-1 + 643 498 l 1,32,33 + 490 498 490 498 414 478.5 c 128,-1,34 + 338 459 338 459 297.5 416 c 128,-1,35 + 257 373 257 373 257 298 c 0,36,37 + 257 211 257 211 310.5 162.5 c 128,-1,38 + 364 114 364 114 456 114 c 0,0,1 +EndSplineSet +EndChar + +StartChar: zeta +Encoding: 950 950 872 +Width: 903 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 28 + 34 + 34 + 16 + 9 + 31 + 0 + 26 + 9 + 26 + 38 + 37 + 34 + 31 + 32 + 31 + 80 + 89 + 4 + 20 + 0 +PUSHW_1 + -16 +NPUSHB + 31 + 19 + 22 + 72 + 135 + 0 + 151 + 0 + 2 + 218 + 26 + 1 + 169 + 26 + 185 + 26 + 201 + 26 + 3 + 136 + 26 + 152 + 26 + 2 + 20 + 26 + 0 + 3 + 12 + 32 + 0 + 12 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +CALL +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +277 379 m 0,0,1 + 277 312 277 312 301 270.5 c 128,-1,2 + 325 229 325 229 371.5 202.5 c 128,-1,3 + 418 176 418 176 551 141 c 0,4,5 + 605 126 605 126 660.5 109 c 128,-1,6 + 716 92 716 92 761 63.5 c 128,-1,7 + 806 35 806 35 835 -9 c 128,-1,8 + 864 -53 864 -53 864 -121 c 0,9,10 + 864 -165 864 -165 846 -219.5 c 128,-1,11 + 828 -274 828 -274 781 -353 c 1,12,-1 + 655 -297 l 1,13,14 + 678 -266 678 -266 694 -225 c 128,-1,15 + 710 -184 710 -184 710 -156 c 0,16,17 + 710 -120 710 -120 689 -96 c 128,-1,18 + 668 -72 668 -72 626.5 -54 c 128,-1,19 + 585 -36 585 -36 457 -6 c 0,20,21 + 342 21 342 21 296.5 40 c 128,-1,22 + 251 59 251 59 211.5 85.5 c 128,-1,23 + 172 112 172 112 144.5 149.5 c 128,-1,24 + 117 187 117 187 101.5 237.5 c 128,-1,25 + 86 288 86 288 86 354 c 0,26,27 + 86 744 86 744 659 1353 c 1,28,-1 + 659 1357 l 1,29,-1 + 532 1353 l 1,30,-1 + 187 1353 l 1,31,-1 + 187 1484 l 1,32,-1 + 829 1484 l 1,33,-1 + 829 1357 l 1,34,35 + 539 1030 539 1030 408 791.5 c 128,-1,36 + 277 553 277 553 277 379 c 0,0,1 +EndSplineSet +Kerns2: 896 -137 "'kern' Horizontal Kerning lookup 17 subtable" 894 -137 "'kern' Horizontal Kerning lookup 17 subtable" 891 -137 "'kern' Horizontal Kerning lookup 17 subtable" 888 -137 "'kern' Horizontal Kerning lookup 17 subtable" 886 -86 "'kern' Horizontal Kerning lookup 17 subtable" 885 -137 "'kern' Horizontal Kerning lookup 17 subtable" 882 -86 "'kern' Horizontal Kerning lookup 17 subtable" 881 -137 "'kern' Horizontal Kerning lookup 17 subtable" 879 -86 "'kern' Horizontal Kerning lookup 17 subtable" 876 -37 "'kern' Horizontal Kerning lookup 17 subtable" 875 -37 "'kern' Horizontal Kerning lookup 17 subtable" 874 -98 "'kern' Horizontal Kerning lookup 17 subtable" 873 -37 "'kern' Horizontal Kerning lookup 17 subtable" 870 -76 "'kern' Horizontal Kerning lookup 17 subtable" 869 -86 "'kern' Horizontal Kerning lookup 17 subtable" 867 -137 "'kern' Horizontal Kerning lookup 17 subtable" 864 -37 "'kern' Horizontal Kerning lookup 17 subtable" 862 -137 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: eta +Encoding: 951 951 873 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 0 + 25 + 17 + 9 + 9 + 10 + 25 + 10 + 27 + 26 + 128 + 27 + 1 + 143 + 27 + 1 + 0 + 27 + 1 + 16 + 3 + 27 +PUSHW_1 + -64 +NPUSHB + 18 + 19 + 23 + 72 + 25 + 27 + 17 + 21 + 9 + 21 + 5 + 80 + 89 + 21 + 16 + 13 + 15 + 9 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +825 -424 m 1,0,-1 + 825 686 l 2,1,2 + 825 793 825 793 804 852 c 128,-1,3 + 783 911 783 911 737 937 c 128,-1,4 + 691 963 691 963 602 963 c 0,5,6 + 472 963 472 963 397 874 c 128,-1,7 + 322 785 322 785 322 627 c 2,8,-1 + 322 0 l 1,9,-1 + 142 0 l 1,10,-1 + 142 851 l 2,11,12 + 142 974 142 974 106 1082 c 1,13,-1 + 276 1082 l 1,14,15 + 293 1043 293 1043 303.5 990.5 c 128,-1,16 + 314 938 314 938 314 897 c 1,17,-1 + 317 897 l 1,18,19 + 379 1009 379 1009 460.5 1055.5 c 128,-1,20 + 542 1102 542 1102 663 1102 c 0,21,22 + 841 1102 841 1102 923.5 1013.5 c 128,-1,23 + 1006 925 1006 925 1006 721 c 2,24,-1 + 1006 -424 l 1,25,-1 + 825 -424 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: theta +Encoding: 952 952 874 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 21 + 15 + 15 + 6 + 14 + 22 + 22 + 0 + 6 + 0 + 25 + 26 + 96 + 26 + 1 + 26 +PUSHW_1 + -64 +NPUSHB + 28 + 30 + 35 + 72 + 15 + 26 + 1 + 22 + 3 + 21 + 15 + 80 + 89 + 21 + 21 + 3 + 8 + 8 + 18 + 80 + 89 + 8 + 0 + 3 + 11 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +CALL +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1033 733 m 256,0,1 + 1033 352 1033 352 913 166 c 128,-1,2 + 793 -20 793 -20 565 -20 c 0,3,4 + 341 -20 341 -20 223.5 170.5 c 128,-1,5 + 106 361 106 361 106 733 c 0,6,7 + 106 1483 106 1483 571 1483 c 0,8,9 + 810 1483 810 1483 921.5 1298.5 c 128,-1,10 + 1033 1114 1033 1114 1033 733 c 256,0,1 +563 113 m 0,11,12 + 706 113 706 113 772 249.5 c 128,-1,13 + 838 386 838 386 843 673 c 1,14,-1 + 296 673 l 1,15,16 + 301 397 301 397 365.5 255 c 128,-1,17 + 430 113 430 113 563 113 c 0,11,12 +574 1354 m 0,18,19 + 432 1354 432 1354 367 1220.5 c 128,-1,20 + 302 1087 302 1087 296 804 c 1,21,-1 + 843 804 l 1,22,23 + 838 1087 838 1087 775.5 1220.5 c 128,-1,24 + 713 1354 713 1354 574 1354 c 0,18,19 +EndSplineSet +Kerns2: 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: iota +Encoding: 953 953 875 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 131 + 9 + 6 + 6 + 3 + 3 + 10 + 11 + 4 + 15 + 0 + 21 + 223 + 11 + 1 + 144 + 11 + 1 + 79 + 11 + 1 + 63 + 11 + 1 + 0 + 11 + 1 + 106 + 239 + 11 + 1 + 223 + 11 + 1 + 159 + 11 + 1 + 112 + 11 + 1 + 96 + 11 + 1 + 15 + 11 + 1 + 255 + 11 + 1 + 239 + 11 + 1 + 208 + 11 + 1 + 128 + 11 + 1 + 63 + 11 + 1 + 96 + 11 + 1 + 31 + 11 + 1 + 15 + 11 + 1 + 55 + 255 + 11 + 1 + 207 + 11 + 1 + 176 + 11 + 1 + 160 + 11 + 1 + 144 + 11 + 1 + 63 + 11 + 1 + 47 + 11 + 1 + 31 + 11 + 1 + 208 + 11 + 1 + 192 + 11 + 1 + 176 + 11 + 1 + 111 + 11 + 1 + 31 + 11 + 1 + 15 + 11 + 1 + 224 + 11 + 1 + 160 + 11 + 1 + 144 + 11 + 1 + 63 + 11 + 1 + 31 + 11 + 1 + 0 + 11 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +199 0 m 1,0,1 + 169 32 169 32 153 99.5 c 128,-1,2 + 137 167 137 167 137 236 c 2,3,-1 + 137 1082 l 1,4,-1 + 317 1082 l 1,5,-1 + 317 227 l 2,6,7 + 317 162 317 162 338.5 101 c 128,-1,8 + 360 40 360 40 397 0 c 1,9,-1 + 199 0 l 1,0,1 +EndSplineSet +EndChar + +StartChar: kappa +Encoding: 954 954 876 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 0 + 13 + 7 + 3 + 3 + 4 + 8 + 9 + 9 + 10 + 4 + 3 + 12 + 11 + 13 + 128 + 13 + 192 + 13 + 224 + 13 + 3 + 63 + 13 + 1 + 2 + 1 + 7 + 10 + 4 + 8 + 8 + 5 + 15 + 4 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +SRP1 +SLOOP +IP +SVTCA[x-axis] +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +816 0 m 1,0,-1 + 450 494 l 1,1,-1 + 318 385 l 1,2,-1 + 318 0 l 1,3,-1 + 138 0 l 1,4,-1 + 138 1082 l 1,5,-1 + 318 1082 l 1,6,-1 + 318 557 l 1,7,-1 + 793 1082 l 1,8,-1 + 1004 1082 l 1,9,-1 + 565 617 l 1,10,-1 + 1027 0 l 1,11,-1 + 816 0 l 1,0,-1 +EndSplineSet +Kerns2: 896 -25 "'kern' Horizontal Kerning lookup 17 subtable" 894 -25 "'kern' Horizontal Kerning lookup 17 subtable" 891 -25 "'kern' Horizontal Kerning lookup 17 subtable" 888 -25 "'kern' Horizontal Kerning lookup 17 subtable" 885 -25 "'kern' Horizontal Kerning lookup 17 subtable" 884 -25 "'kern' Horizontal Kerning lookup 17 subtable" 881 -25 "'kern' Horizontal Kerning lookup 17 subtable" 880 -25 "'kern' Horizontal Kerning lookup 17 subtable" 874 -25 "'kern' Horizontal Kerning lookup 17 subtable" 872 -25 "'kern' Horizontal Kerning lookup 17 subtable" 870 -25 "'kern' Horizontal Kerning lookup 17 subtable" 867 -25 "'kern' Horizontal Kerning lookup 17 subtable" 862 -25 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: lambda +Encoding: 955 955 877 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 15 + 14 + 18 + 13 + 0 + 21 + 22 + 22 + 0 + 8 + 14 + 4 + 24 + 23 + 0 + 24 + 48 + 24 + 96 + 24 + 160 + 24 + 176 + 24 + 5 + 9 + 3 + 18 + 0 + 10 + 22 + 14 + 21 + 10 + 5 + 80 + 89 + 10 + 0 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +463 965 m 1,0,1 + 395 1153 395 1153 373.5 1203 c 128,-1,2 + 352 1253 352 1253 330.5 1282.5 c 128,-1,3 + 309 1312 309 1312 282 1326 c 128,-1,4 + 255 1340 255 1340 216 1340 c 0,5,6 + 187 1340 187 1340 167 1330 c 1,7,-1 + 132 1460 l 1,8,9 + 199 1484 199 1484 261 1484 c 0,10,11 + 368 1484 368 1484 436 1411 c 128,-1,12 + 504 1338 504 1338 579 1141 c 2,13,-1 + 1006 0 l 1,14,-1 + 816 0 l 1,15,-1 + 609 577 l 2,16,17 + 568 689 568 689 544 791 c 1,18,19 + 529 745 529 745 507.5 691.5 c 128,-1,20 + 486 638 486 638 201 0 c 1,21,-1 + 14 0 l 1,22,-1 + 463 965 l 1,0,1 +EndSplineSet +Kerns2: 896 -31 "'kern' Horizontal Kerning lookup 17 subtable" 895 -49 "'kern' Horizontal Kerning lookup 17 subtable" 894 -31 "'kern' Horizontal Kerning lookup 17 subtable" 891 -31 "'kern' Horizontal Kerning lookup 17 subtable" 888 -37 "'kern' Horizontal Kerning lookup 17 subtable" 887 -49 "'kern' Horizontal Kerning lookup 17 subtable" 885 -31 "'kern' Horizontal Kerning lookup 17 subtable" 884 -47 "'kern' Horizontal Kerning lookup 17 subtable" 881 -31 "'kern' Horizontal Kerning lookup 17 subtable" 880 -31 "'kern' Horizontal Kerning lookup 17 subtable" 870 -31 "'kern' Horizontal Kerning lookup 17 subtable" 867 -31 "'kern' Horizontal Kerning lookup 17 subtable" 862 -31 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: mu +Encoding: 956 956 878 +Width: 1180 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 3 + 25 + 25 + 26 + 18 + 14 + 14 + 15 + 26 + 15 + 31 + 30 + 0 + 31 + 32 + 31 + 2 + 15 + 3 + 31 +PUSHW_1 + -64 +NPUSHB + 18 + 20 + 23 + 72 + 3 + 10 + 16 + 29 + 21 + 25 + 16 + 15 + 14 + 7 + 21 + 80 + 89 + 7 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +IP +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +862 0 m 1,0,1 + 860 12 860 12 856.5 81.5 c 128,-1,2 + 853 151 853 151 852 190 c 1,3,-1 + 848 190 l 1,4,5 + 788 72 788 72 721.5 26 c 128,-1,6 + 655 -20 655 -20 554 -20 c 0,7,8 + 472 -20 472 -20 412 12 c 128,-1,9 + 352 44 352 44 320 102 c 1,10,-1 + 316 102 l 1,11,12 + 320 59 320 59 320 -20 c 2,13,-1 + 320 -393 l 1,14,-1 + 138 -393 l 1,15,-1 + 138 1082 l 1,16,-1 + 320 1082 l 1,17,-1 + 320 438 l 2,18,19 + 320 277 320 277 383 199 c 128,-1,20 + 446 121 446 121 576 121 c 0,21,22 + 700 121 700 121 771.5 212 c 128,-1,23 + 843 303 843 303 843 465 c 2,24,-1 + 843 1082 l 1,25,-1 + 1024 1082 l 1,26,-1 + 1024 233 l 2,27,28 + 1024 42 1024 42 1030 0 c 1,29,-1 + 862 0 l 1,0,1 +EndSplineSet +EndChar + +StartChar: nu +Encoding: 957 957 879 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 216 + 9 + 0 + 4 + 3 + 7 + 6 + 5 + 5 + 7 + 0 + 3 + 15 + 14 + 155 + 15 + 1 + 132 + 15 + 1 + 96 + 15 + 1 + 68 + 15 + 84 + 15 + 2 + 32 + 15 + 1 + 4 + 15 + 20 + 15 + 2 + 224 + 15 + 1 + 196 + 15 + 212 + 15 + 2 + 160 + 15 + 1 + 132 + 15 + 148 + 15 + 2 + 96 + 15 + 1 + 4 + 15 + 20 + 15 + 68 + 15 + 84 + 15 + 4 + 103 + 4 + 15 + 20 + 15 + 68 + 15 + 84 + 15 + 132 + 15 + 148 + 15 + 196 + 15 + 212 + 15 + 8 + 219 + 15 + 1 + 196 + 15 + 1 + 155 + 15 + 1 + 132 + 15 + 1 + 91 + 15 + 1 + 68 + 15 + 1 + 27 + 15 + 1 + 4 + 15 + 1 + 219 + 15 + 1 + 196 + 15 + 1 + 11 + 15 + 27 + 15 + 75 + 15 + 91 + 15 + 139 + 15 + 155 + 15 + 6 + 55 + 75 + 15 + 91 + 15 + 139 + 15 + 155 + 15 + 203 + 15 + 219 + 15 + 6 + 63 + 15 + 1 + 32 + 15 + 1 + 4 + 15 + 20 + 15 + 2 + 224 + 15 + 1 + 196 + 15 + 212 + 15 + 2 + 160 + 15 + 1 + 132 + 15 + 148 + 15 + 2 + 96 + 15 + 1 + 68 + 15 + 84 + 15 + 2 + 32 + 15 + 1 + 4 + 15 + 20 + 15 + 2 + 196 + 15 + 212 + 15 + 2 + 160 + 15 + 1 + 132 + 15 + 148 + 15 + 2 + 96 + 15 + 1 + 2 + 80 + 15 + 1 + 47 + 15 + 1 + 0 + 15 + 16 + 15 + 2 + 7 + 11 + 5 + 15 + 7 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SVTCA[x-axis] +SDB +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +946 846 m 0,0,1 + 946 672 946 672 842.5 445.5 c 128,-1,2 + 739 219 739 219 560 0 c 1,3,-1 + 390 0 l 1,4,-1 + 0 1082 l 1,5,-1 + 189 1082 l 1,6,-1 + 500 154 l 1,7,8 + 766 501 766 501 766 837 c 0,9,10 + 766 972 766 972 717 1082 c 1,11,-1 + 894 1082 l 1,12,13 + 946 985 946 985 946 846 c 0,0,1 +EndSplineSet +EndChar + +StartChar: xi +Encoding: 958 958 880 +Width: 917 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 27 + 43 + 36 + 19 + 7 + 13 + 7 + 3 + 3 + 0 + 24 + 11 + 16 + 16 + 36 + 0 + 36 + 53 + 54 + 3 + 23 + 24 + 23 + 24 + 80 + 89 + 19 + 7 + 14 + 27 +PUSHW_1 + -16 +NPUSHB + 37 + 19 + 22 + 72 + 119 + 27 + 1 + 0 + 16 + 19 + 22 + 72 + 120 + 0 + 1 + 36 + 0 + 27 + 3 + 39 + 0 + 23 + 1 + 11 + 3 + 23 + 23 + 14 + 39 + 16 + 11 + 13 + 14 + 13 + 80 + 89 + 14 + 0 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP2 +SLOOP +IP +DELTAP1 +CALL +DELTAP1 +CALL +SRP2 +IP +IP +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +86 354 m 0,0,1 + 86 533 86 533 206.5 655 c 128,-1,2 + 327 777 327 777 547 810 c 1,3,-1 + 547 812 l 1,4,5 + 397 823 397 823 310 896 c 128,-1,6 + 223 969 223 969 223 1082 c 0,7,8 + 223 1185 223 1185 295 1255.5 c 128,-1,9 + 367 1326 367 1326 496 1353 c 1,10,-1 + 496 1361 l 1,11,-1 + 242 1353 l 1,12,-1 + 168 1353 l 1,13,-1 + 168 1484 l 1,14,-1 + 802 1484 l 1,15,-1 + 802 1359 l 1,16,17 + 595 1335 595 1335 498 1271 c 128,-1,18 + 401 1207 401 1207 401 1100 c 0,19,20 + 401 1031 401 1031 439.5 986 c 128,-1,21 + 478 941 478 941 549.5 915 c 128,-1,22 + 621 889 621 889 759 877 c 1,23,-1 + 759 746 l 1,24,25 + 522 715 522 715 399.5 620.5 c 128,-1,26 + 277 526 277 526 277 379 c 0,27,28 + 277 312 277 312 301 270.5 c 128,-1,29 + 325 229 325 229 371.5 202.5 c 128,-1,30 + 418 176 418 176 551 141 c 0,31,32 + 605 126 605 126 662 109 c 128,-1,33 + 719 92 719 92 766 63.5 c 128,-1,34 + 813 35 813 35 843.5 -9 c 128,-1,35 + 874 -53 874 -53 874 -121 c 0,36,37 + 874 -165 874 -165 856 -219.5 c 128,-1,38 + 838 -274 838 -274 791 -353 c 1,39,-1 + 665 -297 l 1,40,41 + 688 -266 688 -266 704 -225 c 128,-1,42 + 720 -184 720 -184 720 -156 c 0,43,44 + 720 -120 720 -120 697.5 -96 c 128,-1,45 + 675 -72 675 -72 631 -54 c 128,-1,46 + 587 -36 587 -36 457 -6 c 0,47,48 + 342 21 342 21 296.5 40 c 128,-1,49 + 251 59 251 59 211.5 85.5 c 128,-1,50 + 172 112 172 112 144.5 149.5 c 128,-1,51 + 117 187 117 187 101.5 237.5 c 128,-1,52 + 86 288 86 288 86 354 c 0,0,1 +EndSplineSet +Kerns2: 894 -55 "'kern' Horizontal Kerning lookup 17 subtable" 888 -55 "'kern' Horizontal Kerning lookup 17 subtable" 885 -55 "'kern' Horizontal Kerning lookup 17 subtable" 884 -55 "'kern' Horizontal Kerning lookup 17 subtable" 881 -55 "'kern' Horizontal Kerning lookup 17 subtable" 880 -55 "'kern' Horizontal Kerning lookup 17 subtable" 872 -55 "'kern' Horizontal Kerning lookup 17 subtable" 870 -55 "'kern' Horizontal Kerning lookup 17 subtable" 867 -55 "'kern' Horizontal Kerning lookup 17 subtable" 862 -55 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: omicron +Encoding: 959 959 881 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: pi +Encoding: 960 960 882 +Width: 1413 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 9 + 10 + 10 + 17 + 5 + 14 + 25 + 3 + 29 + 22 + 22 + 3 + 14 + 3 + 32 + 33 + 15 + 33 + 47 + 33 + 2 + 9 + 3 + 24 + 5 + 14 + 21 + 14 + 80 + 89 + 21 + 15 + 10 + 21 + 0 + 28 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1126 -20 m 0,0,1 + 1011 -20 1011 -20 960 36.5 c 128,-1,2 + 909 93 909 93 909 227 c 2,3,-1 + 909 951 l 1,4,-1 + 507 951 l 1,5,-1 + 507 879 l 2,6,7 + 507 650 507 650 481 415.5 c 128,-1,8 + 455 181 455 181 409 0 c 1,9,-1 + 221 0 l 1,10,11 + 273 206 273 206 302 437.5 c 128,-1,12 + 331 669 331 669 331 871 c 2,13,-1 + 331 951 l 1,14,15 + 265 951 265 951 185 940 c 128,-1,16 + 105 929 105 929 79 914 c 1,17,-1 + 79 1053 l 1,18,19 + 103 1065 103 1065 156.5 1073.5 c 128,-1,20 + 210 1082 210 1082 262 1082 c 2,21,-1 + 1323 1082 l 1,22,-1 + 1323 951 l 1,23,-1 + 1089 951 l 1,24,-1 + 1089 266 l 2,25,26 + 1089 190 1089 190 1110 155.5 c 128,-1,27 + 1131 121 1131 121 1183 121 c 1,28,-1 + 1269 129 l 1,29,-1 + 1269 0 l 1,30,31 + 1192 -20 1192 -20 1126 -20 c 0,0,1 +EndSplineSet +Kerns2: 896 -29 "'kern' Horizontal Kerning lookup 17 subtable" 891 -29 "'kern' Horizontal Kerning lookup 17 subtable" 888 -29 "'kern' Horizontal Kerning lookup 17 subtable" 885 -29 "'kern' Horizontal Kerning lookup 17 subtable" 884 -29 "'kern' Horizontal Kerning lookup 17 subtable" 881 -29 "'kern' Horizontal Kerning lookup 17 subtable" 872 -29 "'kern' Horizontal Kerning lookup 17 subtable" 867 -29 "'kern' Horizontal Kerning lookup 17 subtable" 862 -29 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: rho +Encoding: 961 961 883 +Width: 1165 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 19 + 0 + 25 + 10 + 10 + 11 + 0 + 11 + 32 + 31 + 208 + 32 + 1 + 32 +PUSHW_1 + -64 +NPUSHB + 30 + 30 + 35 + 72 + 127 + 32 + 1 + 0 + 32 + 32 + 32 + 2 + 15 + 3 + 6 + 15 + 3 + 15 + 22 + 80 + 89 + 15 + 16 + 10 + 27 + 3 + 28 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1083 516 m 0,0,1 + 1083 278 1083 278 961.5 129 c 128,-1,2 + 840 -20 840 -20 646 -20 c 0,3,4 + 536 -20 536 -20 456 14 c 128,-1,5 + 376 48 376 48 312 123 c 1,6,-1 + 308 123 l 1,7,8 + 312 63 312 63 312 0 c 2,9,-1 + 312 -425 l 1,10,-1 + 132 -425 l 1,11,-1 + 132 581 l 2,12,13 + 132 826 132 826 253 964.5 c 128,-1,14 + 374 1103 374 1103 587 1103 c 0,15,16 + 729 1103 729 1103 843 1030.5 c 128,-1,17 + 957 958 957 958 1020 823.5 c 128,-1,18 + 1083 689 1083 689 1083 516 c 0,0,1 +890 524 m 0,19,20 + 890 733 890 733 804.5 851.5 c 128,-1,21 + 719 970 719 970 575 970 c 0,22,23 + 312 970 312 970 312 577 c 2,24,-1 + 312 260 l 1,25,26 + 367 191 367 191 451 152 c 128,-1,27 + 535 113 535 113 623 113 c 0,28,29 + 750 113 750 113 820 219 c 128,-1,30 + 890 325 890 325 890 524 c 0,19,20 +EndSplineSet +Kerns2: 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: sigma1 +Encoding: 962 962 884 +Width: 987 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 32 + 17 + 10 + 4 + 24 + 10 + 24 + 36 + 35 + 95 + 36 + 1 + 176 + 36 + 1 + 3 + 36 +PUSHW_1 + -64 +NPUSHB + 23 + 30 + 35 + 72 + 7 + 20 + 24 + 16 + 19 + 22 + 72 + 15 + 24 + 31 + 24 + 2 + 0 + 4 + 16 + 4 + 2 + 17 + 6 + 4 +PUSHW_1 + -16 +NPUSHB + 17 + 19 + 22 + 72 + 20 + 4 + 24 + 3 + 13 + 33 + 29 + 29 + 0 + 80 + 89 + 29 + 16 + 13 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +SLOOP +IP +CALL +SDS +SDB +DELTAP1 +DELTAP1 +CALL +SRP1 +SHP[rp1] +SVTCA[x-axis] +CALL +SDS +DELTAP1 +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +582 961 m 0,0,1 + 500 961 500 961 433.5 900 c 128,-1,2 + 367 839 367 839 322 716 c 128,-1,3 + 277 593 277 593 277 472 c 0,4,5 + 277 343 277 343 341.5 277.5 c 128,-1,6 + 406 212 406 212 601 149 c 2,7,-1 + 711 114 l 2,8,9 + 924 44 924 44 924 -121 c 0,10,11 + 924 -165 924 -165 906 -219.5 c 128,-1,12 + 888 -274 888 -274 841 -353 c 1,13,-1 + 715 -297 l 1,14,15 + 738 -266 738 -266 754 -225 c 128,-1,16 + 770 -184 770 -184 770 -156 c 0,17,18 + 770 -108 770 -108 720 -75 c 128,-1,19 + 670 -42 670 -42 507 2 c 0,20,21 + 329 50 329 50 246 106.5 c 128,-1,22 + 163 163 163 163 124.5 251.5 c 128,-1,23 + 86 340 86 340 86 475 c 0,24,25 + 86 586 86 586 125.5 710.5 c 128,-1,26 + 165 835 165 835 229.5 921.5 c 128,-1,27 + 294 1008 294 1008 382.5 1055 c 128,-1,28 + 471 1102 471 1102 582 1102 c 0,29,30 + 683 1102 683 1102 758 1075 c 128,-1,31 + 833 1048 833 1048 898 980 c 1,32,-1 + 782 861 l 1,33,34 + 687 961 687 961 582 961 c 0,0,1 +EndSplineSet +EndChar + +StartChar: sigma +Encoding: 963 963 885 +Width: 1264 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 23 + 6 + 17 + 11 + 0 + 6 + 0 + 28 + 29 + 13 + 20 + 9 + 20 + 80 + 89 + 9 + 15 + 3 + 25 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1072 491 m 0,0,1 + 1072 250 1072 250 941.5 115 c 128,-1,2 + 811 -20 811 -20 582 -20 c 0,3,4 + 342 -20 342 -20 214 120.5 c 128,-1,5 + 86 261 86 261 86 524 c 0,6,7 + 86 789 86 789 236 935.5 c 128,-1,8 + 386 1082 386 1082 664 1082 c 2,9,-1 + 1233 1082 l 1,10,-1 + 1233 951 l 1,11,-1 + 1068 951 l 1,12,-1 + 920 957 l 1,13,-1 + 920 953 l 1,14,15 + 1001 832 1001 832 1036.5 721 c 128,-1,16 + 1072 610 1072 610 1072 491 c 0,0,1 +883 488 m 0,17,18 + 883 743 883 743 759 951 c 1,19,-1 + 670 951 l 2,20,21 + 486 951 486 951 381 839 c 128,-1,22 + 276 727 276 727 276 526 c 0,23,24 + 276 113 276 113 574 113 c 0,25,26 + 725 113 725 113 804 209.5 c 128,-1,27 + 883 306 883 306 883 488 c 0,17,18 +EndSplineSet +EndChar + +StartChar: tau +Encoding: 964 964 886 +Width: 809 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 16 + 9 + 3 + 11 + 11 + 21 + 21 + 23 + 24 + 63 + 24 + 1 + 192 + 24 + 1 + 143 + 24 + 1 + 0 + 24 + 1 + 10 + 3 + 24 +PUSHW_1 + -64 +NPUSHB + 17 + 14 + 17 + 72 + 18 + 14 + 80 + 89 + 18 + 22 + 10 + 22 + 7 + 22 + 80 + 89 + 7 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +281 951 m 2,0,1 + 215 951 215 951 135 940 c 128,-1,2 + 55 929 55 929 29 914 c 1,3,-1 + 29 1053 l 1,4,5 + 53 1065 53 1065 106.5 1073.5 c 128,-1,6 + 160 1082 160 1082 212 1082 c 2,7,-1 + 792 1082 l 1,8,-1 + 792 951 l 1,9,-1 + 488 951 l 1,10,-1 + 488 266 l 2,11,12 + 488 190 488 190 509 155.5 c 128,-1,13 + 530 121 530 121 582 121 c 1,14,-1 + 668 129 l 1,15,-1 + 668 0 l 1,16,17 + 591 -20 591 -20 525 -20 c 0,18,19 + 410 -20 410 -20 359 36.5 c 128,-1,20 + 308 93 308 93 308 227 c 2,21,-1 + 308 951 l 1,22,-1 + 281 951 l 2,0,1 +EndSplineSet +Kerns2: 896 -29 "'kern' Horizontal Kerning lookup 17 subtable" 891 -29 "'kern' Horizontal Kerning lookup 17 subtable" 888 -29 "'kern' Horizontal Kerning lookup 17 subtable" 885 -29 "'kern' Horizontal Kerning lookup 17 subtable" 884 -29 "'kern' Horizontal Kerning lookup 17 subtable" 881 -29 "'kern' Horizontal Kerning lookup 17 subtable" 872 -29 "'kern' Horizontal Kerning lookup 17 subtable" 870 -29 "'kern' Horizontal Kerning lookup 17 subtable" 867 -29 "'kern' Horizontal Kerning lookup 17 subtable" 862 -29 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: upsilon +Encoding: 965 965 887 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 15 + 0 + 9 + 6 + 0 + 6 + 23 + 22 + 224 + 23 + 1 + 239 + 23 + 1 + 96 + 23 + 1 + 23 +PUSHW_1 + -64 +NPUSHB + 17 + 20 + 23 + 72 + 15 + 23 + 1 + 10 + 3 + 18 + 7 + 15 + 3 + 12 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +CALL +DELTAP1 +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1022 571 m 0,0,1 + 1022 278 1022 278 905 129 c 128,-1,2 + 788 -20 788 -20 557 -20 c 0,3,4 + 334 -20 334 -20 233.5 86 c 128,-1,5 + 133 192 133 192 133 419 c 2,6,-1 + 133 1082 l 1,7,-1 + 314 1082 l 1,8,-1 + 314 413 l 2,9,10 + 314 267 314 267 372.5 193 c 128,-1,11 + 431 119 431 119 565 119 c 0,12,13 + 712 119 712 119 774.5 222.5 c 128,-1,14 + 837 326 837 326 837 567 c 0,15,16 + 837 695 837 695 802 846 c 128,-1,17 + 767 997 767 997 723 1082 c 1,18,-1 + 911 1082 l 1,19,20 + 964 964 964 964 993 826 c 128,-1,21 + 1022 688 1022 688 1022 571 c 0,0,1 +EndSplineSet +EndChar + +StartChar: phi +Encoding: 966 966 888 +Width: 1328 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 13 + 16 + 16 + 9 + 32 + 4 + 4 + 19 + 5 + 26 + 0 + 0 + 5 + 9 + 3 + 35 + 36 + 0 + 36 + 1 + 29 + 3 + 12 + 13 + 80 + 89 + 12 + 12 + 23 + 23 + 29 + 80 + 89 + 23 + 16 + 32 + 19 + 6 + 19 + 80 + 89 + 3 + 6 + 22 + 4 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1242 565 m 0,0,1 + 1242 293 1242 293 1115.5 144.5 c 128,-1,2 + 989 -4 989 -4 742 -18 c 1,3,-1 + 742 -425 l 1,4,-1 + 572 -425 l 1,5,-1 + 572 -18 l 1,6,7 + 330 -7 330 -7 207.5 136 c 128,-1,8 + 85 279 85 279 85 545 c 0,9,10 + 85 776 85 776 196.5 925 c 128,-1,11 + 308 1074 308 1074 505 1106 c 1,12,-1 + 526 970 l 1,13,14 + 402 943 402 943 338 834 c 128,-1,15 + 274 725 274 725 274 541 c 0,16,17 + 274 328 274 328 347.5 227.5 c 128,-1,18 + 421 127 421 127 572 119 c 1,19,-1 + 572 699 l 2,20,21 + 572 892 572 892 649 998 c 128,-1,22 + 726 1104 726 1104 884 1104 c 0,23,24 + 1051 1104 1051 1104 1146.5 958 c 128,-1,25 + 1242 812 1242 812 1242 565 c 0,0,1 +1053 567 m 0,26,27 + 1053 760 1053 760 1009.5 865.5 c 128,-1,28 + 966 971 966 971 886 971 c 0,29,30 + 742 971 742 971 742 702 c 2,31,-1 + 742 119 l 1,32,33 + 904 126 904 126 978.5 235 c 128,-1,34 + 1053 344 1053 344 1053 567 c 0,26,27 +EndSplineSet +Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: chi +Encoding: 967 967 889 +Width: 1075 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 17 + 18 + 18 + 21 + 19 + 16 + 0 + 3 + 4 + 20 + 10 + 1 + 2 + 20 + 2 + 23 + 22 + 36 + 23 + 1 + 11 + 23 + 1 + 9 + 16 +PUSHW_1 + -48 +NPUSHB + 40 + 14 + 17 + 72 + 22 + 16 + 1 + 5 + 16 + 1 + 12 + 27 + 0 + 1 + 13 + 0 + 1 + 16 + 2 + 0 + 32 + 12 + 15 + 72 + 0 + 19 + 3 + 16 + 4 + 1 + 17 + 15 + 12 + 7 + 80 + 89 + 12 + 16 + 21 + 1 + 27 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +SLOOP +IP +CALL +SDS +SDB +DELTAP1 +DELTAP1 +SDB +DELTAP1 +DELTAP1 +CALL +SVTCA[x-axis] +SDB +DELTAP1 +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +542 239 m 1,0,-1 + 209 -424 l 1,1,-1 + 21 -424 l 1,2,-1 + 461 401 l 1,3,-1 + 291 744 l 2,4,5 + 218 889 218 889 184.5 926 c 128,-1,6 + 151 963 151 963 113 963 c 0,7,8 + 86 963 86 963 63 953 c 1,9,-1 + 29 1084 l 1,10,11 + 82 1104 82 1104 147 1104 c 0,12,13 + 233 1104 233 1104 286.5 1054 c 128,-1,14 + 340 1004 340 1004 420 838 c 2,15,-1 + 562 543 l 1,16,-1 + 826 1082 l 1,17,-1 + 1013 1082 l 1,18,-1 + 645 385 l 1,19,-1 + 1051 -424 l 1,20,-1 + 861 -424 l 1,21,-1 + 542 239 l 1,0,-1 +EndSplineSet +Kerns2: 896 -55 "'kern' Horizontal Kerning lookup 17 subtable" 894 -55 "'kern' Horizontal Kerning lookup 17 subtable" 891 -55 "'kern' Horizontal Kerning lookup 17 subtable" 888 -55 "'kern' Horizontal Kerning lookup 17 subtable" 885 -55 "'kern' Horizontal Kerning lookup 17 subtable" 884 -55 "'kern' Horizontal Kerning lookup 17 subtable" 881 -55 "'kern' Horizontal Kerning lookup 17 subtable" 872 -55 "'kern' Horizontal Kerning lookup 17 subtable" 870 -55 "'kern' Horizontal Kerning lookup 17 subtable" 867 -55 "'kern' Horizontal Kerning lookup 17 subtable" 862 -55 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: psi +Encoding: 968 968 890 +Width: 1460 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 58 + 18 + 15 + 0 + 10 + 10 + 21 + 11 + 3 + 6 + 6 + 11 + 15 + 3 + 24 + 25 + 48 + 25 + 96 + 25 + 144 + 25 + 3 + 31 + 25 + 1 + 208 + 25 + 1 + 175 + 25 + 1 + 0 + 25 + 48 + 25 + 64 + 25 + 112 + 25 + 4 + 14 + 3 + 22 + 22 + 4 + 16 + 15 + 0 + 21 + 12 + 21 + 80 + 89 + 9 + 12 + 22 + 10 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +814 119 m 1,0,1 + 997 121 997 121 1069.5 191.5 c 128,-1,2 + 1142 262 1142 262 1142 436 c 2,3,-1 + 1142 1082 l 1,4,-1 + 1324 1082 l 1,5,-1 + 1324 438 l 2,6,7 + 1324 197 1324 197 1203.5 89.5 c 128,-1,8 + 1083 -18 1083 -18 814 -20 c 1,9,-1 + 814 -425 l 1,10,-1 + 644 -425 l 1,11,-1 + 644 -20 l 1,12,13 + 377 -18 377 -18 256 89 c 128,-1,14 + 135 196 135 196 135 438 c 2,15,-1 + 135 1082 l 1,16,-1 + 316 1082 l 1,17,-1 + 316 436 l 2,18,19 + 316 266 316 266 388 193.5 c 128,-1,20 + 460 121 460 121 644 119 c 1,21,-1 + 644 1340 l 1,22,-1 + 814 1340 l 1,23,-1 + 814 119 l 1,0,1 +EndSplineSet +EndChar + +StartChar: omega +Encoding: 969 969 891 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 31 + 9 + 34 + 6 + 34 + 27 + 20 + 0 + 0 + 40 + 6 + 14 + 14 + 40 + 27 + 3 + 43 + 44 + 0 + 44 + 1 + 48 + 44 + 1 + 240 + 44 + 1 + 44 +PUSHW_1 + -64 +NPUSHB + 40 + 30 + 35 + 72 + 175 + 44 + 223 + 44 + 2 + 0 + 44 + 32 + 44 + 64 + 44 + 3 + 9 + 3 + 21 + 41 + 41 + 24 + 10 + 3 + 37 + 24 + 37 + 80 + 89 + 17 + 24 + 22 + 31 + 9 + 10 + 9 + 80 + 89 + 30 + 10 + 16 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +883 449 m 2,0,1 + 883 292 883 292 940 205.5 c 128,-1,2 + 997 119 997 119 1099 119 c 0,3,4 + 1213 119 1213 119 1269.5 212 c 128,-1,5 + 1326 305 1326 305 1326 512 c 0,6,7 + 1326 697 1326 697 1260 816.5 c 128,-1,8 + 1194 936 1194 936 1072 964 c 1,9,-1 + 1095 1103 l 1,10,11 + 1225 1082 1225 1082 1319.5 1001.5 c 128,-1,12 + 1414 921 1414 921 1464.5 794.5 c 128,-1,13 + 1515 668 1515 668 1515 517 c 0,14,15 + 1515 261 1515 261 1411.5 120.5 c 128,-1,16 + 1308 -20 1308 -20 1118 -20 c 0,17,18 + 992 -20 992 -20 913.5 44.5 c 128,-1,19 + 835 109 835 109 801 247 c 1,20,-1 + 797 247 l 1,21,22 + 763 109 763 109 684.5 44.5 c 128,-1,23 + 606 -20 606 -20 480 -20 c 0,24,25 + 290 -20 290 -20 186.5 120.5 c 128,-1,26 + 83 261 83 261 83 517 c 0,27,28 + 83 751 83 751 196 911 c 128,-1,29 + 309 1071 309 1071 503 1103 c 1,30,-1 + 526 964 l 1,31,32 + 407 938 407 938 339.5 820.5 c 128,-1,33 + 272 703 272 703 272 512 c 0,34,35 + 272 306 272 306 327.5 212.5 c 128,-1,36 + 383 119 383 119 497 119 c 0,37,38 + 599 119 599 119 658 205.5 c 128,-1,39 + 717 292 717 292 717 449 c 2,40,-1 + 717 701 l 1,41,-1 + 883 701 l 1,42,-1 + 883 449 l 2,0,1 +EndSplineSet +Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: iotadieresis +Encoding: 970 970 892 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 10 + 10 + 17 + 38 + 2 + 1 + 14 +PUSHW_1 + -39 +PUSHB_5 + 14 + 12 + 3 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -96 0 2 +EndChar + +StartChar: upsilondieresis +Encoding: 971 971 893 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 22 + 22 + 17 + 38 + 2 + 1 + 26 +PUSHW_1 + -12 +PUSHB_5 + 26 + 24 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 242 0 2 +EndChar + +StartChar: omicrontonos +Encoding: 972 972 894 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 23 + 17 + 38 + 2 + 23 + 70 + 23 + 26 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 297 0 2 +Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: upsilontonos +Encoding: 973 973 895 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 22 + 17 + 38 + 1 + 22 + 17 + 22 + 25 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 252 0 2 +EndChar + +StartChar: omegatonos +Encoding: 974 974 896 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 43 + 17 + 38 + 1 + 43 + 55 + 43 + 46 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 511 0 2 +Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni03D0 +Encoding: 976 976 897 +Width: 1178 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 52 + 28 + 2 + 2 + 0 + 46 + 16 + 40 + 23 + 23 + 34 + 9 + 16 + 9 + 50 + 51 + 6 + 37 + 80 + 89 + 48 + 26 + 80 + 89 + 3 + 32 + 6 + 1 + 15 + 48 + 31 + 48 + 2 + 9 + 3 + 6 + 48 + 6 + 48 + 12 + 19 + 19 + 43 + 80 + 89 + 19 + 0 + 12 + 31 + 81 + 89 + 12 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +IP +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +315 1066 m 1,0,1 + 277 935 277 935 277 786 c 1,2,-1 + 282 670 l 1,3,4 + 324 745 324 745 418.5 791.5 c 128,-1,5 + 513 838 513 838 612 838 c 0,6,7 + 826 838 826 838 942.5 726.5 c 128,-1,8 + 1059 615 1059 615 1059 411 c 0,9,10 + 1059 206 1059 206 941.5 93 c 128,-1,11 + 824 -20 824 -20 610 -20 c 0,12,13 + 444 -20 444 -20 333.5 55 c 128,-1,14 + 223 130 223 130 169 288 c 128,-1,15 + 115 446 115 446 115 738 c 0,16,17 + 115 1117 115 1117 238 1300.5 c 128,-1,18 + 361 1484 361 1484 611 1484 c 0,19,20 + 705 1484 705 1484 781 1453.5 c 128,-1,21 + 857 1423 857 1423 901.5 1365 c 128,-1,22 + 946 1307 946 1307 946 1226 c 0,23,24 + 946 1112 946 1112 857.5 1045.5 c 128,-1,25 + 769 979 769 979 626 979 c 0,26,27 + 463 979 463 979 315 1066 c 1,0,1 +342 409 m 0,28,29 + 342 264 342 264 411.5 187 c 128,-1,30 + 481 110 481 110 610 110 c 256,31,32 + 739 110 739 110 808.5 187.5 c 128,-1,33 + 878 265 878 265 878 409 c 0,34,35 + 878 555 878 555 809 630 c 128,-1,36 + 740 705 740 705 612 705 c 0,37,38 + 482 705 482 705 412 628.5 c 128,-1,39 + 342 552 342 552 342 409 c 0,28,29 +779 1230 m 0,40,41 + 779 1284 779 1284 733 1314.5 c 128,-1,42 + 687 1345 687 1345 609 1345 c 256,43,44 + 531 1345 531 1345 466.5 1309 c 128,-1,45 + 402 1273 402 1273 361 1201 c 1,46,47 + 476 1122 476 1122 619 1122 c 0,48,49 + 779 1122 779 1122 779 1230 c 0,40,41 +EndSplineSet +EndChar + +StartChar: uni03D1 +Encoding: 977 977 898 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 44 + 42 + 42 + 32 + 1 + 21 + 11 + 49 + 36 + 25 + 7 + 16 + 7 + 36 + 11 + 1 + 5 + 53 + 52 + 18 + 13 + 80 + 89 + 1 + 32 + 44 + 32 + 80 + 89 + 42 + 44 + 25 + 18 + 44 + 18 + 44 + 5 + 39 + 39 + 47 + 81 + 89 + 39 + 0 + 5 + 28 + 80 + 89 + 5 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +IP +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1104 761 m 1,0,-1 + 1007 761 l 1,1,2 + 1007 539 1007 539 940.5 355.5 c 128,-1,3 + 874 172 874 172 757.5 76 c 128,-1,4 + 641 -20 641 -20 491 -20 c 0,5,6 + 188 -20 188 -20 188 248 c 0,7,8 + 188 297 188 297 212 390 c 256,9,10 + 236 483 236 483 236 518 c 0,11,12 + 236 578 236 578 178 578 c 0,13,14 + 129 578 129 578 33 529 c 1,15,-1 + 9 670 l 1,16,17 + 115 724 115 724 194 724 c 0,18,19 + 287 724 287 724 339 674.5 c 128,-1,20 + 391 625 391 625 391 537 c 0,21,22 + 391 487 391 487 367 394 c 0,23,24 + 342 301 342 301 342 251 c 0,25,26 + 342 185 342 185 383 148.5 c 128,-1,27 + 424 112 424 112 494 112 c 0,28,29 + 597 112 597 112 676 190.5 c 128,-1,30 + 755 269 755 269 802 426.5 c 128,-1,31 + 849 584 849 584 849 761 c 1,32,33 + 650 764 650 764 506.5 812.5 c 128,-1,34 + 363 861 363 861 294 947 c 128,-1,35 + 225 1033 225 1033 225 1151 c 0,36,37 + 225 1304 225 1304 327 1394 c 128,-1,38 + 429 1484 429 1484 599 1484 c 0,39,40 + 795 1484 795 1484 899 1336 c 128,-1,41 + 1003 1188 1003 1188 1007 900 c 1,42,-1 + 1104 900 l 1,43,-1 + 1104 761 l 1,0,-1 +849 899 m 1,44,45 + 849 1100 849 1100 783 1227 c 128,-1,46 + 717 1354 717 1354 599 1354 c 0,47,48 + 393 1354 393 1354 393 1153 c 0,49,50 + 393 1030 393 1030 511.5 964.5 c 128,-1,51 + 630 899 630 899 849 899 c 1,44,45 +EndSplineSet +EndChar + +StartChar: uni03D2 +Encoding: 978 978 899 +Width: 1582 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 16 + 15 + 12 + 13 + 3 + 13 + 15 + 3 + 21 + 22 + 10 + 17 + 13 + 15 + 3 + 13 + 18 + 0 + 7 + 95 + 89 + 0 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1293 1421 m 0,0,1 + 1353 1421 1353 1421 1419.5 1398.5 c 128,-1,2 + 1486 1376 1486 1376 1545 1325 c 1,3,-1 + 1461 1189 l 1,4,5 + 1435 1213 1435 1213 1388 1235.5 c 128,-1,6 + 1341 1258 1341 1258 1304 1258 c 0,7,8 + 1268 1258 1268 1258 1243.5 1243.5 c 128,-1,9 + 1219 1229 1219 1229 1187 1181 c 2,10,-1 + 789 584 l 1,11,-1 + 789 0 l 1,12,-1 + 599 0 l 1,13,-1 + 599 584 l 1,14,-1 + 57 1409 l 1,15,-1 + 271 1409 l 1,16,-1 + 699 738 l 1,17,-1 + 1039 1264 l 2,18,19 + 1094 1350 1094 1350 1154 1385.5 c 128,-1,20 + 1214 1421 1214 1421 1293 1421 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni03D3 +Encoding: 979 979 900 +Width: 1962 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 24 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 899 978 N 1 0 0 1 380 0 2 +Refer: 818 884 N 1 0 0 1 -221 0 2 +EndChar + +StartChar: uni03D4 +Encoding: 980 980 901 +Width: 1582 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 28 + 28 + 5 + 38 + 2 + 1 + 26 +PUSHW_1 + -100 +PUSHB_5 + 26 + 24 + 15 + 3 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 899 978 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 377 0 2 +EndChar + +StartChar: uni03D5 +Encoding: 981 981 902 +Width: 1147 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 16 + 12 + 20 + 9 + 15 + 15 + 26 + 6 + 0 + 23 + 4 + 4 + 0 + 12 + 3 + 31 + 30 + 14 + 20 + 80 + 89 + 14 + 21 + 9 + 19 + 80 + 89 + 9 + 15 + 7 + 0 + 6 + 27 + 80 + 89 + 6 + 15 + 1 + 26 + 80 + 89 + 1 + 21 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +486 -425 m 1,0,-1 + 486 -3 l 1,1,2 + 285 22 285 22 182.5 159.5 c 128,-1,3 + 80 297 80 297 80 542 c 0,4,5 + 80 1032 80 1032 486 1084 c 1,6,-1 + 486 1484 l 1,7,-1 + 650 1484 l 1,8,-1 + 650 1085 l 1,9,10 + 862 1065 862 1065 964.5 933 c 128,-1,11 + 1067 801 1067 801 1067 542 c 0,12,13 + 1067 43 1067 43 650 -3 c 1,14,-1 + 650 -425 l 1,15,-1 + 486 -425 l 1,0,-1 +884 542 m 0,16,17 + 884 731 884 731 828 830 c 128,-1,18 + 772 929 772 929 650 950 c 1,19,-1 + 650 132 l 1,20,21 + 772 156 772 156 828 257.5 c 128,-1,22 + 884 359 884 359 884 542 c 0,16,17 +263 542 m 0,23,24 + 263 367 263 367 316.5 266 c 128,-1,25 + 370 165 370 165 486 134 c 1,26,-1 + 486 945 l 1,27,28 + 369 916 369 916 316 815.5 c 128,-1,29 + 263 715 263 715 263 542 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni03D6 +Encoding: 982 982 903 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 47 + 3 + 27 + 27 + 2 + 6 + 43 + 12 + 40 + 22 + 34 + 34 + 23 + 19 + 19 + 40 + 6 + 3 + 47 + 46 + 13 + 16 + 0 + 16 + 37 + 80 + 89 + 16 + 22 + 41 + 41 + 3 + 24 + 9 + 24 + 80 + 89 + 9 + 22 + 3 + 31 + 23 + 0 + 23 + 80 + 89 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +82 1082 m 1,0,-1 + 1517 1082 l 1,1,-1 + 1517 943 l 1,2,-1 + 1409 943 l 1,3,4 + 1457 850 1457 850 1485.5 734 c 128,-1,5 + 1514 618 1514 618 1514 517 c 0,6,7 + 1514 261 1514 261 1410.5 120.5 c 128,-1,8 + 1307 -20 1307 -20 1117 -20 c 0,9,10 + 991 -20 991 -20 912.5 44.5 c 128,-1,11 + 834 109 834 109 800 247 c 1,12,-1 + 796 247 l 1,13,14 + 762 109 762 109 683.5 44.5 c 128,-1,15 + 605 -20 605 -20 479 -20 c 0,16,17 + 289 -20 289 -20 185.5 120.5 c 128,-1,18 + 82 261 82 261 82 517 c 0,19,20 + 82 623 82 623 109 734 c 128,-1,21 + 136 845 136 845 187 943 c 1,22,-1 + 82 943 l 1,23,-1 + 82 1082 l 1,0,-1 +1100 119 m 0,24,25 + 1216 119 1216 119 1274 215 c 128,-1,26 + 1332 311 1332 311 1332 512 c 0,27,28 + 1332 630 1332 630 1301 750 c 128,-1,29 + 1270 870 1270 870 1222 943 c 1,30,-1 + 373 943 l 1,31,32 + 324 868 324 868 294 747.5 c 128,-1,33 + 264 627 264 627 264 512 c 0,34,35 + 264 310 264 310 322 214.5 c 128,-1,36 + 380 119 380 119 496 119 c 0,37,38 + 598 119 598 119 657 205.5 c 128,-1,39 + 716 292 716 292 716 449 c 2,40,-1 + 716 801 l 1,41,-1 + 882 801 l 1,42,-1 + 882 449 l 2,43,44 + 882 292 882 292 941 205.5 c 128,-1,45 + 1000 119 1000 119 1100 119 c 0,24,25 +EndSplineSet +EndChar + +StartChar: uni03D7 +Encoding: 983 983 904 +Width: 1231 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 2 + 9 + 14 + 1 + 4 + 42 + 19 + 23 + 38 + 28 + 28 + 23 + 33 + 4 + 9 + 5 + 46 + 47 + 39 + 25 + 80 + 89 + 39 + 22 + 30 + 35 + 83 + 89 + 30 + 27 + 18 + 0 + 2 + 19 + 15 + 11 + 6 + 83 + 89 + 11 + 15 + 2 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +884 799 m 1,0,-1 + 333 0 l 1,1,-1 + 68 0 l 1,2,3 + 306 336 306 336 306 697 c 0,4,5 + 306 928 306 928 187 928 c 0,6,7 + 158 928 158 928 102 914 c 1,8,-1 + 68 1067 l 1,9,10 + 134 1086 134 1086 209 1086 c 0,11,12 + 333 1086 333 1086 394 1010 c 128,-1,13 + 455 934 455 934 455 753 c 0,14,15 + 455 636 455 636 428 499 c 128,-1,16 + 401 362 401 362 365 289 c 1,17,-1 + 370 287 l 1,18,-1 + 914 1082 l 1,19,-1 + 1183 1082 l 1,20,21 + 1072 932 1072 932 1011.5 746 c 128,-1,22 + 951 560 951 560 951 369 c 0,23,24 + 951 138 951 138 1070 138 c 0,25,26 + 1112 138 1112 138 1162 151 c 1,27,-1 + 1162 -129 l 2,28,29 + 1162 -425 1162 -425 922 -425 c 0,30,31 + 858 -425 858 -425 791 -413 c 1,32,-1 + 791 -252 l 1,33,34 + 834 -265 834 -265 887 -265 c 0,35,36 + 942 -265 942 -265 970 -231 c 128,-1,37 + 998 -197 998 -197 998 -116 c 2,38,-1 + 998 -16 l 1,39,40 + 899 -2 899 -2 850.5 72.5 c 128,-1,41 + 802 147 802 147 802 313 c 0,42,43 + 802 453 802 453 828.5 592 c 128,-1,44 + 855 731 855 731 889 797 c 1,45,-1 + 884 799 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03D8 +Encoding: 984 984 905 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 16 + 11 + 15 + 0 + 22 + 4 + 4 + 0 + 11 + 3 + 29 + 28 + 7 + 19 + 95 + 89 + 7 + 4 + 1 + 25 + 95 + 89 + 14 + 1 + 19 + 0 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +703 -425 m 1,0,-1 + 703 -15 l 1,1,2 + 419 11 419 11 258 203 c 128,-1,3 + 97 395 97 395 97 711 c 0,4,5 + 97 1049 97 1049 282 1239.5 c 128,-1,6 + 467 1430 467 1430 797 1430 c 0,7,8 + 1012 1430 1012 1430 1170 1344.5 c 128,-1,9 + 1328 1259 1328 1259 1411.5 1096 c 128,-1,10 + 1495 933 1495 933 1495 711 c 0,11,12 + 1495 401 1495 401 1334 208.5 c 128,-1,13 + 1173 16 1173 16 894 -14 c 1,14,-1 + 894 -425 l 1,15,-1 + 703 -425 l 1,0,-1 +1300 711 m 0,16,17 + 1300 974 1300 974 1168.5 1124 c 128,-1,18 + 1037 1274 1037 1274 797 1274 c 0,19,20 + 555 1274 555 1274 423 1126 c 128,-1,21 + 291 978 291 978 291 711 c 0,22,23 + 291 446 291 446 424.5 290.5 c 128,-1,24 + 558 135 558 135 795 135 c 0,25,26 + 1039 135 1039 135 1169.5 285.5 c 128,-1,27 + 1300 436 1300 436 1300 711 c 0,16,17 +EndSplineSet +EndChar + +StartChar: uni03D9 +Encoding: 985 985 906 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 20 + 4 + 13 + 0 + 14 + 9 + 9 + 0 + 4 + 3 + 26 + 27 + 6 + 17 + 80 + 89 + 6 + 16 + 1 + 23 + 81 + 89 + 12 + 1 + 22 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +476 -425 m 1,0,-1 + 476 -14 l 1,1,2 + 290 11 290 11 188 148 c 128,-1,3 + 86 285 86 285 86 542 c 0,4,5 + 86 1102 86 1102 571 1102 c 0,6,7 + 819 1102 819 1102 936 965.5 c 128,-1,8 + 1053 829 1053 829 1053 542 c 0,9,10 + 1053 286 1053 286 951 148 c 128,-1,11 + 849 10 849 10 656 -14 c 1,12,-1 + 656 -425 l 1,13,-1 + 476 -425 l 1,0,-1 +864 542 m 0,14,15 + 864 766 864 766 797.5 867.5 c 128,-1,16 + 731 969 731 969 574 969 c 0,17,18 + 416 969 416 969 345.5 865.5 c 128,-1,19 + 275 762 275 762 275 542 c 0,20,21 + 275 328 275 328 344.5 220.5 c 128,-1,22 + 414 113 414 113 563 113 c 0,23,24 + 725 113 725 113 794.5 217 c 128,-1,25 + 864 321 864 321 864 542 c 0,14,15 +EndSplineSet +EndChar + +StartChar: uni03DA +Encoding: 986 986 907 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 13 + 12 + 25 + 0 + 20 + 5 + 5 + 0 + 12 + 3 + 27 + 26 + 23 + 1 + 95 + 89 + 23 + 13 + 23 + 13 + 0 + 9 + 9 + 16 + 95 + 89 + 9 + 4 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +680 0 m 1,0,-1 + 680 285 l 1,1,2 + 510 297 510 297 381.5 371.5 c 128,-1,3 + 253 446 253 446 183.5 571.5 c 128,-1,4 + 114 697 114 697 114 851 c 0,5,6 + 114 1008 114 1008 196.5 1142.5 c 128,-1,7 + 279 1277 279 1277 425.5 1353.5 c 128,-1,8 + 572 1430 572 1430 762 1430 c 0,9,10 + 981 1430 981 1430 1126.5 1345.5 c 128,-1,11 + 1272 1261 1272 1261 1360 1078 c 1,12,-1 + 1184 1011 l 1,13,14 + 1133 1137 1133 1137 1021.5 1205.5 c 128,-1,15 + 910 1274 910 1274 763 1274 c 0,16,17 + 622 1274 622 1274 518 1218.5 c 128,-1,18 + 414 1163 414 1163 358.5 1066.5 c 128,-1,19 + 303 970 303 970 303 852 c 0,20,21 + 303 651 303 651 436.5 543.5 c 128,-1,22 + 570 436 570 436 810 436 c 1,23,-1 + 871 439 l 1,24,-1 + 871 0 l 1,25,-1 + 680 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03DB +Encoding: 987 987 908 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 14 + 0 + 32 + 38 + 21 + 21 + 8 + 32 + 8 + 46 + 45 + 39 + 0 + 21 + 35 + 11 + 35 + 42 + 80 + 89 + 35 + 27 + 11 + 18 + 80 + 89 + 15 + 11 + 16 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +752 -119 m 0,0,1 + 752 -78 752 -78 732 -51 c 128,-1,2 + 712 -24 712 -24 672 -5.5 c 128,-1,3 + 632 13 632 13 529 33 c 0,4,5 + 360 63 360 63 268 127 c 128,-1,6 + 176 191 176 191 133 297 c 128,-1,7 + 90 403 90 403 90 554 c 0,8,9 + 90 823 90 823 208.5 962.5 c 128,-1,10 + 327 1102 327 1102 557 1102 c 0,11,12 + 724 1102 724 1102 834.5 1016 c 128,-1,13 + 945 930 945 930 974 779 c 1,14,-1 + 789 765 l 1,15,16 + 775 855 775 855 716 908 c 128,-1,17 + 657 961 657 961 552 961 c 0,18,19 + 407 961 407 961 341 866.5 c 128,-1,20 + 275 772 275 772 275 550 c 0,21,22 + 275 475 275 475 287 421.5 c 128,-1,23 + 299 368 299 368 321 330 c 128,-1,24 + 343 292 343 292 377 266.5 c 128,-1,25 + 411 241 411 241 457 222.5 c 128,-1,26 + 503 204 503 204 630 175 c 0,27,28 + 687 162 687 162 741.5 147 c 128,-1,29 + 796 132 796 132 839.5 102 c 128,-1,30 + 883 72 883 72 909.5 22.5 c 128,-1,31 + 936 -27 936 -27 936 -109 c 0,32,33 + 936 -263 936 -263 830.5 -344 c 128,-1,34 + 725 -425 725 -425 509 -425 c 0,35,36 + 416 -425 416 -425 334.5 -410.5 c 128,-1,37 + 253 -396 253 -396 203 -373 c 1,38,-1 + 203 -205 l 1,39,40 + 313 -248 313 -248 380.5 -262.5 c 128,-1,41 + 448 -277 448 -277 516 -277 c 0,42,43 + 634 -277 634 -277 693 -240 c 128,-1,44 + 752 -203 752 -203 752 -119 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni03DC +Encoding: 988 988 909 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 1 + 7 + 7 + 8 + 11 + 4 + 3 + 8 + 3 + 12 + 13 + 1 + 6 + 95 + 89 + 4 + 1 + 4 + 1 + 8 + 9 + 9 + 0 + 95 + 89 + 9 + 3 + 8 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +359 1253 m 1,0,-1 + 359 810 l 1,1,-1 + 1059 810 l 1,2,-1 + 1059 443 l 1,3,-1 + 878 443 l 1,4,-1 + 878 652 l 1,5,-1 + 359 652 l 1,6,-1 + 359 0 l 1,7,-1 + 168 0 l 1,8,-1 + 168 1409 l 1,9,-1 + 1169 1409 l 1,10,-1 + 1169 1253 l 1,11,-1 + 359 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03DD +Encoding: 989 989 910 +Width: 827 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 5 + 0 + 4 + 2 + 8 + 8 + 9 + 4 + 9 + 13 + 12 + 2 + 7 + 80 + 89 + 5 + 2 + 5 + 2 + 9 + 10 + 10 + 1 + 80 + 89 + 10 + 15 + 9 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +747 943 m 1,0,-1 + 311 943 l 1,1,-1 + 311 654 l 1,2,-1 + 697 654 l 1,3,-1 + 697 320 l 1,4,-1 + 539 320 l 1,5,-1 + 539 505 l 1,6,-1 + 311 505 l 1,7,-1 + 311 -424 l 1,8,-1 + 136 -424 l 1,9,-1 + 136 1082 l 1,10,-1 + 747 1082 l 1,11,-1 + 747 943 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03DE +Encoding: 990 990 911 +Width: 1279 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 38 + 22 + 25 + 14 + 0 + 3 + 9 + 3 + 25 + 32 + 4 + 43 + 44 + 17 + 42 + 41 + 21 + 42 + 21 + 42 + 21 + 11 + 31 + 34 + 34 + 29 + 95 + 89 + 34 + 8 + 11 + 11 + 6 + 95 + 89 + 11 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1122 1102 m 1,0,1 + 1085 954 1085 954 1053.5 728.5 c 128,-1,2 + 1022 503 1022 503 1022 355 c 0,3,4 + 1022 255 1022 255 1053.5 200.5 c 128,-1,5 + 1085 146 1085 146 1144 146 c 0,6,7 + 1175 146 1175 146 1234 161 c 1,8,-1 + 1270 1 l 1,9,10 + 1206 -19 1206 -19 1122 -19 c 0,11,12 + 992 -19 992 -19 924.5 62 c 128,-1,13 + 857 143 857 143 857 320 c 0,14,15 + 857 437 857 437 872.5 574.5 c 128,-1,16 + 888 712 888 712 909 813 c 1,17,18 + 776 719 776 719 536 563 c 0,19,20 + 308 414 308 414 164 312 c 1,21,-1 + 135 323 l 1,22,23 + 167 448 167 448 199 693 c 128,-1,24 + 231 938 231 938 231 1111 c 0,25,26 + 231 1196 231 1196 221 1235.5 c 128,-1,27 + 211 1275 211 1275 188.5 1297.5 c 128,-1,28 + 166 1320 166 1320 127 1320 c 0,29,30 + 95 1320 95 1320 37 1305 c 1,31,-1 + 1 1465 l 1,32,33 + 65 1485 65 1485 149 1485 c 0,34,35 + 239 1485 239 1485 292.5 1448.5 c 128,-1,36 + 346 1412 346 1412 371 1343 c 128,-1,37 + 396 1274 396 1274 396 1146 c 0,38,39 + 396 1027 396 1027 381 872 c 128,-1,40 + 366 717 366 717 348 630 c 1,41,-1 + 1091 1118 l 1,42,-1 + 1122 1102 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni03DF +Encoding: 991 991 912 +Width: 1084 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 7 + 6 + 6 + 8 + 4 + 2 + 1 + 1 + 3 + 0 + 4 + 0 + 10 + 11 + 8 + 4 + 80 + 89 + 8 + 8 + 2 + 6 + 2 + 21 +SVTCA[y-axis] +MIAP[rnd] +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1034 764 m 1,0,-1 + 758 0 l 1,1,-1 + 564 0 l 1,2,-1 + 796 652 l 1,3,-1 + 50 652 l 1,4,-1 + 50 701 l 1,5,-1 + 326 1409 l 1,6,-1 + 520 1409 l 1,7,-1 + 288 813 l 1,8,-1 + 1034 813 l 1,9,-1 + 1034 764 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03E0 +Encoding: 992 992 913 +Width: 1549 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 17 + 12 + 7 + 7 + 0 + 24 + 16 + 4 + 11 + 0 + 5 + 32 + 31 + 10 + 9 + 8 + 12 + 15 + 14 + 17 + 12 + 17 + 3 + 27 + 23 + 23 + 27 + 27 + 20 + 96 + 89 + 27 + 4 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1462 520 m 0,0,1 + 1462 135 1462 135 1266.5 -92 c 128,-1,2 + 1071 -319 1071 -319 638 -423 c 1,3,-1 + 592 -272 l 1,4,5 + 928 -210 928 -210 1105.5 -8.5 c 128,-1,6 + 1283 193 1283 193 1283 515 c 2,7,-1 + 1283 533 l 1,8,-1 + 1282 550 l 1,9,-1 + 696 265 l 1,10,-1 + 630 397 l 1,11,-1 + 1267 707 l 1,12,13 + 1243 845 1243 845 1187 962 c 1,14,-1 + 552 653 l 1,15,-1 + 486 785 l 1,16,-1 + 1111 1089 l 1,17,18 + 1021 1212 1021 1212 899 1275 c 128,-1,19 + 777 1338 777 1338 631 1338 c 0,20,21 + 492 1338 492 1338 363 1271 c 128,-1,22 + 234 1204 234 1204 144 1084 c 1,23,-1 + 46 1200 l 1,24,25 + 175 1351 175 1351 324 1417.5 c 128,-1,26 + 473 1484 473 1484 668 1484 c 0,27,28 + 890 1484 890 1484 1070 1358 c 128,-1,29 + 1250 1232 1250 1232 1356 1004.5 c 128,-1,30 + 1462 777 1462 777 1462 520 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni03E1 +Encoding: 993 993 914 +Width: 1181 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 15 + 10 + 5 + 0 + 0 + 9 + 14 + 17 + 4 + 21 + 22 + 13 + 12 + 15 + 8 + 7 + 10 + 15 + 10 + 3 + 18 + 0 + 3 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1129 106 m 0,0,1 + 1129 -114 1129 -114 1083 -372 c 1,2,-1 + 889 -426 l 1,3,4 + 944 -143 944 -143 944 91 c 0,5,6 + 944 297 944 297 900 443 c 1,7,-1 + 544 270 l 1,8,-1 + 474 413 l 1,9,-1 + 856 600 l 1,10,11 + 811 719 811 719 740 832 c 1,12,-1 + 360 647 l 1,13,-1 + 289 791 l 1,14,-1 + 657 972 l 1,15,16 + 447 1236 447 1236 99 1407 c 1,17,-1 + 271 1492 l 1,18,19 + 683 1296 683 1296 906 937.5 c 128,-1,20 + 1129 579 1129 579 1129 106 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni03E2 +Encoding: 994 994 915 +Width: 1824 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 36 + 33 + 28 + 1 + 42 + 7 + 20 + 20 + 10 + 10 + 42 + 15 + 33 + 4 + 44 + 45 + 21 + 29 + 31 + 43 + 8 + 34 + 3 + 31 + 39 + 96 + 89 + 31 + 19 + 15 + 16 + 96 + 89 + 15 + 25 + 64 + 25 + 4 + 96 + 89 + 25 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1012 1409 m 1,0,-1 + 1012 398 l 2,1,2 + 1012 245 1012 245 1058.5 183 c 128,-1,3 + 1105 121 1105 121 1220 121 c 0,4,5 + 1336 121 1336 121 1404 210 c 128,-1,6 + 1472 299 1472 299 1472 457 c 2,7,-1 + 1472 1409 l 1,8,-1 + 1661 1409 l 1,9,-1 + 1661 94 l 2,10,11 + 1661 -102 1661 -102 1613 -211.5 c 128,-1,12 + 1565 -321 1565 -321 1459.5 -372.5 c 128,-1,13 + 1354 -424 1354 -424 1179 -424 c 2,14,-1 + 174 -424 l 1,15,-1 + 174 -277 l 1,16,-1 + 1172 -277 l 2,17,18 + 1333 -277 1333 -277 1409.5 -195.5 c 128,-1,19 + 1486 -114 1486 -114 1486 66 c 2,20,-1 + 1486 155 l 1,21,-1 + 1482 155 l 1,22,23 + 1440 67 1440 67 1366 23.5 c 128,-1,24 + 1292 -20 1292 -20 1170 -20 c 0,25,26 + 1047 -20 1047 -20 966.5 23 c 128,-1,27 + 886 66 886 66 849 165 c 1,28,-1 + 846 165 l 1,29,30 + 752 -20 752 -20 515 -20 c 0,31,32 + 166 -20 166 -20 166 361 c 2,33,-1 + 166 1409 l 1,34,-1 + 355 1409 l 1,35,-1 + 355 398 l 2,36,37 + 355 247 355 247 400.5 184 c 128,-1,38 + 446 121 446 121 562 121 c 0,39,40 + 681 121 681 121 752 210 c 128,-1,41 + 823 299 823 299 823 457 c 2,42,-1 + 823 1409 l 1,43,-1 + 1012 1409 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03E3 +Encoding: 995 995 916 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 38 + 35 + 28 + 1 + 44 + 7 + 21 + 21 + 10 + 10 + 44 + 35 + 15 + 4 + 46 + 47 + 29 + 22 + 32 + 45 + 8 + 36 + 15 + 15 + 16 + 80 + 89 + 15 + 32 + 32 + 41 + 80 + 89 + 32 + 22 + 25 + 4 + 80 + 89 + 25 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +939 1082 m 1,0,-1 + 939 396 l 2,1,2 + 939 239 939 239 982 179 c 128,-1,3 + 1025 119 1025 119 1137 119 c 0,4,5 + 1252 119 1252 119 1319 207 c 128,-1,6 + 1386 295 1386 295 1386 455 c 2,7,-1 + 1386 1082 l 1,8,-1 + 1565 1082 l 1,9,-1 + 1565 108 l 2,10,11 + 1565 -90 1565 -90 1516.5 -203 c 128,-1,12 + 1468 -316 1468 -316 1362.5 -370 c 128,-1,13 + 1257 -424 1257 -424 1083 -424 c 2,14,-1 + 132 -424 l 1,15,-1 + 132 -285 l 1,16,-1 + 1092 -285 l 2,17,18 + 1246 -285 1246 -285 1321 -205.5 c 128,-1,19 + 1396 -126 1396 -126 1400 44 c 2,20,-1 + 1404 185 l 1,21,-1 + 1400 185 l 1,22,23 + 1344 76 1344 76 1265 28 c 128,-1,24 + 1186 -20 1186 -20 1074 -20 c 0,25,26 + 951 -20 951 -20 879.5 29 c 128,-1,27 + 808 78 808 78 780 185 c 1,28,-1 + 777 185 l 1,29,30 + 721 76 721 76 641.5 28 c 128,-1,31 + 562 -20 562 -20 449 -20 c 0,32,33 + 285 -20 285 -20 210.5 69 c 128,-1,34 + 136 158 136 158 136 361 c 2,35,-1 + 136 1082 l 1,36,-1 + 314 1082 l 1,37,-1 + 314 396 l 2,38,39 + 314 239 314 239 357 179 c 128,-1,40 + 400 119 400 119 512 119 c 0,41,42 + 630 119 630 119 695.5 206.5 c 128,-1,43 + 761 294 761 294 761 455 c 2,44,-1 + 761 1082 l 1,45,-1 + 939 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03E4 +Encoding: 996 996 917 +Width: 1381 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 11 + 15 + 15 + 27 + 14 + 5 + 21 + 14 + 21 + 29 + 28 + 24 + 2 + 95 + 89 + 24 + 4 + 8 + 18 + 95 + 89 + 8 + 8 + 12 + 15 + 18 + 12 + 3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +685 1224 m 1,0,1 + 613 1276 613 1276 528 1276 c 0,2,3 + 409 1276 409 1276 349.5 1192 c 128,-1,4 + 290 1108 290 1108 290 948 c 0,5,6 + 290 784 290 784 376.5 694 c 128,-1,7 + 463 604 463 604 625 604 c 0,8,9 + 719 604 719 604 835.5 631 c 128,-1,10 + 952 658 952 658 1025 694 c 1,11,-1 + 1025 1410 l 1,12,-1 + 1215 1410 l 1,13,-1 + 1215 0 l 1,14,-1 + 1025 0 l 1,15,-1 + 1025 533 l 1,16,17 + 804 450 804 450 622 450 c 0,18,19 + 376 450 376 450 238 580 c 128,-1,20 + 100 710 100 710 100 942 c 0,21,22 + 100 1180 100 1180 208.5 1305 c 128,-1,23 + 317 1430 317 1430 526 1430 c 0,24,25 + 610 1430 610 1430 670 1410.5 c 128,-1,26 + 730 1391 730 1391 781 1353 c 1,27,-1 + 685 1224 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni03E5 +Encoding: 997 997 918 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 18 + 7 + 25 + 0 + 0 + 28 + 28 + 13 + 7 + 3 + 29 + 30 + 22 + 4 + 80 + 89 + 1 + 26 + 15 + 22 + 31 + 22 + 2 + 9 + 3 + 22 + 22 + 0 + 26 + 0 + 10 + 15 + 83 + 89 + 10 + 1 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP2 +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +825 0 m 1,0,-1 + 825 553 l 1,1,2 + 774 462 774 462 691.5 422 c 128,-1,3 + 609 382 609 382 485 382 c 0,4,5 + 309 382 309 382 225.5 469.5 c 128,-1,6 + 142 557 142 557 142 763 c 2,7,-1 + 142 1200 l 2,8,9 + 142 1496 142 1496 423 1496 c 0,10,11 + 474 1496 474 1496 559 1480 c 1,12,-1 + 559 1313 l 1,13,14 + 501 1334 501 1334 440 1334 c 0,15,16 + 323 1334 323 1334 323 1186 c 2,17,-1 + 323 798 l 2,18,19 + 323 684 323 684 344 628.5 c 128,-1,20 + 365 573 365 573 413 547 c 128,-1,21 + 461 521 461 521 546 521 c 0,22,23 + 673 521 673 521 749.5 609 c 128,-1,24 + 826 697 826 697 826 846 c 2,25,-1 + 826 1484 l 1,26,-1 + 1006 1484 l 1,27,-1 + 1006 0 l 1,28,-1 + 825 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03E6 +Encoding: 998 998 919 +Width: 1380 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 18 + 14 + 14 + 31 + 15 + 7 + 24 + 15 + 24 + 32 + 33 + 21 + 10 + 95 + 89 + 18 + 21 + 21 + 15 + 16 + 3 + 31 + 0 + 95 + 89 + 31 + 15 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,white] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +164 -275 m 1,0,-1 + 466 -275 l 2,1,2 + 650 -275 650 -275 735.5 -258 c 128,-1,3 + 821 -241 821 -241 885.5 -202.5 c 128,-1,4 + 950 -164 950 -164 995 -96.5 c 128,-1,5 + 1040 -29 1040 -29 1064.5 75 c 128,-1,6 + 1089 179 1089 179 1089 325 c 0,7,8 + 1089 544 1089 544 995 661 c 128,-1,9 + 901 778 901 778 722 778 c 0,10,11 + 637 778 637 778 539 754 c 128,-1,12 + 441 730 441 730 354 688 c 1,13,-1 + 354 0 l 1,14,-1 + 164 0 l 1,15,-1 + 164 1410 l 1,16,-1 + 354 1410 l 1,17,-1 + 354 845 l 1,18,-1 + 424 874 l 2,19,20 + 569 932 569 932 729 932 c 0,21,22 + 987 932 987 932 1133 772.5 c 128,-1,23 + 1279 613 1279 613 1279 331 c 0,24,25 + 1279 176 1279 176 1251.5 55.5 c 128,-1,26 + 1224 -65 1224 -65 1171 -153 c 128,-1,27 + 1118 -241 1118 -241 1034.5 -301.5 c 128,-1,28 + 951 -362 951 -362 830 -393 c 128,-1,29 + 709 -424 709 -424 509 -424 c 2,30,-1 + 164 -424 l 1,31,-1 + 164 -275 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03E7 +Encoding: 999 999 920 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 51 + 44 + 21 + 7 + 2 + 32 + 49 + 4 + 36 + 30 + 5 + 9 + 36 + 9 + 51 + 52 + 21 + 21 + 32 + 49 + 7 + 2 + 4 + 0 + 34 + 47 + 34 + 80 + 89 + 24 + 18 + 80 + 89 + 47 + 24 + 47 + 24 + 0 + 13 + 13 + 28 + 80 + 89 + 13 + 22 + 0 + 40 + 80 + 89 + 4 + 0 + 16 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +505 1102 m 0,0,1 + 674 1102 674 1102 786 1023 c 1,2,3 + 838 1101 838 1101 873 1174 c 1,4,-1 + 997 1082 l 1,5,6 + 925 966 925 966 888 916 c 1,7,8 + 987 772 987 772 987 540 c 0,9,10 + 987 360 987 360 930 234.5 c 128,-1,11 + 873 109 873 109 772.5 44.5 c 128,-1,12 + 672 -20 672 -20 539 -20 c 0,13,14 + 472 -20 472 -20 424.5 -5 c 128,-1,15 + 377 10 377 10 341 27.5 c 128,-1,16 + 305 45 305 45 277.5 60 c 128,-1,17 + 250 75 250 75 223 75 c 0,18,19 + 162 75 162 75 162 0 c 1,20,-1 + 10 0 l 1,21,22 + 10 105 10 105 64.5 164 c 128,-1,23 + 119 223 119 223 203 223 c 0,24,25 + 282 223 282 223 369 173 c 0,26,27 + 455 123 455 123 534 123 c 0,28,29 + 799 123 799 123 799 536 c 0,30,31 + 799 666 799 666 765 768 c 1,32,33 + 574 572 574 572 376 572 c 0,34,35 + 109 572 109 572 109 801 c 0,36,37 + 109 891 109 891 158 961.5 c 128,-1,38 + 207 1032 207 1032 294.5 1067 c 128,-1,39 + 382 1102 382 1102 505 1102 c 0,0,1 +514 968 m 0,40,41 + 431 968 431 968 374.5 947 c 128,-1,42 + 318 926 318 926 287.5 892 c 128,-1,43 + 257 858 257 858 257 817 c 0,44,45 + 257 760 257 760 289 735 c 128,-1,46 + 321 710 321 710 381 710 c 0,47,48 + 542 710 542 710 691 896 c 1,49,50 + 623 968 623 968 514 968 c 0,40,41 +EndSplineSet +EndChar + +StartChar: uni03E8 +Encoding: 1000 1000 921 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 34 + 0 + 17 + 18 + 11 + 24 + 40 + 45 + 45 + 24 + 18 + 0 + 4 + 51 + 52 + 34 + 11 + 48 + 21 + 43 + 43 + 48 + 48 + 37 + 95 + 89 + 48 + 19 + 17 + 17 + 21 + 21 + 14 + 96 + 89 + 21 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +110 389 m 0,0,1 + 110 466 110 466 131.5 523.5 c 128,-1,2 + 153 581 153 581 192 623 c 128,-1,3 + 231 665 231 665 285 695.5 c 128,-1,4 + 339 726 339 726 404.5 748.5 c 128,-1,5 + 470 771 470 771 644 811 c 0,6,7 + 723 829 723 829 794.5 847 c 128,-1,8 + 866 865 866 865 920 892 c 128,-1,9 + 974 919 974 919 1005.5 959.5 c 128,-1,10 + 1037 1000 1037 1000 1037 1063 c 0,11,12 + 1037 1173 1037 1173 951 1229.5 c 128,-1,13 + 865 1286 865 1286 705 1286 c 0,14,15 + 540 1286 540 1286 450 1235.5 c 128,-1,16 + 360 1185 360 1185 331 1073 c 1,17,-1 + 143 1106 l 1,18,19 + 191 1279 191 1279 320 1354.5 c 128,-1,20 + 449 1430 449 1430 706 1430 c 0,21,22 + 953 1430 953 1430 1088 1331 c 128,-1,23 + 1223 1232 1223 1232 1223 1053 c 0,24,25 + 1223 975 1223 975 1196.5 914 c 128,-1,26 + 1170 853 1170 853 1120.5 807.5 c 128,-1,27 + 1071 762 1071 762 984.5 724.5 c 128,-1,28 + 898 687 898 687 730 650 c 0,29,30 + 634 628 634 628 555 609 c 128,-1,31 + 476 590 476 590 419 562 c 128,-1,32 + 362 534 362 534 330.5 491 c 128,-1,33 + 299 448 299 448 299 379 c 0,34,35 + 299 257 299 257 398.5 193 c 128,-1,36 + 498 129 498 129 685 129 c 0,37,38 + 891 129 891 129 997 198 c 128,-1,39 + 1103 267 1103 267 1103 404 c 0,40,41 + 1103 493 1103 493 1050 597 c 1,42,-1 + 1222 651 l 1,43,44 + 1289 529 1289 529 1289 412 c 0,45,46 + 1289 215 1289 215 1128 97.5 c 128,-1,47 + 967 -20 967 -20 692 -20 c 0,48,49 + 415 -20 415 -20 262.5 87.5 c 128,-1,50 + 110 195 110 195 110 389 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni03E9 +Encoding: 1001 1001 922 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 16 + 28 + 21 + 22 + 38 + 5 + 5 + 22 + 0 + 28 + 4 + 46 + 45 + 16 + 38 + 25 + 2 + 21 + 21 + 25 + 25 + 18 + 80 + 89 + 25 + 0 + 44 + 44 + 2 + 2 + 41 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1218 43 m 1,0,1 + 994 -20 994 -20 706 -20 c 0,2,3 + 423 -20 423 -20 266.5 89.5 c 128,-1,4 + 110 199 110 199 110 389 c 0,5,6 + 110 466 110 466 131.5 523.5 c 128,-1,7 + 153 581 153 581 192 623 c 128,-1,8 + 231 665 231 665 285 695.5 c 128,-1,9 + 339 726 339 726 404.5 748.5 c 128,-1,10 + 470 771 470 771 644 811 c 0,11,12 + 723 829 723 829 794.5 847 c 128,-1,13 + 866 865 866 865 920 892 c 128,-1,14 + 974 919 974 919 1005.5 959.5 c 128,-1,15 + 1037 1000 1037 1000 1037 1063 c 0,16,17 + 1037 1286 1037 1286 698 1286 c 0,18,19 + 539 1286 539 1286 449 1233.5 c 128,-1,20 + 359 1181 359 1181 331 1073 c 1,21,-1 + 143 1106 l 1,22,23 + 190 1276 190 1276 321 1353 c 128,-1,24 + 452 1430 452 1430 701 1430 c 0,25,26 + 957 1430 957 1430 1090 1332.5 c 128,-1,27 + 1223 1235 1223 1235 1223 1053 c 0,28,29 + 1223 975 1223 975 1196.5 914 c 128,-1,30 + 1170 853 1170 853 1120.5 807.5 c 128,-1,31 + 1071 762 1071 762 984.5 724.5 c 128,-1,32 + 898 687 898 687 730 650 c 0,33,34 + 634 628 634 628 555 609 c 128,-1,35 + 476 590 476 590 419 562 c 128,-1,36 + 362 534 362 534 330.5 491 c 128,-1,37 + 299 448 299 448 299 379 c 0,38,39 + 299 258 299 258 408 193.5 c 128,-1,40 + 517 129 517 129 706 129 c 0,41,42 + 839 129 839 129 954.5 143.5 c 128,-1,43 + 1070 158 1070 158 1205 198 c 1,44,-1 + 1218 43 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni03EA +Encoding: 1002 1002 923 +Width: 1248 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 11 + 37 + 31 + 16 + 4 + 35 + 36 + 36 + 13 + 35 + 14 + 24 + 14 + 13 + 3 + 4 + 39 + 38 + 37 + 11 + 16 + 31 + 4 + 13 + 23 + 27 + 27 + 20 + 95 + 89 + 27 + 4 + 15 + 12 + 36 + 13 + 36 + 95 + 89 + 13 + 18 + 0 + 7 + 95 + 89 + 4 + 0 + 4 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +940 1430 m 0,0,1 + 1016 1430 1016 1430 1095 1379.5 c 128,-1,2 + 1174 1329 1174 1329 1238 1221 c 1,3,-1 + 1136 1111 l 1,4,-1 + 1102 1162 l 2,5,6 + 1032 1264 1032 1264 967 1264 c 0,7,8 + 926 1264 926 1264 901.5 1245 c 128,-1,9 + 877 1226 877 1226 857 1180 c 2,10,-1 + 733 882 l 1,11,-1 + 1048 145 l 1,12,-1 + 1048 0 l 1,13,-1 + 202 0 l 1,14,-1 + 202 145 l 1,15,-1 + 512 882 l 1,16,-1 + 388 1180 l 2,17,18 + 369 1226 369 1226 344 1245 c 128,-1,19 + 319 1264 319 1264 278 1264 c 0,20,21 + 213 1264 213 1264 144 1162 c 2,22,-1 + 109 1111 l 1,23,-1 + 7 1221 l 1,24,25 + 71 1329 71 1329 150 1379.5 c 128,-1,26 + 229 1430 229 1430 305 1430 c 0,27,28 + 400 1430 400 1430 458 1383.5 c 128,-1,29 + 516 1337 516 1337 556 1224 c 2,30,-1 + 623 1032 l 1,31,-1 + 689 1224 l 2,32,33 + 726 1333 726 1333 784 1381.5 c 128,-1,34 + 842 1430 842 1430 940 1430 c 0,0,1 +392 161 m 1,35,-1 + 862 161 l 1,36,-1 + 624 745 l 1,37,-1 + 392 161 l 1,35,-1 +EndSplineSet +EndChar + +StartChar: uni03EB +Encoding: 1003 1003 924 +Width: 1221 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 1 + 16 + 2 + 15 + 6 + 15 + 13 + 0 + 33 + 18 + 16 + 26 + 8 + 36 + 37 + 0 + 18 + 13 + 33 + 4 + 16 + 25 + 29 + 29 + 22 + 80 + 89 + 29 + 15 + 17 + 14 + 1 + 16 + 1 + 80 + 89 + 16 + 21 + 3 + 10 + 80 + 89 + 7 + 3 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +611 404 m 1,0,-1 + 502 145 l 1,1,-1 + 723 145 l 1,2,-1 + 611 404 l 1,0,-1 +921 1089 m 0,3,4 + 997 1089 997 1089 1069 1041 c 128,-1,5 + 1141 993 1141 993 1197 901 c 1,6,-1 + 1093 790 l 1,7,-1 + 1060 841 l 2,8,9 + 994 939 994 939 934 939 c 0,10,11 + 858 939 858 939 821 845 c 2,12,-1 + 700 542 l 1,13,-1 + 869 139 l 1,14,-1 + 869 0 l 1,15,-1 + 352 0 l 1,16,-1 + 352 139 l 1,17,-1 + 519 541 l 1,18,-1 + 397 848 l 2,19,20 + 376 901 376 901 348 920 c 128,-1,21 + 320 939 320 939 285 939 c 0,22,23 + 225 939 225 939 160 841 c 2,24,-1 + 126 790 l 1,25,-1 + 22 901 l 1,26,27 + 78 993 78 993 150 1041 c 128,-1,28 + 222 1089 222 1089 298 1089 c 0,29,30 + 396 1089 396 1089 456.5 1030 c 128,-1,31 + 517 971 517 971 553 862 c 2,32,-1 + 609 691 l 1,33,-1 + 666 862 l 2,34,35 + 740 1089 740 1089 921 1089 c 0,3,4 +EndSplineSet +EndChar + +StartChar: uni03EC +Encoding: 1004 1004 925 +Width: 1509 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 17 + 28 + 28 + 6 + 12 + 22 + 22 + 0 + 6 + 0 + 34 + 35 + 19 + 25 + 96 + 89 + 17 + 0 + 19 + 16 + 19 + 2 + 9 + 3 + 19 + 19 + 3 + 10 + 10 + 13 + 95 + 89 + 10 + 3 + 3 + 31 + 96 + 89 + 3 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1407 556 m 0,0,1 + 1407 282 1407 282 1233.5 131 c 128,-1,2 + 1060 -20 1060 -20 751 -20 c 0,3,4 + 425 -20 425 -20 261 143.5 c 128,-1,5 + 97 307 97 307 97 623 c 0,6,7 + 97 899 97 899 168 1072 c 128,-1,8 + 239 1245 239 1245 390.5 1327 c 128,-1,9 + 542 1409 542 1409 824 1409 c 2,10,-1 + 1219 1409 l 1,11,-1 + 1219 1260 l 1,12,-1 + 831 1260 l 2,13,14 + 652 1260 652 1260 556 1230.5 c 128,-1,15 + 460 1201 460 1201 399 1137.5 c 128,-1,16 + 338 1074 338 1074 314 966 c 1,17,18 + 476 1102 476 1102 753 1102 c 0,19,20 + 1072 1102 1072 1102 1239.5 963.5 c 128,-1,21 + 1407 825 1407 825 1407 556 c 0,0,1 +1217 556 m 0,22,23 + 1217 765 1217 765 1103.5 865 c 128,-1,24 + 990 965 990 965 753 965 c 0,25,26 + 512 965 512 965 399 867 c 128,-1,27 + 286 769 286 769 286 556 c 0,28,29 + 286 340 286 340 402.5 227.5 c 128,-1,30 + 519 115 519 115 751 115 c 0,31,32 + 988 115 988 115 1102.5 224.5 c 128,-1,33 + 1217 334 1217 334 1217 556 c 0,22,23 +EndSplineSet +EndChar + +StartChar: uni03ED +Encoding: 1005 1005 926 +Width: 1134 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 29 + 17 + 17 + 6 + 23 + 12 + 0 + 6 + 0 + 35 + 36 + 32 + 26 + 80 + 89 + 32 + 32 + 3 + 9 + 9 + 13 + 80 + 89 + 9 + 16 + 3 + 20 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1066 378 m 256,0,1 + 1066 194 1066 194 932 87 c 128,-1,2 + 798 -20 798 -20 564 -20 c 0,3,4 + 326 -20 326 -20 199.5 126 c 128,-1,5 + 73 272 73 272 73 550 c 0,6,7 + 73 816 73 816 228.5 951.5 c 128,-1,8 + 384 1087 384 1087 705 1097 c 0,9,10 + 860 1102 860 1102 985 1102 c 1,11,-1 + 985 952 l 1,12,-1 + 691 945 l 2,13,14 + 498 937 498 937 415 897 c 128,-1,15 + 332 857 332 857 295 770 c 128,-1,16 + 258 683 258 683 258 525 c 0,17,18 + 258 324 258 324 336.5 218 c 128,-1,19 + 415 112 415 112 575 112 c 0,20,21 + 731 112 731 112 810 182 c 128,-1,22 + 889 252 889 252 889 380 c 0,23,24 + 889 498 889 498 822 553.5 c 128,-1,25 + 755 609 755 609 588 609 c 0,26,27 + 516 609 516 609 457 598 c 2,28,-1 + 410 590 l 1,29,-1 + 410 724 l 1,30,31 + 525 747 525 747 626 747 c 0,32,33 + 851 747 851 747 958.5 654.5 c 128,-1,34 + 1066 562 1066 562 1066 378 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni03EE +Encoding: 1006 1006 927 +Width: 950 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 5 + 0 + 25 + 9 + 9 + 22 + 10 + 14 + 19 + 19 + 10 + 0 + 3 + 29 + 28 + 2 + 17 + 8 + 12 + 21 + 12 + 95 + 89 + 25 + 21 + 17 + 21 + 17 + 21 + 10 + 23 + 3 + 10 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +930 888 m 0,0,1 + 930 822 930 822 911 757 c 1,2,-1 + 764 788 l 1,3,4 + 778 844 778 844 778 873 c 0,5,6 + 778 1003 778 1003 624 1003 c 2,7,-1 + 570 1003 l 1,8,-1 + 570 0 l 1,9,-1 + 379 0 l 1,10,-1 + 379 1003 l 1,11,-1 + 325 1003 l 2,12,13 + 172 1003 172 1003 172 873 c 0,14,15 + 172 844 172 844 186 788 c 1,16,-1 + 39 757 l 1,17,18 + 20 822 20 822 20 888 c 0,19,20 + 20 1160 20 1160 333 1160 c 2,21,-1 + 379 1160 l 1,22,-1 + 379 1410 l 1,23,-1 + 570 1410 l 1,24,-1 + 570 1160 l 1,25,-1 + 618 1160 l 2,26,27 + 930 1160 930 1160 930 888 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni03EF +Encoding: 1007 1007 928 +Width: 839 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 16 + 11 + 11 + 2 + 5 + 10 + 5 + 17 + 3 + 19 + 18 + 12 + 1 + 1 + 7 + 10 + 7 + 80 + 89 + 16 + 10 + 15 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +799 942 m 1,0,-1 + 510 942 l 1,1,-1 + 510 -15 l 1,2,-1 + 235 85 l 1,3,-1 + 235 113 l 1,4,-1 + 336 113 l 1,5,-1 + 336 942 l 1,6,-1 + 138 942 l 1,7,-1 + 64 794 l 1,8,-1 + 40 794 l 1,9,-1 + 40 1082 l 1,10,-1 + 336 1082 l 1,11,-1 + 336 1496 l 1,12,-1 + 611 1396 l 1,13,-1 + 611 1369 l 1,14,-1 + 510 1369 l 1,15,-1 + 510 1082 l 1,16,-1 + 799 1082 l 1,17,-1 + 799 942 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03F0 +Encoding: 1008 1008 929 +Width: 1231 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 14 + 1 + 4 + 33 + 19 + 23 + 28 + 23 + 4 + 9 + 2 + 5 + 37 + 38 + 30 + 25 + 83 + 89 + 30 + 22 + 18 + 0 + 2 + 19 + 15 + 11 + 6 + 83 + 89 + 11 + 15 + 2 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +884 799 m 1,0,-1 + 333 0 l 1,1,-1 + 68 0 l 1,2,3 + 306 336 306 336 306 697 c 0,4,5 + 306 928 306 928 187 928 c 0,6,7 + 158 928 158 928 102 914 c 1,8,-1 + 68 1067 l 1,9,10 + 134 1086 134 1086 209 1086 c 0,11,12 + 333 1086 333 1086 394 1010 c 128,-1,13 + 455 934 455 934 455 753 c 0,14,15 + 455 636 455 636 428 499 c 128,-1,16 + 401 362 401 362 365 289 c 1,17,-1 + 370 287 l 1,18,-1 + 914 1082 l 1,19,-1 + 1183 1082 l 1,20,21 + 1072 932 1072 932 1011.5 746 c 128,-1,22 + 951 560 951 560 951 369 c 0,23,24 + 951 138 951 138 1070 138 c 0,25,26 + 1099 138 1099 138 1155 152 c 1,27,-1 + 1189 -1 l 1,28,29 + 1123 -20 1123 -20 1048 -20 c 0,30,31 + 924 -20 924 -20 863 56 c 128,-1,32 + 802 132 802 132 802 313 c 0,33,34 + 802 453 802 453 828.5 592 c 128,-1,35 + 855 731 855 731 889 797 c 1,36,-1 + 884 799 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03F1 +Encoding: 1009 1009 930 +Width: 1173 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 32 + 21 + 13 + 39 + 0 + 8 + 8 + 0 + 46 + 45 + 26 + 17 + 80 + 89 + 26 + 26 + 22 + 27 + 13 + 11 + 5 + 11 + 42 + 80 + 89 + 11 + 21 + 5 + 36 + 80 + 89 + 5 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +IP +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +98 353 m 0,0,1 + 98 594 98 594 125 726 c 128,-1,2 + 152 858 152 858 211.5 939.5 c 128,-1,3 + 271 1021 271 1021 367.5 1061.5 c 128,-1,4 + 464 1102 464 1102 600 1102 c 0,5,6 + 853 1102 853 1102 972.5 967 c 128,-1,7 + 1092 832 1092 832 1092 552 c 0,8,9 + 1092 276 1092 276 965.5 138 c 128,-1,10 + 839 0 839 0 594 0 c 0,11,12 + 366 0 366 0 244 151 c 1,13,14 + 250 17 250 17 298 -62.5 c 128,-1,15 + 346 -142 346 -142 436.5 -178 c 128,-1,16 + 527 -214 527 -214 707 -214 c 0,17,18 + 862 -214 862 -214 930.5 -232 c 128,-1,19 + 999 -250 999 -250 1032 -293 c 128,-1,20 + 1065 -336 1065 -336 1072 -425 c 1,21,-1 + 913 -425 l 1,22,23 + 907 -403 907 -403 889 -392 c 128,-1,24 + 871 -381 871 -381 831.5 -376.5 c 128,-1,25 + 792 -372 792 -372 644 -372 c 0,26,27 + 508 -372 508 -372 414.5 -341.5 c 128,-1,28 + 321 -311 321 -311 259.5 -257 c 128,-1,29 + 198 -203 198 -203 163.5 -124.5 c 128,-1,30 + 129 -46 129 -46 113.5 52 c 128,-1,31 + 98 150 98 150 98 353 c 0,0,1 +903 552 m 0,32,33 + 903 700 903 700 871.5 792 c 128,-1,34 + 840 884 840 884 777.5 926.5 c 128,-1,35 + 715 969 715 969 603 969 c 0,36,37 + 439 969 439 969 366.5 866.5 c 128,-1,38 + 294 764 294 764 294 552 c 0,39,40 + 294 342 294 342 366 237.5 c 128,-1,41 + 438 133 438 133 592 133 c 0,42,43 + 760 133 760 133 831.5 234 c 128,-1,44 + 903 335 903 335 903 552 c 0,32,33 +EndSplineSet +EndChar + +StartChar: uni03F2 +Encoding: 1010 1010 931 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 70 99 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni03F3 +Encoding: 1011 1011 932 +Width: 455 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 77 106 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni03F4 +Encoding: 1012 1012 933 +Width: 1593 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1177 1256 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni03F5 +Encoding: 1013 1013 934 +Width: 905 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 9 + 0 + 13 + 16 + 16 + 15 + 4 + 0 + 0 + 4 + 21 + 20 + 13 + 16 + 80 + 89 + 15 + 13 + 1 + 11 + 3 + 13 + 13 + 1 + 7 + 7 + 10 + 80 + 89 + 7 + 15 + 1 + 18 + 80 + 89 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +825 0 m 1,0,-1 + 546 0 l 2,1,2 + 317 0 317 0 198.5 135.5 c 128,-1,3 + 80 271 80 271 80 531 c 0,4,5 + 80 787 80 787 207.5 934.5 c 128,-1,6 + 335 1082 335 1082 563 1082 c 2,7,-1 + 825 1082 l 1,8,-1 + 825 942 l 1,9,-1 + 555 942 l 2,10,11 + 416 942 416 942 340.5 855 c 128,-1,12 + 265 768 265 768 265 613 c 1,13,-1 + 640 613 l 1,14,-1 + 640 481 l 1,15,-1 + 265 481 l 1,16,17 + 265 140 265 140 556 140 c 2,18,-1 + 825 140 l 1,19,-1 + 825 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03F6 +Encoding: 1014 1014 935 +Width: 905 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 6 + 3 + 3 + 15 + 10 + 0 + 0 + 4 + 15 + 3 + 21 + 20 + 5 + 4 + 80 + 89 + 15 + 5 + 1 + 11 + 3 + 5 + 5 + 19 + 11 + 19 + 0 + 80 + 89 + 19 + 21 + 11 + 10 + 80 + 89 + 11 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +80 140 m 1,0,-1 + 349 140 l 2,1,2 + 640 140 640 140 640 481 c 1,3,-1 + 265 481 l 1,4,-1 + 265 613 l 1,5,-1 + 640 613 l 1,6,7 + 640 769 640 769 565 855.5 c 128,-1,8 + 490 942 490 942 350 942 c 2,9,-1 + 80 942 l 1,10,-1 + 80 1082 l 1,11,-1 + 342 1082 l 2,12,13 + 569 1082 569 1082 697 934.5 c 128,-1,14 + 825 787 825 787 825 531 c 0,15,16 + 825 272 825 272 707 136 c 128,-1,17 + 589 0 589 0 359 0 c 2,18,-1 + 80 0 l 1,19,-1 + 80 140 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03F7 +Encoding: 1015 1015 936 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 160 222 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni03F8 +Encoding: 1016 1016 937 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 192 254 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni03F9 +Encoding: 1017 1017 938 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 38 67 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni03FA +Encoding: 1018 1018 939 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 8 + 5 + 5 + 6 + 10 + 0 + 0 + 12 + 12 + 9 + 6 + 3 + 13 + 14 + 11 + 3 + 9 + 4 + 1 + 7 + 3 + 3 + 6 + 7 + 3 + 0 + 6 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +IP +SHP[rp1] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1366 0 m 1,0,-1 + 1366 1240 l 1,1,-1 + 923 620 l 1,2,-1 + 789 620 l 1,3,-1 + 338 1240 l 1,4,-1 + 338 0 l 1,5,-1 + 168 0 l 1,6,-1 + 168 1409 l 1,7,-1 + 419 1409 l 1,8,-1 + 857 812 l 1,9,-1 + 1293 1409 l 1,10,-1 + 1538 1409 l 1,11,-1 + 1538 0 l 1,12,-1 + 1366 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03FB +Encoding: 1019 1019 940 +Width: 1408 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 8 + 5 + 5 + 6 + 14 + 17 + 17 + 16 + 6 + 16 + 21 + 22 + 20 + 2 + 11 + 3 + 14 + 17 + 21 + 14 + 15 + 7 + 15 + 6 + 27 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +787 0 m 1,0,-1 + 634 0 l 1,1,-1 + 310 951 l 1,2,3 + 316 795 316 795 316 724 c 2,4,-1 + 316 -425 l 1,5,-1 + 142 -425 l 1,6,-1 + 142 1082 l 1,7,-1 + 422 1082 l 1,8,-1 + 642 421 l 1,9,10 + 694 278 694 278 710 135 c 1,11,12 + 732 296 732 296 778 421 c 1,13,-1 + 998 1082 l 1,14,-1 + 1267 1082 l 1,15,-1 + 1267 0 l 1,16,-1 + 1094 0 l 1,17,-1 + 1094 724 l 1,18,-1 + 1097 838 l 1,19,-1 + 1102 953 l 1,20,-1 + 787 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03FC +Encoding: 1020 1020 941 +Width: 1165 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 32 + 20 + 20 + 15 + 10 + 14 + 14 + 18 + 15 + 27 + 0 + 0 + 12 + 15 + 3 + 39 + 40 + 6 + 23 + 3 + 23 + 30 + 80 + 89 + 23 + 16 + 16 + 19 + 19 + 13 + 64 + 10 + 10 + 3 + 14 + 3 + 36 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp1] +MDAP[rnd] +MDRP[min,rnd,black] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1083 516 m 0,0,1 + 1083 278 1083 278 961.5 129 c 128,-1,2 + 840 -20 840 -20 646 -20 c 0,3,4 + 536 -20 536 -20 456 14 c 128,-1,5 + 376 48 376 48 312 123 c 1,6,-1 + 308 123 l 1,7,8 + 312 63 312 63 312 0 c 2,9,-1 + 312 -125 l 1,10,-1 + 631 -125 l 1,11,-1 + 631 -260 l 1,12,-1 + 312 -260 l 1,13,-1 + 312 -425 l 1,14,-1 + 132 -425 l 1,15,-1 + 132 -260 l 1,16,-1 + 10 -260 l 1,17,-1 + 10 -125 l 1,18,-1 + 132 -125 l 1,19,-1 + 132 581 l 2,20,21 + 132 826 132 826 253 964.5 c 128,-1,22 + 374 1103 374 1103 587 1103 c 0,23,24 + 729 1103 729 1103 843 1030.5 c 128,-1,25 + 957 958 957 958 1020 823.5 c 128,-1,26 + 1083 689 1083 689 1083 516 c 0,0,1 +890 524 m 0,27,28 + 890 733 890 733 804.5 851.5 c 128,-1,29 + 719 970 719 970 575 970 c 0,30,31 + 312 970 312 970 312 577 c 2,32,-1 + 312 260 l 1,33,34 + 367 191 367 191 451 152 c 128,-1,35 + 535 113 535 113 623 113 c 0,36,37 + 750 113 750 113 820 219 c 128,-1,38 + 890 325 890 325 890 524 c 0,27,28 +EndSplineSet +EndChar + +StartChar: uni03FD +Encoding: 1021 1021 942 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 328 390 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni03FE +Encoding: 1022 1022 943 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 38 67 N 1 0 0 1 0 0 2 +Refer: 17 46 N 1 0 0 1 512 605 2 +EndChar + +StartChar: uni03FF +Encoding: 1023 1023 944 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 328 390 N 1 0 0 1 0 0 3 +Refer: 17 46 N 1 0 0 1 422 605 2 +EndChar + +StartChar: uni0400 +Encoding: 1024 1024 945 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 17 + 17 + 5 + 38 + 1 + 14 +PUSHW_1 + -63 +PUSHB_5 + 14 + 17 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 342 0 2 +EndChar + +StartChar: uni0401 +Encoding: 1025 1025 946 +Width: 1367 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 16 + 21 + 64 + 21 + 2 + 32 + 21 + 80 + 21 + 128 + 21 + 176 + 21 + 224 + 21 + 5 + 0 + 21 + 48 + 21 + 96 + 21 + 144 + 21 + 192 + 21 + 240 + 21 + 6 + 197 + 32 + 21 + 1 + 2 + 1 + 12 + 12 + 5 + 38 + 2 + 1 + 16 +PUSHW_1 + -22 +PUSHB_5 + 16 + 14 + 0 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +SDB +DELTAP1 +DELTAP2 +DELTAP3 +EndTTInstrs +AnchorPoint: "Anchor-17" 685 1840 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 2 +Refer: 2306 -1 N 1 0 0 1 377 0 2 +EndChar + +StartChar: uni0402 +Encoding: 1026 1026 947 +Width: 1771 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 20 + 8 + 31 + 1 + 28 + 28 + 34 + 29 + 29 + 13 + 8 + 3 + 36 + 35 + 0 + 31 + 32 + 31 + 95 + 89 + 27 + 24 + 4 + 24 + 95 + 89 + 1 + 4 + 4 + 29 + 32 + 3 + 29 + 18 + 10 + 17 + 95 + 89 + 63 + 14 + 1 + 14 + 10 + 19 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +720 1253 m 1,0,-1 + 720 901 l 1,1,2 + 837 926 837 926 962.5 943 c 128,-1,3 + 1088 960 1088 960 1172 960 c 0,4,5 + 1398 960 1398 960 1506.5 866.5 c 128,-1,6 + 1615 773 1615 773 1615 585 c 2,7,-1 + 1615 371 l 2,8,9 + 1615 -20 1615 -20 1263 -20 c 0,10,11 + 1169 -20 1169 -20 1096 8.5 c 128,-1,12 + 1023 37 1023 37 954 103 c 1,13,-1 + 1065 226 l 1,14,15 + 1125 173 1125 173 1169.5 153.5 c 128,-1,16 + 1214 134 1214 134 1261 134 c 0,17,18 + 1345 134 1345 134 1385 184.5 c 128,-1,19 + 1425 235 1425 235 1425 346 c 2,20,-1 + 1425 565 l 2,21,22 + 1425 684 1425 684 1360.5 745 c 128,-1,23 + 1296 806 1296 806 1152 806 c 0,24,25 + 1060 806 1060 806 923.5 789 c 128,-1,26 + 787 772 787 772 720 756 c 1,27,-1 + 720 0 l 1,28,-1 + 530 0 l 1,29,-1 + 530 1253 l 1,30,-1 + 46 1253 l 1,31,-1 + 46 1409 l 1,32,-1 + 1204 1409 l 1,33,-1 + 1204 1253 l 1,34,-1 + 720 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0403 +Encoding: 1027 1027 948 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 6 + 5 + 38 + 1 + 6 + 33 + 6 + 9 + 4 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 838 915 N 1 0 0 1 0 0 2 +Refer: 2303 -1 N 1 0 0 1 369 0 2 +Kerns2: 2016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 125 -137 "'kern' Horizontal Kerning lookup 17 subtable" 109 -137 "'kern' Horizontal Kerning lookup 17 subtable" 17 -250 "'kern' Horizontal Kerning lookup 17 subtable" 15 -250 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0404 +Encoding: 1028 1028 949 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 79 + 5 + 13 + 3 + 6 + 6 + 20 + 27 + 26 + 26 + 12 + 13 + 20 + 13 + 30 + 31 + 0 + 31 + 1 + 11 + 3 + 3 + 6 + 95 + 89 + 95 + 3 + 143 + 3 + 2 + 15 + 3 + 1 + 11 + 3 + 3 + 16 + 23 + 15 + 27 + 1 + 13 + 3 + 27 + 27 + 23 + 23 + 0 + 95 + 89 + 23 + 4 + 0 + 12 + 16 + 12 + 64 + 12 + 80 + 12 + 144 + 12 + 160 + 12 + 224 + 12 + 240 + 12 + 8 + 12 + 3 + 12 + 12 + 16 + 16 + 9 + 95 + 89 + 16 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +MDAP[rnd] +SDB +DELTAP1 +DELTAP2 +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +792 1274 m 0,0,1 + 579 1274 579 1274 450.5 1147.5 c 128,-1,2 + 322 1021 322 1021 301 792 c 1,3,-1 + 955 792 l 1,4,-1 + 955 638 l 1,5,-1 + 301 638 l 1,6,7 + 319 409 319 409 452.5 273 c 128,-1,8 + 586 137 586 137 800 137 c 0,9,10 + 947 137 947 137 1060.5 211 c 128,-1,11 + 1174 285 1174 285 1245 429 c 1,12,-1 + 1401 352 l 1,13,14 + 1304 160 1304 160 1152.5 70 c 128,-1,15 + 1001 -20 1001 -20 791 -20 c 0,16,17 + 578 -20 578 -20 422.5 68.5 c 128,-1,18 + 267 157 267 157 185.5 321.5 c 128,-1,19 + 104 486 104 486 104 711 c 0,20,21 + 104 1048 104 1048 286 1239 c 128,-1,22 + 468 1430 468 1430 790 1430 c 0,23,24 + 1015 1430 1015 1430 1166 1342 c 128,-1,25 + 1317 1254 1317 1254 1388 1081 c 1,26,-1 + 1207 1021 l 1,27,28 + 1158 1144 1158 1144 1049.5 1209 c 128,-1,29 + 941 1274 941 1274 792 1274 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0405 +Encoding: 1029 1029 950 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni0406 +Encoding: 1030 1030 951 +Width: 569 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni0407 +Encoding: 1031 1031 952 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 4 + 4 + 5 + 38 + 2 + 1 + 8 + 1 + 8 + 6 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 -38 0 2 +EndChar + +StartChar: uni0408 +Encoding: 1032 1032 953 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 45 74 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni0409 +Encoding: 1033 1033 954 +Width: 2165 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 28 + 0 + 24 + 33 + 33 + 4 + 6 + 22 + 14 + 22 + 4 + 0 + 4 + 38 + 37 + 24 + 32 + 95 + 89 + 24 + 24 + 4 + 22 + 22 + 6 + 95 + 89 + 22 + 3 + 11 + 16 + 95 + 89 + 11 + 19 + 4 + 33 + 95 + 89 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +2059 413 m 0,0,1 + 2059 226 2059 226 1930 113 c 128,-1,2 + 1801 0 1801 0 1574 0 c 2,3,-1 + 989 0 l 1,4,-1 + 989 1249 l 1,5,-1 + 573 1249 l 1,6,-1 + 524 881 l 2,7,8 + 473 483 473 483 425.5 308 c 128,-1,9 + 378 133 378 133 306 58.5 c 128,-1,10 + 234 -16 234 -16 104 -16 c 0,11,12 + 46 -16 46 -16 18 -6 c 1,13,-1 + 18 146 l 1,14,15 + 37 139 37 139 74 139 c 0,16,17 + 127 139 127 139 160.5 171.5 c 128,-1,18 + 194 204 194 204 223 279.5 c 128,-1,19 + 252 355 252 355 281 503.5 c 128,-1,20 + 310 652 310 652 339 869.5 c 128,-1,21 + 368 1087 368 1087 410 1409 c 1,22,-1 + 1180 1409 l 1,23,-1 + 1180 813 l 1,24,-1 + 1562 813 l 2,25,26 + 1798 813 1798 813 1928.5 708 c 128,-1,27 + 2059 603 2059 603 2059 413 c 0,0,1 +1867 411 m 0,28,29 + 1867 532 1867 532 1785 596.5 c 128,-1,30 + 1703 661 1703 661 1539 661 c 2,31,-1 + 1180 661 l 1,32,-1 + 1180 151 l 1,33,-1 + 1547 151 l 2,34,35 + 1711 151 1711 151 1789 219 c 128,-1,36 + 1867 287 1867 287 1867 411 c 0,28,29 +EndSplineSet +Kerns2: 2021 -160 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni040A +Encoding: 1034 1034 955 +Width: 2069 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 11 + 7 + 7 + 8 + 15 + 24 + 24 + 12 + 4 + 19 + 0 + 0 + 4 + 8 + 3 + 28 + 29 + 15 + 23 + 95 + 89 + 15 + 15 + 11 + 11 + 6 + 95 + 89 + 11 + 11 + 8 + 13 + 9 + 3 + 8 + 18 + 4 + 24 + 95 + 89 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1963 413 m 0,0,1 + 1963 226 1963 226 1834 113 c 128,-1,2 + 1705 0 1705 0 1478 0 c 2,3,-1 + 933 0 l 1,4,-1 + 933 653 l 1,5,-1 + 359 653 l 1,6,-1 + 359 0 l 1,7,-1 + 168 0 l 1,8,-1 + 168 1409 l 1,9,-1 + 359 1409 l 1,10,-1 + 359 813 l 1,11,-1 + 933 813 l 1,12,-1 + 933 1409 l 1,13,-1 + 1124 1409 l 1,14,-1 + 1124 813 l 1,15,-1 + 1466 813 l 2,16,17 + 1702 813 1702 813 1832.5 708 c 128,-1,18 + 1963 603 1963 603 1963 413 c 0,0,1 +1771 411 m 0,19,20 + 1771 532 1771 532 1689 596.5 c 128,-1,21 + 1607 661 1607 661 1443 661 c 2,22,-1 + 1124 661 l 1,23,-1 + 1124 151 l 1,24,-1 + 1451 151 l 2,25,26 + 1615 151 1615 151 1693 219 c 128,-1,27 + 1771 287 1771 287 1771 411 c 0,19,20 +EndSplineSet +Kerns2: 2021 -137 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni040B +Encoding: 1035 1035 956 +Width: 1749 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 60 + 0 + 20 + 15 + 10 + 7 + 7 + 13 + 8 + 20 + 8 + 22 + 21 + 160 + 22 + 176 + 22 + 192 + 22 + 3 + 160 + 22 + 224 + 22 + 2 + 239 + 22 + 1 + 0 + 22 + 96 + 22 + 144 + 22 + 160 + 22 + 4 + 10 + 3 + 6 + 4 + 17 + 4 + 95 + 89 + 15 + 17 + 17 + 0 + 11 + 14 + 10 + 11 + 10 + 95 + 89 + 11 + 3 + 8 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1393 0 m 1,0,-1 + 1393 575 l 2,1,2 + 1393 697 1393 697 1329 751.5 c 128,-1,3 + 1265 806 1265 806 1132 806 c 0,4,5 + 970 806 970 806 720 756 c 1,6,-1 + 720 0 l 1,7,-1 + 530 0 l 1,8,-1 + 530 1253 l 1,9,-1 + 46 1253 l 1,10,-1 + 46 1409 l 1,11,-1 + 1249 1409 l 1,12,-1 + 1249 1253 l 1,13,-1 + 720 1253 l 1,14,-1 + 720 901 l 1,15,16 + 986 960 986 960 1140 960 c 0,17,18 + 1583 960 1583 960 1583 595 c 2,19,-1 + 1583 0 l 1,20,-1 + 1393 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni040C +Encoding: 1036 1036 957 +Width: 1193 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 20 + 5 + 38 + 1 + 20 + 37 + 20 + 23 + 0 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 971 1050 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 428 0 2 +EndChar + +StartChar: uni040D +Encoding: 1037 1037 958 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 19 + 19 + 5 + 38 + 1 + 16 +PUSHW_1 + -78 +PUSHB_5 + 16 + 19 + 1 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 969 1048 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 340 0 2 +EndChar + +StartChar: uni040E +Encoding: 1038 1038 959 +Width: 1301 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 20 + 20 + 5 + 38 + 1 + 22 + 7 + 22 + 28 + 11 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-17" 675 1900 basechar 0 +LayerCount: 2 +Fore +Refer: 980 1059 N 1 0 0 1 0 0 3 +Refer: 2299 -1 N 1 0 0 1 350 330 2 +EndChar + +StartChar: uni040F +Encoding: 1039 1039 960 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 5 + 2 + 11 + 0 + 6 + 9 + 9 + 0 + 2 + 3 + 12 + 13 + 16 + 13 + 1 + 32 + 13 + 128 + 13 + 224 + 13 + 3 + 15 + 13 + 1 + 9 + 3 + 7 + 7 + 3 + 3 + 10 + 2 + 2 + 5 + 95 + 89 + 2 + 18 + 0 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +646 -408 m 1,0,-1 + 646 0 l 1,1,-1 + 168 0 l 1,2,-1 + 168 1409 l 1,3,-1 + 359 1409 l 1,4,-1 + 359 160 l 1,5,-1 + 1118 160 l 1,6,-1 + 1118 1409 l 1,7,-1 + 1304 1409 l 1,8,-1 + 1304 0 l 1,9,-1 + 826 0 l 1,10,-1 + 826 -408 l 1,11,-1 + 646 -408 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0410 +Encoding: 1040 1040 961 +Width: 1366 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-17" 680 1540 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Kerns2: 2021 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1022 45 "'kern' Horizontal Kerning lookup 17 subtable" 1013 23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" 990 -45 "'kern' Horizontal Kerning lookup 17 subtable" 984 -160 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 980 -90 "'kern' Horizontal Kerning lookup 17 subtable" 979 -160 "'kern' Horizontal Kerning lookup 17 subtable" 978 -45 "'kern' Horizontal Kerning lookup 17 subtable" 976 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 972 45 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 965 68 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0411 +Encoding: 1041 1041 962 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 9 + 18 + 18 + 4 + 13 + 7 + 0 + 4 + 0 + 22 + 23 + 96 + 23 + 1 + 23 +PUSHW_1 + -64 +NPUSHB + 37 + 30 + 35 + 72 + 15 + 23 + 1 + 22 + 3 + 9 + 17 + 95 + 89 + 0 + 9 + 48 + 9 + 160 + 9 + 3 + 19 + 3 + 9 + 9 + 4 + 5 + 5 + 8 + 95 + 89 + 5 + 3 + 4 + 18 + 95 + 89 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +CALL +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1238 413 m 0,0,1 + 1238 226 1238 226 1109 113 c 128,-1,2 + 980 0 980 0 753 0 c 2,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 1094 1409 l 1,6,-1 + 1094 1253 l 1,7,-1 + 359 1253 l 1,8,-1 + 359 813 l 1,9,-1 + 741 813 l 2,10,11 + 977 813 977 813 1107.5 708 c 128,-1,12 + 1238 603 1238 603 1238 413 c 0,0,1 +1046 411 m 0,13,14 + 1046 532 1046 532 964 596.5 c 128,-1,15 + 882 661 882 661 718 661 c 2,16,-1 + 359 661 l 1,17,-1 + 359 151 l 1,18,-1 + 726 151 l 2,19,20 + 890 151 890 151 968 219 c 128,-1,21 + 1046 287 1046 287 1046 411 c 0,13,14 +EndSplineSet +Kerns2: 1012 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -23 "'kern' Horizontal Kerning lookup 17 subtable" 992 -23 "'kern' Horizontal Kerning lookup 17 subtable" 990 -23 "'kern' Horizontal Kerning lookup 17 subtable" 987 -68 "'kern' Horizontal Kerning lookup 17 subtable" 984 -92 "'kern' Horizontal Kerning lookup 17 subtable" 982 -45 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" 980 -47 "'kern' Horizontal Kerning lookup 17 subtable" 979 -92 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -23 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0412 +Encoding: 1042 1042 963 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 37 66 N 1 0 0 1 0 0 3 +Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -23 "'kern' Horizontal Kerning lookup 17 subtable" 992 -68 "'kern' Horizontal Kerning lookup 17 subtable" 987 -115 "'kern' Horizontal Kerning lookup 17 subtable" 984 -92 "'kern' Horizontal Kerning lookup 17 subtable" 982 -90 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 980 -68 "'kern' Horizontal Kerning lookup 17 subtable" 979 -137 "'kern' Horizontal Kerning lookup 17 subtable" 978 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -68 "'kern' Horizontal Kerning lookup 17 subtable" 972 -23 "'kern' Horizontal Kerning lookup 17 subtable" 968 -68 "'kern' Horizontal Kerning lookup 17 subtable" 967 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -45 "'kern' Horizontal Kerning lookup 17 subtable" 961 -68 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0413 +Encoding: 1043 1043 964 +Width: 1109 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 838 915 N 1 0 0 1 0 0 2 +Kerns2: 2016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1024 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1023 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1021 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1020 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1009 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1006 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1001 -115 "'kern' Horizontal Kerning lookup 17 subtable" 998 -137 "'kern' Horizontal Kerning lookup 17 subtable" 997 -137 "'kern' Horizontal Kerning lookup 17 subtable" 995 -115 "'kern' Horizontal Kerning lookup 17 subtable" 993 -115 "'kern' Horizontal Kerning lookup 17 subtable" 992 -68 "'kern' Horizontal Kerning lookup 17 subtable" 978 -92 "'kern' Horizontal Kerning lookup 17 subtable" 975 -115 "'kern' Horizontal Kerning lookup 17 subtable" 973 -47 "'kern' Horizontal Kerning lookup 17 subtable" 972 -115 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -137 "'kern' Horizontal Kerning lookup 17 subtable" 961 -137 "'kern' Horizontal Kerning lookup 17 subtable" 125 -137 "'kern' Horizontal Kerning lookup 17 subtable" 109 -137 "'kern' Horizontal Kerning lookup 17 subtable" 17 -250 "'kern' Horizontal Kerning lookup 17 subtable" 15 -250 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0414 +Encoding: 1044 1044 965 +Width: 1387 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 6 + 7 + 21 + 9 + 17 + 13 + 0 + 15 + 3 + 2 + 2 + 15 + 13 + 9 + 7 + 5 + 22 + 23 + 15 + 23 + 47 + 23 + 2 + 9 + 3 + 13 + 17 + 95 + 89 + 13 + 3 + 8 + 0 + 21 + 5 + 21 + 95 + 89 + 5 + 18 + 7 + 2 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1174 160 m 1,0,-1 + 1349 160 l 1,1,-1 + 1349 -408 l 1,2,-1 + 1169 -408 l 1,3,-1 + 1169 0 l 1,4,-1 + 195 0 l 1,5,-1 + 195 -408 l 1,6,-1 + 15 -408 l 1,7,-1 + 15 160 l 1,8,-1 + 159 160 l 1,9,10 + 237 257 237 257 291.5 432.5 c 128,-1,11 + 346 608 346 608 383 899 c 2,12,-1 + 450 1409 l 1,13,-1 + 1174 1409 l 1,14,-1 + 1174 160 l 1,0,-1 +988 160 m 1,15,-1 + 988 1249 l 1,16,-1 + 613 1249 l 1,17,-1 + 564 881 l 2,18,19 + 527 607 527 607 482 434 c 128,-1,20 + 437 261 437 261 374 160 c 1,21,-1 + 988 160 l 1,15,-1 +EndSplineSet +Kerns2: 1012 45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 68 "'kern' Horizontal Kerning lookup 17 subtable" 984 -70 "'kern' Horizontal Kerning lookup 17 subtable" 981 -45 "'kern' Horizontal Kerning lookup 17 subtable" 980 23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0415 +Encoding: 1045 1045 966 +Width: 1366 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-17" 700 1540 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Kerns2: 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0416 +Encoding: 1046 1046 967 +Width: 1891 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 81 + 30 + 27 + 17 + 23 + 24 + 24 + 29 + 28 + 6 + 3 + 9 + 16 + 16 + 35 + 17 + 34 + 34 + 35 + 10 + 9 + 9 + 4 + 5 + 5 + 35 + 28 + 3 + 37 + 36 + 47 + 37 + 1 + 2 + 15 + 37 + 1 + 9 + 0 + 37 + 48 + 37 + 64 + 37 + 160 + 37 + 4 + 13 + 3 + 27 + 6 + 30 + 3 + 6 + 3 + 15 + 33 + 0 + 15 + 0 + 96 + 89 + 18 + 127 + 15 + 175 + 15 + 2 + 47 + 15 + 1 + 15 + 15 + 4 + 23 + 16 + 9 + 3 + 35 + 29 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +DELTAP1 +DELTAP2 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SDB +DELTAP1 +SDS +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +850 645 m 1,0,1 + 813 645 813 645 757.5 658 c 128,-1,2 + 702 671 702 671 677 683 c 1,3,-1 + 250 0 l 1,4,-1 + 28 0 l 1,5,-1 + 537 775 l 1,6,7 + 489 810 489 810 358 999 c 2,8,-1 + 75 1409 l 1,9,-1 + 275 1409 l 1,10,-1 + 480 1104 l 2,11,12 + 591 937 591 937 639 883.5 c 128,-1,13 + 687 830 687 830 731 810 c 128,-1,14 + 775 790 775 790 850 790 c 1,15,-1 + 850 1409 l 1,16,-1 + 1041 1409 l 1,17,-1 + 1041 790 l 1,18,19 + 1116 790 1116 790 1161 810.5 c 128,-1,20 + 1206 831 1206 831 1255 886.5 c 128,-1,21 + 1304 942 1304 942 1411 1104 c 2,22,-1 + 1616 1409 l 1,23,-1 + 1816 1409 l 1,24,-1 + 1533 999 l 2,25,26 + 1402 810 1402 810 1354 775 c 1,27,-1 + 1863 0 l 1,28,-1 + 1641 0 l 1,29,-1 + 1214 683 l 1,30,31 + 1189 671 1189 671 1134.5 658 c 128,-1,32 + 1080 645 1080 645 1041 645 c 1,33,-1 + 1041 0 l 1,34,-1 + 850 0 l 1,35,-1 + 850 645 l 1,0,1 +EndSplineSet +Kerns2: 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -25 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" 987 45 "'kern' Horizontal Kerning lookup 17 subtable" 980 45 "'kern' Horizontal Kerning lookup 17 subtable" 979 23 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0417 +Encoding: 1047 1047 968 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 66 + 34 + 14 + 31 + 24 + 25 + 25 + 4 + 3 + 18 + 31 + 31 + 9 + 37 + 3 + 37 + 40 + 41 + 34 + 14 + 13 + 14 + 13 + 95 + 89 + 15 + 14 + 63 + 14 + 2 + 32 + 3 + 14 + 14 + 0 + 28 + 24 + 64 + 13 + 16 + 72 + 24 + 24 + 28 + 28 + 21 + 95 + 89 + 28 + 4 + 0 + 6 + 95 + 89 + 32 + 4 + 48 + 4 + 112 + 4 + 128 + 4 + 4 + 208 + 4 + 1 + 4 +PUSHW_1 + -64 +PUSHB_7 + 13 + 17 + 72 + 4 + 4 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +CALL +DELTAP1 +DELTAP2 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +621 -20 m 0,0,1 + 417 -20 417 -20 285 60.5 c 128,-1,2 + 153 141 153 141 67 328 c 1,3,-1 + 232 405 l 1,4,5 + 351 133 351 133 614 133 c 0,6,7 + 767 133 767 133 855 204 c 128,-1,8 + 943 275 943 275 943 403 c 0,9,10 + 943 536 943 536 847 595 c 128,-1,11 + 751 654 751 654 549 654 c 2,12,-1 + 478 654 l 1,13,-1 + 478 802 l 1,14,-1 + 549 802 l 2,15,16 + 730 802 730 802 816.5 861.5 c 128,-1,17 + 903 921 903 921 903 1044 c 0,18,19 + 903 1151 903 1151 830.5 1212.5 c 128,-1,20 + 758 1274 758 1274 623 1274 c 0,21,22 + 497 1274 497 1274 411 1215.5 c 128,-1,23 + 325 1157 325 1157 274 1027 c 1,24,-1 + 96 1088 l 1,25,26 + 166 1261 166 1261 298 1345 c 128,-1,27 + 430 1429 430 1429 630 1429 c 0,28,29 + 842 1429 842 1429 968 1329.5 c 128,-1,30 + 1094 1230 1094 1230 1094 1061 c 0,31,32 + 1094 934 1094 934 1022 851 c 128,-1,33 + 950 768 950 768 814 736 c 1,34,35 + 966 713 966 713 1051 625.5 c 128,-1,36 + 1136 538 1136 538 1136 406 c 0,37,38 + 1136 211 1136 211 997.5 95.5 c 128,-1,39 + 859 -20 859 -20 621 -20 c 0,0,1 +EndSplineSet +Kerns2: 992 -23 "'kern' Horizontal Kerning lookup 17 subtable" 984 -45 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" 980 -23 "'kern' Horizontal Kerning lookup 17 subtable" 979 -45 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -23 "'kern' Horizontal Kerning lookup 17 subtable" 972 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0418 +Encoding: 1048 1048 969 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 13 + 2 + 2 + 1 + 6 + 9 + 9 + 8 + 1 + 8 + 14 + 15 + 15 + 15 + 47 + 15 + 2 + 12 + 1 + 6 + 6 + 1 + 3 + 9 + 9 + 5 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SHP[rp1] +SVTCA[x-axis] +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 700 1540 basechar 0 +LayerCount: 2 +Fore +SplineSet +168 0 m 1,0,-1 + 168 1409 l 1,1,-1 + 340 1409 l 1,2,-1 + 340 485 l 2,3,4 + 340 371 340 371 332 211 c 1,5,-1 + 1082 1409 l 1,6,-1 + 1304 1409 l 1,7,-1 + 1304 0 l 1,8,-1 + 1134 0 l 1,9,-1 + 1134 936 l 2,10,11 + 1134 1058 1134 1058 1140 1190 c 1,12,-1 + 398 0 l 1,13,-1 + 168 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0419 +Encoding: 1049 1049 970 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 14 + 14 + 5 + 38 + 1 + 16 + 6 + 16 + 22 + 0 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-17" 730 1900 basechar 0 +LayerCount: 2 +Fore +Refer: 969 1048 N 1 0 0 1 0 0 3 +Refer: 2299 -1 N 1 0 0 1 402 330 2 +EndChar + +StartChar: uni041A +Encoding: 1050 1050 971 +Width: 1193 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 11 + 14 + 8 + 2 + 2 + 18 + 18 + 19 + 7 + 8 + 8 + 13 + 12 + 19 + 12 + 20 + 21 + 15 + 21 + 1 + 11 + 3 + 14 + 2 + 11 + 17 + 2 + 17 + 96 + 89 + 47 + 2 + 1 + 2 + 2 + 19 + 12 + 18 + 7 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +IP +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +168 1409 m 1,0,-1 + 359 1409 l 1,1,-1 + 359 790 l 1,2,3 + 434 790 434 790 479 810.5 c 128,-1,4 + 524 831 524 831 573 886.5 c 128,-1,5 + 622 942 622 942 729 1104 c 2,6,-1 + 934 1409 l 1,7,-1 + 1134 1409 l 1,8,-1 + 851 999 l 2,9,10 + 720 810 720 810 672 775 c 1,11,-1 + 1181 0 l 1,12,-1 + 959 0 l 1,13,-1 + 532 683 l 1,14,15 + 507 671 507 671 452.5 658 c 128,-1,16 + 398 645 398 645 359 645 c 1,17,-1 + 359 0 l 1,18,-1 + 168 0 l 1,19,-1 + 168 1409 l 1,0,-1 +EndSplineSet +Kerns2: 981 -70 "'kern' Horizontal Kerning lookup 17 subtable" 980 23 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -23 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni041B +Encoding: 1051 1051 972 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 19 + 20 + 1 + 17 + 8 + 17 + 20 + 3 + 22 + 21 + 0 + 22 + 1 + 17 + 3 + 20 + 18 + 17 + 1 + 95 + 89 + 17 + 3 + 6 + 11 + 95 + 89 + 6 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +991 1249 m 1,0,-1 + 573 1249 l 1,1,-1 + 524 881 l 2,2,3 + 473 483 473 483 425.5 308 c 128,-1,4 + 378 133 378 133 306 58.5 c 128,-1,5 + 234 -16 234 -16 104 -16 c 0,6,7 + 46 -16 46 -16 18 -6 c 1,8,-1 + 18 146 l 1,9,10 + 37 139 37 139 74 139 c 0,11,12 + 127 139 127 139 160.5 171.5 c 128,-1,13 + 194 204 194 204 223 279.5 c 128,-1,14 + 252 355 252 355 281 503.5 c 128,-1,15 + 310 652 310 652 339 869.5 c 128,-1,16 + 368 1087 368 1087 410 1409 c 1,17,-1 + 1177 1409 l 1,18,-1 + 1177 0 l 1,19,-1 + 991 0 l 1,20,-1 + 991 1249 l 1,0,-1 +EndSplineSet +Kerns2: 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 994 23 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni041C +Encoding: 1052 1052 973 +Width: 1706 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 48 77 N 1 0 0 1 0 0 3 +Kerns2: 1022 23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 998 23 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" 984 -23 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni041D +Encoding: 1053 1053 974 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni041E +Encoding: 1054 1054 975 +Width: 1593 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-17" 800 1540 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Kerns2: 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 984 -45 "'kern' Horizontal Kerning lookup 17 subtable" 982 -92 "'kern' Horizontal Kerning lookup 17 subtable" 980 -45 "'kern' Horizontal Kerning lookup 17 subtable" 972 -23 "'kern' Horizontal Kerning lookup 17 subtable" 967 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -45 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni041F +Encoding: 1055 1055 976 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 15 + 9 + 1 + 32 + 9 + 1 + 32 + 9 + 80 + 9 + 96 + 9 + 112 + 9 + 128 + 9 + 160 + 9 + 176 + 9 + 192 + 9 + 8 +DELTAP1 +DELTAP2 +DELTAP1 +EndTTInstrs +LayerCount: 2 +Fore +Refer: 851 928 N 1 0 0 1 -2 0 2 +EndChar + +StartChar: uni0420 +Encoding: 1056 1056 977 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 51 80 N 1 0 0 1 0 0 3 +Kerns2: 1024 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1022 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -90 "'kern' Horizontal Kerning lookup 17 subtable" 998 -90 "'kern' Horizontal Kerning lookup 17 subtable" 997 -160 "'kern' Horizontal Kerning lookup 17 subtable" 993 -68 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 982 -92 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" 980 -45 "'kern' Horizontal Kerning lookup 17 subtable" 979 -92 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 973 -23 "'kern' Horizontal Kerning lookup 17 subtable" 972 -115 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" 967 -23 "'kern' Horizontal Kerning lookup 17 subtable" 965 -137 "'kern' Horizontal Kerning lookup 17 subtable" 961 -137 "'kern' Horizontal Kerning lookup 17 subtable" 125 -115 "'kern' Horizontal Kerning lookup 17 subtable" 30 -45 "'kern' Horizontal Kerning lookup 17 subtable" 29 -45 "'kern' Horizontal Kerning lookup 17 subtable" 17 -387 "'kern' Horizontal Kerning lookup 17 subtable" 15 -387 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0421 +Encoding: 1057 1057 978 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 38 67 N 1 0 0 1 0 0 3 +Kerns2: 1016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 999 45 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" 990 -23 "'kern' Horizontal Kerning lookup 17 subtable" 987 -70 "'kern' Horizontal Kerning lookup 17 subtable" 984 -68 "'kern' Horizontal Kerning lookup 17 subtable" 982 -115 "'kern' Horizontal Kerning lookup 17 subtable" 980 -68 "'kern' Horizontal Kerning lookup 17 subtable" 979 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 973 -23 "'kern' Horizontal Kerning lookup 17 subtable" 972 -68 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 965 -45 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0422 +Encoding: 1058 1058 979 +Width: 1251 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 55 84 N 1 0 0 1 0 0 3 +Kerns2: 2016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1024 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1023 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1021 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1020 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1018 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1009 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1008 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -160 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1003 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1001 -90 "'kern' Horizontal Kerning lookup 17 subtable" 998 -115 "'kern' Horizontal Kerning lookup 17 subtable" 995 -90 "'kern' Horizontal Kerning lookup 17 subtable" 993 -92 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -92 "'kern' Horizontal Kerning lookup 17 subtable" 972 -45 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 967 23 "'kern' Horizontal Kerning lookup 17 subtable" 965 -68 "'kern' Horizontal Kerning lookup 17 subtable" 961 -68 "'kern' Horizontal Kerning lookup 17 subtable" 125 -90 "'kern' Horizontal Kerning lookup 17 subtable" 109 -90 "'kern' Horizontal Kerning lookup 17 subtable" 17 -227 "'kern' Horizontal Kerning lookup 17 subtable" 15 -227 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0423 +Encoding: 1059 1059 980 +Width: 1301 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 13 + 10 + 12 + 11 + 11 + 3 + 10 + 3 + 21 + 20 + 14 + 15 + 15 + 21 + 13 + 10 + 11 + 0 + 14 + 14 + 11 + 3 + 4 + 6 + 0 + 6 + 95 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SRP2 +IP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 660 1540 basechar 0 +LayerCount: 2 +Fore +SplineSet +332 -20 m 0,0,1 + 270 -20 270 -20 202.5 -1 c 128,-1,2 + 135 18 135 18 89 50 c 1,3,-1 + 170 194 l 1,4,5 + 264 135 264 135 336 135 c 0,6,7 + 387 135 387 135 421.5 154.5 c 128,-1,8 + 456 174 456 174 491 221.5 c 128,-1,9 + 526 269 526 269 628 455 c 1,10,-1 + 55 1409 l 1,11,-1 + 273 1409 l 1,12,-1 + 722 625 l 1,13,-1 + 1106 1409 l 1,14,-1 + 1311 1409 l 1,15,-1 + 734 318 l 2,16,17 + 649 158 649 158 596 97 c 128,-1,18 + 543 36 543 36 480.5 8 c 128,-1,19 + 418 -20 418 -20 332 -20 c 0,0,1 +EndSplineSet +Kerns2: 2016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1024 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1023 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1018 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1017 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1015 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1009 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1008 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1006 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1003 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1002 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1001 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -115 "'kern' Horizontal Kerning lookup 17 subtable" 999 -68 "'kern' Horizontal Kerning lookup 17 subtable" 998 -137 "'kern' Horizontal Kerning lookup 17 subtable" 997 -160 "'kern' Horizontal Kerning lookup 17 subtable" 996 -92 "'kern' Horizontal Kerning lookup 17 subtable" 995 -115 "'kern' Horizontal Kerning lookup 17 subtable" 994 -45 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 990 -45 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -68 "'kern' Horizontal Kerning lookup 17 subtable" 972 -68 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -92 "'kern' Horizontal Kerning lookup 17 subtable" 961 -137 "'kern' Horizontal Kerning lookup 17 subtable" 125 -92 "'kern' Horizontal Kerning lookup 17 subtable" 109 -90 "'kern' Horizontal Kerning lookup 17 subtable" 30 -45 "'kern' Horizontal Kerning lookup 17 subtable" 29 -45 "'kern' Horizontal Kerning lookup 17 subtable" 17 -272 "'kern' Horizontal Kerning lookup 17 subtable" 15 -272 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0424 +Encoding: 1060 1060 981 +Width: 1557 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 60 + 32 + 13 + 28 + 20 + 6 + 6 + 35 + 17 + 7 + 24 + 0 + 0 + 7 + 13 + 3 + 41 + 42 + 16 + 42 + 1 + 96 + 42 + 192 + 42 + 208 + 42 + 3 + 63 + 42 + 1 + 0 + 42 + 1 + 10 + 3 + 29 + 36 + 9 + 36 + 96 + 89 + 5 + 9 + 27 + 38 + 16 + 38 + 96 + 89 + 20 + 16 + 9 + 16 + 9 + 16 + 6 + 18 + 3 + 6 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1439 736 m 0,0,1 + 1439 583 1439 583 1375.5 464.5 c 128,-1,2 + 1312 346 1312 346 1193 281 c 128,-1,3 + 1074 216 1074 216 914 216 c 2,4,-1 + 874 216 l 1,5,-1 + 874 -11 l 1,6,-1 + 683 -11 l 1,7,-1 + 683 216 l 1,8,-1 + 643 216 l 2,9,10 + 482 216 482 216 363 281.5 c 128,-1,11 + 244 347 244 347 181 465.5 c 128,-1,12 + 118 584 118 584 118 736 c 0,13,14 + 118 974 118 974 257.5 1105.5 c 128,-1,15 + 397 1237 397 1237 654 1237 c 2,16,-1 + 683 1237 l 1,17,-1 + 683 1419 l 1,18,-1 + 874 1419 l 1,19,-1 + 874 1237 l 1,20,-1 + 902 1237 l 2,21,22 + 1160 1237 1160 1237 1299.5 1105 c 128,-1,23 + 1439 973 1439 973 1439 736 c 0,0,1 +1247 732 m 0,24,25 + 1247 1099 1247 1099 879 1099 c 2,26,-1 + 874 1099 l 1,27,-1 + 874 353 l 1,28,-1 + 887 353 l 2,29,30 + 1061 353 1061 353 1154 449 c 128,-1,31 + 1247 545 1247 545 1247 732 c 0,24,25 +310 732 m 256,32,33 + 310 545 310 545 403 449 c 128,-1,34 + 496 353 496 353 670 353 c 2,35,-1 + 683 353 l 1,36,-1 + 683 1099 l 1,37,-1 + 674 1099 l 2,38,39 + 492 1099 492 1099 401 1009 c 128,-1,40 + 310 919 310 919 310 732 c 256,32,33 +EndSplineSet +Kerns2: 1004 -68 "'kern' Horizontal Kerning lookup 17 subtable" 992 -70 "'kern' Horizontal Kerning lookup 17 subtable" 984 -45 "'kern' Horizontal Kerning lookup 17 subtable" 980 -92 "'kern' Horizontal Kerning lookup 17 subtable" 979 -115 "'kern' Horizontal Kerning lookup 17 subtable" 972 -68 "'kern' Horizontal Kerning lookup 17 subtable" 965 -68 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0425 +Encoding: 1061 1061 982 +Width: 1366 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 59 88 N 1 0 0 1 0 0 3 +Kerns2: 1012 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 990 -70 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 978 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -68 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0426 +Encoding: 1062 1062 983 +Width: 1515 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 7 + 4 + 8 + 11 + 11 + 2 + 2 + 1 + 4 + 1 + 12 + 13 + 0 + 13 + 192 + 13 + 2 + 11 + 3 + 9 + 9 + 5 + 3 + 11 + 11 + 7 + 4 + 7 + 95 + 89 + 4 + 18 + 2 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1477 160 m 1,0,-1 + 1477 -408 l 1,1,-1 + 1297 -408 l 1,2,-1 + 1297 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 359 1409 l 1,6,-1 + 359 160 l 1,7,-1 + 1116 160 l 1,8,-1 + 1116 1409 l 1,9,-1 + 1302 1409 l 1,10,-1 + 1302 160 l 1,11,-1 + 1477 160 l 1,0,-1 +EndSplineSet +Kerns2: 993 45 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0427 +Encoding: 1063 1063 984 +Width: 1365 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 18 + 15 + 15 + 16 + 8 + 7 + 16 + 7 + 20 + 19 + 0 + 20 + 1 + 0 + 20 + 1 + 11 + 3 + 20 +PUSHW_1 + -64 +NPUSHB + 22 + 14 + 17 + 72 + 0 + 3 + 12 + 3 + 95 + 89 + 14 + 47 + 12 + 1 + 12 + 12 + 7 + 17 + 18 + 15 + 15 + 7 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1008 508 m 1,0,1 + 853 474 853 474 762 462 c 128,-1,2 + 671 450 671 450 600 450 c 0,3,4 + 378 450 378 450 269 540.5 c 128,-1,5 + 160 631 160 631 160 815 c 2,6,-1 + 160 1409 l 1,7,-1 + 350 1409 l 1,8,-1 + 350 835 l 2,9,10 + 350 712 350 712 415 658 c 128,-1,11 + 480 604 480 604 614 604 c 0,12,13 + 763 604 763 604 1008 653 c 1,14,-1 + 1008 1409 l 1,15,-1 + 1198 1409 l 1,16,-1 + 1198 0 l 1,17,-1 + 1008 0 l 1,18,-1 + 1008 508 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0428 +Encoding: 1064 1064 985 +Width: 1877 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 49 + 8 + 11 + 7 + 4 + 3 + 0 + 0 + 4 + 11 + 3 + 13 + 12 + 235 + 13 + 1 + 196 + 13 + 1 + 187 + 13 + 1 + 132 + 13 + 1 + 112 + 13 + 1 + 2 + 64 + 13 + 1 + 15 + 13 + 1 + 9 + 3 + 9 + 5 + 1 + 3 + 7 + 7 + 3 + 0 + 3 + 95 + 89 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +168 0 m 1,0,-1 + 168 1409 l 1,1,-1 + 359 1409 l 1,2,-1 + 359 160 l 1,3,-1 + 848 160 l 1,4,-1 + 848 1409 l 1,5,-1 + 1034 1409 l 1,6,-1 + 1034 160 l 1,7,-1 + 1523 160 l 1,8,-1 + 1523 1409 l 1,9,-1 + 1709 1409 l 1,10,-1 + 1709 0 l 1,11,-1 + 168 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0429 +Encoding: 1065 1065 986 +Width: 1920 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 12 + 15 + 15 + 2 + 2 + 1 + 11 + 8 + 7 + 4 + 4 + 8 + 1 + 3 + 17 + 16 + 48 + 17 + 64 + 17 + 96 + 17 + 3 + 47 + 17 + 1 + 0 + 17 + 1 + 13 + 3 + 13 + 9 + 5 + 3 + 15 + 15 + 7 + 11 + 11 + 7 + 4 + 7 + 95 + 89 + 4 + 18 + 2 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1839 160 m 1,0,-1 + 1839 -408 l 1,1,-1 + 1659 -408 l 1,2,-1 + 1659 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 359 1409 l 1,6,-1 + 359 160 l 1,7,-1 + 826 160 l 1,8,-1 + 826 1409 l 1,9,-1 + 1012 1409 l 1,10,-1 + 1012 160 l 1,11,-1 + 1478 160 l 1,12,-1 + 1478 1409 l 1,13,-1 + 1664 1409 l 1,14,-1 + 1664 160 l 1,15,-1 + 1839 160 l 1,0,-1 +EndSplineSet +Kerns2: 1012 45 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni042A +Encoding: 1066 1066 987 +Width: 1621 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 10 + 0 + 18 + 18 + 8 + 13 + 4 + 8 + 4 + 22 + 23 + 0 + 23 + 1 + 11 + 3 + 0 + 17 + 95 + 89 + 0 + 0 + 8 + 11 + 11 + 10 + 95 + 89 + 11 + 3 + 8 + 18 + 95 + 89 + 8 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +696 813 m 1,0,-1 + 1018 813 l 2,1,2 + 1254 813 1254 813 1384.5 708 c 128,-1,3 + 1515 603 1515 603 1515 413 c 0,4,5 + 1515 226 1515 226 1386 113 c 128,-1,6 + 1257 0 1257 0 1030 0 c 2,7,-1 + 505 0 l 1,8,-1 + 505 1253 l 1,9,-1 + 46 1253 l 1,10,-1 + 46 1409 l 1,11,-1 + 696 1409 l 1,12,-1 + 696 813 l 1,0,-1 +1323 411 m 0,13,14 + 1323 532 1323 532 1241 596.5 c 128,-1,15 + 1159 661 1159 661 995 661 c 2,16,-1 + 696 661 l 1,17,-1 + 696 151 l 1,18,-1 + 1003 151 l 2,19,20 + 1167 151 1167 151 1245 219 c 128,-1,21 + 1323 287 1323 287 1323 411 c 0,13,14 +EndSplineSet +Kerns2: 2021 -137 "'kern' Horizontal Kerning lookup 17 subtable" 992 -68 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni042B +Encoding: 1067 1067 988 +Width: 1813 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 20 + 23 + 0 + 11 + 7 + 16 + 16 + 23 + 11 + 25 + 4 + 0 + 25 + 1 + 17 + 3 + 25 +PUSHW_1 + -64 +NPUSHB + 24 + 11 + 14 + 72 + 7 + 15 + 95 + 89 + 7 + 7 + 4 + 5 + 21 + 21 + 5 + 3 + 20 + 20 + 4 + 4 + 16 + 95 + 89 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 900 1540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1238 413 m 0,0,1 + 1238 226 1238 226 1109 113 c 128,-1,2 + 980 0 980 0 753 0 c 2,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 359 1409 l 1,6,-1 + 359 813 l 1,7,-1 + 741 813 l 2,8,9 + 977 813 977 813 1107.5 708 c 128,-1,10 + 1238 603 1238 603 1238 413 c 0,0,1 +1046 411 m 0,11,12 + 1046 532 1046 532 964 596.5 c 128,-1,13 + 882 661 882 661 718 661 c 2,14,-1 + 359 661 l 1,15,-1 + 359 151 l 1,16,-1 + 726 151 l 2,17,18 + 890 151 890 151 968 219 c 128,-1,19 + 1046 287 1046 287 1046 411 c 0,11,12 +1454 0 m 1,20,-1 + 1454 1409 l 1,21,-1 + 1645 1409 l 1,22,-1 + 1645 0 l 1,23,-1 + 1454 0 l 1,20,-1 +EndSplineSet +EndChar + +StartChar: uni042C +Encoding: 1068 1068 989 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 11 + 0 + 7 + 16 + 16 + 4 + 0 + 4 + 20 + 19 + 111 + 20 + 1 + 0 + 20 + 64 + 20 + 80 + 20 + 3 + 13 + 3 + 7 + 15 + 95 + 89 + 7 + 7 + 4 + 5 + 3 + 4 + 16 + 95 + 89 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1238 413 m 0,0,1 + 1238 226 1238 226 1109 113 c 128,-1,2 + 980 0 980 0 753 0 c 2,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 359 1409 l 1,6,-1 + 359 813 l 1,7,-1 + 741 813 l 2,8,9 + 977 813 977 813 1107.5 708 c 128,-1,10 + 1238 603 1238 603 1238 413 c 0,0,1 +1046 407 m 0,11,12 + 1046 528 1046 528 964 593.5 c 128,-1,13 + 882 659 882 659 718 659 c 2,14,-1 + 359 659 l 1,15,-1 + 359 151 l 1,16,-1 + 726 151 l 2,17,18 + 1046 151 1046 151 1046 407 c 0,11,12 +EndSplineSet +Kerns2: 2021 -160 "'kern' Horizontal Kerning lookup 17 subtable" 992 -92 "'kern' Horizontal Kerning lookup 17 subtable" 990 -23 "'kern' Horizontal Kerning lookup 17 subtable" 984 -160 "'kern' Horizontal Kerning lookup 17 subtable" 982 -92 "'kern' Horizontal Kerning lookup 17 subtable" 979 -205 "'kern' Horizontal Kerning lookup 17 subtable" 978 -45 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 973 -45 "'kern' Horizontal Kerning lookup 17 subtable" 972 -70 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 967 -68 "'kern' Horizontal Kerning lookup 17 subtable" 965 -45 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni042D +Encoding: 1069 1069 990 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 74 + 17 + 16 + 3 + 4 + 26 + 23 + 23 + 10 + 4 + 16 + 16 + 24 + 10 + 3 + 30 + 29 + 26 + 23 + 95 + 89 + 95 + 26 + 143 + 26 + 2 + 15 + 26 + 1 + 11 + 3 + 26 + 26 + 14 + 7 + 14 + 20 + 95 + 89 + 0 + 17 + 16 + 17 + 64 + 17 + 80 + 17 + 144 + 17 + 160 + 17 + 224 + 17 + 240 + 17 + 8 + 12 + 17 + 17 + 14 + 19 + 15 + 3 + 1 + 13 + 3 + 3 + 3 + 7 + 7 + 0 + 95 + 89 + 7 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 720 1540 basechar 0 +LayerCount: 2 +Fore +SplineSet +713 1274 m 0,0,1 + 561 1274 561 1274 452 1206.5 c 128,-1,2 + 343 1139 343 1139 298 1021 c 1,3,-1 + 117 1081 l 1,4,5 + 188 1254 188 1254 339 1342 c 128,-1,6 + 490 1430 490 1430 715 1430 c 0,7,8 + 1037 1430 1037 1430 1219 1239 c 128,-1,9 + 1401 1048 1401 1048 1401 711 c 0,10,11 + 1401 488 1401 488 1320 323 c 128,-1,12 + 1239 158 1239 158 1084.5 69 c 128,-1,13 + 930 -20 930 -20 715 -20 c 0,14,15 + 289 -20 289 -20 105 352 c 1,16,-1 + 261 430 l 1,17,18 + 330 290 330 290 445 213.5 c 128,-1,19 + 560 137 560 137 705 137 c 0,20,21 + 918 137 918 137 1051.5 272.5 c 128,-1,22 + 1185 408 1185 408 1204 638 c 1,23,-1 + 550 638 l 1,24,-1 + 550 792 l 1,25,-1 + 1204 792 l 1,26,27 + 1183 1021 1183 1021 1054.5 1147.5 c 128,-1,28 + 926 1274 926 1274 713 1274 c 0,0,1 +EndSplineSet +Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -68 "'kern' Horizontal Kerning lookup 17 subtable" 999 23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -68 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 982 -70 "'kern' Horizontal Kerning lookup 17 subtable" 972 -68 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 967 -25 "'kern' Horizontal Kerning lookup 17 subtable" 965 -68 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni042E +Encoding: 1070 1070 991 +Width: 2069 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 56 + 13 + 9 + 9 + 10 + 26 + 14 + 7 + 20 + 0 + 10 + 7 + 0 + 3 + 33 + 32 + 0 + 33 + 1 + 17 + 3 + 17 + 23 + 95 + 89 + 17 + 4 + 13 + 8 + 95 + 89 + 15 + 13 + 1 + 8 + 0 + 13 + 48 + 13 + 160 + 13 + 3 + 19 + 3 + 13 + 13 + 10 + 11 + 3 + 10 + 18 + 4 + 29 + 95 + 89 + 4 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +SDB +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 960 1540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1971 711 m 0,0,1 + 1971 490 1971 490 1891 323.5 c 128,-1,2 + 1811 157 1811 157 1661 68.5 c 128,-1,3 + 1511 -20 1511 -20 1311 -20 c 0,4,5 + 1016 -20 1016 -20 842.5 159 c 128,-1,6 + 669 338 669 338 654 653 c 1,7,-1 + 359 653 l 1,8,-1 + 359 0 l 1,9,-1 + 168 0 l 1,10,-1 + 168 1409 l 1,11,-1 + 359 1409 l 1,12,-1 + 359 813 l 1,13,-1 + 657 813 l 1,14,15 + 684 1105 684 1105 855.5 1267.5 c 128,-1,16 + 1027 1430 1027 1430 1313 1430 c 0,17,18 + 1623 1430 1623 1430 1797 1238.5 c 128,-1,19 + 1971 1047 1971 1047 1971 711 c 0,0,1 +1776 711 m 0,20,21 + 1776 974 1776 974 1654.5 1124 c 128,-1,22 + 1533 1274 1533 1274 1313 1274 c 0,23,24 + 1090 1274 1090 1274 968.5 1126 c 128,-1,25 + 847 978 847 978 847 711 c 0,26,27 + 847 446 847 446 970.5 290.5 c 128,-1,28 + 1094 135 1094 135 1311 135 c 0,29,30 + 1534 135 1534 135 1655 284.5 c 128,-1,31 + 1776 434 1776 434 1776 711 c 0,20,21 +EndSplineSet +Kerns2: 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -92 "'kern' Horizontal Kerning lookup 17 subtable" 997 -92 "'kern' Horizontal Kerning lookup 17 subtable" 984 -68 "'kern' Horizontal Kerning lookup 17 subtable" 982 -92 "'kern' Horizontal Kerning lookup 17 subtable" 979 -115 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -23 "'kern' Horizontal Kerning lookup 17 subtable" 972 -92 "'kern' Horizontal Kerning lookup 17 subtable" 967 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -90 "'kern' Horizontal Kerning lookup 17 subtable" 961 -68 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni042F +Encoding: 1071 1071 992 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 12 + 1 + 1 + 18 + 14 + 4 + 4 + 13 + 0 + 18 + 10 + 10 + 9 + 0 + 9 + 23 + 24 + 1 + 11 + 18 + 11 + 95 + 89 + 15 + 18 + 63 + 18 + 79 + 18 + 111 + 18 + 4 + 11 + 3 + 18 + 18 + 0 + 7 + 7 + 20 + 95 + 89 + 7 + 3 + 10 + 10 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 810 1540 basechar 0 +LayerCount: 2 +Fore +SplineSet +96 0 m 1,0,-1 + 496 607 l 1,1,2 + 335 635 335 635 243.5 742 c 128,-1,3 + 152 849 152 849 152 1006 c 0,4,5 + 152 1196 152 1196 281 1302.5 c 128,-1,6 + 410 1409 410 1409 649 1409 c 2,7,-1 + 1312 1409 l 1,8,-1 + 1312 0 l 1,9,-1 + 1121 0 l 1,10,-1 + 1121 585 l 1,11,-1 + 682 585 l 1,12,-1 + 316 0 l 1,13,-1 + 96 0 l 1,0,-1 +344 1004 m 0,14,15 + 344 877 344 877 426.5 806.5 c 128,-1,16 + 509 736 509 736 660 736 c 2,17,-1 + 1121 736 l 1,18,-1 + 1121 1256 l 1,19,-1 + 668 1256 l 2,20,21 + 511 1256 511 1256 427.5 1191.5 c 128,-1,22 + 344 1127 344 1127 344 1004 c 0,14,15 +EndSplineSet +EndChar + +StartChar: uni0430 +Encoding: 1072 1072 993 +Width: 1139 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-17" 555 1200 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0431 +Encoding: 1073 1073 994 +Width: 1173 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 28 + 0 + 15 + 32 + 6 + 6 + 21 + 15 + 21 + 36 + 35 + 0 + 36 + 176 + 36 + 2 + 17 + 3 + 36 +PUSHW_1 + -64 +NPUSHB + 28 + 30 + 35 + 72 + 12 + 3 + 80 + 89 + 32 + 12 + 12 + 18 + 28 + 0 + 27 + 176 + 27 + 240 + 27 + 3 + 13 + 3 + 27 + 18 + 9 + 80 + 89 + 18 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +SRP2 +IP +MDAP[rnd] +IP +CALL +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +898 502 m 256,0,1 + 898 704 898 704 832 799.5 c 128,-1,2 + 766 895 766 895 617 895 c 0,3,4 + 458 895 458 895 383.5 798 c 128,-1,5 + 309 701 309 701 309 502 c 0,6,7 + 309 308 309 308 378.5 210.5 c 128,-1,8 + 448 113 448 113 597 113 c 0,9,10 + 758 113 758 113 828 206.5 c 128,-1,11 + 898 300 898 300 898 502 c 256,0,1 +655 1027 m 0,12,13 + 877 1027 877 1027 982 896.5 c 128,-1,14 + 1087 766 1087 766 1087 504 c 0,15,16 + 1087 239 1087 239 962 109.5 c 128,-1,17 + 837 -20 837 -20 599 -20 c 0,18,19 + 353 -20 353 -20 236.5 141 c 128,-1,20 + 120 302 120 302 120 636 c 0,21,22 + 120 806 120 806 143 934.5 c 128,-1,23 + 166 1063 166 1063 215 1156 c 128,-1,24 + 264 1249 264 1249 341.5 1311 c 128,-1,25 + 419 1373 419 1373 536.5 1411 c 128,-1,26 + 654 1449 654 1449 1036 1502 c 1,27,-1 + 1036 1341 l 1,28,29 + 617 1287 617 1287 493.5 1238 c 128,-1,30 + 370 1189 370 1189 320 1082 c 128,-1,31 + 270 975 270 975 266 762 c 1,32,33 + 309 887 309 887 410 957 c 128,-1,34 + 511 1027 511 1027 655 1027 c 0,12,13 +EndSplineSet +Kerns2: 1024 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1022 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1019 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -92 "'kern' Horizontal Kerning lookup 17 subtable" 993 -47 "'kern' Horizontal Kerning lookup 17 subtable" +Substitution2: "'locl' Localized Forms in Cyrillic lookup 0 subtable" S_BE +EndChar + +StartChar: uni0432 +Encoding: 1074 1074 995 +Width: 1088 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 6 + 26 + 3 + 26 + 16 + 16 + 14 + 30 + 3 + 3 + 20 + 10 + 14 + 10 + 34 + 35 + 48 + 35 + 1 + 35 +PUSHW_1 + -64 +NPUSHB + 47 + 30 + 35 + 72 + 15 + 35 + 47 + 35 + 223 + 35 + 3 + 9 + 3 + 6 + 26 + 24 + 26 + 24 + 81 + 89 + 111 + 26 + 127 + 26 + 143 + 26 + 3 + 15 + 26 + 1 + 11 + 3 + 26 + 26 + 14 + 15 + 15 + 25 + 80 + 89 + 15 + 15 + 14 + 16 + 80 + 89 + 14 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +CALL +DELTAP2 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +564 1082 m 2,0,1 + 764 1082 764 1082 864 1012 c 128,-1,2 + 964 942 964 942 964 811 c 0,3,4 + 964 718 964 718 907 656 c 128,-1,5 + 850 594 850 594 741 573 c 1,6,-1 + 741 566 l 1,7,8 + 870 549 870 549 934.5 484 c 128,-1,9 + 999 419 999 419 999 312 c 0,10,11 + 999 165 999 165 889.5 82.5 c 128,-1,12 + 780 0 780 0 587 0 c 2,13,-1 + 142 0 l 1,14,-1 + 142 1082 l 1,15,-1 + 564 1082 l 2,0,1 +322 133 m 1,16,-1 + 558 133 l 2,17,18 + 696 133 696 133 752 175.5 c 128,-1,19 + 808 218 808 218 808 311 c 0,20,21 + 808 412 808 412 748.5 453.5 c 128,-1,22 + 689 495 689 495 546 495 c 2,23,-1 + 322 495 l 1,24,-1 + 322 133 l 1,16,-1 +322 945 m 1,25,-1 + 322 625 l 1,26,-1 + 538 625 l 2,27,28 + 666 625 666 625 720.5 661 c 128,-1,29 + 775 697 775 697 775 787 c 0,30,31 + 775 869 775 869 724 907 c 128,-1,32 + 673 945 673 945 552 945 c 2,33,-1 + 322 945 l 1,25,-1 +EndSplineSet +Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1019 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -47 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -23 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" 993 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0433 +Encoding: 1075 1075 996 +Width: 747 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 4 + 4 + 0 + 6 + 7 + 5 + 2 + 80 + 89 + 5 + 15 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +687 1082 m 1,0,-1 + 687 951 l 1,1,-1 + 322 951 l 1,2,-1 + 322 0 l 1,3,-1 + 142 0 l 1,4,-1 + 142 1082 l 1,5,-1 + 687 1082 l 1,0,-1 +EndSplineSet +Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -45 "'kern' Horizontal Kerning lookup 17 subtable" 997 -92 "'kern' Horizontal Kerning lookup 17 subtable" 993 -45 "'kern' Horizontal Kerning lookup 17 subtable" 17 -250 "'kern' Horizontal Kerning lookup 17 subtable" 15 -250 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0434 +Encoding: 1076 1076 997 +Width: 1195 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 5 + 18 + 18 + 7 + 7 + 6 + 1 + 16 + 4 + 13 + 13 + 10 + 11 + 11 + 16 + 6 + 3 + 21 + 20 + 16 + 1 + 80 + 89 + 16 + 15 + 18 + 4 + 12 + 9 + 12 + 80 + 89 + 9 + 21 + 11 + 6 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +834 951 m 1,0,-1 + 528 951 l 1,1,2 + 491 679 491 679 446 477.5 c 128,-1,3 + 401 276 401 276 337 131 c 1,4,-1 + 834 131 l 1,5,-1 + 834 951 l 1,0,-1 +1160 -408 m 1,6,-1 + 997 -408 l 1,7,-1 + 997 0 l 1,8,-1 + 183 0 l 1,9,-1 + 183 -408 l 1,10,-1 + 20 -408 l 1,11,-1 + 20 131 l 1,12,-1 + 139 131 l 1,13,14 + 214 256 214 256 269 486 c 128,-1,15 + 324 716 324 716 370 1082 c 1,16,-1 + 1014 1082 l 1,17,-1 + 1014 131 l 1,18,-1 + 1160 131 l 1,19,-1 + 1160 -408 l 1,6,-1 +EndSplineSet +Kerns2: 1022 23 "'kern' Horizontal Kerning lookup 17 subtable" 1019 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0435 +Encoding: 1077 1077 998 +Width: 1139 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-17" 580 1200 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Kerns2: 1016 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0436 +Encoding: 1078 1078 999 +Width: 1370 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 73 + 6 + 3 + 15 + 10 + 9 + 9 + 4 + 5 + 27 + 30 + 24 + 18 + 18 + 34 + 34 + 15 + 35 + 23 + 24 + 24 + 29 + 28 + 28 + 35 + 5 + 3 + 36 + 37 + 207 + 37 + 223 + 37 + 2 + 112 + 37 + 1 + 63 + 37 + 111 + 37 + 2 + 32 + 37 + 1 + 15 + 37 + 1 + 240 + 37 + 1 + 159 + 37 + 1 + 80 + 37 + 96 + 37 + 2 + 31 + 37 + 47 + 37 + 2 + 0 + 37 + 1 + 10 + 3 + 27 + 6 + 30 + 3 + 6 +PUSHW_1 + -16 +NPUSHB + 41 + 11 + 17 + 72 + 6 + 3 + 15 + 33 + 0 + 15 + 0 + 80 + 89 + 18 + 15 + 15 + 31 + 15 + 79 + 15 + 95 + 15 + 4 + 15 + 15 + 31 + 15 + 79 + 15 + 3 + 7 + 15 + 15 + 4 + 23 + 16 + 9 + 15 + 35 + 29 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SDB +DELTAP1 +DELTAP2 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +IP +CALL +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +595 477 m 1,0,1 + 569 477 569 477 536.5 483 c 128,-1,2 + 504 489 504 489 485 497 c 1,3,-1 + 207 0 l 1,4,-1 + 7 0 l 1,5,-1 + 360 592 l 1,6,7 + 325 621 325 621 232 757 c 2,8,-1 + 16 1082 l 1,9,-1 + 204 1082 l 1,10,-1 + 352 843 l 2,11,12 + 418 737 418 737 454 690.5 c 128,-1,13 + 490 644 490 644 519.5 626 c 128,-1,14 + 549 608 549 608 595 608 c 1,15,-1 + 595 1082 l 1,16,-1 + 775 1082 l 1,17,-1 + 775 608 l 1,18,19 + 805 608 805 608 829 616 c 128,-1,20 + 853 624 853 624 879 649.5 c 128,-1,21 + 905 675 905 675 938 721 c 128,-1,22 + 971 767 971 767 1166 1082 c 1,23,-1 + 1354 1082 l 1,24,-1 + 1138 757 l 2,25,26 + 1045 621 1045 621 1010 592 c 1,27,-1 + 1363 0 l 1,28,-1 + 1163 0 l 1,29,-1 + 885 497 l 1,30,31 + 866 489 866 489 833.5 483 c 128,-1,32 + 801 477 801 477 775 477 c 1,33,-1 + 775 0 l 1,34,-1 + 595 0 l 1,35,-1 + 595 477 l 1,0,1 +EndSplineSet +Kerns2: 1019 45 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 994 23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0437 +Encoding: 1079 1079 1000 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 82 + 12 + 30 + 27 + 21 + 22 + 22 + 4 + 3 + 15 + 27 + 27 + 9 + 34 + 3 + 34 + 37 + 38 + 0 + 38 + 1 + 10 + 3 + 30 + 12 + 11 + 12 + 11 + 80 + 89 + 15 + 12 + 31 + 12 + 2 + 255 + 12 + 1 + 12 + 12 + 24 + 0 + 0 + 21 + 80 + 21 + 96 + 21 + 112 + 21 + 4 + 18 + 3 + 21 + 21 + 24 + 24 + 18 + 80 + 89 + 24 + 16 + 0 + 6 + 80 + 89 + 96 + 4 + 112 + 4 + 128 + 4 + 3 + 239 + 4 + 1 + 32 + 4 + 1 + 4 + 4 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +458 -20 m 0,0,1 + 291 -20 291 -20 192.5 42.5 c 128,-1,2 + 94 105 94 105 49 234 c 1,3,-1 + 208 278 l 1,4,5 + 261 114 261 114 462 114 c 0,6,7 + 558 114 558 114 614.5 161 c 128,-1,8 + 671 208 671 208 671 299 c 0,9,10 + 671 499 671 499 340 499 c 1,11,-1 + 340 636 l 1,12,13 + 501 636 501 636 577 678 c 128,-1,14 + 653 720 653 720 653 808 c 0,15,16 + 653 882 653 882 603.5 925 c 128,-1,17 + 554 968 554 968 461 968 c 0,18,19 + 372 968 372 968 315.5 931 c 128,-1,20 + 259 894 259 894 247 824 c 1,21,-1 + 85 844 l 1,22,23 + 131 1102 131 1102 462 1102 c 0,24,25 + 630 1102 630 1102 733 1022.5 c 128,-1,26 + 836 943 836 943 836 817 c 0,27,28 + 836 716 836 716 763.5 648 c 128,-1,29 + 691 580 691 580 588 571 c 1,30,-1 + 588 569 l 1,31,32 + 709 556 709 556 785.5 484.5 c 128,-1,33 + 862 413 862 413 862 304 c 0,34,35 + 862 152 862 152 754.5 66 c 128,-1,36 + 647 -20 647 -20 458 -20 c 0,0,1 +EndSplineSet +Kerns2: 1019 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0438 +Encoding: 1080 1080 1001 +Width: 1144 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 11 + 1 + 1 + 12 + 3 + 6 + 6 + 5 + 12 + 5 + 14 + 15 + 176 + 15 + 192 + 15 + 208 + 15 + 3 + 176 + 15 + 240 + 15 + 2 + 112 + 15 + 128 + 15 + 160 + 15 + 176 + 15 + 192 + 15 + 5 + 10 + 3 + 13 + 15 + 6 + 2 + 12 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 560 1200 basechar 0 +LayerCount: 2 +Fore +SplineSet +316 1082 m 1,0,-1 + 316 490 l 1,1,-1 + 306 213 l 1,2,-1 + 805 1082 l 1,3,-1 + 1002 1082 l 1,4,-1 + 1002 0 l 1,5,-1 + 830 0 l 1,6,-1 + 830 660 l 2,7,8 + 830 696 830 696 833.5 769 c 128,-1,9 + 837 842 837 842 840 873 c 1,10,-1 + 334 0 l 1,11,-1 + 142 0 l 1,12,-1 + 142 1082 l 1,13,-1 + 316 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0439 +Encoding: 1081 1081 1002 +Width: 1144 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 14 + 14 + 17 + 38 + 1 + 16 + 2 + 16 + 22 + 12 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-17" 585 1580 basechar 0 +LayerCount: 2 +Fore +Refer: 1001 1080 N 1 0 0 1 0 0 3 +Refer: 2299 -1 N 1 0 0 1 234 0 2 +EndChar + +StartChar: uni043A +Encoding: 1082 1082 1003 +Width: 896 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 57 + 14 + 11 + 2 + 8 + 2 + 18 + 18 + 19 + 19 + 20 + 21 + 7 + 8 + 8 + 13 + 12 + 12 + 21 + 15 + 21 + 47 + 21 + 2 + 10 + 3 + 11 + 17 + 2 + 17 + 80 + 89 + 15 + 2 + 63 + 2 + 79 + 2 + 3 + 15 + 2 + 63 + 2 + 255 + 2 + 3 + 8 + 2 + 2 + 12 + 19 + 19 + 12 + 21 + 7 + 7 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +IP +MDAP[rnd] +SDB +DELTAP1 +DELTAP2 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +138 1082 m 1,0,-1 + 318 1082 l 1,1,-1 + 318 608 l 1,2,3 + 348 608 348 608 372 616 c 128,-1,4 + 396 624 396 624 422 649.5 c 128,-1,5 + 448 675 448 675 481 721 c 128,-1,6 + 514 767 514 767 709 1082 c 1,7,-1 + 897 1082 l 1,8,-1 + 681 757 l 2,9,10 + 588 621 588 621 553 592 c 1,11,-1 + 906 0 l 1,12,-1 + 706 0 l 1,13,-1 + 428 497 l 1,14,15 + 409 489 409 489 376.5 483 c 128,-1,16 + 344 477 344 477 318 477 c 1,17,-1 + 318 0 l 1,18,-1 + 138 0 l 1,19,-1 + 138 1082 l 1,0,-1 +EndSplineSet +Kerns2: 1022 23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 23 "'kern' Horizontal Kerning lookup 17 subtable" 998 23 "'kern' Horizontal Kerning lookup 17 subtable" 994 45 "'kern' Horizontal Kerning lookup 17 subtable" 993 45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni043B +Encoding: 1083 1083 1004 +Width: 1195 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 51 + 0 + 19 + 2 + 17 + 10 + 17 + 19 + 3 + 21 + 20 + 112 + 21 + 128 + 21 + 144 + 21 + 3 + 112 + 21 + 176 + 21 + 2 + 0 + 21 + 32 + 21 + 48 + 21 + 96 + 21 + 112 + 21 + 128 + 21 + 6 + 13 + 3 + 17 + 2 + 80 + 89 + 17 + 15 + 7 + 12 + 80 + 89 + 7 + 22 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +872 0 m 1,0,-1 + 872 951 l 1,1,-1 + 497 951 l 1,2,3 + 438 515 438 515 406 362.5 c 128,-1,4 + 374 210 374 210 337 132 c 128,-1,5 + 300 54 300 54 245.5 17 c 128,-1,6 + 191 -20 191 -20 105 -20 c 0,7,8 + 55 -20 55 -20 11 -7 c 1,9,-1 + 11 122 l 1,10,11 + 36 113 36 113 79 113 c 0,12,13 + 134 113 134 113 167.5 168 c 128,-1,14 + 201 223 201 223 228.5 358 c 128,-1,15 + 256 493 256 493 291 757 c 2,16,-1 + 335 1082 l 1,17,-1 + 1053 1082 l 1,18,-1 + 1053 0 l 1,19,-1 + 872 0 l 1,0,-1 +EndSplineSet +Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni043C +Encoding: 1084 1084 1005 +Width: 1408 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 14 + 17 + 17 + 16 + 1 + 0 + 11 + 8 + 5 + 5 + 6 + 6 + 11 + 16 + 3 + 22 + 21 + 128 + 22 + 176 + 22 + 192 + 22 + 3 + 63 + 22 + 1 + 20 + 2 + 2 + 14 + 7 + 15 + 17 + 11 + 1 + 6 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +787 0 m 1,0,-1 + 634 0 l 1,1,-1 + 310 951 l 1,2,3 + 316 795 316 795 316 724 c 2,4,-1 + 316 0 l 1,5,-1 + 142 0 l 1,6,-1 + 142 1082 l 1,7,-1 + 422 1082 l 1,8,-1 + 642 421 l 1,9,10 + 694 278 694 278 710 135 c 1,11,12 + 732 296 732 296 778 421 c 1,13,-1 + 998 1082 l 1,14,-1 + 1267 1082 l 1,15,-1 + 1267 0 l 1,16,-1 + 1094 0 l 1,17,-1 + 1094 724 l 1,18,-1 + 1097 838 l 1,19,-1 + 1102 953 l 1,20,-1 + 787 0 l 1,0,-1 +EndSplineSet +Kerns2: 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni043D +Encoding: 1085 1085 1006 +Width: 1131 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 1 + 9 + 9 + 10 + 2 + 6 + 6 + 5 + 10 + 5 + 12 + 13 + 64 + 13 + 80 + 13 + 96 + 13 + 3 + 64 + 13 + 128 + 13 + 2 + 0 + 13 + 1 + 16 + 3 + 13 +PUSHW_1 + -64 +NPUSHB + 33 + 19 + 23 + 72 + 1 + 8 + 80 + 89 + 176 + 1 + 192 + 1 + 2 + 159 + 1 + 175 + 1 + 191 + 1 + 3 + 15 + 1 + 63 + 1 + 2 + 8 + 1 + 1 + 10 + 5 + 21 + 3 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +IP +MDAP[rnd] +SDB +DELTAP1 +DELTAP2 +DELTAP3 +CALL +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +322 1082 m 1,0,-1 + 322 624 l 1,1,-1 + 809 624 l 1,2,-1 + 809 1082 l 1,3,-1 + 989 1082 l 1,4,-1 + 989 0 l 1,5,-1 + 809 0 l 1,6,-1 + 809 493 l 1,7,-1 + 322 493 l 1,8,-1 + 322 0 l 1,9,-1 + 142 0 l 1,10,-1 + 142 1082 l 1,11,-1 + 322 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni043E +Encoding: 1086 1086 1007 +Width: 1139 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-17" 555 1200 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni043F +Encoding: 1087 1087 1008 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 5 + 6 + 2 + 1 + 6 + 1 + 8 + 9 + 160 + 9 + 176 + 9 + 192 + 9 + 3 + 160 + 9 + 224 + 9 + 2 + 96 + 9 + 144 + 9 + 160 + 9 + 176 + 9 + 4 + 15 + 9 + 1 + 10 + 3 + 7 + 4 + 80 + 89 + 7 + 15 + 6 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +967 1082 m 1,0,-1 + 967 0 l 1,1,-1 + 787 0 l 1,2,-1 + 787 951 l 1,3,-1 + 322 951 l 1,4,-1 + 322 0 l 1,5,-1 + 142 0 l 1,6,-1 + 142 1082 l 1,7,-1 + 967 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0440 +Encoding: 1088 1088 1009 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 83 112 N 1 0 0 1 0 0 3 +Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -70 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -47 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0441 +Encoding: 1089 1089 1010 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 70 99 N 1 0 0 1 0 0 3 +Kerns2: 1022 23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 999 23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0442 +Encoding: 1090 1090 1011 +Width: 938 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 3 + 6 + 2 + 6 + 7 + 3 + 8 + 9 + 128 + 9 + 1 + 63 + 9 + 1 + 16 + 9 + 32 + 9 + 2 + 15 + 9 + 1 + 11 + 3 + 4 + 21 + 3 + 6 + 0 + 6 + 81 + 89 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +35 1082 m 1,0,-1 + 903 1082 l 1,1,-1 + 903 951 l 1,2,-1 + 559 951 l 1,3,-1 + 559 0 l 1,4,-1 + 379 0 l 1,5,-1 + 379 951 l 1,6,-1 + 35 951 l 1,7,-1 + 35 1082 l 1,0,-1 +EndSplineSet +Kerns2: 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 68 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -68 "'kern' Horizontal Kerning lookup 17 subtable" 993 -23 "'kern' Horizontal Kerning lookup 17 subtable" 17 -227 "'kern' Horizontal Kerning lookup 17 subtable" 15 -227 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0443 +Encoding: 1091 1091 1012 +Width: 1024 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-17" 510 1200 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1022 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1009 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -25 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -68 "'kern' Horizontal Kerning lookup 17 subtable" 994 23 "'kern' Horizontal Kerning lookup 17 subtable" 993 -23 "'kern' Horizontal Kerning lookup 17 subtable" 125 23 "'kern' Horizontal Kerning lookup 17 subtable" 17 -205 "'kern' Horizontal Kerning lookup 17 subtable" 15 -205 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0444 +Encoding: 1092 1092 1013 +Width: 1685 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 103 + 51 + 0 + 58 + 44 + 44 + 30 + 27 + 10 + 38 + 20 + 20 + 10 + 0 + 3 + 66 + 65 + 5 + 13 + 31 + 25 + 4 + 35 + 3 + 35 + 54 + 80 + 89 + 35 + 16 + 29 + 0 + 22 + 48 + 80 + 89 + 22 + 16 + 17 + 41 + 80 + 89 + 17 + 22 + 9 + 27 + 3 + 62 + 80 + 89 + 3 + 22 + 164 + 66 + 1 + 148 + 66 + 1 + 132 + 66 + 1 + 116 + 66 + 1 + 100 + 66 + 1 + 84 + 66 + 1 + 52 + 66 + 1 + 219 + 66 + 1 + 148 + 66 + 1 + 132 + 66 + 1 + 100 + 66 + 1 + 84 + 66 + 1 + 64 + 66 + 1 + 2 + 48 + 66 + 1 + 32 + 66 + 1 + 31 + 66 + 1 + 0 + 66 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1598 546 m 0,0,1 + 1598 262 1598 262 1505.5 121 c 128,-1,2 + 1413 -20 1413 -20 1233 -20 c 0,3,4 + 1007 -20 1007 -20 928 168 c 1,5,-1 + 922 168 l 1,6,7 + 927 81 927 81 927 -2 c 2,8,-1 + 927 -425 l 1,9,-1 + 757 -425 l 1,10,-1 + 757 -2 l 2,11,12 + 757 107 757 107 762 174 c 1,13,-1 + 757 174 l 1,14,15 + 711 70 711 70 636.5 25 c 128,-1,16 + 562 -20 562 -20 451 -20 c 0,17,18 + 265 -20 265 -20 175.5 117.5 c 128,-1,19 + 86 255 86 255 86 536 c 0,20,21 + 86 1102 86 1102 451 1102 c 0,22,23 + 563 1102 563 1102 637.5 1057 c 128,-1,24 + 712 1012 712 1012 757 914 c 1,25,-1 + 762 914 l 1,26,-1 + 757 1065 l 1,27,-1 + 757 1484 l 1,28,-1 + 927 1484 l 1,29,-1 + 927 1064 l 1,30,-1 + 924 908 l 1,31,-1 + 929 908 l 1,32,33 + 975 1012 975 1012 1047 1056.5 c 128,-1,34 + 1119 1101 1119 1101 1233 1101 c 0,35,36 + 1416 1101 1416 1101 1507 964.5 c 128,-1,37 + 1598 828 1598 828 1598 546 c 0,0,1 +275 542 m 0,38,39 + 275 317 275 317 329.5 218 c 128,-1,40 + 384 119 384 119 502 119 c 0,41,42 + 632 119 632 119 693 217.5 c 128,-1,43 + 754 316 754 316 757 530 c 2,44,-1 + 757 554 l 2,45,46 + 757 765 757 765 697.5 867 c 128,-1,47 + 638 969 638 969 504 969 c 0,48,49 + 383 969 383 969 329 866 c 128,-1,50 + 275 763 275 763 275 542 c 0,38,39 +1409 542 m 0,51,52 + 1409 760 1409 760 1355.5 861 c 128,-1,53 + 1302 962 1302 962 1182 962 c 0,54,55 + 1088 962 1088 962 1035 916 c 128,-1,56 + 982 870 982 870 954.5 775.5 c 128,-1,57 + 927 681 927 681 927 528 c 2,58,-1 + 927 505 l 2,59,60 + 929 304 929 304 990 208.5 c 128,-1,61 + 1051 113 1051 113 1180 113 c 0,62,63 + 1299 113 1299 113 1354 215.5 c 128,-1,64 + 1409 318 1409 318 1409 542 c 0,51,52 +EndSplineSet +Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0445 +Encoding: 1093 1093 1014 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 91 120 N 1 0 0 1 0 0 3 +Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" 993 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0446 +Encoding: 1094 1094 1015 +Width: 1173 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 2 + 5 + 5 + 8 + 8 + 7 + 1 + 10 + 7 + 10 + 13 + 12 + 15 + 13 + 1 + 14 + 3 + 5 + 1 + 10 + 1 + 80 + 89 + 10 + 21 + 8 + 3 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +322 1082 m 1,0,-1 + 322 131 l 1,1,-1 + 799 131 l 1,2,-1 + 799 1082 l 1,3,-1 + 979 1082 l 1,4,-1 + 979 131 l 1,5,-1 + 1126 131 l 1,6,-1 + 1126 -408 l 1,7,-1 + 963 -408 l 1,8,-1 + 963 0 l 1,9,-1 + 142 0 l 1,10,-1 + 142 1082 l 1,11,-1 + 322 1082 l 1,0,-1 +EndSplineSet +Kerns2: 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0447 +Encoding: 1095 1095 1016 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 5 + 9 + 9 + 8 + 1 + 16 + 8 + 16 + 19 + 18 + 10 + 13 + 3 + 13 + 80 + 89 + 5 + 15 + 3 + 31 + 3 + 2 + 3 + 3 + 8 + 21 + 6 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +IP +MDAP[rnd] +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +302 1082 m 1,0,-1 + 302 680 l 2,1,2 + 302 518 302 518 468 518 c 0,3,4 + 578 518 578 518 744 565 c 1,5,-1 + 744 1082 l 1,6,-1 + 924 1082 l 1,7,-1 + 924 0 l 1,8,-1 + 744 0 l 1,9,-1 + 744 461 l 1,10,-1 + 666 431 l 2,11,12 + 520 375 520 375 394 375 c 0,13,14 + 265 375 265 375 193.5 452.5 c 128,-1,15 + 122 530 122 530 122 671 c 2,16,-1 + 122 1082 l 1,17,-1 + 302 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0448 +Encoding: 1096 1096 1017 +Width: 1643 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 3 + 0 + 7 + 4 + 8 + 11 + 11 + 4 + 0 + 3 + 12 + 13 + 171 + 13 + 1 + 100 + 13 + 132 + 13 + 2 + 48 + 13 + 1 + 2 + 32 + 13 + 1 + 15 + 13 + 1 + 13 + 3 + 13 +PUSHW_1 + -64 +NPUSHB + 15 + 9 + 12 + 72 + 9 + 5 + 1 + 15 + 7 + 3 + 0 + 3 + 80 + 89 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +142 0 m 1,0,-1 + 142 1082 l 1,1,-1 + 322 1082 l 1,2,-1 + 322 131 l 1,3,-1 + 732 131 l 1,4,-1 + 732 1082 l 1,5,-1 + 912 1082 l 1,6,-1 + 912 131 l 1,7,-1 + 1321 131 l 1,8,-1 + 1321 1082 l 1,9,-1 + 1501 1082 l 1,10,-1 + 1501 0 l 1,11,-1 + 142 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0449 +Encoding: 1097 1097 1018 +Width: 1685 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 59 + 8 + 11 + 11 + 14 + 14 + 13 + 7 + 4 + 3 + 0 + 0 + 4 + 13 + 3 + 17 + 16 + 219 + 17 + 1 + 180 + 17 + 1 + 96 + 17 + 144 + 17 + 2 + 2 + 64 + 17 + 80 + 17 + 2 + 63 + 17 + 1 + 0 + 17 + 16 + 17 + 32 + 17 + 3 + 10 + 3 + 14 + 9 + 5 + 1 + 15 + 11 + 7 + 3 + 0 + 3 + 80 + 89 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +142 0 m 1,0,-1 + 142 1082 l 1,1,-1 + 322 1082 l 1,2,-1 + 322 131 l 1,3,-1 + 727 131 l 1,4,-1 + 727 1082 l 1,5,-1 + 907 1082 l 1,6,-1 + 907 131 l 1,7,-1 + 1311 131 l 1,8,-1 + 1311 1082 l 1,9,-1 + 1491 1082 l 1,10,-1 + 1491 131 l 1,11,-1 + 1638 131 l 1,12,-1 + 1638 -408 l 1,13,-1 + 1475 -408 l 1,14,-1 + 1475 0 l 1,15,-1 + 142 0 l 1,0,-1 +EndSplineSet +Kerns2: 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni044A +Encoding: 1098 1098 1019 +Width: 1280 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 12 + 9 + 13 + 13 + 7 + 17 + 3 + 3 + 7 + 23 + 22 + 15 + 23 + 1 + 22 + 0 + 23 + 1 + 28 + 3 + 23 +PUSHW_1 + -64 +NPUSHB + 39 + 30 + 35 + 72 + 12 + 21 + 81 + 89 + 175 + 12 + 191 + 12 + 207 + 12 + 3 + 15 + 12 + 31 + 12 + 79 + 12 + 3 + 7 + 3 + 12 + 12 + 7 + 10 + 10 + 9 + 80 + 89 + 10 + 15 + 7 + 13 + 81 + 89 + 7 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +781 624 m 2,0,1 + 986 624 986 624 1091 550.5 c 128,-1,2 + 1196 477 1196 477 1196 318 c 0,3,4 + 1196 164 1196 164 1088 82 c 128,-1,5 + 980 0 980 0 782 0 c 2,6,-1 + 373 0 l 1,7,-1 + 373 951 l 1,8,-1 + 45 951 l 1,9,-1 + 45 1082 l 1,10,-1 + 553 1082 l 1,11,-1 + 553 624 l 1,12,-1 + 781 624 l 2,0,1 +553 127 m 1,13,-1 + 755 127 l 2,14,15 + 885 127 885 127 945 173 c 128,-1,16 + 1005 219 1005 219 1005 318 c 0,17,18 + 1005 412 1005 412 947 455.5 c 128,-1,19 + 889 499 889 499 756 499 c 2,20,-1 + 553 499 l 1,21,-1 + 553 127 l 1,13,-1 +EndSplineSet +EndChar + +StartChar: uni044B +Encoding: 1099 1099 1020 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 10 + 11 + 11 + 7 + 3 + 15 + 20 + 23 + 23 + 15 + 7 + 3 + 24 + 25 + 10 + 19 + 81 + 89 + 175 + 10 + 191 + 10 + 207 + 10 + 3 + 15 + 10 + 31 + 10 + 79 + 10 + 3 + 7 + 3 + 10 + 10 + 7 + 21 + 8 + 15 + 20 + 7 + 7 + 11 + 81 + 89 + 7 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 720 1200 basechar 0 +LayerCount: 2 +Fore +SplineSet +550 624 m 2,0,1 + 755 624 755 624 860 550.5 c 128,-1,2 + 965 477 965 477 965 318 c 0,3,4 + 965 164 965 164 857 82 c 128,-1,5 + 749 0 749 0 551 0 c 2,6,-1 + 142 0 l 1,7,-1 + 142 1082 l 1,8,-1 + 322 1082 l 1,9,-1 + 322 624 l 1,10,-1 + 550 624 l 2,0,1 +322 127 m 1,11,-1 + 524 127 l 2,12,13 + 654 127 654 127 714 173 c 128,-1,14 + 774 219 774 219 774 318 c 0,15,16 + 774 412 774 412 716 455.5 c 128,-1,17 + 658 499 658 499 525 499 c 2,18,-1 + 322 499 l 1,19,-1 + 322 127 l 1,11,-1 +1150 0 m 1,20,-1 + 1150 1082 l 1,21,-1 + 1330 1082 l 1,22,-1 + 1330 0 l 1,23,-1 + 1150 0 l 1,20,-1 +EndSplineSet +EndChar + +StartChar: uni044C +Encoding: 1100 1100 1021 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 72 + 10 + 11 + 11 + 7 + 15 + 3 + 7 + 3 + 20 + 21 + 127 + 21 + 255 + 21 + 2 + 15 + 21 + 47 + 21 + 79 + 21 + 111 + 21 + 143 + 21 + 159 + 21 + 175 + 21 + 207 + 21 + 255 + 21 + 9 + 10 + 3 + 21 + 64 + 35 + 39 + 72 + 10 + 19 + 81 + 89 + 175 + 10 + 191 + 10 + 207 + 10 + 3 + 15 + 10 + 31 + 10 + 79 + 10 + 3 + 7 + 3 + 10 + 10 + 7 + 8 + 15 + 7 + 11 + 81 + 89 + 7 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SVTCA[x-axis] +CALL +SDS +SDB +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +568 624 m 2,0,1 + 773 624 773 624 878 550.5 c 128,-1,2 + 983 477 983 477 983 318 c 0,3,4 + 983 164 983 164 875 82 c 128,-1,5 + 767 0 767 0 569 0 c 2,6,-1 + 142 0 l 1,7,-1 + 142 1082 l 1,8,-1 + 322 1082 l 1,9,-1 + 322 624 l 1,10,-1 + 568 624 l 2,0,1 +322 127 m 1,11,-1 + 542 127 l 2,12,13 + 672 127 672 127 732 173 c 128,-1,14 + 792 219 792 219 792 318 c 0,15,16 + 792 412 792 412 734 455.5 c 128,-1,17 + 676 499 676 499 543 499 c 2,18,-1 + 322 499 l 1,19,-1 + 322 127 l 1,11,-1 +EndSplineSet +Kerns2: 1016 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -160 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni044D +Encoding: 1101 1101 1022 +Width: 1045 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 66 + 10 + 7 + 7 + 22 + 15 + 16 + 16 + 1 + 0 + 0 + 8 + 22 + 3 + 29 + 28 + 9 + 8 + 80 + 89 + 15 + 9 + 31 + 9 + 111 + 9 + 127 + 9 + 143 + 9 + 5 + 15 + 9 + 207 + 9 + 223 + 9 + 3 + 11 + 3 + 9 + 9 + 25 + 19 + 25 + 4 + 80 + 89 + 0 + 1 + 16 + 1 + 32 + 1 + 96 + 1 + 112 + 1 + 128 + 1 + 192 + 1 + 208 + 1 + 8 + 9 + 1 +PUSHW_1 + -64 +NPUSHB + 34 + 27 + 34 + 72 + 1 + 1 + 25 + 22 + 15 + 15 + 31 + 15 + 111 + 15 + 127 + 15 + 207 + 15 + 5 + 10 + 3 + 15 + 64 + 29 + 32 + 72 + 15 + 15 + 19 + 19 + 13 + 80 + 89 + 19 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SDS +SDB +DELTAP1 +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 490 1200 basechar 0 +LayerCount: 2 +Fore +SplineSet +55 315 m 1,0,-1 + 237 327 l 1,1,2 + 253 219 253 219 319.5 167 c 128,-1,3 + 386 115 386 115 486 115 c 0,4,5 + 615 115 615 115 686 203.5 c 128,-1,6 + 757 292 757 292 769 482 c 1,7,-1 + 356 482 l 1,8,-1 + 356 613 l 1,9,-1 + 769 613 l 1,10,11 + 761 802 761 802 693.5 885 c 128,-1,12 + 626 968 626 968 488 968 c 0,13,14 + 278 968 278 968 246 772 c 1,15,-1 + 61 786 l 1,16,17 + 89 935 89 935 200.5 1018.5 c 128,-1,18 + 312 1102 312 1102 483 1102 c 0,19,20 + 713 1102 713 1102 835.5 958 c 128,-1,21 + 958 814 958 814 958 542 c 0,22,23 + 958 266 958 266 835.5 123 c 128,-1,24 + 713 -20 713 -20 481 -20 c 0,25,26 + 304 -20 304 -20 190 70 c 128,-1,27 + 76 160 76 160 55 315 c 1,0,-1 +EndSplineSet +Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni044E +Encoding: 1102 1102 1023 +Width: 1536 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 18 + 0 + 24 + 13 + 6 + 12 + 8 + 8 + 9 + 9 + 6 + 0 + 3 + 31 + 30 + 15 + 21 + 80 + 89 + 15 + 16 + 12 + 7 + 80 + 89 + 15 + 12 + 1 + 11 + 3 + 12 + 12 + 9 + 10 + 15 + 9 + 21 + 3 + 27 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 705 1200 basechar 0 +LayerCount: 2 +Fore +SplineSet +1450 542 m 0,0,1 + 1450 258 1450 258 1332.5 119 c 128,-1,2 + 1215 -20 1215 -20 992 -20 c 0,3,4 + 780 -20 780 -20 666.5 111.5 c 128,-1,5 + 553 243 553 243 544 493 c 1,6,-1 + 322 493 l 1,7,-1 + 322 0 l 1,8,-1 + 142 0 l 1,9,-1 + 142 1082 l 1,10,-1 + 322 1082 l 1,11,-1 + 322 624 l 1,12,-1 + 545 624 l 1,13,14 + 578 1102 578 1102 998 1102 c 0,15,16 + 1235 1102 1235 1102 1342.5 962 c 128,-1,17 + 1450 822 1450 822 1450 542 c 0,0,1 +1261 542 m 0,18,19 + 1261 766 1261 766 1201 867.5 c 128,-1,20 + 1141 969 1141 969 1001 969 c 0,21,22 + 859 969 859 969 795.5 865.5 c 128,-1,23 + 732 762 732 762 732 542 c 0,24,25 + 732 324 732 324 795 218.5 c 128,-1,26 + 858 113 858 113 991 113 c 0,27,28 + 1137 113 1137 113 1199 217.5 c 128,-1,29 + 1261 322 1261 322 1261 542 c 0,18,19 +EndSplineSet +Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni044F +Encoding: 1103 1103 1024 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 0 + 3 + 3 + 21 + 5 + 21 + 11 + 11 + 10 + 17 + 5 + 5 + 1 + 2 + 10 + 2 + 23 + 22 + 3 + 0 + 20 + 0 + 81 + 89 + 15 + 20 + 1 + 11 + 3 + 20 + 20 + 1 + 8 + 8 + 14 + 81 + 89 + 8 + 15 + 11 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-17" 610 1200 basechar 0 +LayerCount: 2 +Fore +SplineSet +535 458 m 1,0,-1 + 220 0 l 1,1,-1 + 17 0 l 1,2,-1 + 361 471 l 1,3,4 + 112 522 112 522 112 783 c 0,5,6 + 112 932 112 932 220 1007 c 128,-1,7 + 328 1082 328 1082 535 1082 c 2,8,-1 + 967 1082 l 1,9,-1 + 967 0 l 1,10,-1 + 787 0 l 1,11,-1 + 787 458 l 1,12,-1 + 535 458 l 1,0,-1 +787 955 m 1,13,-1 + 553 955 l 2,14,15 + 423 955 423 955 363 909 c 128,-1,16 + 303 863 303 863 303 770 c 0,17,18 + 303 676 303 676 356.5 629.5 c 128,-1,19 + 410 583 410 583 534 583 c 2,20,-1 + 787 583 l 1,21,-1 + 787 955 l 1,13,-1 +EndSplineSet +EndChar + +StartChar: uni0450 +Encoding: 1104 1104 1025 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 31 + 31 + 17 + 38 + 2 + 28 +PUSHW_1 + -51 +PUSHB_5 + 28 + 31 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 198 0 2 +EndChar + +StartChar: uni0451 +Encoding: 1105 1105 1026 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 26 + 26 + 17 + 38 + 3 + 2 + 30 + 4 + 30 + 28 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-17" 570 1540 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 248 0 2 +EndChar + +StartChar: uni0452 +Encoding: 1106 1106 1027 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 65 + 10 + 7 + 41 + 41 + 4 + 3 + 0 + 0 + 27 + 22 + 9 + 4 + 42 + 32 + 43 + 143 + 43 + 1 + 64 + 43 + 80 + 43 + 96 + 43 + 3 + 64 + 43 + 128 + 43 + 2 + 0 + 43 + 48 + 43 + 64 + 43 + 3 + 16 + 3 + 14 + 18 + 41 + 21 + 25 + 29 + 80 + 89 + 25 + 27 + 10 + 2 + 3 + 2 + 81 + 89 + 7 + 3 + 3 + 18 + 5 + 18 + 37 + 80 + 89 + 18 +PUSHW_1 + -64 +PUSHB_7 + 7 + 12 + 72 + 18 + 15 + 5 + 0 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP3 +DELTAP1 +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +142 0 m 1,0,-1 + 142 1206 l 1,1,-1 + 10 1206 l 1,2,-1 + 10 1337 l 1,3,-1 + 142 1337 l 1,4,-1 + 142 1484 l 1,5,-1 + 322 1484 l 1,6,-1 + 322 1337 l 1,7,-1 + 622 1337 l 1,8,-1 + 622 1206 l 1,9,-1 + 322 1206 l 1,10,-1 + 322 1058 l 2,11,12 + 322 997 322 997 318.5 932 c 128,-1,13 + 315 867 315 867 314 857 c 1,14,-1 + 317 857 l 1,15,16 + 375 963 375 963 456.5 1012.5 c 128,-1,17 + 538 1062 538 1062 663 1062 c 0,18,19 + 839 1062 839 1062 922.5 974.5 c 128,-1,20 + 1006 887 1006 887 1006 681 c 2,21,-1 + 1006 -134 l 2,22,23 + 1006 -287 1006 -287 946 -356 c 128,-1,24 + 886 -425 886 -425 766 -425 c 0,25,26 + 689 -425 689 -425 639 -416 c 1,27,-1 + 639 -277 l 1,28,-1 + 701 -283 l 1,29,30 + 771 -283 771 -283 798 -247 c 128,-1,31 + 825 -211 825 -211 825 -107 c 2,32,-1 + 825 646 l 2,33,34 + 825 760 825 760 804 815.5 c 128,-1,35 + 783 871 783 871 735 897 c 128,-1,36 + 687 923 687 923 602 923 c 0,37,38 + 475 923 475 923 398.5 835 c 128,-1,39 + 322 747 322 747 322 598 c 2,40,-1 + 322 0 l 1,41,-1 + 142 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0453 +Encoding: 1107 1107 1028 +Width: 747 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 6 + 17 + 38 + 1 + 6 + 85 + 6 + 9 + 4 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 996 1075 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 216 0 2 +EndChar + +StartChar: uni0454 +Encoding: 1108 1108 1029 +Width: 1045 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 92 + 10 + 9 + 9 + 23 + 24 + 15 + 18 + 18 + 3 + 3 + 17 + 24 + 3 + 28 + 27 + 15 + 28 + 1 + 10 + 3 + 15 + 18 + 80 + 89 + 15 + 15 + 31 + 15 + 111 + 15 + 127 + 15 + 143 + 15 + 5 + 15 + 15 + 207 + 15 + 223 + 15 + 3 + 11 + 3 + 15 + 15 + 0 + 6 + 6 + 12 + 80 + 89 + 31 + 10 + 47 + 10 + 127 + 10 + 143 + 10 + 223 + 10 + 5 + 10 + 64 + 29 + 32 + 72 + 10 + 10 + 6 + 16 + 0 + 23 + 16 + 23 + 32 + 23 + 96 + 23 + 112 + 23 + 128 + 23 + 192 + 23 + 208 + 23 + 8 + 9 + 3 + 23 +PUSHW_1 + -64 +NPUSHB + 12 + 27 + 34 + 72 + 23 + 23 + 0 + 0 + 20 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SDS +SDB +DELTAP1 +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +564 -20 m 0,0,1 + 332 -20 332 -20 209.5 123.5 c 128,-1,2 + 87 267 87 267 87 542 c 0,3,4 + 87 813 87 813 209 957.5 c 128,-1,5 + 331 1102 331 1102 562 1102 c 0,6,7 + 733 1102 733 1102 844 1018.5 c 128,-1,8 + 955 935 955 935 984 786 c 1,9,-1 + 799 772 l 1,10,11 + 767 968 767 968 557 968 c 0,12,13 + 418 968 418 968 351 884.5 c 128,-1,14 + 284 801 284 801 276 613 c 1,15,-1 + 688 613 l 1,16,-1 + 688 482 l 1,17,-1 + 275 482 l 1,18,19 + 293 115 293 115 559 115 c 0,20,21 + 659 115 659 115 725.5 166.5 c 128,-1,22 + 792 218 792 218 808 327 c 1,23,-1 + 990 315 l 1,24,25 + 969 161 969 161 855 70.5 c 128,-1,26 + 741 -20 741 -20 564 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0455 +Encoding: 1109 1109 1030 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni0456 +Encoding: 1110 1110 1031 +Width: 455 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 76 105 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni0457 +Encoding: 1111 1111 1032 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 4 + 4 + 17 + 38 + 2 + 1 + 8 +PUSHW_1 + -13 +PUSHB_5 + 8 + 6 + 0 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -53 0 2 +EndChar + +StartChar: uni0458 +Encoding: 1112 1112 1033 +Width: 455 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 77 106 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni0459 +Encoding: 1113 1113 1034 +Width: 1856 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 31 + 3 + 26 + 27 + 27 + 7 + 9 + 24 + 24 + 17 + 17 + 7 + 3 + 3 + 37 + 36 + 32 + 37 + 1 + 37 +PUSHW_1 + -64 +NPUSHB + 53 + 30 + 35 + 72 + 207 + 37 + 1 + 0 + 37 + 1 + 10 + 3 + 26 + 35 + 81 + 89 + 175 + 26 + 191 + 26 + 207 + 26 + 3 + 15 + 26 + 31 + 26 + 79 + 26 + 3 + 7 + 3 + 26 + 26 + 7 + 24 + 24 + 9 + 80 + 89 + 24 + 15 + 14 + 19 + 80 + 89 + 14 + 22 + 7 + 27 + 81 + 89 + 7 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +DELTAP2 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1357 624 m 2,0,1 + 1562 624 1562 624 1667 550.5 c 128,-1,2 + 1772 477 1772 477 1772 318 c 0,3,4 + 1772 164 1772 164 1664 82 c 128,-1,5 + 1556 0 1556 0 1358 0 c 2,6,-1 + 908 0 l 1,7,-1 + 908 951 l 1,8,-1 + 497 951 l 1,9,10 + 438 515 438 515 406 362.5 c 128,-1,11 + 374 210 374 210 337 132 c 128,-1,12 + 300 54 300 54 245.5 17 c 128,-1,13 + 191 -20 191 -20 105 -20 c 0,14,15 + 55 -20 55 -20 11 -7 c 1,16,-1 + 11 122 l 1,17,18 + 36 113 36 113 79 113 c 0,19,20 + 134 113 134 113 167.5 168 c 128,-1,21 + 201 223 201 223 228.5 358 c 128,-1,22 + 256 493 256 493 291 757 c 2,23,-1 + 335 1082 l 1,24,-1 + 1089 1082 l 1,25,-1 + 1089 624 l 1,26,-1 + 1357 624 l 2,0,1 +1089 127 m 1,27,-1 + 1331 127 l 2,28,29 + 1461 127 1461 127 1521 173 c 128,-1,30 + 1581 219 1581 219 1581 318 c 0,31,32 + 1581 412 1581 412 1523 455.5 c 128,-1,33 + 1465 499 1465 499 1332 499 c 2,34,-1 + 1089 499 l 1,35,-1 + 1089 127 l 1,27,-1 +EndSplineSet +EndChar + +StartChar: uni045A +Encoding: 1114 1114 1035 +Width: 1664 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 23 + 5 + 1 + 19 + 19 + 17 + 9 + 16 + 12 + 12 + 13 + 13 + 9 + 5 + 3 + 29 + 28 + 96 + 29 + 1 + 29 +PUSHW_1 + -64 +NPUSHB + 49 + 30 + 35 + 72 + 15 + 29 + 1 + 22 + 3 + 1 + 27 + 81 + 89 + 1 + 1 + 16 + 16 + 11 + 80 + 89 + 175 + 16 + 191 + 16 + 207 + 16 + 3 + 15 + 16 + 31 + 16 + 79 + 16 + 3 + 7 + 3 + 16 + 16 + 0 + 13 + 21 + 9 + 19 + 81 + 89 + 9 + 21 + 14 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +CALL +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +937 1082 m 1,0,-1 + 937 624 l 1,1,-1 + 1165 624 l 2,2,3 + 1370 624 1370 624 1475 550.5 c 128,-1,4 + 1580 477 1580 477 1580 318 c 0,5,6 + 1580 164 1580 164 1472 82 c 128,-1,7 + 1364 0 1364 0 1166 0 c 2,8,-1 + 756 0 l 1,9,-1 + 756 493 l 1,10,-1 + 322 493 l 1,11,-1 + 322 0 l 1,12,-1 + 142 0 l 1,13,-1 + 142 1082 l 1,14,-1 + 322 1082 l 1,15,-1 + 322 624 l 1,16,-1 + 756 624 l 1,17,-1 + 756 1082 l 1,18,-1 + 937 1082 l 1,0,-1 +937 127 m 1,19,-1 + 1139 127 l 2,20,21 + 1269 127 1269 127 1329 173 c 128,-1,22 + 1389 219 1389 219 1389 318 c 0,23,24 + 1389 412 1389 412 1331 455.5 c 128,-1,25 + 1273 499 1273 499 1140 499 c 2,26,-1 + 937 499 l 1,27,-1 + 937 127 l 1,19,-1 +EndSplineSet +EndChar + +StartChar: uni045B +Encoding: 1115 1115 1036 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 60 + 28 + 25 + 17 + 17 + 22 + 21 + 18 + 7 + 26 + 18 + 3 + 33 + 8 + 34 + 64 + 34 + 80 + 34 + 96 + 34 + 3 + 64 + 34 + 128 + 34 + 2 + 143 + 34 + 1 + 0 + 34 + 48 + 34 + 64 + 34 + 3 + 16 + 3 + 28 + 20 + 21 + 20 + 81 + 89 + 25 + 21 + 21 + 3 + 23 + 0 + 18 + 7 + 21 + 0 + 13 + 3 + 13 + 80 + 89 + 3 +PUSHW_1 + -64 +PUSHB_5 + 7 + 12 + 72 + 3 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +317 857 m 1,0,1 + 375 963 375 963 456.5 1012.5 c 128,-1,2 + 538 1062 538 1062 663 1062 c 0,3,4 + 839 1062 839 1062 922.5 974.5 c 128,-1,5 + 1006 887 1006 887 1006 681 c 2,6,-1 + 1006 0 l 1,7,-1 + 825 0 l 1,8,-1 + 825 646 l 2,9,10 + 825 760 825 760 804 815.5 c 128,-1,11 + 783 871 783 871 735 897 c 128,-1,12 + 687 923 687 923 602 923 c 0,13,14 + 475 923 475 923 398.5 835 c 128,-1,15 + 322 747 322 747 322 598 c 2,16,-1 + 322 0 l 1,17,-1 + 142 0 l 1,18,-1 + 142 1206 l 1,19,-1 + 10 1206 l 1,20,-1 + 10 1337 l 1,21,-1 + 142 1337 l 1,22,-1 + 142 1484 l 1,23,-1 + 322 1484 l 1,24,-1 + 322 1337 l 1,25,-1 + 622 1337 l 1,26,-1 + 622 1206 l 1,27,-1 + 322 1206 l 1,28,-1 + 322 1058 l 2,29,30 + 322 997 322 997 318.5 932 c 128,-1,31 + 315 867 315 867 314 857 c 1,32,-1 + 317 857 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni045C +Encoding: 1116 1116 1037 +Width: 896 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 20 + 17 + 38 + 1 + 20 + 81 + 20 + 23 + 0 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1003 1082 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 319 0 2 +EndChar + +StartChar: uni045D +Encoding: 1117 1117 1038 +Width: 1144 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 19 + 19 + 17 + 38 + 1 + 16 +PUSHW_1 + -84 +PUSHB_5 + 16 + 19 + 13 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1001 1080 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 170 0 2 +EndChar + +StartChar: uni045E +Encoding: 1118 1118 1039 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 23 + 23 + 17 + 38 + 1 + 25 + 10 + 25 + 31 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-17" 510 1580 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 2299 -1 N 1 0 0 1 183 0 2 +Kerns2: 17 -205 "'kern' Horizontal Kerning lookup 17 subtable" 15 -205 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni045F +Encoding: 1119 1119 1040 +Width: 1131 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 4 + 7 + 9 + 10 + 3 + 0 + 0 + 10 + 7 + 3 + 13 + 12 + 64 + 13 + 80 + 13 + 96 + 13 + 3 + 64 + 13 + 128 + 13 + 2 + 0 + 13 + 48 + 13 + 64 + 13 + 80 + 13 + 4 + 16 + 3 + 9 + 5 + 1 + 15 + 8 + 0 + 0 + 3 + 80 + 89 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +142 0 m 1,0,-1 + 142 1082 l 1,1,-1 + 322 1082 l 1,2,-1 + 322 131 l 1,3,-1 + 809 131 l 1,4,-1 + 809 1082 l 1,5,-1 + 989 1082 l 1,6,-1 + 989 0 l 1,7,-1 + 647 0 l 1,8,-1 + 647 -408 l 1,9,-1 + 484 -408 l 1,10,-1 + 484 0 l 1,11,-1 + 142 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0460 +Encoding: 1120 1120 1041 +Width: 2740 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 9 + 15 + 3 + 3 + 39 + 0 + 0 + 21 + 45 + 33 + 21 + 33 + 54 + 53 + 27 + 1 + 1 + 29 + 36 + 36 + 42 + 95 + 89 + 40 + 36 + 4 + 29 + 49 + 95 + 89 + 29 + 19 + 25 + 6 + 95 + 89 + 25 + 19 + 14 + 18 + 18 + 12 + 95 + 89 + 18 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1282 306 m 1,0,-1 + 1282 699 l 1,1,-1 + 1473 699 l 1,2,-1 + 1473 300 l 1,3,4 + 1547 224 1547 224 1659.5 181 c 128,-1,5 + 1772 138 1772 138 1905 138 c 0,6,7 + 2145 138 2145 138 2290.5 295.5 c 128,-1,8 + 2436 453 2436 453 2436 711 c 0,9,10 + 2436 974 2436 974 2306.5 1124 c 128,-1,11 + 2177 1274 2177 1274 1942 1274 c 0,12,13 + 1756 1274 1756 1274 1629 1170 c 1,14,-1 + 1513 1294 l 1,15,16 + 1590 1365 1590 1365 1693.5 1397.5 c 128,-1,17 + 1797 1430 1797 1430 1944 1430 c 0,18,19 + 2266 1430 2266 1430 2448 1239 c 128,-1,20 + 2630 1048 2630 1048 2630 711 c 0,21,22 + 2630 493 2630 493 2543.5 326 c 128,-1,23 + 2457 159 2457 159 2296.5 69.5 c 128,-1,24 + 2136 -20 2136 -20 1920 -20 c 0,25,26 + 1576 -20 1576 -20 1372 158 c 1,27,28 + 1166 -20 1166 -20 824 -20 c 0,29,30 + 609 -20 609 -20 448.5 69 c 128,-1,31 + 288 158 288 158 201 325 c 128,-1,32 + 114 492 114 492 114 711 c 0,33,34 + 114 1048 114 1048 296 1239 c 128,-1,35 + 478 1430 478 1430 800 1430 c 0,36,37 + 947 1430 947 1430 1050.5 1397.5 c 128,-1,38 + 1154 1365 1154 1365 1231 1294 c 1,39,-1 + 1115 1170 l 1,40,41 + 988 1274 988 1274 802 1274 c 0,42,43 + 568 1274 568 1274 438 1123.5 c 128,-1,44 + 308 973 308 973 308 711 c 0,45,46 + 308 543 308 543 374 412 c 128,-1,47 + 440 281 440 281 561 209.5 c 128,-1,48 + 682 138 682 138 839 138 c 0,49,50 + 974 138 974 138 1087 182 c 128,-1,51 + 1200 226 1200 226 1279 308 c 1,52,-1 + 1282 306 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0461 +Encoding: 1121 1121 1042 +Width: 1278 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 19 + 2 + 15 + 14 + 14 + 12 + 11 + 10 + 10 + 12 + 7 + 16 + 2 + 5 + 23 + 22 + 16 + 12 + 12 + 7 + 9 + 21 + 14 + 10 + 15 + 6 + 9 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1175 1082 m 1,0,1 + 1225 961 1225 961 1225 819 c 0,2,3 + 1225 652 1225 652 1153 442.5 c 128,-1,4 + 1081 233 1081 233 941 0 c 1,5,-1 + 781 0 l 1,6,-1 + 670 392 l 1,7,-1 + 535 0 l 1,8,-1 + 365 0 l 1,9,-1 + 15 1082 l 1,10,-1 + 198 1082 l 1,11,-1 + 465 168 l 1,12,-1 + 611 598 l 1,13,-1 + 474 1082 l 1,14,-1 + 657 1082 l 1,15,-1 + 881 168 l 1,16,17 + 964 322 964 322 1010 487.5 c 128,-1,18 + 1056 653 1056 653 1056 804 c 0,19,20 + 1056 960 1056 960 1008 1082 c 1,21,-1 + 1175 1082 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0462 +Encoding: 1122 1122 1043 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 19 + 12 + 8 + 4 + 24 + 24 + 1 + 16 + 0 + 16 + 6 + 12 + 4 + 28 + 27 + 8 + 23 + 95 + 89 + 7 + 18 + 0 + 18 + 96 + 89 + 4 + 0 + 8 + 0 + 8 + 0 + 16 + 2 + 16 + 24 + 95 + 89 + 16 + 18 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +21 1194 m 1,0,-1 + 417 1194 l 1,1,-1 + 417 1409 l 1,2,-1 + 608 1409 l 1,3,-1 + 608 1194 l 1,4,-1 + 1003 1194 l 1,5,-1 + 1003 1047 l 1,6,-1 + 608 1047 l 1,7,-1 + 608 813 l 1,8,-1 + 1015 813 l 2,9,10 + 1251 813 1251 813 1381.5 708 c 128,-1,11 + 1512 603 1512 603 1512 413 c 0,12,13 + 1512 226 1512 226 1383 113 c 128,-1,14 + 1254 0 1254 0 1027 0 c 2,15,-1 + 417 0 l 1,16,-1 + 417 1047 l 1,17,-1 + 21 1047 l 1,18,-1 + 21 1194 l 1,0,-1 +1320 407 m 0,19,20 + 1320 528 1320 528 1238 593.5 c 128,-1,21 + 1156 659 1156 659 992 659 c 2,22,-1 + 608 659 l 1,23,-1 + 608 151 l 1,24,-1 + 1000 151 l 2,25,26 + 1320 151 1320 151 1320 407 c 0,19,20 +EndSplineSet +EndChar + +StartChar: uni0463 +Encoding: 1123 1123 1044 +Width: 1255 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 22 + 12 + 8 + 4 + 19 + 19 + 1 + 16 + 0 + 16 + 6 + 12 + 4 + 28 + 27 + 8 + 26 + 81 + 89 + 8 + 8 + 16 + 0 + 16 + 19 + 81 + 89 + 16 + 21 + 2 + 0 + 7 + 18 + 0 + 18 + 80 + 89 + 4 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +21 1082 m 1,0,-1 + 322 1082 l 1,1,-1 + 322 1483 l 1,2,-1 + 502 1483 l 1,3,-1 + 502 1082 l 1,4,-1 + 800 1082 l 1,5,-1 + 800 943 l 1,6,-1 + 502 943 l 1,7,-1 + 502 660 l 1,8,-1 + 775 660 l 2,9,10 + 980 660 980 660 1085 576 c 128,-1,11 + 1190 492 1190 492 1190 333 c 0,12,13 + 1190 176 1190 176 1081.5 88 c 128,-1,14 + 973 0 973 0 776 0 c 2,15,-1 + 322 0 l 1,16,-1 + 322 943 l 1,17,-1 + 21 943 l 1,18,-1 + 21 1082 l 1,0,-1 +502 127 m 1,19,-1 + 749 127 l 2,20,21 + 999 127 999 127 999 333 c 0,22,23 + 999 427 999 427 941 478 c 128,-1,24 + 883 529 883 529 750 529 c 2,25,-1 + 502 529 l 1,26,-1 + 502 127 l 1,19,-1 +EndSplineSet +EndChar + +StartChar: uni0464 +Encoding: 1124 1124 1045 +Width: 1945 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 75 + 3 + 33 + 33 + 0 + 17 + 9 + 16 + 16 + 19 + 19 + 4 + 31 + 10 + 9 + 9 + 24 + 25 + 25 + 31 + 0 + 3 + 34 + 35 + 0 + 24 + 16 + 24 + 64 + 24 + 80 + 24 + 144 + 24 + 160 + 24 + 208 + 24 + 224 + 24 + 8 + 12 + 3 + 24 + 24 + 28 + 28 + 22 + 95 + 89 + 28 + 19 + 7 + 13 + 95 + 89 + 10 + 10 + 7 + 4 + 19 + 32 + 3 + 32 + 95 + 89 + 16 + 47 + 3 + 1 + 3 + 3 + 1 + 3 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +189 0 m 1,0,-1 + 189 1409 l 1,1,-1 + 380 1409 l 1,2,-1 + 380 791 l 1,3,-1 + 582 791 l 1,4,5 + 603 1096 603 1096 779.5 1263 c 128,-1,6 + 956 1430 956 1430 1255 1430 c 0,7,8 + 1700 1430 1700 1430 1843 1081 c 1,9,-1 + 1662 1021 l 1,10,11 + 1612 1147 1612 1147 1508 1210.5 c 128,-1,12 + 1404 1274 1404 1274 1257 1274 c 0,13,14 + 1045 1274 1045 1274 921 1148 c 128,-1,15 + 797 1022 797 1022 776 792 c 1,16,-1 + 1410 792 l 1,17,-1 + 1410 638 l 1,18,-1 + 776 638 l 1,19,20 + 795 407 795 407 924 272 c 128,-1,21 + 1053 137 1053 137 1265 137 c 0,22,23 + 1557 137 1557 137 1700 429 c 1,24,-1 + 1856 352 l 1,25,26 + 1757 157 1757 157 1610 68.5 c 128,-1,27 + 1463 -20 1463 -20 1256 -20 c 0,28,29 + 953 -20 953 -20 776.5 154.5 c 128,-1,30 + 600 329 600 329 581 638 c 1,31,-1 + 380 638 l 1,32,-1 + 380 0 l 1,33,-1 + 189 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0465 +Encoding: 1125 1125 1046 +Width: 1461 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 90 + 10 + 25 + 3 + 33 + 33 + 16 + 19 + 19 + 4 + 31 + 31 + 18 + 0 + 25 + 25 + 0 + 35 + 34 + 32 + 24 + 112 + 24 + 128 + 24 + 208 + 24 + 224 + 24 + 5 + 0 + 24 + 16 + 24 + 96 + 24 + 112 + 24 + 128 + 24 + 192 + 24 + 208 + 24 + 7 + 9 + 3 + 24 + 24 + 28 + 28 + 21 + 80 + 89 + 28 + 22 + 7 + 13 + 80 + 89 + 15 + 11 + 111 + 11 + 127 + 11 + 207 + 11 + 4 + 10 + 3 + 11 + 11 + 7 + 16 + 19 + 32 + 3 + 32 + 81 + 89 + 16 + 47 + 3 + 1 + 3 + 3 + 1 + 15 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +136 0 m 1,0,-1 + 136 1082 l 1,1,-1 + 316 1082 l 1,2,-1 + 316 613 l 1,3,-1 + 499 613 l 1,4,5 + 514 852 514 852 636 977 c 128,-1,6 + 758 1102 758 1102 972 1102 c 0,7,8 + 1143 1102 1143 1102 1254 1018.5 c 128,-1,9 + 1365 935 1365 935 1394 786 c 1,10,-1 + 1209 772 l 1,11,12 + 1177 968 1177 968 967 968 c 0,13,14 + 828 968 828 968 761 884.5 c 128,-1,15 + 694 801 694 801 686 613 c 1,16,-1 + 1098 613 l 1,17,-1 + 1098 482 l 1,18,-1 + 685 482 l 1,19,20 + 703 115 703 115 969 115 c 0,21,22 + 1069 115 1069 115 1135.5 166.5 c 128,-1,23 + 1202 218 1202 218 1218 327 c 1,24,-1 + 1400 315 l 1,25,26 + 1379 161 1379 161 1265 70.5 c 128,-1,27 + 1151 -20 1151 -20 974 -20 c 0,28,29 + 755 -20 755 -20 633.5 108 c 128,-1,30 + 512 236 512 236 498 482 c 1,31,-1 + 316 482 l 1,32,-1 + 316 0 l 1,33,-1 + 136 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0466 +Encoding: 1126 1126 1047 +Width: 1368 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 7 + 6 + 2 + 3 + 17 + 10 + 10 + 16 + 11 + 3 + 6 + 11 + 3 + 22 + 21 + 9 + 1 + 16 + 1 + 95 + 89 + 12 + 4 + 16 + 16 + 3 + 4 + 3 + 11 + 7 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +596 532 m 1,0,-1 + 411 532 l 1,1,-1 + 202 0 l 1,2,-1 + 4 0 l 1,3,-1 + 579 1409 l 1,4,-1 + 796 1409 l 1,5,-1 + 1362 0 l 1,6,-1 + 1167 0 l 1,7,-1 + 959 532 l 1,8,-1 + 771 532 l 1,9,-1 + 771 0 l 1,10,-1 + 596 0 l 1,11,-1 + 596 532 l 1,0,-1 +685 1265 m 1,12,-1 + 676 1237 l 2,13,14 + 664 1198 664 1198 638.5 1125 c 128,-1,15 + 613 1052 613 1052 469 681 c 1,16,-1 + 902 681 l 1,17,-1 + 768 1026 l 2,18,19 + 740 1095 740 1095 712 1182 c 2,20,-1 + 685 1265 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: uni0467 +Encoding: 1127 1127 1048 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 8 + 9 + 1 + 0 + 12 + 4 + 4 + 14 + 5 + 9 + 5 + 0 + 3 + 16 + 15 + 3 + 7 + 14 + 7 + 80 + 89 + 13 + 10 + 14 + 14 + 9 + 10 + 15 + 5 + 1 + 9 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1020 0 m 1,0,-1 + 850 0 l 1,1,-1 + 710 368 l 1,2,-1 + 594 368 l 1,3,-1 + 594 0 l 1,4,-1 + 430 0 l 1,5,-1 + 430 368 l 1,6,-1 + 318 368 l 1,7,-1 + 181 0 l 1,8,-1 + 6 0 l 1,9,-1 + 430 1082 l 1,10,-1 + 598 1082 l 1,11,-1 + 1020 0 l 1,0,-1 +664 504 m 1,12,-1 + 512 906 l 1,13,-1 + 364 504 l 1,14,-1 + 664 504 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: uni0468 +Encoding: 1128 1128 1049 +Width: 1838 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 8 + 7 + 3 + 19 + 19 + 0 + 15 + 4 + 16 + 25 + 11 + 11 + 24 + 12 + 7 + 12 + 16 + 0 + 4 + 29 + 30 + 14 + 10 + 18 + 3 + 18 + 96 + 89 + 24 + 20 + 5 + 3 + 3 + 5 + 3 + 1 + 3 + 16 + 12 + 8 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +SHP[rp2] +SHP[rp2] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +SRP2 +IP +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +191 0 m 1,0,-1 + 191 1409 l 1,1,-1 + 382 1409 l 1,2,-1 + 382 681 l 1,3,-1 + 748 681 l 1,4,-1 + 1045 1409 l 1,5,-1 + 1262 1409 l 1,6,-1 + 1828 0 l 1,7,-1 + 1633 0 l 1,8,-1 + 1425 532 l 1,9,-1 + 1237 532 l 1,10,-1 + 1237 0 l 1,11,-1 + 1062 0 l 1,12,-1 + 1062 532 l 1,13,-1 + 877 532 l 1,14,-1 + 668 0 l 1,15,-1 + 470 0 l 1,16,-1 + 687 533 l 1,17,-1 + 382 533 l 1,18,-1 + 382 0 l 1,19,-1 + 191 0 l 1,0,-1 +1151 1265 m 1,20,-1 + 1142 1237 l 2,21,22 + 1130 1198 1130 1198 1104.5 1125 c 128,-1,23 + 1079 1052 1079 1052 935 681 c 1,24,-1 + 1368 681 l 1,25,-1 + 1234 1026 l 2,26,27 + 1206 1095 1206 1095 1178 1182 c 2,28,-1 + 1151 1265 l 1,20,-1 +EndSplineSet +EndChar + +StartChar: uni0469 +Encoding: 1129 1129 1050 +Width: 1424 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 8 + 7 + 3 + 19 + 19 + 0 + 15 + 4 + 16 + 20 + 11 + 11 + 22 + 12 + 7 + 12 + 16 + 0 + 4 + 23 + 24 + 14 + 10 + 18 + 3 + 18 + 80 + 89 + 22 + 21 + 1 + 3 + 3 + 5 + 1 + 15 + 16 + 12 + 8 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +SHP[rp2] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +IP +MDAP[rnd] +SRP2 +IP +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +134 0 m 1,0,-1 + 134 1082 l 1,1,-1 + 314 1082 l 1,2,-1 + 314 504 l 1,3,-1 + 603 504 l 1,4,-1 + 830 1082 l 1,5,-1 + 998 1082 l 1,6,-1 + 1420 0 l 1,7,-1 + 1250 0 l 1,8,-1 + 1110 368 l 1,9,-1 + 994 368 l 1,10,-1 + 994 0 l 1,11,-1 + 830 0 l 1,12,-1 + 830 368 l 1,13,-1 + 718 368 l 1,14,-1 + 581 0 l 1,15,-1 + 406 0 l 1,16,-1 + 550 369 l 1,17,-1 + 314 369 l 1,18,-1 + 314 0 l 1,19,-1 + 134 0 l 1,0,-1 +1064 504 m 1,20,-1 + 912 906 l 1,21,-1 + 764 504 l 1,22,-1 + 1064 504 l 1,20,-1 +EndSplineSet +EndChar + +StartChar: uni046A +Encoding: 1130 1130 1051 +Width: 1697 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 24 + 4 + 3 + 27 + 22 + 22 + 11 + 26 + 0 + 0 + 10 + 10 + 11 + 23 + 17 + 17 + 18 + 18 + 11 + 3 + 3 + 29 + 28 + 9 + 12 + 22 + 12 + 96 + 89 + 25 + 0 + 22 + 22 + 18 + 23 + 23 + 27 + 95 + 89 + 23 + 3 + 11 + 4 + 18 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1045 773 m 1,0,1 + 1577 726 1577 726 1577 205 c 2,2,-1 + 1577 0 l 1,3,-1 + 1397 0 l 1,4,-1 + 1397 180 l 2,5,6 + 1397 344 1397 344 1351.5 436.5 c 128,-1,7 + 1306 529 1306 529 1207 575 c 128,-1,8 + 1108 621 1108 621 944 626 c 1,9,-1 + 944 0 l 1,10,-1 + 754 0 l 1,11,-1 + 754 626 l 1,12,13 + 589 621 589 621 490.5 575 c 128,-1,14 + 392 529 392 529 346.5 437.5 c 128,-1,15 + 301 346 301 346 301 180 c 2,16,-1 + 301 0 l 1,17,-1 + 121 0 l 1,18,-1 + 121 205 l 2,19,20 + 121 470 121 470 254 609.5 c 128,-1,21 + 387 749 387 749 653 773 c 1,22,-1 + 212 1409 l 1,23,-1 + 1488 1409 l 1,24,-1 + 1045 773 l 1,0,1 +851 766 m 1,25,-1 + 1174 1253 l 1,26,-1 + 526 1253 l 1,27,-1 + 851 766 l 1,25,-1 +EndSplineSet +EndChar + +StartChar: uni046B +Encoding: 1131 1131 1052 +Width: 1403 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 21 + 1 + 1 + 0 + 28 + 19 + 19 + 8 + 27 + 22 + 22 + 7 + 7 + 8 + 20 + 14 + 14 + 15 + 15 + 8 + 0 + 3 + 31 + 30 + 6 + 9 + 29 + 9 + 81 + 89 + 22 + 19 + 29 + 19 + 29 + 19 + 15 + 20 + 20 + 28 + 80 + 89 + 20 + 15 + 8 + 1 + 15 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1281 0 m 1,0,-1 + 1111 0 l 1,1,-1 + 1111 70 l 2,2,3 + 1111 214 1111 214 1081.5 286.5 c 128,-1,4 + 1052 359 1052 359 984 393 c 128,-1,5 + 916 427 916 427 785 431 c 1,6,-1 + 785 0 l 1,7,-1 + 616 0 l 1,8,-1 + 616 431 l 1,9,10 + 492 431 492 431 423 396.5 c 128,-1,11 + 354 362 354 362 323 287.5 c 128,-1,12 + 292 213 292 213 292 70 c 2,13,-1 + 292 0 l 1,14,-1 + 122 0 l 1,15,-1 + 122 70 l 2,16,17 + 122 324 122 324 213 434 c 128,-1,18 + 304 544 304 544 521 564 c 1,19,-1 + 211 1082 l 1,20,-1 + 1195 1082 l 1,21,-1 + 883 564 l 1,22,23 + 1031 550 1031 550 1117.5 496.5 c 128,-1,24 + 1204 443 1204 443 1242.5 344 c 128,-1,25 + 1281 245 1281 245 1281 70 c 2,26,-1 + 1281 0 l 1,0,-1 +921 943 m 1,27,-1 + 488 943 l 1,28,-1 + 702 557 l 1,29,-1 + 921 943 l 1,27,-1 +EndSplineSet +EndChar + +StartChar: uni046C +Encoding: 1132 1132 1053 +Width: 2157 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 11 + 6 + 10 + 32 + 7 + 7 + 17 + 17 + 18 + 33 + 4 + 4 + 18 + 28 + 5 + 24 + 24 + 25 + 3 + 30 + 30 + 0 + 0 + 25 + 18 + 10 + 4 + 35 + 34 + 19 + 16 + 29 + 3 + 29 + 96 + 89 + 31 + 7 + 3 + 3 + 0 + 5 + 5 + 33 + 95 + 89 + 5 + 3 + 1 + 3 + 25 + 18 + 11 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +SHP[rp2] +SHP[rp2] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +189 0 m 1,0,-1 + 189 1409 l 1,1,-1 + 380 1409 l 1,2,-1 + 380 773 l 1,3,-1 + 1114 773 l 1,4,-1 + 673 1409 l 1,5,-1 + 1949 1409 l 1,6,-1 + 1506 773 l 1,7,8 + 2038 726 2038 726 2038 205 c 2,9,-1 + 2038 0 l 1,10,-1 + 1858 0 l 1,11,-1 + 1858 180 l 2,12,13 + 1858 344 1858 344 1812.5 436.5 c 128,-1,14 + 1767 529 1767 529 1668 575 c 128,-1,15 + 1569 621 1569 621 1405 626 c 1,16,-1 + 1405 0 l 1,17,-1 + 1215 0 l 1,18,-1 + 1215 626 l 1,19,20 + 1050 621 1050 621 951.5 575 c 128,-1,21 + 853 529 853 529 807.5 437.5 c 128,-1,22 + 762 346 762 346 762 180 c 2,23,-1 + 762 0 l 1,24,-1 + 582 0 l 1,25,-1 + 582 205 l 2,26,27 + 582 503 582 503 749 627 c 1,28,-1 + 380 627 l 1,29,-1 + 380 0 l 1,30,-1 + 189 0 l 1,0,-1 +1312 766 m 1,31,-1 + 1635 1253 l 1,32,-1 + 987 1253 l 1,33,-1 + 1312 766 l 1,31,-1 +EndSplineSet +EndChar + +StartChar: uni046D +Encoding: 1133 1133 1054 +Width: 1776 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 56 + 6 + 13 + 13 + 12 + 34 + 7 + 7 + 19 + 19 + 20 + 35 + 4 + 4 + 20 + 31 + 5 + 26 + 26 + 27 + 3 + 33 + 33 + 0 + 0 + 27 + 20 + 12 + 4 + 38 + 37 + 21 + 18 + 32 + 3 + 32 + 80 + 89 + 36 + 7 + 3 + 3 + 0 + 5 + 5 + 35 + 80 + 89 + 5 + 15 + 1 + 15 + 27 + 20 + 13 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +SHP[rp2] +SHP[rp2] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +136 0 m 1,0,-1 + 136 1082 l 1,1,-1 + 316 1082 l 1,2,-1 + 316 564 l 1,3,-1 + 894 564 l 1,4,-1 + 584 1082 l 1,5,-1 + 1568 1082 l 1,6,-1 + 1256 564 l 1,7,8 + 1404 550 1404 550 1490.5 496.5 c 128,-1,9 + 1577 443 1577 443 1615.5 344 c 128,-1,10 + 1654 245 1654 245 1654 70 c 2,11,-1 + 1654 0 l 1,12,-1 + 1484 0 l 1,13,-1 + 1484 70 l 2,14,15 + 1484 214 1484 214 1454.5 286.5 c 128,-1,16 + 1425 359 1425 359 1357 393 c 128,-1,17 + 1289 427 1289 427 1158 431 c 1,18,-1 + 1158 0 l 1,19,-1 + 989 0 l 1,20,-1 + 989 431 l 1,21,22 + 865 431 865 431 796 396.5 c 128,-1,23 + 727 362 727 362 696 287.5 c 128,-1,24 + 665 213 665 213 665 70 c 2,25,-1 + 665 0 l 1,26,-1 + 495 0 l 1,27,-1 + 495 70 l 2,28,29 + 495 224 495 224 523 306 c 128,-1,30 + 551 388 551 388 611 431 c 1,31,-1 + 316 431 l 1,32,-1 + 316 0 l 1,33,-1 + 136 0 l 1,0,-1 +1294 943 m 1,34,-1 + 861 943 l 1,35,-1 + 1075 557 l 1,36,-1 + 1294 943 l 1,34,-1 +EndSplineSet +EndChar + +StartChar: uni046E +Encoding: 1134 1134 1055 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 77 + 28 + 20 + 22 + 41 + 22 + 5 + 3 + 38 + 15 + 16 + 16 + 54 + 75 + 65 + 64 + 9 + 38 + 0 + 44 + 44 + 38 + 64 + 75 + 4 + 85 + 86 + 67 + 61 + 95 + 89 + 0 + 67 + 1 + 12 + 3 + 67 + 67 + 72 + 41 + 5 + 4 + 5 + 4 + 96 + 89 + 50 + 79 + 79 + 72 + 5 + 5 + 35 + 65 + 72 + 72 + 56 + 95 + 89 + 72 + 31 + 21 + 21 + 26 + 35 + 64 + 22 + 19 + 35 + 15 + 15 + 35 + 35 + 12 + 96 + 89 + 35 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +SMD +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +SHP[rp2] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +RTG +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +943 403 m 0,0,1 + 943 536 943 536 847 595 c 128,-1,2 + 751 654 751 654 549 654 c 2,3,-1 + 478 654 l 1,4,-1 + 478 802 l 1,5,-1 + 549 802 l 2,6,7 + 730 802 730 802 816.5 861.5 c 128,-1,8 + 903 921 903 921 903 1044 c 0,9,10 + 903 1151 903 1151 830.5 1212.5 c 128,-1,11 + 758 1274 758 1274 623 1274 c 0,12,13 + 497 1274 497 1274 411 1215.5 c 128,-1,14 + 325 1157 325 1157 274 1027 c 1,15,-1 + 96 1088 l 1,16,17 + 151 1225 151 1225 247.5 1308.5 c 128,-1,18 + 344 1392 344 1392 495 1418 c 1,19,-1 + 311 1757 l 1,20,-1 + 467 1757 l 1,21,-1 + 630 1432 l 1,22,-1 + 721 1648 l 2,23,24 + 750 1715 750 1715 786 1743 c 128,-1,25 + 822 1771 822 1771 876 1771 c 0,26,27 + 959 1771 959 1771 1004 1694 c 1,28,-1 + 938 1632 l 1,29,30 + 921 1662 921 1662 893 1662 c 0,31,32 + 879 1662 879 1662 868.5 1654.5 c 128,-1,33 + 858 1647 858 1647 845 1618 c 2,34,-1 + 757 1418 l 1,35,36 + 914 1390 914 1390 1004 1295.5 c 128,-1,37 + 1094 1201 1094 1201 1094 1061 c 0,38,39 + 1094 934 1094 934 1022 851 c 128,-1,40 + 950 768 950 768 814 736 c 1,41,42 + 966 713 966 713 1051 625.5 c 128,-1,43 + 1136 538 1136 538 1136 406 c 0,44,45 + 1136 315 1136 315 1112 250 c 128,-1,46 + 1088 185 1088 185 1047 139 c 128,-1,47 + 1006 93 1006 93 948.5 63.5 c 128,-1,48 + 891 34 891 34 821.5 16 c 128,-1,49 + 752 -2 752 -2 592 -21 c 0,50,51 + 441 -38 441 -38 386.5 -54 c 128,-1,52 + 332 -70 332 -70 302.5 -95.5 c 128,-1,53 + 273 -121 273 -121 273 -162 c 0,54,55 + 273 -270 273 -270 437 -270 c 0,56,57 + 495 -270 495 -270 548.5 -256.5 c 128,-1,58 + 602 -243 602 -243 651.5 -226.5 c 128,-1,59 + 701 -210 701 -210 747.5 -196 c 128,-1,60 + 794 -182 794 -182 839 -182 c 0,61,62 + 933 -182 933 -182 987.5 -247 c 128,-1,63 + 1042 -312 1042 -312 1042 -412 c 1,64,-1 + 890 -412 l 1,65,66 + 890 -335 890 -335 816 -335 c 0,67,68 + 787 -335 787 -335 744 -349 c 128,-1,69 + 701 -363 701 -363 647 -380 c 128,-1,70 + 593 -397 593 -397 530 -411 c 128,-1,71 + 467 -425 467 -425 400 -425 c 0,72,73 + 264 -425 264 -425 183 -353 c 128,-1,74 + 102 -281 102 -281 102 -159 c 0,75,76 + 102 -72 102 -72 144 -17 c 128,-1,77 + 186 38 186 38 264 69 c 128,-1,78 + 342 100 342 100 503 115 c 0,79,80 + 650 129 650 129 704 140 c 128,-1,81 + 758 151 758 151 801.5 169.5 c 128,-1,82 + 845 188 845 188 876.5 219 c 128,-1,83 + 908 250 908 250 925.5 294.5 c 128,-1,84 + 943 339 943 339 943 403 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni046F +Encoding: 1135 1135 1056 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 76 + 68 + 67 + 8 + 49 + 14 + 32 + 24 + 26 + 45 + 26 + 11 + 3 + 42 + 20 + 21 + 21 + 57 + 0 + 0 + 42 + 49 + 67 + 4 + 79 + 78 + 70 + 64 + 80 + 89 + 0 + 70 + 1 + 12 + 3 + 70 + 70 + 75 + 53 + 4 + 45 + 11 + 10 + 11 + 10 + 80 + 89 + 4 + 75 + 11 + 11 + 39 + 67 + 75 + 75 + 59 + 80 + 89 + 75 + 35 + 25 + 25 + 30 + 39 + 64 + 26 + 23 + 39 + 20 + 20 + 39 + 39 + 17 + 81 + 89 + 39 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +SMD +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +SHP[rp2] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +RTG +MDAP[rnd] +SRP2 +IP +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +32 -159 m 0,0,1 + 32 -81 32 -81 68 -31.5 c 128,-1,2 + 104 18 104 18 170.5 48 c 128,-1,3 + 237 78 237 78 375 98 c 0,4,5 + 507 117 507 117 560.5 139.5 c 128,-1,6 + 614 162 614 162 642.5 200 c 128,-1,7 + 671 238 671 238 671 299 c 0,8,9 + 671 499 671 499 340 499 c 1,10,-1 + 340 636 l 1,11,12 + 501 636 501 636 577 678 c 128,-1,13 + 653 720 653 720 653 808 c 0,14,15 + 653 882 653 882 603.5 925 c 128,-1,16 + 554 968 554 968 461 968 c 0,17,18 + 372 968 372 968 315.5 931 c 128,-1,19 + 259 894 259 894 247 824 c 1,20,-1 + 85 844 l 1,21,22 + 121 1046 121 1046 333 1090 c 1,23,-1 + 145 1435 l 1,24,-1 + 301 1435 l 1,25,-1 + 464 1110 l 1,26,-1 + 555 1326 l 2,27,28 + 584 1393 584 1393 620 1421 c 128,-1,29 + 656 1449 656 1449 710 1449 c 0,30,31 + 793 1449 793 1449 838 1372 c 1,32,-1 + 772 1310 l 1,33,34 + 755 1340 755 1340 727 1340 c 0,35,36 + 713 1340 713 1340 702.5 1332.5 c 128,-1,37 + 692 1325 692 1325 679 1296 c 2,38,-1 + 588 1088 l 1,39,40 + 700 1062 700 1062 768 990.5 c 128,-1,41 + 836 919 836 919 836 817 c 0,42,43 + 836 716 836 716 763.5 648 c 128,-1,44 + 691 580 691 580 588 571 c 1,45,-1 + 588 569 l 1,46,47 + 709 556 709 556 785.5 484.5 c 128,-1,48 + 862 413 862 413 862 304 c 0,49,50 + 862 209 862 209 821 142.5 c 128,-1,51 + 780 76 780 76 694 36 c 128,-1,52 + 608 -4 608 -4 429 -30 c 0,53,54 + 317 -49 317 -49 277.5 -64.5 c 128,-1,55 + 238 -80 238 -80 217 -103 c 128,-1,56 + 196 -126 196 -126 196 -162 c 0,57,58 + 196 -278 196 -278 348 -278 c 0,59,60 + 406 -278 406 -278 452 -262.5 c 128,-1,61 + 498 -247 498 -247 539 -229 c 128,-1,62 + 580 -211 580 -211 619 -195.5 c 128,-1,63 + 658 -180 658 -180 703 -180 c 0,64,65 + 794 -180 794 -180 847 -242.5 c 128,-1,66 + 900 -305 900 -305 900 -409 c 1,67,-1 + 748 -409 l 1,68,69 + 748 -332 748 -332 674 -332 c 0,70,71 + 645 -332 645 -332 610.5 -346.5 c 128,-1,72 + 576 -361 576 -361 532.5 -378.5 c 128,-1,73 + 489 -396 489 -396 435 -410.5 c 128,-1,74 + 381 -425 381 -425 313 -425 c 0,75,76 + 190 -425 190 -425 111 -350 c 128,-1,77 + 32 -275 32 -275 32 -159 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0470 +Encoding: 1136 1136 1057 +Width: 1631 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 20 + 23 + 16 + 28 + 28 + 13 + 0 + 8 + 7 + 7 + 0 + 23 + 3 + 30 + 29 + 27 + 1 + 13 + 1 + 96 + 89 + 16 + 13 + 13 + 21 + 14 + 7 + 3 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +713 0 m 1,0,-1 + 713 427 l 1,1,2 + 614 427 614 427 538 454 c 128,-1,3 + 462 481 462 481 405 534.5 c 128,-1,4 + 348 588 348 588 302 679.5 c 128,-1,5 + 256 771 256 771 205 946 c 2,6,-1 + 67 1409 l 1,7,-1 + 258 1409 l 1,8,-1 + 396 942 l 2,9,10 + 444 779 444 779 484 711.5 c 128,-1,11 + 524 644 524 644 578.5 608.5 c 128,-1,12 + 633 573 633 573 713 573 c 1,13,-1 + 713 1409 l 1,14,-1 + 898 1409 l 1,15,-1 + 898 573 l 1,16,-1 + 954 573 l 2,17,18 + 1131 573 1131 573 1228 675 c 128,-1,19 + 1325 777 1325 777 1325 952 c 2,20,-1 + 1325 1409 l 1,21,-1 + 1516 1409 l 1,22,-1 + 1516 956 l 2,23,24 + 1516 712 1516 712 1373.5 569.5 c 128,-1,25 + 1231 427 1231 427 981 427 c 2,26,-1 + 898 427 l 1,27,-1 + 898 0 l 1,28,-1 + 713 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0471 +Encoding: 1137 1137 1058 +Width: 1410 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 18 + 17 + 0 + 10 + 10 + 22 + 11 + 4 + 5 + 5 + 11 + 17 + 3 + 25 + 26 + 23 + 4 + 17 + 15 + 0 + 22 + 12 + 22 + 80 + 89 + 9 + 12 + 22 + 11 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +767 119 m 1,0,1 + 946 121 946 121 1025.5 199.5 c 128,-1,2 + 1105 278 1105 278 1105 456 c 2,3,-1 + 1105 1082 l 1,4,-1 + 1287 1082 l 1,5,-1 + 1287 458 l 2,6,7 + 1287 213 1287 213 1160 97.5 c 128,-1,8 + 1033 -18 1033 -18 767 -20 c 1,9,-1 + 767 -425 l 1,10,-1 + 597 -425 l 1,11,-1 + 597 -20 l 1,12,13 + 478 -18 478 -18 405 22.5 c 128,-1,14 + 332 63 332 63 286 152.5 c 128,-1,15 + 240 242 240 242 200 438 c 2,16,-1 + 68 1082 l 1,17,-1 + 249 1082 l 1,18,-1 + 391 396 l 2,19,20 + 426 226 426 226 468 173.5 c 128,-1,21 + 510 121 510 121 597 119 c 1,22,-1 + 597 1082 l 1,23,-1 + 767 1082 l 1,24,-1 + 767 119 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0472 +Encoding: 1138 1138 1059 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 44 + 18 + 18 + 0 + 33 + 27 + 27 + 8 + 0 + 8 + 48 + 47 + 42 + 20 + 95 + 89 + 36 + 25 + 95 + 89 + 15 + 36 + 1 + 12 + 3 + 42 + 36 + 42 + 36 + 4 + 11 + 11 + 30 + 95 + 89 + 11 + 4 + 4 + 15 + 95 + 89 + 4 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1495 711 m 0,0,1 + 1495 490 1495 490 1410.5 324 c 128,-1,2 + 1326 158 1326 158 1168 69 c 128,-1,3 + 1010 -20 1010 -20 795 -20 c 0,4,5 + 578 -20 578 -20 420.5 68 c 128,-1,6 + 263 156 263 156 180 322.5 c 128,-1,7 + 97 489 97 489 97 711 c 0,8,9 + 97 1049 97 1049 282 1239.5 c 128,-1,10 + 467 1430 467 1430 797 1430 c 0,11,12 + 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 + 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 + 1495 933 1495 933 1495 711 c 0,0,1 +795 135 m 0,15,16 + 1013 135 1013 135 1142 258 c 128,-1,17 + 1271 381 1271 381 1295 612 c 1,18,19 + 1162 560 1162 560 1075 560 c 0,20,21 + 1000 560 1000 560 935.5 581.5 c 128,-1,22 + 871 603 871 603 811 629.5 c 128,-1,23 + 751 656 751 656 692.5 677.5 c 128,-1,24 + 634 699 634 699 572 699 c 0,25,26 + 420 699 420 699 295 626 c 1,27,28 + 316 395 316 395 447.5 265 c 128,-1,29 + 579 135 579 135 795 135 c 0,15,16 +797 1274 m 256,30,31 + 575 1274 575 1274 444.5 1149 c 128,-1,32 + 314 1024 314 1024 294 786 c 1,33,34 + 355 813 355 813 422.5 833 c 128,-1,35 + 490 853 490 853 571 853 c 0,36,37 + 633 853 633 853 695.5 836 c 128,-1,38 + 758 819 758 819 834 783 c 0,39,40 + 913 746 913 746 969.5 729.5 c 128,-1,41 + 1026 713 1026 713 1081 713 c 0,42,43 + 1199 713 1199 713 1298 770 c 1,44,45 + 1281 1011 1281 1011 1150 1142.5 c 128,-1,46 + 1019 1274 1019 1274 797 1274 c 256,30,31 +EndSplineSet +EndChar + +StartChar: uni0473 +Encoding: 1139 1139 1060 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 34 + 13 + 6 + 28 + 19 + 19 + 0 + 6 + 0 + 41 + 42 + 26 + 21 + 80 + 89 + 36 + 11 + 80 + 89 + 15 + 26 + 1 + 11 + 3 + 26 + 36 + 26 + 36 + 3 + 8 + 8 + 31 + 80 + 89 + 8 + 16 + 3 + 16 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1053 542 m 0,0,1 + 1053 258 1053 258 928 119 c 128,-1,2 + 803 -20 803 -20 565 -20 c 0,3,4 + 328 -20 328 -20 207 124.5 c 128,-1,5 + 86 269 86 269 86 542 c 0,6,7 + 86 1102 86 1102 571 1102 c 0,8,9 + 819 1102 819 1102 936 965.5 c 128,-1,10 + 1053 829 1053 829 1053 542 c 0,0,1 +405 549 m 0,11,12 + 336 549 336 549 275 514 c 1,13,14 + 280 308 280 308 350.5 210.5 c 128,-1,15 + 421 113 421 113 563 113 c 0,16,17 + 714 113 714 113 783.5 201 c 128,-1,18 + 853 289 853 289 862 474 c 1,19,20 + 789 442 789 442 735 442 c 0,21,22 + 683 442 683 442 639.5 458.5 c 128,-1,23 + 596 475 596 475 557 495.5 c 128,-1,24 + 518 516 518 516 481 532.5 c 128,-1,25 + 444 549 444 549 405 549 c 0,11,12 +738 580 m 0,26,27 + 801 580 801 580 862 613 c 1,28,29 + 851 795 851 795 784 882 c 128,-1,30 + 717 969 717 969 574 969 c 0,31,32 + 437 969 437 969 367 892.5 c 128,-1,33 + 297 816 297 816 280 656 c 1,34,35 + 342 686 342 686 405 686 c 0,36,37 + 455 686 455 686 494.5 669.5 c 128,-1,38 + 534 653 534 653 571.5 633 c 128,-1,39 + 609 613 609 613 648.5 596.5 c 128,-1,40 + 688 580 688 580 738 580 c 0,26,27 +EndSplineSet +EndChar + +StartChar: uni0474 +Encoding: 1140 1140 1061 +Width: 1645 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 3 + 2 + 2 + 6 + 14 + 3 + 22 + 21 + 11 + 17 + 95 + 89 + 11 + 4 + 6 + 1 + 2 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +782 0 m 1,0,-1 + 584 0 l 1,1,-1 + 9 1409 l 1,2,-1 + 210 1409 l 1,3,-1 + 600 417 l 2,4,5 + 640 312 640 312 684 168 c 1,6,-1 + 709 246 l 1,7,-1 + 768 417 l 1,8,-1 + 1069 1228 l 2,9,10 + 1145 1430 1145 1430 1341 1430 c 0,11,12 + 1416 1430 1416 1430 1495 1402.5 c 128,-1,13 + 1574 1375 1574 1375 1622 1334 c 1,14,-1 + 1538 1198 l 1,15,16 + 1461 1267 1461 1267 1364 1267 c 0,17,18 + 1313 1267 1313 1267 1285.5 1241.5 c 128,-1,19 + 1258 1216 1258 1216 1230 1145 c 2,20,-1 + 782 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0475 +Encoding: 1141 1141 1062 +Width: 1292 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 3 + 2 + 12 + 6 + 2 + 3 + 19 + 20 + 10 + 15 + 83 + 89 + 10 + 16 + 6 + 1 + 2 + 15 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +613 0 m 1,0,-1 + 400 0 l 1,1,-1 + 7 1082 l 1,2,-1 + 199 1082 l 1,3,-1 + 437 378 l 2,4,5 + 450 338 450 338 506 141 c 1,6,-1 + 580 376 l 1,7,-1 + 751 898 l 2,8,9 + 817 1102 817 1102 1009 1102 c 0,10,11 + 1151 1102 1151 1102 1265 1011 c 1,12,-1 + 1184 879 l 1,13,14 + 1119 942 1119 942 1035 942 c 0,15,16 + 989 942 989 942 961 916 c 128,-1,17 + 933 890 933 890 906 814 c 2,18,-1 + 613 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0476 +Encoding: 1142 1142 1063 +Width: 1645 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 32 + 32 + 5 + 38 + 2 + 1 + 29 +PUSHW_1 + -194 +PUSHB_5 + 29 + 26 + 2 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1061 1140 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 621 360 2 +EndChar + +StartChar: uni0477 +Encoding: 1143 1143 1064 +Width: 1292 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 30 + 30 + 17 + 38 + 2 + 1 + 27 +PUSHW_1 + -175 +PUSHB_5 + 27 + 24 + 2 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1062 1141 N 1 0 0 1 0 0 3 +Refer: 721 783 N 1 0 0 1 460 0 2 +EndChar + +StartChar: uni0478 +Encoding: 1144 1144 1065 +Width: 2200 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 18 + 6 + 34 + 33 + 33 + 12 + 0 + 36 + 37 + 37 + 32 + 27 + 0 + 6 + 5 + 41 + 42 + 35 + 32 + 36 + 24 + 36 + 33 + 15 + 24 + 29 + 80 + 89 + 24 + 27 + 9 + 15 + 95 + 89 + 9 + 4 + 3 + 21 + 95 + 89 + 3 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1170 711 m 0,0,1 + 1170 373 1170 373 1026 176.5 c 128,-1,2 + 882 -20 882 -20 633 -20 c 0,3,4 + 381 -20 381 -20 239 174 c 128,-1,5 + 97 368 97 368 97 711 c 0,6,7 + 97 1050 97 1050 238.5 1240 c 128,-1,8 + 380 1430 380 1430 634 1430 c 256,9,10 + 888 1430 888 1430 1029 1238.5 c 128,-1,11 + 1170 1047 1170 1047 1170 711 c 0,0,1 +980 711 m 0,12,13 + 980 973 980 973 889.5 1123.5 c 128,-1,14 + 799 1274 799 1274 634 1274 c 0,15,16 + 467 1274 467 1274 376.5 1126.5 c 128,-1,17 + 286 979 286 979 286 711 c 0,18,19 + 286 447 286 447 378 291 c 128,-1,20 + 470 135 470 135 633 135 c 0,21,22 + 800 135 800 135 890 284.5 c 128,-1,23 + 980 434 980 434 980 711 c 0,12,13 +1379 -425 m 0,24,25 + 1305 -425 1305 -425 1255 -414 c 1,26,-1 + 1255 -279 l 1,27,28 + 1293 -285 1293 -285 1339 -285 c 0,29,30 + 1507 -285 1507 -285 1605 -38 c 2,31,-1 + 1622 5 l 1,32,-1 + 1213 1082 l 1,33,-1 + 1405 1082 l 1,34,-1 + 1711 196 l 1,35,-1 + 1998 1082 l 1,36,-1 + 2188 1082 l 1,37,-1 + 1792 0 l 2,38,39 + 1706 -234 1706 -234 1610 -329.5 c 128,-1,40 + 1514 -425 1514 -425 1379 -425 c 0,24,25 +EndSplineSet +EndChar + +StartChar: uni0479 +Encoding: 1145 1145 1066 +Width: 1836 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 17 + 5 + 33 + 32 + 32 + 0 + 0 + 11 + 36 + 31 + 25 + 11 + 5 + 5 + 40 + 41 + 34 + 30 + 35 + 23 + 35 + 32 + 15 + 23 + 28 + 80 + 89 + 23 + 27 + 8 + 14 + 81 + 89 + 8 + 16 + 3 + 20 + 81 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +868 542 m 0,0,1 + 868 258 868 258 769.5 119 c 128,-1,2 + 671 -20 671 -20 473 -20 c 0,3,4 + 85 -20 85 -20 85 542 c 0,5,6 + 85 821 85 821 180.5 961.5 c 128,-1,7 + 276 1102 276 1102 478 1102 c 0,8,9 + 681 1102 681 1102 774.5 967.5 c 128,-1,10 + 868 833 868 833 868 542 c 0,0,1 +693 542 m 0,11,12 + 693 768 693 768 643.5 870.5 c 128,-1,13 + 594 973 594 973 480 973 c 0,14,15 + 365 973 365 973 312.5 870.5 c 128,-1,16 + 260 768 260 768 260 542 c 0,17,18 + 260 324 260 324 311 216.5 c 128,-1,19 + 362 109 362 109 472 109 c 0,20,21 + 591 109 591 109 642 214.5 c 128,-1,22 + 693 320 693 320 693 542 c 0,11,12 +1019 -425 m 0,23,24 + 945 -425 945 -425 895 -414 c 1,25,-1 + 895 -279 l 1,26,27 + 933 -285 933 -285 979 -285 c 0,28,29 + 1147 -285 1147 -285 1245 -38 c 2,30,-1 + 1262 5 l 1,31,-1 + 863 1082 l 1,32,-1 + 1055 1082 l 1,33,-1 + 1351 196 l 1,34,-1 + 1628 1082 l 1,35,-1 + 1818 1082 l 1,36,-1 + 1432 0 l 2,37,38 + 1352 -226 1352 -226 1254.5 -325.5 c 128,-1,39 + 1157 -425 1157 -425 1019 -425 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni047A +Encoding: 1146 1146 1067 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 37 + 12 + 40 + 34 + 46 + 28 + 25 + 0 + 0 + 28 + 34 + 12 + 4 + 50 + 49 + 28 + 34 + 16 + 34 + 95 + 89 + 43 + 31 + 40 + 22 + 19 + 16 + 19 + 46 + 40 + 9 + 40 + 95 + 89 + 6 + 3 + 9 + 4 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +54 711 m 256,0,1 + 54 1018 54 1018 226 1210.5 c 128,-1,2 + 398 1403 398 1403 693 1427 c 1,3,4 + 716 1470 716 1470 758 1496.5 c 128,-1,5 + 800 1523 800 1523 852 1523 c 0,6,7 + 903 1523 903 1523 945.5 1496.5 c 128,-1,8 + 988 1470 988 1470 1011 1427 c 1,9,10 + 1307 1403 1307 1403 1479.5 1210 c 128,-1,11 + 1652 1017 1652 1017 1652 711 c 0,12,13 + 1652 511 1652 511 1573 350.5 c 128,-1,14 + 1494 190 1494 190 1348.5 95 c 128,-1,15 + 1203 0 1203 0 1013 -16 c 1,16,17 + 991 -61 991 -61 948 -89 c 128,-1,18 + 905 -117 905 -117 852 -117 c 0,19,20 + 798 -117 798 -117 755.5 -89.5 c 128,-1,21 + 713 -62 713 -62 690 -17 c 1,22,23 + 396 8 396 8 225 206 c 128,-1,24 + 54 404 54 404 54 711 c 256,0,1 +248 711 m 0,25,26 + 248 474 248 474 366 319 c 128,-1,27 + 484 164 484 164 687 135 c 1,28,29 + 708 183 708 183 752 213 c 128,-1,30 + 796 243 796 243 852 243 c 0,31,32 + 907 243 907 243 951.5 213 c 128,-1,33 + 996 183 996 183 1017 135 c 1,34,35 + 1226 162 1226 162 1341.5 314.5 c 128,-1,36 + 1457 467 1457 467 1457 711 c 0,37,38 + 1457 943 1457 943 1341.5 1094.5 c 128,-1,39 + 1226 1246 1226 1246 1018 1274 c 1,40,41 + 998 1225 998 1225 953 1194 c 128,-1,42 + 908 1163 908 1163 852 1163 c 0,43,44 + 795 1163 795 1163 750 1194 c 128,-1,45 + 705 1225 705 1225 685 1274 c 1,46,47 + 477 1246 477 1246 362.5 1095.5 c 128,-1,48 + 248 945 248 945 248 711 c 0,25,26 +EndSplineSet +EndChar + +StartChar: uni047B +Encoding: 1147 1147 1068 +Width: 1254 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 35 + 44 + 26 + 38 + 32 + 26 + 32 + 12 + 24 + 0 + 12 + 0 + 47 + 46 + 26 + 32 + 15 + 32 + 80 + 89 + 41 + 29 + 9 + 21 + 15 + 22 + 44 + 38 + 9 + 38 + 80 + 89 + 6 + 3 + 9 + 16 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +43 542 m 0,0,1 + 43 786 43 786 155 929 c 128,-1,2 + 267 1072 267 1072 474 1097 c 1,3,4 + 494 1142 494 1142 535 1169.5 c 128,-1,5 + 576 1197 576 1197 628 1197 c 0,6,7 + 679 1197 679 1197 720 1169.5 c 128,-1,8 + 761 1142 761 1142 781 1098 c 1,9,10 + 994 1075 994 1075 1102.5 934 c 128,-1,11 + 1211 793 1211 793 1211 542 c 0,12,13 + 1211 299 1211 299 1098 154.5 c 128,-1,14 + 985 10 985 10 781 -14 c 1,15,16 + 761 -58 761 -58 720 -85.5 c 128,-1,17 + 679 -113 679 -113 628 -113 c 256,18,19 + 577 -113 577 -113 536.5 -86.5 c 128,-1,20 + 496 -60 496 -60 476 -17 c 1,21,22 + 268 4 268 4 155.5 150 c 128,-1,23 + 43 296 43 296 43 542 c 0,0,1 +232 542 m 0,24,25 + 232 163 232 163 471 115 c 1,26,27 + 489 163 489 163 531.5 193 c 128,-1,28 + 574 223 574 223 628 223 c 0,29,30 + 681 223 681 223 722.5 194 c 128,-1,31 + 764 165 764 165 783 119 c 1,32,33 + 906 147 906 147 964 253.5 c 128,-1,34 + 1022 360 1022 360 1022 542 c 0,35,36 + 1022 728 1022 728 964.5 833.5 c 128,-1,37 + 907 939 907 939 784 965 c 1,38,39 + 765 919 765 919 723 890 c 128,-1,40 + 681 861 681 861 628 861 c 256,41,42 + 575 861 575 861 533.5 889.5 c 128,-1,43 + 492 918 492 918 473 963 c 1,44,45 + 232 908 232 908 232 542 c 0,24,25 +EndSplineSet +EndChar + +StartChar: uni047C +Encoding: 1148 1148 1069 +Width: 2439 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 65 + 50 + 43 + 76 + 70 + 79 + 0 + 79 + 24 + 3 + 6 + 60 + 31 + 18 + 18 + 12 + 6 + 3 + 82 + 81 + 69 + 50 + 50 + 60 + 79 + 79 + 80 + 75 + 60 + 80 + 60 + 80 + 21 + 63 + 63 + 56 + 96 + 89 + 63 + 21 + 28 + 95 + 89 + 21 + 4 + 14 + 34 + 95 + 89 + 14 + 19 + 10 + 40 + 95 + 89 + 10 + 19 + 75 + 75 + 3 + 3 + 46 + 95 + 89 + 3 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1352 1367 m 1,0,1 + 1430 1402 1430 1402 1500 1416 c 128,-1,2 + 1570 1430 1570 1430 1652 1430 c 0,3,4 + 1972 1430 1972 1430 2153 1239.5 c 128,-1,5 + 2334 1049 2334 1049 2334 711 c 0,6,7 + 2334 487 2334 487 2253 321.5 c 128,-1,8 + 2172 156 2172 156 2017.5 68 c 128,-1,9 + 1863 -20 1863 -20 1651 -20 c 0,10,11 + 1379 -20 1379 -20 1221 89 c 1,12,13 + 1061 -20 1061 -20 791 -20 c 0,14,15 + 578 -20 578 -20 423.5 68.5 c 128,-1,16 + 269 157 269 157 188.5 323 c 128,-1,17 + 108 489 108 489 108 711 c 0,18,19 + 108 1049 108 1049 289 1239.5 c 128,-1,20 + 470 1430 470 1430 790 1430 c 0,21,22 + 873 1430 873 1430 943 1416 c 128,-1,23 + 1013 1402 1013 1402 1090 1367 c 1,24,-1 + 1015 1219 l 1,25,26 + 948 1251 948 1251 896.5 1262.5 c 128,-1,27 + 845 1274 845 1274 792 1274 c 0,28,29 + 558 1274 558 1274 430 1123.5 c 128,-1,30 + 302 973 302 973 302 711 c 0,31,32 + 302 450 302 450 437 291 c 128,-1,33 + 572 132 572 132 800 132 c 0,34,35 + 927 132 927 132 1041.5 175 c 128,-1,36 + 1156 218 1156 218 1221 287 c 1,37,38 + 1286 218 1286 218 1400.5 175 c 128,-1,39 + 1515 132 1515 132 1642 132 c 0,40,41 + 1870 132 1870 132 2005 291.5 c 128,-1,42 + 2140 451 2140 451 2140 711 c 0,43,44 + 2140 974 2140 974 2012.5 1124 c 128,-1,45 + 1885 1274 1885 1274 1650 1274 c 0,46,47 + 1598 1274 1598 1274 1546 1262.5 c 128,-1,48 + 1494 1251 1494 1251 1427 1219 c 1,49,-1 + 1352 1367 l 1,0,1 +1929 1662 m 1,50,51 + 1827 1662 1827 1662 1734.5 1688.5 c 128,-1,52 + 1642 1715 1642 1715 1541 1771 c 0,53,54 + 1427 1834 1427 1834 1358.5 1857 c 128,-1,55 + 1290 1880 1290 1880 1220 1880 c 0,56,57 + 1102 1880 1102 1880 1034.5 1825.5 c 128,-1,58 + 967 1771 967 1771 943 1659 c 1,59,-1 + 814 1659 l 1,60,61 + 846 1823 846 1823 957.5 1913.5 c 128,-1,62 + 1069 2004 1069 2004 1233 2004 c 0,63,64 + 1298 2004 1298 2004 1363.5 1983 c 128,-1,65 + 1429 1962 1429 1962 1556 1898 c 0,66,67 + 1667 1841 1667 1841 1752 1816.5 c 128,-1,68 + 1837 1792 1837 1792 1929 1792 c 1,69,-1 + 1929 1662 l 1,50,51 +1311 1795 m 1,70,-1 + 1311 1697 l 2,71,72 + 1311 1655 1311 1655 1305.5 1625 c 128,-1,73 + 1300 1595 1300 1595 1289 1569 c 128,-1,74 + 1278 1543 1278 1543 1241 1485 c 1,75,-1 + 1135 1485 l 1,76,77 + 1218 1583 1218 1583 1218 1654 c 1,78,-1 + 1140 1654 l 1,79,-1 + 1140 1795 l 1,80,-1 + 1311 1795 l 1,70,-1 +EndSplineSet +EndChar + +StartChar: uni047D +Encoding: 1149 1149 1070 +Width: 1744 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 70 + 49 + 0 + 44 + 47 + 39 + 46 + 3 + 46 + 47 + 23 + 4 + 8 + 59 + 26 + 18 + 8 + 18 + 70 + 69 + 49 + 59 + 47 + 47 + 43 + 0 + 48 + 16 + 48 + 2 + 15 + 3 + 48 + 59 + 43 + 43 + 59 + 48 + 3 + 62 + 4 + 62 + 55 + 81 + 89 + 15 + 62 + 239 + 62 + 2 + 9 + 3 + 62 + 23 + 22 + 16 + 15 + 29 + 80 + 89 + 15 + 22 + 11 + 35 + 80 + 89 + 11 + 22 + 3 + 4 + 16 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP2 +IP +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1467 546 m 0,0,1 + 1467 756 1467 756 1398.5 854 c 128,-1,2 + 1330 952 1330 952 1177 952 c 1,3,-1 + 1177 1102 l 1,4,5 + 1325 1102 1325 1102 1434 1037.5 c 128,-1,6 + 1543 973 1543 973 1599 848.5 c 128,-1,7 + 1655 724 1655 724 1655 542 c 0,8,9 + 1655 267 1655 267 1535.5 123.5 c 128,-1,10 + 1416 -20 1416 -20 1189 -20 c 0,11,12 + 1002 -20 1002 -20 871 63 c 1,13,14 + 738 -20 738 -20 553 -20 c 0,15,16 + 326 -20 326 -20 206.5 123.5 c 128,-1,17 + 87 267 87 267 87 542 c 0,18,19 + 87 722 87 722 143 847.5 c 128,-1,20 + 199 973 199 973 307.5 1037.5 c 128,-1,21 + 416 1102 416 1102 565 1102 c 1,22,-1 + 565 952 l 1,23,24 + 412 952 412 952 343.5 854 c 128,-1,25 + 275 756 275 756 275 546 c 0,26,27 + 275 331 275 331 347 226.5 c 128,-1,28 + 419 122 419 122 565 122 c 0,29,30 + 653 122 653 122 737.5 151 c 128,-1,31 + 822 180 822 180 871 225 c 1,32,33 + 916 182 916 182 1001.5 152 c 128,-1,34 + 1087 122 1087 122 1177 122 c 0,35,36 + 1323 122 1323 122 1395 227 c 128,-1,37 + 1467 332 1467 332 1467 546 c 0,0,1 +953 1470 m 1,38,-1 + 953 1372 l 2,39,40 + 953 1330 953 1330 947.5 1300 c 128,-1,41 + 942 1270 942 1270 931 1244 c 128,-1,42 + 920 1218 920 1218 883 1160 c 1,43,-1 + 777 1160 l 1,44,45 + 860 1258 860 1258 860 1329 c 1,46,-1 + 782 1329 l 1,47,-1 + 782 1470 l 1,48,-1 + 953 1470 l 1,38,-1 +1571 1342 m 1,49,50 + 1469 1342 1469 1342 1376.5 1368.5 c 128,-1,51 + 1284 1395 1284 1395 1183 1451 c 0,52,53 + 1069 1514 1069 1514 1000.5 1537 c 128,-1,54 + 932 1560 932 1560 862 1560 c 0,55,56 + 744 1560 744 1560 676.5 1505.5 c 128,-1,57 + 609 1451 609 1451 585 1339 c 1,58,-1 + 456 1339 l 1,59,60 + 488 1503 488 1503 599.5 1593.5 c 128,-1,61 + 711 1684 711 1684 875 1684 c 0,62,63 + 940 1684 940 1684 1005.5 1663 c 128,-1,64 + 1071 1642 1071 1642 1198 1578 c 0,65,66 + 1309 1521 1309 1521 1394 1496.5 c 128,-1,67 + 1479 1472 1479 1472 1571 1472 c 1,68,-1 + 1571 1342 l 1,49,50 +EndSplineSet +EndChar + +StartChar: uni047E +Encoding: 1150 1150 1071 +Width: 2740 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 63 + 63 + 5 + 38 + 1 + 64 +PUSHW_1 + -12 +PUSHB_5 + 64 + 53 + 33 + 21 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1041 1120 N 1 0 0 1 0 0 3 +Refer: 2502 -1 N 1 0 0 1 1360 360 2 +EndChar + +StartChar: uni047F +Encoding: 1151 1151 1072 +Width: 1278 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 32 + 32 + 17 + 38 + 1 + 33 + 0 + 33 + 22 + 10 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1042 1121 N 1 0 0 1 0 0 3 +Refer: 2502 -1 N 1 0 0 1 620 0 2 +EndChar + +StartChar: uni0480 +Encoding: 1152 1152 1073 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 11 + 10 + 23 + 0 + 17 + 4 + 4 + 0 + 10 + 3 + 25 + 24 + 7 + 14 + 95 + 89 + 11 + 11 + 7 + 4 + 1 + 20 + 95 + 89 + 0 + 1 + 19 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +700 -427 m 1,0,-1 + 700 -15 l 1,1,2 + 414 14 414 14 259 202.5 c 128,-1,3 + 104 391 104 391 104 702 c 0,4,5 + 104 1042 104 1042 287 1236 c 128,-1,6 + 470 1430 470 1430 790 1430 c 0,7,8 + 1015 1430 1015 1430 1166 1342 c 128,-1,9 + 1317 1254 1317 1254 1388 1081 c 1,10,-1 + 1207 1021 l 1,11,12 + 1158 1144 1158 1144 1049.5 1209 c 128,-1,13 + 941 1274 941 1274 792 1274 c 0,14,15 + 560 1274 560 1274 429 1121.5 c 128,-1,16 + 298 969 298 969 298 702 c 0,17,18 + 298 444 298 444 433.5 290.5 c 128,-1,19 + 569 137 569 137 807 137 c 0,20,21 + 847 137 847 137 891 150 c 1,22,-1 + 891 -427 l 1,23,-1 + 700 -427 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0481 +Encoding: 1153 1153 1074 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 23 + 0 + 17 + 4 + 4 + 0 + 10 + 3 + 25 + 24 + 7 + 14 + 80 + 89 + 11 + 11 + 7 + 16 + 1 + 20 + 80 + 89 + 1 + 21 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +496 -425 m 1,0,-1 + 496 -10 l 1,1,2 + 290 8 290 8 185 153 c 128,-1,3 + 80 298 80 298 80 550 c 0,4,5 + 80 819 80 819 208 959.5 c 128,-1,6 + 336 1100 336 1100 568 1100 c 0,7,8 + 734 1100 734 1100 843.5 1014 c 128,-1,9 + 953 928 953 928 981 777 c 1,10,-1 + 796 763 l 1,11,12 + 782 853 782 853 725 906 c 128,-1,13 + 668 959 668 959 563 959 c 0,14,15 + 410 959 410 959 339 861.5 c 128,-1,16 + 268 764 268 764 268 554 c 0,17,18 + 268 345 268 345 344.5 236.5 c 128,-1,19 + 421 128 421 128 569 128 c 0,20,21 + 630 128 630 128 676 146 c 1,22,-1 + 676 -425 l 1,23,-1 + 496 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0482 +Encoding: 1154 1154 1075 +Width: 1031 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 14 + 10 + 7 + 8 + 18 + 17 + 4 + 0 + 0 + 17 + 8 + 10 + 4 + 20 + 21 + 16 + 2 + 1 + 1 + 15 + 12 + 6 + 5 + 5 + 11 + 15 + 11 + 7 + 17 + 7 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1020 913 m 1,0,-1 + 979 761 l 1,1,-1 + 626 855 l 1,2,-1 + 548 578 l 1,3,-1 + 904 483 l 1,4,-1 + 863 331 l 1,5,-1 + 506 427 l 1,6,-1 + 378 -32 l 1,7,-1 + 217 -32 l 1,8,-1 + 357 467 l 1,9,-1 + 11 560 l 1,10,-1 + 52 712 l 1,11,-1 + 400 618 l 1,12,-1 + 477 895 l 1,13,-1 + 126 989 l 1,14,-1 + 167 1142 l 1,15,-1 + 520 1047 l 1,16,-1 + 646 1498 l 1,17,-1 + 805 1498 l 1,18,-1 + 668 1007 l 1,19,-1 + 1020 913 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0483 +Encoding: 1155 1155 1076 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 8 + 3 + 19 + 14 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1130 mark 0 +AnchorPoint: "Anchor-16" 0 1150 mark 0 +LayerCount: 2 +Fore +SplineSet +352 1393 m 0,0,1 + 352 1343 352 1343 315.5 1313 c 128,-1,2 + 279 1283 279 1283 226 1283 c 2,3,-1 + -121 1283 l 1,4,-1 + -121 1263 l 2,5,6 + -121 1207 -121 1207 -154.5 1177 c 128,-1,7 + -188 1147 -188 1147 -234 1147 c 0,8,9 + -284 1147 -284 1147 -317 1179 c 128,-1,10 + -350 1211 -350 1211 -350 1263 c 0,11,12 + -350 1313 -350 1313 -313.5 1343 c 128,-1,13 + -277 1373 -277 1373 -224 1373 c 2,14,-1 + 123 1373 l 1,15,-1 + 123 1393 l 2,16,17 + 123 1449 123 1449 156.5 1479 c 128,-1,18 + 190 1509 190 1509 236 1509 c 0,19,20 + 286 1509 286 1509 319 1477 c 128,-1,21 + 352 1445 352 1445 352 1393 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0484 +Encoding: 1156 1156 1077 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 4 + 17 + 17 + 11 + 1 + 9 + 9 + 11 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +332 1227 m 1,0,-1 + 243 1227 l 1,1,2 + 241 1301 241 1301 214.5 1333 c 128,-1,3 + 188 1365 188 1365 135 1365 c 0,4,5 + 102 1365 102 1365 69 1346 c 128,-1,6 + 36 1327 36 1327 -2 1304 c 0,7,8 + -118 1232 -118 1232 -222 1232 c 2,9,-1 + -324 1232 l 1,10,-1 + -324 1375 l 1,11,-1 + -219 1375 l 2,12,13 + -167 1375 -167 1375 -123 1391 c 128,-1,14 + -79 1407 -79 1407 -37 1427 c 0,15,16 + 60 1473 60 1473 130 1473 c 0,17,18 + 229 1473 229 1473 280.5 1410.5 c 128,-1,19 + 332 1348 332 1348 332 1227 c 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0485 +Encoding: 1157 1157 1078 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 2 + 2 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1080 mark 0 +AnchorPoint: "Anchor-16" 0 1080 mark 0 +LayerCount: 2 +Fore +SplineSet +98 1484 m 1,0,-1 + 98 1298 l 1,1,-1 + 9 1298 l 1,2,3 + 9 1204 9 1204 87 1097 c 1,4,-1 + -32 1097 l 1,5,6 + -67 1148 -67 1148 -82 1205 c 128,-1,7 + -97 1262 -97 1262 -97 1338 c 2,8,-1 + -97 1484 l 1,9,-1 + 98 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0486 +Encoding: 1158 1158 1079 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 8 + 8 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1080 mark 0 +AnchorPoint: "Anchor-16" 0 1080 mark 0 +LayerCount: 2 +Fore +SplineSet +98 1484 m 1,0,-1 + 98 1338 l 2,1,2 + 98 1264 98 1264 84 1209.5 c 128,-1,3 + 70 1155 70 1155 33 1097 c 1,4,-1 + -86 1097 l 1,5,6 + -8 1204 -8 1204 -8 1298 c 1,7,-1 + -97 1298 l 1,8,-1 + -97 1484 l 1,9,-1 + 98 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0487 +Encoding: 1159 1159 1080 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 6 + 13 + 128 + 19 + 0 + 10 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp2] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +558 1342 m 1,0,1 + 456 1342 456 1342 363.5 1368.5 c 128,-1,2 + 271 1395 271 1395 170 1451 c 0,3,4 + 56 1514 56 1514 -12.5 1537 c 128,-1,5 + -81 1560 -81 1560 -151 1560 c 0,6,7 + -269 1560 -269 1560 -336.5 1505.5 c 128,-1,8 + -404 1451 -404 1451 -428 1339 c 1,9,-1 + -557 1339 l 1,10,11 + -525 1503 -525 1503 -413.5 1593.5 c 128,-1,12 + -302 1684 -302 1684 -138 1684 c 0,13,14 + -73 1684 -73 1684 -7.5 1663 c 128,-1,15 + 58 1642 58 1642 185 1578 c 0,16,17 + 296 1521 296 1521 381 1496.5 c 128,-1,18 + 466 1472 466 1472 558 1472 c 1,19,-1 + 558 1342 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0488 +Encoding: 1160 1160 1081 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 53 + 70 + 35 + 30 + 75 + 62 + 67 + 32 + 72 + 72 + 37 + 77 + 50 + 15 + 10 + 55 + 12 + 52 + 52 + 17 + 57 + 40 + 5 + 0 + 45 + 20 + 25 + 2 + 42 + 42 + 7 + 47 + 75 + 67 + 77 + 55 + 57 + 45 + 25 + 47 + 47 + 25 + 45 + 57 + 55 + 77 + 67 + 75 + 8 + 27 + 65 + 60 + 22 + 27 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +764 964 m 1,0,1 + 764 1113 764 1113 650 1113 c 256,2,3 + 536 1113 536 1113 536 964 c 1,4,-1 + 433 964 l 1,5,6 + 433 1219 433 1219 650 1219 c 256,7,8 + 867 1219 867 1219 867 964 c 1,9,-1 + 764 964 l 1,0,1 +884 458 m 1,10,11 + 884 607 884 607 770 607 c 256,12,13 + 656 607 656 607 656 458 c 1,14,-1 + 553 458 l 1,15,16 + 553 713 553 713 770 713 c 256,17,18 + 987 713 987 713 987 458 c 1,19,-1 + 884 458 l 1,10,11 +104 1208 m 1,20,21 + 104 1357 104 1357 -10 1357 c 256,22,23 + -124 1357 -124 1357 -124 1208 c 1,24,-1 + -227 1208 l 1,25,26 + -227 1463 -227 1463 -10 1463 c 256,27,28 + 207 1463 207 1463 207 1208 c 1,29,-1 + 104 1208 l 1,20,21 +764 -98 m 1,30,31 + 764 51 764 51 650 51 c 256,32,33 + 536 51 536 51 536 -98 c 1,34,-1 + 433 -98 l 1,35,36 + 433 157 433 157 650 157 c 256,37,38 + 867 157 867 157 867 -98 c 1,39,-1 + 764 -98 l 1,30,31 +-536 964 m 1,40,41 + -536 1113 -536 1113 -650 1113 c 256,42,43 + -764 1113 -764 1113 -764 964 c 1,44,-1 + -867 964 l 1,45,46 + -867 1219 -867 1219 -650 1219 c 256,47,48 + -433 1219 -433 1219 -433 964 c 1,49,-1 + -536 964 l 1,40,41 +-656 458 m 1,50,51 + -656 607 -656 607 -770 607 c 256,52,53 + -884 607 -884 607 -884 458 c 1,54,-1 + -987 458 l 1,55,56 + -987 713 -987 713 -770 713 c 256,57,58 + -553 713 -553 713 -553 458 c 1,59,-1 + -656 458 l 1,50,51 +104 -342 m 1,60,61 + 104 -193 104 -193 -10 -193 c 256,62,63 + -124 -193 -124 -193 -124 -342 c 1,64,-1 + -227 -342 l 1,65,66 + -227 -87 -227 -87 -10 -87 c 256,67,68 + 207 -87 207 -87 207 -342 c 1,69,-1 + 104 -342 l 1,60,61 +-536 -98 m 1,70,71 + -536 51 -536 51 -650 51 c 256,72,73 + -764 51 -764 51 -764 -98 c 1,74,-1 + -867 -98 l 1,75,76 + -867 157 -867 157 -650 157 c 256,77,78 + -433 157 -433 157 -433 -98 c 1,79,-1 + -536 -98 l 1,70,71 +EndSplineSet +EndChar + +StartChar: uni0489 +Encoding: 1161 1161 1082 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 79 + 77 + 69 + 64 + 67 + 18 + 48 + 18 + 39 + 37 + 30 + 21 + 27 + 10 + 17 + 9 + 8 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +69 -59 m 1,0,-1 + 69 -181 l 2,1,2 + 69 -249 69 -249 56 -295.5 c 128,-1,3 + 43 -342 43 -342 15 -383 c 1,4,-1 + -85 -383 l 1,5,6 + -19 -295 -19 -295 -19 -215 c 1,7,-1 + -94 -215 l 1,8,-1 + -94 -59 l 1,9,-1 + 69 -59 l 1,0,-1 +-94 1187 m 1,10,-1 + -94 1309 l 2,11,12 + -94 1377 -94 1377 -81 1423.5 c 128,-1,13 + -68 1470 -68 1470 -40 1511 c 1,14,-1 + 60 1511 l 1,15,16 + -6 1423 -6 1423 -6 1343 c 1,17,-1 + 69 1343 l 1,18,-1 + 69 1187 l 1,19,-1 + -94 1187 l 1,10,-1 +-593 447 m 1,20,-1 + -715 447 l 2,21,22 + -783 447 -783 447 -829.5 460 c 128,-1,23 + -876 473 -876 473 -917 501 c 1,24,-1 + -917 601 l 1,25,26 + -829 535 -829 535 -748 535 c 1,27,-1 + -748 610 l 1,28,-1 + -593 610 l 1,29,-1 + -593 447 l 1,20,-1 +603 662 m 1,30,-1 + 725 662 l 2,31,32 + 793 662 793 662 839.5 649 c 128,-1,33 + 886 636 886 636 927 608 c 1,34,-1 + 927 508 l 1,35,36 + 839 574 839 574 758 574 c 1,37,-1 + 758 499 l 1,38,-1 + 603 499 l 1,39,-1 + 603 662 l 1,30,-1 +542 234 m 1,40,-1 + 628 147 l 2,41,42 + 676 99 676 99 699.5 57 c 128,-1,43 + 723 15 723 15 733 -34 c 1,44,-1 + 662 -104 l 1,45,46 + 647 5 647 5 590 61 c 1,47,-1 + 537 8 l 1,48,-1 + 427 118 l 1,49,-1 + 542 234 l 1,40,-1 +-528 893 m 1,50,-1 + -614 979 l 2,51,52 + -662 1027 -662 1027 -685.5 1069 c 128,-1,53 + -709 1111 -709 1111 -718 1160 c 1,54,-1 + -648 1231 l 1,55,56 + -633 1122 -633 1122 -576 1065 c 1,57,-1 + -523 1118 l 1,58,-1 + -412 1008 l 1,59,-1 + -528 893 l 1,50,-1 +-424 46 m 1,60,-1 + -510 -40 l 2,61,62 + -559 -88 -559 -88 -600.5 -111.5 c 128,-1,63 + -642 -135 -642 -135 -691 -145 c 1,64,-1 + -762 -74 l 1,65,66 + -654 -59 -654 -59 -596 -1 c 1,67,-1 + -649 52 l 1,68,-1 + -539 162 l 1,69,-1 + -424 46 l 1,60,-1 +440 1066 m 1,70,-1 + 526 1152 l 2,71,72 + 574 1201 574 1201 616 1224 c 128,-1,73 + 658 1247 658 1247 707 1257 c 1,74,-1 + 778 1186 l 1,75,76 + 668 1171 668 1171 611 1114 c 1,77,-1 + 664 1060 l 1,78,-1 + 555 951 l 1,79,-1 + 440 1066 l 1,70,-1 +EndSplineSet +EndChar + +StartChar: uni048A +Encoding: 1162 1162 1083 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 49 + 21 + 20 + 20 + 1 + 17 + 2 + 2 + 1 + 25 + 26 + 26 + 8 + 6 + 13 + 13 + 10 + 9 + 8 + 1 + 8 + 28 + 29 + 13 + 8 + 95 + 89 + 13 + 18 + 23 + 25 + 112 + 20 + 128 + 20 + 240 + 20 + 3 + 20 + 128 + 18 + 5 + 16 + 0 + 6 + 1 + 3 + 11 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,white] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDRP[rp0,min,rnd,white] +SMD +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +168 0 m 1,0,-1 + 168 1409 l 1,1,-1 + 340 1409 l 1,2,-1 + 340 485 l 2,3,4 + 340 371 340 371 332 211 c 1,5,-1 + 1082 1409 l 1,6,-1 + 1304 1409 l 1,7,-1 + 1304 173 l 1,8,-1 + 1496 173 l 1,9,-1 + 1308 -410 l 1,10,-1 + 1136 -410 l 1,11,-1 + 1274 0 l 1,12,-1 + 1134 0 l 1,13,-1 + 1134 936 l 2,14,15 + 1134 1058 1134 1058 1140 1190 c 1,16,-1 + 398 0 l 1,17,-1 + 168 0 l 1,0,-1 +742 1530 m 256,18,19 + 386 1530 386 1530 375 1850 c 1,20,-1 + 539 1850 l 1,21,22 + 551 1651 551 1651 742 1651 c 256,23,24 + 933 1651 933 1651 945 1850 c 1,25,-1 + 1109 1850 l 1,26,27 + 1098 1530 1098 1530 742 1530 c 256,18,19 +EndSplineSet +EndChar + +StartChar: uni048B +Encoding: 1163 1163 1084 +Width: 1144 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 26 + 27 + 27 + 6 + 4 + 11 + 11 + 8 + 7 + 6 + 22 + 21 + 21 + 18 + 16 + 0 + 0 + 18 + 6 + 18 + 30 + 29 + 24 + 26 + 21 + 128 + 19 + 18 + 15 + 3 + 15 + 4 + 16 + 21 + 8 + 11 + 64 + 11 + 7 + 83 + 89 + 11 + 21 + 4 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +MIAP[rnd] +SRP2 +IP +IP +MIAP[rnd] +MDRP[rp0,min,rnd,white] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +316 1082 m 1,0,-1 + 316 490 l 2,1,2 + 316 423 316 423 306 213 c 1,3,-1 + 805 1082 l 1,4,-1 + 1002 1082 l 1,5,-1 + 1002 161 l 1,6,-1 + 1176 161 l 1,7,-1 + 982 -311 l 1,8,-1 + 810 -311 l 1,9,-1 + 951 0 l 1,10,-1 + 830 0 l 1,11,-1 + 830 660 l 2,12,13 + 830 715 830 715 833.5 786 c 128,-1,14 + 837 857 837 857 840 873 c 1,15,-1 + 334 0 l 1,16,-1 + 142 0 l 1,17,-1 + 142 1082 l 1,18,-1 + 316 1082 l 1,0,-1 +574 1200 m 256,19,20 + 218 1200 218 1200 207 1520 c 1,21,-1 + 371 1520 l 1,22,23 + 383 1321 383 1321 574 1321 c 256,24,25 + 765 1321 765 1321 777 1520 c 1,26,-1 + 941 1520 l 1,27,28 + 930 1200 930 1200 574 1200 c 256,19,20 +EndSplineSet +EndChar + +StartChar: uni048C +Encoding: 1164 1164 1085 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 19 + 12 + 8 + 6 + 4 + 24 + 24 + 18 + 1 + 16 + 12 + 16 + 28 + 27 + 8 + 23 + 95 + 89 + 7 + 18 + 0 + 18 + 96 + 89 + 4 + 0 + 8 + 0 + 8 + 0 + 16 + 2 + 16 + 24 + 95 + 89 + 16 + 18 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +4 1194 m 1,0,-1 + 168 1194 l 1,1,-1 + 168 1409 l 1,2,-1 + 359 1409 l 1,3,-1 + 359 1194 l 1,4,-1 + 542 1194 l 1,5,-1 + 542 1047 l 1,6,-1 + 359 1047 l 1,7,-1 + 359 813 l 1,8,-1 + 766 813 l 2,9,10 + 1002 813 1002 813 1132.5 708 c 128,-1,11 + 1263 603 1263 603 1263 413 c 0,12,13 + 1263 226 1263 226 1134 113 c 128,-1,14 + 1005 0 1005 0 778 0 c 2,15,-1 + 168 0 l 1,16,-1 + 168 1047 l 1,17,-1 + 4 1047 l 1,18,-1 + 4 1194 l 1,0,-1 +1071 407 m 0,19,20 + 1071 528 1071 528 989 593.5 c 128,-1,21 + 907 659 907 659 743 659 c 2,22,-1 + 359 659 l 1,23,-1 + 359 151 l 1,24,-1 + 751 151 l 2,25,26 + 1071 151 1071 151 1071 407 c 0,19,20 +EndSplineSet +EndChar + +StartChar: uni048D +Encoding: 1165 1165 1086 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 23 + 11 + 7 + 5 + 3 + 19 + 19 + 17 + 0 + 15 + 11 + 15 + 29 + 28 + 7 + 27 + 81 + 89 + 6 + 17 + 18 + 17 + 81 + 89 + 3 + 18 + 7 + 18 + 7 + 18 + 15 + 1 + 15 + 19 + 81 + 89 + 15 + 21 + 1 + 0 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +142 1299 m 1,0,-1 + 142 1484 l 1,1,-1 + 322 1484 l 1,2,-1 + 322 1299 l 1,3,-1 + 441 1299 l 1,4,-1 + 441 1168 l 1,5,-1 + 322 1168 l 1,6,-1 + 322 624 l 1,7,-1 + 590 624 l 2,8,9 + 795 624 795 624 900 550.5 c 128,-1,10 + 1005 477 1005 477 1005 318 c 0,11,12 + 1005 164 1005 164 897 82 c 128,-1,13 + 789 0 789 0 591 0 c 2,14,-1 + 142 0 l 1,15,-1 + 142 1168 l 1,16,-1 + 20 1168 l 1,17,-1 + 20 1299 l 1,18,-1 + 142 1299 l 1,0,-1 +322 127 m 1,19,-1 + 564 127 l 2,20,21 + 694 127 694 127 754 173 c 128,-1,22 + 814 219 814 219 814 318 c 0,23,24 + 814 412 814 412 756 455.5 c 128,-1,25 + 698 499 698 499 565 499 c 2,26,-1 + 322 499 l 1,27,-1 + 322 127 l 1,19,-1 +EndSplineSet +EndChar + +StartChar: uni048E +Encoding: 1166 1166 1087 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 22 + 25 + 0 + 12 + 4 + 13 + 23 + 13 + 15 + 23 + 10 + 19 + 19 + 4 + 4 + 5 + 10 + 5 + 28 + 27 + 0 + 12 + 22 + 3 + 25 + 14 + 14 + 3 + 19 + 3 + 95 + 89 + 24 + 25 + 19 + 25 + 19 + 25 + 5 + 6 + 6 + 18 + 95 + 89 + 6 + 3 + 5 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SHP[rp2] +SHP[rp2] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1064 620 m 1,0,1 + 945 549 945 549 773 549 c 2,2,-1 + 359 549 l 1,3,-1 + 359 0 l 1,4,-1 + 168 0 l 1,5,-1 + 168 1409 l 1,6,-1 + 761 1409 l 2,7,8 + 998 1409 998 1409 1128 1298 c 128,-1,9 + 1258 1187 1258 1187 1258 985 c 0,10,11 + 1258 826 1258 826 1172 716 c 1,12,-1 + 1288 591 l 1,13,-1 + 1181 495 l 1,14,-1 + 1064 620 l 1,0,1 +1066 983 m 0,15,16 + 1066 1256 1066 1256 738 1256 c 2,17,-1 + 359 1256 l 1,18,-1 + 359 700 l 1,19,-1 + 746 700 l 2,20,21 + 872 700 872 700 949 745 c 1,22,-1 + 834 869 l 1,23,-1 + 942 966 l 1,24,-1 + 1044 855 l 1,25,26 + 1066 909 1066 909 1066 983 c 0,15,16 +EndSplineSet +EndChar + +StartChar: uni048F +Encoding: 1167 1167 1088 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 49 + 42 + 44 + 5 + 2 + 4 + 3 + 36 + 3 + 29 + 0 + 36 + 18 + 13 + 13 + 14 + 0 + 14 + 47 + 46 + 9 + 22 + 7 + 26 + 26 + 32 + 80 + 89 + 26 + 16 + 17 + 15 + 14 + 27 + 5 + 2 + 41 + 44 + 4 + 43 + 4 + 43 + 39 + 7 + 39 + 80 + 89 + 4 + 7 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 269 1053 269 959 129 c 1,2,-1 + 1057 23 l 1,3,-1 + 957 -67 l 1,4,-1 + 863 34 l 1,5,6 + 776 -20 776 -20 655 -20 c 0,7,8 + 405 -20 405 -20 319 168 c 1,9,-1 + 314 168 l 1,10,11 + 318 160 318 160 318 -2 c 2,12,-1 + 318 -425 l 1,13,-1 + 138 -425 l 1,14,-1 + 138 861 l 2,15,16 + 138 1028 138 1028 132 1082 c 1,17,-1 + 306 1082 l 1,18,19 + 307 1078 307 1078 309 1053.5 c 128,-1,20 + 311 1029 311 1029 313.5 978 c 128,-1,21 + 316 927 316 927 316 908 c 1,22,-1 + 320 908 l 1,23,24 + 368 1008 368 1008 447 1054.5 c 128,-1,25 + 526 1101 526 1101 655 1101 c 0,26,27 + 855 1101 855 1101 954 967 c 128,-1,28 + 1053 833 1053 833 1053 546 c 0,0,1 +864 542 m 0,29,30 + 864 768 864 768 803 865 c 128,-1,31 + 742 962 742 962 609 962 c 0,32,33 + 502 962 502 962 441.5 917 c 128,-1,34 + 381 872 381 872 349.5 776.5 c 128,-1,35 + 318 681 318 681 318 528 c 0,36,37 + 318 315 318 315 386 214 c 128,-1,38 + 454 113 454 113 607 113 c 0,39,40 + 695 113 695 113 751 155 c 1,41,-1 + 633 282 l 1,42,-1 + 734 373 l 1,43,-1 + 829 269 l 1,44,45 + 864 367 864 367 864 542 c 0,29,30 +EndSplineSet +EndChar + +StartChar: uni0490 +Encoding: 1168 1168 1089 +Width: 1001 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 5 + 6 + 0 + 3 + 6 + 3 + 8 + 9 + 7 + 4 + 95 + 89 + 7 + 3 + 5 + 18 + 1 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +774 1409 m 1,0,-1 + 774 1820 l 1,1,-1 + 954 1820 l 1,2,-1 + 954 1253 l 1,3,-1 + 359 1253 l 1,4,-1 + 359 1 l 1,5,-1 + 168 1 l 1,6,-1 + 168 1409 l 1,7,-1 + 774 1409 l 1,0,-1 +EndSplineSet +Kerns2: 2016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 125 -160 "'kern' Horizontal Kerning lookup 17 subtable" 109 -160 "'kern' Horizontal Kerning lookup 17 subtable" 30 -45 "'kern' Horizontal Kerning lookup 17 subtable" 29 -45 "'kern' Horizontal Kerning lookup 17 subtable" 17 -250 "'kern' Horizontal Kerning lookup 17 subtable" 15 -250 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni0491 +Encoding: 1169 1169 1090 +Width: 842 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 0 + 1 + 3 + 6 + 1 + 6 + 8 + 9 + 4 + 2 + 7 + 80 + 89 + 2 + 15 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +322 0 m 1,0,-1 + 142 0 l 1,1,-1 + 142 1082 l 1,2,-1 + 615 1082 l 1,3,-1 + 615 1484 l 1,4,-1 + 778 1484 l 1,5,-1 + 778 951 l 1,6,-1 + 322 951 l 1,7,-1 + 322 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0492 +Encoding: 1170 1170 1091 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 6 + 10 + 10 + 8 + 3 + 13 + 1 + 11 + 3 + 11 + 15 + 14 + 9 + 13 + 0 + 13 + 96 + 89 + 6 + 0 + 0 + 2 + 11 + 18 + 2 + 5 + 95 + 89 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-1 806 m 1,0,-1 + 168 806 l 1,1,-1 + 168 1410 l 1,2,-1 + 1071 1410 l 1,3,-1 + 1071 1254 l 1,4,-1 + 359 1254 l 1,5,-1 + 359 806 l 1,6,-1 + 779 806 l 1,7,-1 + 779 659 l 1,8,-1 + 359 659 l 1,9,-1 + 359 0 l 1,10,-1 + 168 0 l 1,11,-1 + 168 659 l 1,12,-1 + -1 659 l 1,13,-1 + -1 806 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0493 +Encoding: 1171 1171 1092 +Width: 747 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 3 + 7 + 7 + 12 + 10 + 5 + 8 + 0 + 8 + 0 + 14 + 15 + 6 + 10 + 11 + 10 + 80 + 89 + 3 + 11 + 11 + 8 + 13 + 13 + 2 + 81 + 89 + 13 + 15 + 8 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +687 1082 m 1,0,-1 + 687 951 l 1,1,-1 + 322 951 l 1,2,-1 + 322 646 l 1,3,-1 + 525 646 l 1,4,-1 + 525 514 l 1,5,-1 + 322 514 l 1,6,-1 + 322 0 l 1,7,-1 + 142 0 l 1,8,-1 + 142 514 l 1,9,-1 + 20 514 l 1,10,-1 + 20 646 l 1,11,-1 + 142 646 l 1,12,-1 + 142 1082 l 1,13,-1 + 687 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0494 +Encoding: 1172 1172 1093 +Width: 1373 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 14 + 0 + 28 + 22 + 22 + 23 + 8 + 7 + 7 + 23 + 23 + 26 + 0 + 3 + 34 + 33 + 30 + 17 + 95 + 89 + 28 + 30 + 30 + 23 + 24 + 24 + 27 + 95 + 89 + 24 + 3 + 8 + 23 + 4 + 4 + 11 + 95 + 89 + 4 + 23 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1276 289 m 0,0,1 + 1276 69 1276 69 1202.5 -93.5 c 128,-1,2 + 1129 -256 1129 -256 996 -340.5 c 128,-1,3 + 863 -425 863 -425 689 -425 c 0,4,5 + 501 -425 501 -425 372 -353.5 c 128,-1,6 + 243 -282 243 -282 183 -139 c 1,7,-1 + 361 -109 l 1,8,9 + 406 -199 406 -199 481 -237.5 c 128,-1,10 + 556 -276 556 -276 687 -276 c 0,11,12 + 881 -276 881 -276 984 -129.5 c 128,-1,13 + 1087 17 1087 17 1087 286 c 0,14,15 + 1087 556 1087 556 998.5 681 c 128,-1,16 + 910 806 910 806 729 806 c 0,17,18 + 671 806 671 806 614.5 796.5 c 128,-1,19 + 558 787 558 787 505 771.5 c 128,-1,20 + 452 756 452 756 357 719 c 1,21,-1 + 357 0 l 1,22,-1 + 167 0 l 1,23,-1 + 167 1409 l 1,24,-1 + 1087 1409 l 1,25,-1 + 1087 1253 l 1,26,-1 + 357 1253 l 1,27,-1 + 357 869 l 1,28,29 + 544 960 544 960 737 960 c 0,30,31 + 1002 960 1002 960 1139 790 c 128,-1,32 + 1276 620 1276 620 1276 289 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0495 +Encoding: 1173 1173 1094 +Width: 1124 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 14 + 0 + 27 + 21 + 21 + 22 + 8 + 7 + 7 + 22 + 22 + 25 + 0 + 3 + 34 + 33 + 29 + 18 + 80 + 89 + 27 + 29 + 29 + 22 + 23 + 23 + 26 + 80 + 89 + 23 + 15 + 8 + 8 + 4 + 22 + 21 + 4 + 11 + 80 + 89 + 4 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1049 92 m 0,0,1 + 1049 -67 1049 -67 991 -184.5 c 128,-1,2 + 933 -302 933 -302 827.5 -363.5 c 128,-1,3 + 722 -425 722 -425 583 -425 c 0,4,5 + 406 -425 406 -425 302 -355 c 128,-1,6 + 198 -285 198 -285 152 -142 c 1,7,-1 + 330 -129 l 1,8,9 + 360 -213 360 -213 420.5 -250.5 c 128,-1,10 + 481 -288 481 -288 583 -288 c 0,11,12 + 729 -288 729 -288 803.5 -193.5 c 128,-1,13 + 878 -99 878 -99 878 83 c 0,14,15 + 878 195 878 195 835.5 277 c 128,-1,16 + 793 359 793 359 715 402 c 128,-1,17 + 637 445 637 445 539 445 c 0,18,19 + 423 445 423 445 321 413 c 1,20,-1 + 321 0 l 1,21,-1 + 141 0 l 1,22,-1 + 141 1082 l 1,23,-1 + 750 1082 l 1,24,-1 + 750 943 l 1,25,-1 + 321 943 l 1,26,-1 + 321 547 l 1,27,28 + 437 582 437 582 552 582 c 0,29,30 + 698 582 698 582 811.5 523.5 c 128,-1,31 + 925 465 925 465 987 354 c 128,-1,32 + 1049 243 1049 243 1049 92 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0496 +Encoding: 1174 1174 1095 +Width: 1891 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 64 + 27 + 34 + 18 + 23 + 24 + 24 + 32 + 29 + 18 + 38 + 38 + 39 + 6 + 3 + 9 + 15 + 15 + 39 + 10 + 9 + 9 + 4 + 5 + 5 + 39 + 29 + 3 + 41 + 40 + 34 + 3 + 27 + 6 + 37 + 0 + 15 + 0 + 96 + 89 + 18 + 15 + 3 + 6 + 15 + 15 + 6 + 3 + 3 + 33 + 9 + 33 + 28 + 95 + 89 + 33 + 18 + 31 + 23 + 16 + 9 + 3 + 39 + 5 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +850 645 m 1,0,1 + 813 645 813 645 757.5 658 c 128,-1,2 + 702 671 702 671 677 683 c 1,3,-1 + 250 0 l 1,4,-1 + 28 0 l 1,5,-1 + 537 775 l 1,6,7 + 489 810 489 810 358 999 c 2,8,-1 + 75 1409 l 1,9,-1 + 275 1409 l 1,10,-1 + 480 1104 l 2,11,12 + 591 937 591 937 639 883.5 c 128,-1,13 + 687 830 687 830 731 810 c 128,-1,14 + 775 790 775 790 850 790 c 1,15,-1 + 850 1409 l 1,16,-1 + 1041 1409 l 1,17,-1 + 1041 790 l 1,18,19 + 1116 790 1116 790 1161 810.5 c 128,-1,20 + 1206 831 1206 831 1255 886.5 c 128,-1,21 + 1304 942 1304 942 1411 1104 c 2,22,-1 + 1616 1409 l 1,23,-1 + 1816 1409 l 1,24,-1 + 1533 999 l 2,25,26 + 1402 810 1402 810 1354 775 c 1,27,-1 + 1758 160 l 1,28,-1 + 1870 160 l 1,29,-1 + 1870 -408 l 1,30,-1 + 1690 -408 l 1,31,-1 + 1690 0 l 1,32,-1 + 1641 0 l 1,33,-1 + 1214 683 l 1,34,35 + 1189 671 1189 671 1134.5 658 c 128,-1,36 + 1080 645 1080 645 1041 645 c 1,37,-1 + 1041 0 l 1,38,-1 + 850 0 l 1,39,-1 + 850 645 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0497 +Encoding: 1175 1175 1096 +Width: 1370 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 64 + 0 + 33 + 24 + 29 + 30 + 30 + 35 + 12 + 9 + 15 + 21 + 21 + 5 + 24 + 4 + 4 + 5 + 16 + 15 + 15 + 10 + 11 + 11 + 5 + 35 + 3 + 41 + 40 + 33 + 12 + 0 + 9 + 21 + 9 + 81 + 89 + 3 + 6 + 21 + 6 + 81 + 89 + 24 + 21 + 12 + 21 + 12 + 21 + 39 + 15 + 39 + 34 + 81 + 89 + 39 + 21 + 37 + 29 + 22 + 15 + 15 + 5 + 11 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +885 497 m 1,0,1 + 866 489 866 489 833.5 483 c 128,-1,2 + 801 477 801 477 775 477 c 1,3,-1 + 775 0 l 1,4,-1 + 595 0 l 1,5,-1 + 595 477 l 1,6,7 + 569 477 569 477 536.5 483 c 128,-1,8 + 504 489 504 489 485 497 c 1,9,-1 + 207 0 l 1,10,-1 + 7 0 l 1,11,-1 + 360 592 l 1,12,13 + 325 621 325 621 232 757 c 2,14,-1 + 16 1082 l 1,15,-1 + 204 1082 l 1,16,-1 + 352 843 l 2,17,18 + 418 737 418 737 454 690.5 c 128,-1,19 + 490 644 490 644 519.5 626 c 128,-1,20 + 549 608 549 608 595 608 c 1,21,-1 + 595 1082 l 1,22,-1 + 775 1082 l 1,23,-1 + 775 608 l 1,24,25 + 805 608 805 608 829 616 c 128,-1,26 + 853 624 853 624 879 649.5 c 128,-1,27 + 905 675 905 675 938 721 c 128,-1,28 + 971 767 971 767 1166 1082 c 1,29,-1 + 1354 1082 l 1,30,-1 + 1138 757 l 2,31,32 + 1045 621 1045 621 1010 592 c 1,33,-1 + 1285 131 l 1,34,-1 + 1363 131 l 1,35,-1 + 1363 -408 l 1,36,-1 + 1200 -408 l 1,37,-1 + 1200 0 l 1,38,-1 + 1163 0 l 1,39,-1 + 885 497 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0498 +Encoding: 1176 1176 1097 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 58 + 40 + 20 + 31 + 24 + 37 + 37 + 15 + 43 + 48 + 4 + 30 + 31 + 31 + 10 + 9 + 9 + 0 + 4 + 43 + 4 + 55 + 54 + 51 + 2 + 96 + 89 + 51 + 46 + 64 + 40 + 21 + 18 + 21 + 18 + 96 + 89 + 21 + 21 + 34 + 46 + 46 + 12 + 96 + 89 + 10 + 10 + 6 + 46 + 19 + 30 + 30 + 34 + 34 + 27 + 95 + 89 + 34 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +311 -256 m 1,0,1 + 400 -291 400 -291 486 -291 c 0,2,3 + 615 -291 615 -291 615 -164 c 0,4,5 + 615 -84 615 -84 594 -19 c 1,6,7 + 398 -14 398 -14 273 67.5 c 128,-1,8 + 148 149 148 149 67 328 c 1,9,-1 + 232 405 l 1,10,11 + 351 133 351 133 614 133 c 0,12,13 + 767 133 767 133 855 204 c 128,-1,14 + 943 275 943 275 943 403 c 0,15,16 + 943 536 943 536 847 595 c 128,-1,17 + 751 654 751 654 549 654 c 2,18,-1 + 478 654 l 1,19,-1 + 478 802 l 1,20,-1 + 549 802 l 2,21,22 + 730 802 730 802 816.5 861.5 c 128,-1,23 + 903 921 903 921 903 1044 c 0,24,25 + 903 1151 903 1151 830.5 1212.5 c 128,-1,26 + 758 1274 758 1274 623 1274 c 0,27,28 + 497 1274 497 1274 411 1215.5 c 128,-1,29 + 325 1157 325 1157 274 1027 c 1,30,-1 + 96 1088 l 1,31,32 + 166 1261 166 1261 298 1345 c 128,-1,33 + 430 1429 430 1429 630 1429 c 0,34,35 + 842 1429 842 1429 968 1329.5 c 128,-1,36 + 1094 1230 1094 1230 1094 1061 c 0,37,38 + 1094 934 1094 934 1022 851 c 128,-1,39 + 950 768 950 768 814 736 c 1,40,41 + 966 713 966 713 1051 625.5 c 128,-1,42 + 1136 538 1136 538 1136 406 c 0,43,44 + 1136 233 1136 233 1025.5 121.5 c 128,-1,45 + 915 10 915 10 722 -14 c 1,46,47 + 753 -138 753 -138 753 -220 c 0,48,49 + 753 -315 753 -315 689 -370 c 128,-1,50 + 625 -425 625 -425 509 -425 c 0,51,52 + 394 -425 394 -425 311 -391 c 1,53,-1 + 311 -256 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni0499 +Encoding: 1177 1177 1098 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 59 + 19 + 37 + 34 + 28 + 29 + 29 + 11 + 10 + 46 + 5 + 22 + 34 + 34 + 16 + 41 + 41 + 5 + 0 + 10 + 4 + 52 + 53 + 37 + 19 + 18 + 19 + 18 + 80 + 89 + 19 + 19 + 31 + 7 + 28 + 28 + 31 + 31 + 25 + 80 + 89 + 31 + 16 + 49 + 2 + 81 + 89 + 49 + 7 + 64 + 44 + 7 + 7 + 13 + 80 + 89 + 11 + 11 + 7 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +173 -260 m 1,0,1 + 260 -294 260 -294 338 -294 c 0,2,3 + 402 -294 402 -294 431.5 -263.5 c 128,-1,4 + 461 -233 461 -233 461 -170 c 0,5,6 + 461 -91 461 -91 438 -20 c 1,7,8 + 280 -16 280 -16 186.5 46 c 128,-1,9 + 93 108 93 108 49 234 c 1,10,-1 + 208 278 l 1,11,12 + 261 114 261 114 462 114 c 0,13,14 + 558 114 558 114 614.5 161 c 128,-1,15 + 671 208 671 208 671 299 c 0,16,17 + 671 499 671 499 340 499 c 1,18,-1 + 340 636 l 1,19,20 + 501 636 501 636 577 678 c 128,-1,21 + 653 720 653 720 653 808 c 0,22,23 + 653 882 653 882 603.5 925 c 128,-1,24 + 554 968 554 968 461 968 c 0,25,26 + 372 968 372 968 315.5 931 c 128,-1,27 + 259 894 259 894 247 824 c 1,28,-1 + 85 844 l 1,29,30 + 131 1102 131 1102 462 1102 c 0,31,32 + 630 1102 630 1102 733 1022.5 c 128,-1,33 + 836 943 836 943 836 817 c 0,34,35 + 836 716 836 716 763.5 648 c 128,-1,36 + 691 580 691 580 588 571 c 1,37,-1 + 588 569 l 1,38,39 + 709 556 709 556 785.5 484.5 c 128,-1,40 + 862 413 862 413 862 304 c 0,41,42 + 862 179 862 179 785.5 95 c 128,-1,43 + 709 11 709 11 566 -12 c 1,44,45 + 599 -119 599 -119 599 -205 c 0,46,47 + 599 -312 599 -312 539.5 -368.5 c 128,-1,48 + 480 -425 480 -425 360 -425 c 0,49,50 + 257 -425 257 -425 173 -392 c 1,51,-1 + 173 -260 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni049A +Encoding: 1178 1178 1099 +Width: 1193 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 18 + 11 + 2 + 8 + 2 + 22 + 22 + 23 + 7 + 8 + 8 + 17 + 15 + 14 + 23 + 14 + 24 + 25 + 23 + 18 + 2 + 21 + 96 + 89 + 18 + 2 + 18 + 2 + 17 + 0 + 17 + 12 + 95 + 89 + 17 + 18 + 15 + 7 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +168 1409 m 1,0,-1 + 359 1409 l 1,1,-1 + 359 790 l 1,2,3 + 434 790 434 790 479 810.5 c 128,-1,4 + 524 831 524 831 573 886.5 c 128,-1,5 + 622 942 622 942 729 1104 c 2,6,-1 + 934 1409 l 1,7,-1 + 1134 1409 l 1,8,-1 + 851 999 l 2,9,10 + 720 810 720 810 672 775 c 1,11,-1 + 1076 160 l 1,12,-1 + 1185 160 l 1,13,-1 + 1185 -408 l 1,14,-1 + 1005 -408 l 1,15,-1 + 1005 0 l 1,16,-1 + 959 0 l 1,17,-1 + 532 683 l 1,18,19 + 507 671 507 671 452.5 658 c 128,-1,20 + 398 645 398 645 359 645 c 1,21,-1 + 359 0 l 1,22,-1 + 168 0 l 1,23,-1 + 168 1409 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni049B +Encoding: 1179 1179 1100 +Width: 896 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 11 + 18 + 8 + 2 + 2 + 22 + 22 + 23 + 23 + 24 + 25 + 7 + 8 + 8 + 16 + 15 + 14 + 14 + 25 + 23 + 21 + 2 + 21 + 81 + 89 + 2 + 18 + 81 + 89 + 2 + 2 + 17 + 0 + 17 + 12 + 81 + 89 + 17 + 21 + 15 + 7 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +138 1082 m 1,0,-1 + 318 1082 l 1,1,-1 + 318 608 l 1,2,3 + 348 608 348 608 372 616 c 128,-1,4 + 396 624 396 624 422 649.5 c 128,-1,5 + 448 675 448 675 481 721 c 128,-1,6 + 514 767 514 767 709 1082 c 1,7,-1 + 897 1082 l 1,8,-1 + 681 757 l 2,9,10 + 588 621 588 621 553 592 c 1,11,-1 + 828 131 l 1,12,-1 + 906 131 l 1,13,-1 + 906 -408 l 1,14,-1 + 743 -408 l 1,15,-1 + 743 0 l 1,16,-1 + 706 0 l 1,17,-1 + 428 497 l 1,18,19 + 409 489 409 489 376.5 483 c 128,-1,20 + 344 477 344 477 318 477 c 1,21,-1 + 318 0 l 1,22,-1 + 138 0 l 1,23,-1 + 138 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni049C +Encoding: 1180 1180 1101 +Width: 1193 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 12 + 23 + 23 + 9 + 24 + 24 + 19 + 7 + 16 + 7 + 3 + 3 + 4 + 15 + 16 + 16 + 20 + 4 + 20 + 25 + 26 + 22 + 2 + 0 + 9 + 0 + 96 + 89 + 19 + 12 + 7 + 9 + 24 + 9 + 10 + 10 + 9 + 24 + 3 + 4 + 15 + 5 + 3 + 21 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +466 661 m 1,0,1 + 408 645 408 645 359 645 c 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 359 1409 l 1,6,-1 + 359 790 l 1,7,8 + 423 790 423 790 466 805 c 1,9,-1 + 466 1207 l 1,10,-1 + 581 1207 l 1,11,-1 + 581 896 l 1,12,13 + 614 935 614 935 673 1021 c 128,-1,14 + 732 1107 732 1107 934 1409 c 1,15,-1 + 1134 1409 l 1,16,-1 + 851 999 l 2,17,18 + 720 810 720 810 672 775 c 1,19,-1 + 1181 0 l 1,20,-1 + 959 0 l 1,21,-1 + 581 619 l 1,22,-1 + 581 247 l 1,23,-1 + 466 247 l 1,24,-1 + 466 661 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni049D +Encoding: 1181 1181 1102 +Width: 896 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 12 + 21 + 21 + 9 + 22 + 17 + 22 + 7 + 13 + 14 + 14 + 18 + 18 + 24 + 7 + 3 + 3 + 4 + 4 + 23 + 24 + 20 + 2 + 0 + 9 + 0 + 80 + 89 + 17 + 12 + 7 + 9 + 22 + 9 + 10 + 10 + 9 + 22 + 3 + 4 + 13 + 5 + 15 + 19 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +383 485 m 1,0,1 + 346 477 346 477 318 477 c 1,2,-1 + 318 0 l 1,3,-1 + 138 0 l 1,4,-1 + 138 1082 l 1,5,-1 + 318 1082 l 1,6,-1 + 318 608 l 1,7,8 + 358 608 358 608 383 617 c 1,9,-1 + 383 946 l 1,10,-1 + 488 946 l 1,11,-1 + 488 708 l 1,12,-1 + 709 1082 l 1,13,-1 + 897 1082 l 1,14,-1 + 681 757 l 2,15,16 + 588 621 588 621 553 592 c 1,17,-1 + 906 0 l 1,18,-1 + 706 0 l 1,19,-1 + 488 407 l 1,20,-1 + 488 160 l 1,21,-1 + 383 160 l 1,22,-1 + 383 485 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni049E +Encoding: 1182 1182 1103 +Width: 1193 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 20 + 17 + 4 + 13 + 14 + 14 + 18 + 4 + 24 + 24 + 27 + 1 + 25 + 18 + 25 + 29 + 28 + 8 + 23 + 96 + 89 + 20 + 17 + 8 + 7 + 27 + 0 + 27 + 96 + 89 + 4 + 0 + 8 + 0 + 8 + 0 + 2 + 19 + 25 + 18 + 13 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +4 1194 m 1,0,-1 + 168 1194 l 1,1,-1 + 168 1409 l 1,2,-1 + 359 1409 l 1,3,-1 + 359 1194 l 1,4,-1 + 542 1194 l 1,5,-1 + 542 1047 l 1,6,-1 + 359 1047 l 1,7,-1 + 359 790 l 1,8,9 + 434 790 434 790 479 810.5 c 128,-1,10 + 524 831 524 831 573 886.5 c 128,-1,11 + 622 942 622 942 729 1104 c 2,12,-1 + 934 1409 l 1,13,-1 + 1134 1409 l 1,14,-1 + 851 999 l 2,15,16 + 720 810 720 810 672 775 c 1,17,-1 + 1181 0 l 1,18,-1 + 959 0 l 1,19,-1 + 532 683 l 1,20,21 + 507 671 507 671 452.5 658 c 128,-1,22 + 398 645 398 645 359 645 c 1,23,-1 + 359 0 l 1,24,-1 + 168 0 l 1,25,-1 + 168 1047 l 1,26,-1 + 4 1047 l 1,27,-1 + 4 1194 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni049F +Encoding: 1183 1183 1104 +Width: 896 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 17 + 20 + 14 + 8 + 8 + 4 + 24 + 24 + 27 + 1 + 25 + 25 + 29 + 28 + 13 + 14 + 14 + 19 + 18 + 18 + 29 + 8 + 23 + 81 + 89 + 17 + 8 + 8 + 13 + 19 + 25 + 21 + 7 + 27 + 0 + 27 + 81 + 89 + 4 + 0 + 0 + 2 + 13 + 15 + 2 + 0 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +10 1337 m 1,0,-1 + 138 1337 l 1,1,-1 + 138 1484 l 1,2,-1 + 318 1484 l 1,3,-1 + 318 1337 l 1,4,-1 + 622 1337 l 1,5,-1 + 622 1206 l 1,6,-1 + 318 1206 l 1,7,-1 + 318 608 l 1,8,9 + 348 608 348 608 372 616 c 128,-1,10 + 396 624 396 624 422 649.5 c 128,-1,11 + 448 675 448 675 481 721 c 128,-1,12 + 514 767 514 767 709 1082 c 1,13,-1 + 897 1082 l 1,14,-1 + 681 757 l 2,15,16 + 588 621 588 621 553 592 c 1,17,-1 + 906 0 l 1,18,-1 + 706 0 l 1,19,-1 + 428 497 l 1,20,21 + 409 489 409 489 376.5 483 c 128,-1,22 + 344 477 344 477 318 477 c 1,23,-1 + 318 0 l 1,24,-1 + 138 0 l 1,25,-1 + 138 1206 l 1,26,-1 + 10 1206 l 1,27,-1 + 10 1337 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04A0 +Encoding: 1184 1184 1105 +Width: 1519 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 11 + 14 + 8 + 2 + 2 + 18 + 18 + 19 + 7 + 8 + 8 + 13 + 12 + 12 + 19 + 0 + 3 + 22 + 23 + 14 + 17 + 2 + 17 + 96 + 89 + 11 + 2 + 2 + 0 + 13 + 19 + 18 + 7 + 3 + 0 + 21 + 95 + 89 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +41 1409 m 1,0,-1 + 681 1409 l 1,1,-1 + 681 790 l 1,2,3 + 756 790 756 790 801 810.5 c 128,-1,4 + 846 831 846 831 895 886.5 c 128,-1,5 + 944 942 944 942 1051 1104 c 2,6,-1 + 1256 1409 l 1,7,-1 + 1456 1409 l 1,8,-1 + 1173 999 l 2,9,10 + 1042 810 1042 810 994 775 c 1,11,-1 + 1503 0 l 1,12,-1 + 1281 0 l 1,13,-1 + 854 683 l 1,14,15 + 829 671 829 671 774.5 658 c 128,-1,16 + 720 645 720 645 681 645 c 1,17,-1 + 681 0 l 1,18,-1 + 490 0 l 1,19,-1 + 490 1253 l 1,20,-1 + 41 1253 l 1,21,-1 + 41 1409 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04A1 +Encoding: 1185 1185 1106 +Width: 1097 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 11 + 14 + 8 + 2 + 8 + 13 + 12 + 12 + 23 + 2 + 18 + 18 + 19 + 0 + 19 + 22 + 23 + 2 + 17 + 81 + 89 + 11 + 2 + 2 + 0 + 13 + 19 + 21 + 7 + 15 + 0 + 21 + 80 + 89 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +40 1082 m 1,0,-1 + 515 1082 l 1,1,-1 + 515 608 l 1,2,3 + 545 608 545 608 569 616 c 128,-1,4 + 593 624 593 624 619 649.5 c 128,-1,5 + 645 675 645 675 678 721 c 128,-1,6 + 711 767 711 767 906 1082 c 1,7,-1 + 1094 1082 l 1,8,-1 + 878 757 l 2,9,10 + 785 621 785 621 750 592 c 1,11,-1 + 1103 0 l 1,12,-1 + 903 0 l 1,13,-1 + 625 497 l 1,14,15 + 606 489 606 489 573.5 483 c 128,-1,16 + 541 477 541 477 515 477 c 1,17,-1 + 515 0 l 1,18,-1 + 335 0 l 1,19,-1 + 335 943 l 1,20,-1 + 40 943 l 1,21,-1 + 40 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04A2 +Encoding: 1186 1186 1107 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 13 + 12 + 10 + 7 + 15 + 6 + 2 + 2 + 3 + 3 + 15 + 12 + 3 + 17 + 16 + 6 + 1 + 95 + 89 + 6 + 6 + 15 + 4 + 15 + 10 + 95 + 89 + 15 + 18 + 13 + 8 + 4 + 3 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1121 653 m 1,0,-1 + 359 653 l 1,1,-1 + 359 0 l 1,2,-1 + 168 0 l 1,3,-1 + 168 1409 l 1,4,-1 + 359 1409 l 1,5,-1 + 359 813 l 1,6,-1 + 1121 813 l 1,7,-1 + 1121 1409 l 1,8,-1 + 1312 1409 l 1,9,-1 + 1312 160 l 1,10,-1 + 1447 160 l 1,11,-1 + 1447 -408 l 1,12,-1 + 1267 -408 l 1,13,-1 + 1267 0 l 1,14,-1 + 1121 0 l 1,15,-1 + 1121 653 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04A3 +Encoding: 1187 1187 1108 +Width: 1131 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 6 + 2 + 2 + 3 + 7 + 16 + 16 + 10 + 10 + 14 + 13 + 3 + 13 + 17 + 18 + 11 + 10 + 16 + 10 + 81 + 89 + 6 + 1 + 81 + 89 + 6 + 6 + 4 + 16 + 21 + 14 + 8 + 4 + 15 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +809 493 m 1,0,-1 + 322 493 l 1,1,-1 + 322 0 l 1,2,-1 + 142 0 l 1,3,-1 + 142 1082 l 1,4,-1 + 322 1082 l 1,5,-1 + 322 624 l 1,6,-1 + 809 624 l 1,7,-1 + 809 1082 l 1,8,-1 + 989 1082 l 1,9,-1 + 989 129 l 1,10,-1 + 990 131 l 1,11,-1 + 1111 131 l 1,12,-1 + 1111 -408 l 1,13,-1 + 948 -408 l 1,14,-1 + 948 0 l 1,15,-1 + 809 0 l 1,16,-1 + 809 493 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04A4 +Encoding: 1188 1188 1109 +Width: 1801 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 13 + 8 + 0 + 7 + 3 + 3 + 4 + 4 + 0 + 10 + 3 + 15 + 14 + 7 + 2 + 95 + 89 + 7 + 7 + 4 + 9 + 9 + 12 + 95 + 89 + 9 + 3 + 5 + 3 + 0 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1121 0 m 1,0,-1 + 1121 653 l 1,1,-1 + 359 653 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 359 1409 l 1,6,-1 + 359 813 l 1,7,-1 + 1121 813 l 1,8,-1 + 1121 1409 l 1,9,-1 + 1760 1409 l 1,10,-1 + 1760 1253 l 1,11,-1 + 1312 1253 l 1,12,-1 + 1312 0 l 1,13,-1 + 1121 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04A5 +Encoding: 1189 1189 1110 +Width: 1327 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 1 + 11 + 11 + 12 + 7 + 2 + 8 + 4 + 8 + 12 + 3 + 14 + 15 + 13 + 15 + 1 + 10 + 81 + 89 + 1 + 1 + 3 + 8 + 12 + 21 + 3 + 6 + 80 + 89 + 3 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +322 1082 m 1,0,-1 + 322 624 l 1,1,-1 + 809 624 l 1,2,-1 + 809 1082 l 1,3,-1 + 1290 1082 l 1,4,-1 + 1290 943 l 1,5,-1 + 989 943 l 1,6,-1 + 989 0 l 1,7,-1 + 809 0 l 1,8,-1 + 809 493 l 1,9,-1 + 322 493 l 1,10,-1 + 322 0 l 1,11,-1 + 142 0 l 1,12,-1 + 142 1082 l 1,13,-1 + 322 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04A6 +Encoding: 1190 1190 1111 +Width: 2328 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 26 + 12 + 7 + 33 + 33 + 20 + 19 + 19 + 0 + 3 + 4 + 4 + 0 + 12 + 3 + 35 + 34 + 9 + 29 + 95 + 89 + 7 + 9 + 9 + 4 + 5 + 5 + 2 + 95 + 89 + 5 + 3 + 20 + 4 + 16 + 16 + 23 + 95 + 89 + 16 + 0 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1121 0 m 1,0,-1 + 1121 1252 l 1,1,-1 + 359 1252 l 1,2,-1 + 359 0 l 1,3,-1 + 168 0 l 1,4,-1 + 168 1409 l 1,5,-1 + 1312 1409 l 1,6,-1 + 1312 869 l 1,7,8 + 1499 960 1499 960 1696 960 c 0,9,10 + 1961 960 1961 960 2098 790 c 128,-1,11 + 2235 620 2235 620 2235 289 c 0,12,13 + 2235 69 2235 69 2161.5 -93.5 c 128,-1,14 + 2088 -256 2088 -256 1955 -340.5 c 128,-1,15 + 1822 -425 1822 -425 1648 -425 c 0,16,17 + 1460 -425 1460 -425 1331 -353.5 c 128,-1,18 + 1202 -282 1202 -282 1142 -139 c 1,19,-1 + 1320 -109 l 1,20,21 + 1365 -199 1365 -199 1440 -237.5 c 128,-1,22 + 1515 -276 1515 -276 1646 -276 c 0,23,24 + 1840 -276 1840 -276 1943 -129.5 c 128,-1,25 + 2046 17 2046 17 2046 286 c 0,26,27 + 2046 556 2046 556 1957.5 681 c 128,-1,28 + 1869 806 1869 806 1688 806 c 0,29,30 + 1614 806 1614 806 1529 788 c 128,-1,31 + 1444 770 1444 770 1312 719 c 1,32,-1 + 1312 0 l 1,33,-1 + 1121 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04A7 +Encoding: 1191 1191 1112 +Width: 1782 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 21 + 7 + 1 + 28 + 28 + 29 + 15 + 14 + 14 + 29 + 32 + 33 + 33 + 29 + 7 + 3 + 36 + 35 + 3 + 25 + 80 + 89 + 1 + 3 + 3 + 33 + 34 + 34 + 31 + 80 + 89 + 34 + 15 + 15 + 15 + 11 + 29 + 33 + 21 + 11 + 18 + 80 + 89 + 11 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +974 1082 m 1,0,-1 + 974 547 l 1,1,2 + 1090 582 1090 582 1205 582 c 0,3,4 + 1351 582 1351 582 1464.5 523.5 c 128,-1,5 + 1578 465 1578 465 1640 354 c 128,-1,6 + 1702 243 1702 243 1702 92 c 0,7,8 + 1702 -67 1702 -67 1644 -184.5 c 128,-1,9 + 1586 -302 1586 -302 1480.5 -363.5 c 128,-1,10 + 1375 -425 1375 -425 1236 -425 c 0,11,12 + 1059 -425 1059 -425 955 -355 c 128,-1,13 + 851 -285 851 -285 805 -142 c 1,14,-1 + 983 -129 l 1,15,16 + 1013 -213 1013 -213 1073.5 -250.5 c 128,-1,17 + 1134 -288 1134 -288 1236 -288 c 0,18,19 + 1382 -288 1382 -288 1456.5 -193.5 c 128,-1,20 + 1531 -99 1531 -99 1531 83 c 0,21,22 + 1531 195 1531 195 1488.5 277 c 128,-1,23 + 1446 359 1446 359 1368 402 c 128,-1,24 + 1290 445 1290 445 1192 445 c 0,25,26 + 1076 445 1076 445 974 413 c 1,27,-1 + 974 0 l 1,28,-1 + 794 0 l 1,29,-1 + 794 946 l 1,30,-1 + 316 946 l 1,31,-1 + 316 0 l 1,32,-1 + 136 0 l 1,33,-1 + 136 1082 l 1,34,-1 + 974 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04A8 +Encoding: 1192 1192 1113 +Width: 1542 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 51 + 21 + 9 + 15 + 47 + 47 + 29 + 53 + 36 + 0 + 36 + 39 + 50 + 4 + 26 + 29 + 9 + 8 + 56 + 57 + 50 + 39 + 26 + 4 + 4 + 2 + 32 + 32 + 44 + 95 + 89 + 32 + 32 + 18 + 13 + 18 + 95 + 89 + 13 + 4 + 6 + 24 + 95 + 89 + 6 + 19 + 2 + 41 + 95 + 89 + 2 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1500 40 m 1,0,1 + 1393 -20 1393 -20 1260 -20 c 0,2,3 + 1106 -20 1106 -20 971 41 c 1,4,5 + 838 -20 838 -20 665 -20 c 0,6,7 + 374 -20 374 -20 218 170.5 c 128,-1,8 + 62 361 62 361 62 713 c 0,9,10 + 62 929 62 929 126 1094.5 c 128,-1,11 + 190 1260 190 1260 305.5 1345 c 128,-1,12 + 421 1430 421 1430 577 1430 c 0,13,14 + 709 1430 709 1430 796 1375 c 1,15,-1 + 717 1242 l 1,16,17 + 657 1276 657 1276 577 1276 c 0,18,19 + 428 1276 428 1276 342 1116.5 c 128,-1,20 + 256 957 256 957 256 714 c 0,21,22 + 256 424 256 424 363 277.5 c 128,-1,23 + 470 131 470 131 681 131 c 0,24,25 + 741 131 741 131 820 150 c 1,26,27 + 733 246 733 246 679.5 406 c 128,-1,28 + 626 566 626 566 626 742 c 0,29,30 + 626 980 626 980 722.5 1122.5 c 128,-1,31 + 819 1265 819 1265 985 1265 c 0,32,33 + 1087 1265 1087 1265 1164.5 1197 c 128,-1,34 + 1242 1129 1242 1129 1283.5 1007.5 c 128,-1,35 + 1325 886 1325 886 1325 733 c 0,36,37 + 1325 562 1325 562 1272.5 406 c 128,-1,38 + 1220 250 1220 250 1128 152 c 1,39,40 + 1189 133 1189 133 1256 133 c 0,41,42 + 1349 133 1349 133 1420 180 c 1,43,-1 + 1500 40 l 1,0,1 +985 1108 m 0,44,45 + 898 1108 898 1108 847.5 1010 c 128,-1,46 + 797 912 797 912 797 749 c 0,47,48 + 797 581 797 581 848 433 c 128,-1,49 + 899 285 899 285 980 212 c 1,50,51 + 1063 303 1063 303 1110.5 441.5 c 128,-1,52 + 1158 580 1158 580 1158 738 c 256,53,54 + 1158 896 1158 896 1110.5 1002 c 128,-1,55 + 1063 1108 1063 1108 985 1108 c 0,44,45 +EndSplineSet +EndChar + +StartChar: uni04A9 +Encoding: 1193 1193 1114 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 52 + 39 + 0 + 33 + 35 + 24 + 48 + 14 + 45 + 45 + 27 + 20 + 9 + 9 + 27 + 48 + 33 + 4 + 52 + 51 + 4 + 24 + 35 + 48 + 4 + 30 + 2 + 30 + 42 + 80 + 89 + 30 + 30 + 6 + 12 + 12 + 17 + 80 + 89 + 12 + 16 + 6 + 23 + 81 + 89 + 6 + 22 + 2 + 36 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1042 35 m 1,0,1 + 972 -20 972 -20 865 -20 c 0,2,3 + 775 -20 775 -20 693 17 c 1,4,5 + 612 -20 612 -20 508 -20 c 0,6,7 + 278 -20 278 -20 156.5 122.5 c 128,-1,8 + 35 265 35 265 35 527 c 0,9,10 + 35 799 35 799 142 949.5 c 128,-1,11 + 249 1100 249 1100 445 1100 c 0,12,13 + 518 1100 518 1100 591 1073 c 1,14,-1 + 527 946 l 1,15,16 + 495 966 495 966 442 966 c 0,17,18 + 336 966 336 966 274.5 848 c 128,-1,19 + 213 730 213 730 213 527 c 0,20,21 + 213 323 213 323 292 214 c 128,-1,22 + 371 105 371 105 518 105 c 1,23,-1 + 568 108 l 1,24,25 + 500 186 500 186 464.5 296.5 c 128,-1,26 + 429 407 429 407 429 524 c 0,27,28 + 429 702 429 702 502 815 c 128,-1,29 + 575 928 575 928 693 928 c 0,30,31 + 814 928 814 928 885.5 817 c 128,-1,32 + 957 706 957 706 957 528 c 0,33,34 + 957 263 957 263 819 115 c 1,35,-1 + 867 112 l 1,36,37 + 935 112 935 112 983 151 c 1,38,-1 + 1042 35 l 1,0,1 +793 527 m 0,39,40 + 793 645 793 645 765.5 713 c 128,-1,41 + 738 781 738 781 692 781 c 0,42,43 + 645 781 645 781 619 712 c 128,-1,44 + 593 643 593 643 593 527 c 0,45,46 + 593 422 593 422 620 325.5 c 128,-1,47 + 647 229 647 229 694 177 c 1,48,49 + 740 229 740 229 766.5 322 c 128,-1,50 + 793 415 793 415 793 527 c 0,39,40 +EndSplineSet +EndChar + +StartChar: uni04AA +Encoding: 1194 1194 1115 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 69 + 37 + 36 + 36 + 8 + 9 + 14 + 24 + 3 + 30 + 30 + 20 + 24 + 9 + 4 + 41 + 40 + 15 + 37 + 1 + 13 + 3 + 37 + 37 + 33 + 33 + 0 + 95 + 89 + 33 + 4 + 20 + 26 + 17 + 17 + 22 + 96 + 89 + 17 + 26 + 26 + 12 + 0 + 8 + 16 + 8 + 64 + 8 + 80 + 8 + 144 + 8 + 160 + 8 + 208 + 8 + 224 + 8 + 8 + 12 + 3 + 8 + 8 + 12 + 12 + 6 + 95 + 89 + 12 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SHP[rp1] +MDAP[rnd] +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +792 1274 m 0,0,1 + 558 1274 558 1274 428 1123.5 c 128,-1,2 + 298 973 298 973 298 711 c 0,3,4 + 298 452 298 452 433.5 294.5 c 128,-1,5 + 569 137 569 137 800 137 c 0,6,7 + 1096 137 1096 137 1245 430 c 1,8,-1 + 1401 352 l 1,9,10 + 1326 195 1326 195 1196.5 101.5 c 128,-1,11 + 1067 8 1067 8 892 -14 c 1,12,13 + 923 -138 923 -138 923 -220 c 0,14,15 + 923 -315 923 -315 859 -370 c 128,-1,16 + 795 -425 795 -425 679 -425 c 0,17,18 + 564 -425 564 -425 481 -391 c 1,19,-1 + 481 -256 l 1,20,21 + 570 -291 570 -291 656 -291 c 0,22,23 + 785 -291 785 -291 785 -164 c 0,24,25 + 785 -84 785 -84 764 -19 c 1,26,27 + 559 -14 559 -14 410 75.5 c 128,-1,28 + 261 165 261 165 182.5 329 c 128,-1,29 + 104 493 104 493 104 711 c 0,30,31 + 104 1048 104 1048 286 1239 c 128,-1,32 + 468 1430 468 1430 790 1430 c 0,33,34 + 1015 1430 1015 1430 1166 1342 c 128,-1,35 + 1317 1254 1317 1254 1388 1081 c 1,36,-1 + 1207 1021 l 1,37,38 + 1158 1144 1158 1144 1049.5 1209 c 128,-1,39 + 941 1274 941 1274 792 1274 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni04AB +Encoding: 1195 1195 1116 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 82 + 17 + 16 + 16 + 29 + 30 + 35 + 5 + 23 + 10 + 10 + 0 + 5 + 30 + 4 + 42 + 41 + 31 + 17 + 127 + 17 + 143 + 17 + 223 + 17 + 4 + 32 + 29 + 112 + 29 + 128 + 29 + 208 + 29 + 224 + 29 + 5 + 0 + 29 + 16 + 29 + 96 + 29 + 112 + 29 + 128 + 29 + 192 + 29 + 208 + 29 + 7 + 9 + 3 + 0 + 0 + 38 + 7 + 38 + 2 + 81 + 89 + 38 + 27 + 29 + 29 + 33 + 33 + 26 + 81 + 89 + 33 + 21 + 13 + 20 + 80 + 89 + 17 + 17 + 13 + 16 + 7 + 22 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +277 -260 m 1,0,1 + 364 -294 364 -294 442 -294 c 0,2,3 + 506 -294 506 -294 535.5 -263.5 c 128,-1,4 + 565 -233 565 -233 565 -170 c 0,5,6 + 565 -91 565 -91 542 -20 c 1,7,8 + 320 -16 320 -16 203.5 128 c 128,-1,9 + 87 272 87 272 87 542 c 0,10,11 + 87 815 87 815 207 958.5 c 128,-1,12 + 327 1102 327 1102 551 1102 c 0,13,14 + 717 1102 717 1102 826.5 1016 c 128,-1,15 + 936 930 936 930 964 779 c 1,16,-1 + 779 765 l 1,17,18 + 765 855 765 855 708 908 c 128,-1,19 + 651 961 651 961 546 961 c 0,20,21 + 403 961 403 961 339 866 c 128,-1,22 + 275 771 275 771 275 546 c 0,23,24 + 275 330 275 330 343 226 c 128,-1,25 + 411 122 411 122 548 122 c 0,26,27 + 644 122 644 122 708.5 174 c 128,-1,28 + 773 226 773 226 788 334 c 1,29,-1 + 970 322 l 1,30,31 + 952 193 952 193 872 106 c 128,-1,32 + 792 19 792 19 669 -8 c 1,33,34 + 703 -127 703 -127 703 -205 c 0,35,36 + 703 -312 703 -312 643.5 -368.5 c 128,-1,37 + 584 -425 584 -425 464 -425 c 0,38,39 + 361 -425 361 -425 277 -392 c 1,40,-1 + 277 -260 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni04AC +Encoding: 1196 1196 1117 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 1 + 6 + 3 + 4 + 10 + 4 + 6 + 8 + 4 + 12 + 13 + 0 + 8 + 9 + 8 + 95 + 89 + 9 + 3 + 4 + 6 + 6 + 1 + 95 + 89 + 6 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +720 1253 m 1,0,-1 + 720 160 l 1,1,-1 + 860 160 l 1,2,-1 + 860 -408 l 1,3,-1 + 683 -408 l 1,4,-1 + 683 0 l 1,5,-1 + 530 0 l 1,6,-1 + 530 1253 l 1,7,-1 + 46 1253 l 1,8,-1 + 46 1409 l 1,9,-1 + 1204 1409 l 1,10,-1 + 1204 1253 l 1,11,-1 + 720 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04AD +Encoding: 1197 1197 1118 +Width: 938 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 6 + 11 + 8 + 9 + 3 + 9 + 11 + 1 + 4 + 12 + 13 + 9 + 11 + 11 + 6 + 81 + 89 + 11 + 21 + 5 + 1 + 2 + 1 + 81 + 89 + 2 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +379 951 m 1,0,-1 + 35 951 l 1,1,-1 + 35 1082 l 1,2,-1 + 903 1082 l 1,3,-1 + 903 951 l 1,4,-1 + 559 951 l 1,5,-1 + 559 131 l 1,6,-1 + 675 131 l 1,7,-1 + 675 -408 l 1,8,-1 + 512 -408 l 1,9,-1 + 512 0 l 1,10,-1 + 379 0 l 1,11,-1 + 379 951 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04AE +Encoding: 1198 1198 1119 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 10 + 1 + 1 + 4 + 2 + 2 + 11 + 12 + 7 + 2 + 9 + 4 + 3 + 2 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +662 584 m 1,0,-1 + 662 0 l 1,1,-1 + 472 0 l 1,2,-1 + 472 584 l 1,3,-1 + 20 1409 l 1,4,-1 + 230 1409 l 1,5,-1 + 524 833 l 1,6,-1 + 569 730 l 1,7,-1 + 614 832 l 1,8,-1 + 909 1409 l 1,9,-1 + 1119 1409 l 1,10,-1 + 662 584 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04AF +Encoding: 1199 1199 1120 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 10 + 12 + 12 + 2 + 0 + 0 + 14 + 13 + 6 + 9 + 2 + 15 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +418 -425 m 1,0,-1 + 418 2 l 1,1,-1 + 7 1082 l 1,2,-1 + 199 1082 l 1,3,-1 + 437 394 l 2,4,5 + 450 354 450 354 506 157 c 1,6,-1 + 522 210 l 1,7,-1 + 580 392 l 1,8,-1 + 826 1082 l 1,9,-1 + 1017 1082 l 1,10,-1 + 598 0 l 1,11,-1 + 598 -425 l 1,12,-1 + 418 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04B0 +Encoding: 1200 1200 1121 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 10 + 8 + 13 + 13 + 2 + 0 + 14 + 14 + 18 + 17 + 12 + 16 + 0 + 16 + 95 + 89 + 9 + 5 + 0 + 0 + 2 + 14 + 18 + 7 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +62 736 m 1,0,-1 + 388 736 l 1,1,-1 + 20 1409 l 1,2,-1 + 230 1409 l 1,3,-1 + 524 833 l 1,4,-1 + 569 730 l 1,5,-1 + 614 832 l 1,6,-1 + 909 1409 l 1,7,-1 + 1119 1409 l 1,8,-1 + 746 736 l 1,9,-1 + 1072 736 l 1,10,-1 + 1072 584 l 1,11,-1 + 662 584 l 1,12,-1 + 662 0 l 1,13,-1 + 472 0 l 1,14,-1 + 472 584 l 1,15,-1 + 62 584 l 1,16,-1 + 62 736 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04B1 +Encoding: 1201 1201 1122 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 12 + 10 + 15 + 15 + 2 + 0 + 16 + 16 + 19 + 20 + 16 + 27 + 6 + 0 + 9 + 2 + 15 + 14 + 18 + 0 + 18 + 80 + 89 + 11 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 0 m 1,0,-1 + 418 0 l 1,1,-1 + 7 1082 l 1,2,-1 + 199 1082 l 1,3,-1 + 437 394 l 2,4,5 + 450 354 450 354 506 157 c 1,6,-1 + 522 210 l 1,7,-1 + 580 392 l 1,8,-1 + 826 1082 l 1,9,-1 + 1017 1082 l 1,10,-1 + 598 0 l 1,11,-1 + 916 0 l 1,12,-1 + 916 -138 l 1,13,-1 + 598 -138 l 1,14,-1 + 598 -425 l 1,15,-1 + 418 -425 l 1,16,-1 + 418 -138 l 1,17,-1 + 100 -138 l 1,18,-1 + 100 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04B2 +Encoding: 1202 1202 1123 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 3 + 0 + 6 + 9 + 4 + 8 + 5 + 4 + 4 + 1 + 2 + 10 + 13 + 13 + 12 + 7 + 8 + 8 + 12 + 2 + 12 + 16 + 17 + 6 + 9 + 3 + 0 + 4 + 15 + 4 + 15 + 10 + 95 + 89 + 15 + 18 + 13 + 7 + 4 + 3 + 2 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +689 616 m 1,0,-1 + 257 0 l 1,1,-1 + 46 0 l 1,2,-1 + 582 732 l 1,3,-1 + 87 1409 l 1,4,-1 + 298 1409 l 1,5,-1 + 690 856 l 1,6,-1 + 1071 1409 l 1,7,-1 + 1282 1409 l 1,8,-1 + 800 739 l 1,9,-1 + 1210 160 l 1,10,-1 + 1346 160 l 1,11,-1 + 1346 -408 l 1,12,-1 + 1166 -408 l 1,13,-1 + 1166 0 l 1,14,-1 + 1112 0 l 1,15,-1 + 689 616 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04B3 +Encoding: 1203 1203 1124 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 9 + 6 + 0 + 3 + 4 + 8 + 5 + 4 + 4 + 1 + 2 + 10 + 13 + 13 + 12 + 7 + 8 + 8 + 12 + 2 + 12 + 16 + 17 + 6 + 9 + 3 + 0 + 4 + 15 + 4 + 15 + 10 + 81 + 89 + 15 + 21 + 13 + 7 + 4 + 15 + 2 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +510 444 m 1,0,-1 + 217 0 l 1,1,-1 + 23 0 l 1,2,-1 + 408 556 l 1,3,-1 + 41 1082 l 1,4,-1 + 240 1082 l 1,5,-1 + 510 661 l 1,6,-1 + 778 1082 l 1,7,-1 + 979 1082 l 1,8,-1 + 612 558 l 1,9,-1 + 910 131 l 1,10,-1 + 1010 131 l 1,11,-1 + 1010 -408 l 1,12,-1 + 847 -408 l 1,13,-1 + 847 0 l 1,14,-1 + 801 0 l 1,15,-1 + 510 444 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04B4 +Encoding: 1204 1204 1125 +Width: 1895 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 4 + 13 + 8 + 5 + 11 + 10 + 10 + 5 + 2 + 13 + 0 + 5 + 16 + 17 + 8 + 4 + 13 + 4 + 95 + 89 + 11 + 13 + 18 + 6 + 3 + 3 + 15 + 0 + 15 + 95 + 89 + 0 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +MIAP[rnd] +MDRP[rnd,white] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +49 1409 m 1,0,-1 + 1223 1409 l 1,1,-1 + 1223 1253 l 1,2,-1 + 731 1253 l 1,3,-1 + 731 160 l 1,4,-1 + 1488 160 l 1,5,-1 + 1488 1409 l 1,6,-1 + 1674 1409 l 1,7,-1 + 1674 160 l 1,8,-1 + 1849 160 l 1,9,-1 + 1849 -408 l 1,10,-1 + 1669 -408 l 1,11,-1 + 1669 0 l 1,12,-1 + 540 0 l 1,13,-1 + 540 1253 l 1,14,-1 + 49 1253 l 1,15,-1 + 49 1409 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04B5 +Encoding: 1205 1205 1126 +Width: 1415 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 4 + 13 + 8 + 2 + 5 + 11 + 10 + 10 + 5 + 13 + 0 + 4 + 16 + 17 + 8 + 4 + 13 + 4 + 81 + 89 + 11 + 13 + 21 + 6 + 15 + 3 + 15 + 0 + 15 + 80 + 89 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +MIAP[rnd] +MDRP[rnd,white] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +38 1083 m 1,0,-1 + 882 1083 l 1,1,-1 + 882 943 l 1,2,-1 + 570 943 l 1,3,-1 + 570 131 l 1,4,-1 + 1047 131 l 1,5,-1 + 1047 1082 l 1,6,-1 + 1227 1082 l 1,7,-1 + 1227 131 l 1,8,-1 + 1374 131 l 1,9,-1 + 1374 -408 l 1,10,-1 + 1211 -408 l 1,11,-1 + 1211 0 l 1,12,-1 + 390 0 l 1,13,-1 + 390 943 l 1,14,-1 + 38 943 l 1,15,-1 + 38 1083 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04B6 +Encoding: 1206 1206 1127 +Width: 1365 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 9 + 6 + 17 + 14 + 22 + 20 + 19 + 19 + 22 + 6 + 3 + 23 + 24 + 12 + 3 + 95 + 89 + 12 + 12 + 7 + 20 + 22 + 22 + 17 + 95 + 89 + 22 + 18 + 15 + 7 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1008 508 m 1,0,1 + 853 474 853 474 762 462 c 128,-1,2 + 671 450 671 450 600 450 c 0,3,4 + 378 450 378 450 269 540.5 c 128,-1,5 + 160 631 160 631 160 815 c 2,6,-1 + 160 1409 l 1,7,-1 + 350 1409 l 1,8,-1 + 350 835 l 2,9,10 + 350 712 350 712 415 658 c 128,-1,11 + 480 604 480 604 614 604 c 0,12,13 + 763 604 763 604 1008 653 c 1,14,-1 + 1008 1409 l 1,15,-1 + 1198 1409 l 1,16,-1 + 1198 160 l 1,17,-1 + 1338 160 l 1,18,-1 + 1338 -408 l 1,19,-1 + 1158 -408 l 1,20,-1 + 1158 0 l 1,21,-1 + 1008 0 l 1,22,-1 + 1008 508 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni04B7 +Encoding: 1207 1207 1128 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 1 + 0 + 23 + 20 + 3 + 12 + 11 + 11 + 3 + 0 + 3 + 26 + 25 + 18 + 6 + 80 + 89 + 18 + 18 + 3 + 21 + 12 + 15 + 3 + 24 + 80 + 89 + 1 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,white] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1047 -301 m 1,0,-1 + 899 -301 l 1,1,-1 + 899 0 l 1,2,-1 + 751 0 l 1,3,-1 + 751 428 l 1,4,5 + 585 376 585 376 441 376 c 0,6,7 + 331 376 331 376 237 431.5 c 128,-1,8 + 143 487 143 487 106 577 c 128,-1,9 + 69 667 69 667 69 784 c 2,10,-1 + 69 1062 l 1,11,-1 + 249 1062 l 1,12,-1 + 249 861 l 2,13,14 + 249 728 249 728 264 679.5 c 128,-1,15 + 279 631 279 631 310.5 597 c 128,-1,16 + 342 563 342 563 386.5 545 c 128,-1,17 + 431 527 431 527 487 527 c 0,18,19 + 589 527 589 527 751 581 c 1,20,-1 + 751 1062 l 1,21,-1 + 931 1062 l 1,22,-1 + 931 148 l 1,23,-1 + 1047 148 l 1,24,-1 + 1047 -301 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04B8 +Encoding: 1208 1208 1129 +Width: 1365 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 6 + 3 + 12 + 22 + 22 + 9 + 23 + 14 + 18 + 18 + 17 + 17 + 23 + 3 + 3 + 24 + 25 + 14 + 19 + 96 + 89 + 14 + 14 + 9 + 21 + 0 + 9 + 0 + 95 + 89 + 12 + 9 + 23 + 9 + 10 + 10 + 9 + 23 + 3 + 4 + 18 + 18 + 15 + 4 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +599 450 m 1,0,1 + 379 450 379 450 269.5 539.5 c 128,-1,2 + 160 629 160 629 160 815 c 2,3,-1 + 160 1409 l 1,4,-1 + 350 1409 l 1,5,-1 + 350 835 l 2,6,7 + 350 715 350 715 411 661 c 128,-1,8 + 472 607 472 607 599 604 c 1,9,-1 + 599 1072 l 1,10,-1 + 722 1072 l 1,11,-1 + 722 609 l 1,12,13 + 842 619 842 619 1008 653 c 1,14,-1 + 1008 1409 l 1,15,-1 + 1198 1409 l 1,16,-1 + 1198 0 l 1,17,-1 + 1008 0 l 1,18,-1 + 1008 508 l 1,19,20 + 828 467 828 467 722 457 c 1,21,-1 + 722 187 l 1,22,-1 + 599 187 l 1,23,-1 + 599 450 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni04B9 +Encoding: 1209 1209 1130 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 7 + 4 + 12 + 22 + 22 + 9 + 23 + 14 + 18 + 18 + 17 + 17 + 23 + 4 + 3 + 24 + 25 + 14 + 19 + 81 + 89 + 14 + 14 + 9 + 21 + 1 + 9 + 1 + 80 + 89 + 12 + 9 + 23 + 9 + 10 + 10 + 9 + 23 + 3 + 5 + 18 + 21 + 15 + 5 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +448 377 m 1,0,-1 + 394 375 l 1,1,2 + 265 375 265 375 193.5 452.5 c 128,-1,3 + 122 530 122 530 122 671 c 2,4,-1 + 122 1082 l 1,5,-1 + 302 1082 l 1,6,-1 + 302 680 l 2,7,8 + 302 528 302 528 448 518 c 1,9,-1 + 448 822 l 1,10,-1 + 560 822 l 1,11,-1 + 560 524 l 1,12,13 + 626 531 626 531 744 565 c 1,14,-1 + 744 1082 l 1,15,-1 + 924 1082 l 1,16,-1 + 924 0 l 1,17,-1 + 744 0 l 1,18,-1 + 744 461 l 1,19,20 + 625 414 625 414 560 397 c 1,21,-1 + 560 182 l 1,22,-1 + 448 182 l 1,23,-1 + 448 377 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04BA +Encoding: 1210 1210 1131 +Width: 1365 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 11 + 7 + 7 + 8 + 0 + 16 + 8 + 16 + 17 + 18 + 13 + 4 + 95 + 89 + 13 + 13 + 8 + 9 + 3 + 0 + 8 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1047 0 m 1,0,-1 + 1047 575 l 2,1,2 + 1047 697 1047 697 983 751.5 c 128,-1,3 + 919 806 919 806 786 806 c 0,4,5 + 609 806 609 806 359 756 c 1,6,-1 + 359 0 l 1,7,-1 + 169 0 l 1,8,-1 + 169 1409 l 1,9,-1 + 359 1409 l 1,10,-1 + 359 901 l 1,11,12 + 625 960 625 960 794 960 c 0,13,14 + 1237 960 1237 960 1237 595 c 2,15,-1 + 1237 0 l 1,16,-1 + 1047 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04BB +Encoding: 1211 1211 1132 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 75 104 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04BC +Encoding: 1212 1212 1133 +Width: 1764 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 49 + 22 + 17 + 38 + 25 + 13 + 6 + 7 + 7 + 39 + 32 + 32 + 13 + 17 + 3 + 42 + 43 + 0 + 14 + 24 + 14 + 95 + 89 + 38 + 15 + 24 + 1 + 11 + 3 + 24 + 19 + 24 + 19 + 10 + 28 + 28 + 35 + 96 + 89 + 28 + 4 + 6 + 6 + 10 + 10 + 3 + 95 + 89 + 10 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +523 626 m 1,0,1 + 541 398 541 398 669 267 c 128,-1,2 + 797 136 797 136 1003 136 c 0,3,4 + 1158 136 1158 136 1264.5 202.5 c 128,-1,5 + 1371 269 1371 269 1428 390 c 1,6,-1 + 1604 320 l 1,7,8 + 1522 153 1522 153 1366.5 66.5 c 128,-1,9 + 1211 -20 1211 -20 1003 -20 c 0,10,11 + 708 -20 708 -20 530 150.5 c 128,-1,12 + 352 321 352 321 332 626 c 1,13,-1 + 265 626 l 2,14,15 + 147 626 147 626 78.5 693.5 c 128,-1,16 + 10 761 10 761 10 888 c 0,17,18 + 10 946 10 946 27 1005 c 1,19,-1 + 194 1005 l 1,20,21 + 172 946 172 946 172 896 c 0,22,23 + 172 784 172 784 294 784 c 2,24,-1 + 333 784 l 1,25,26 + 358 1086 358 1086 537 1258 c 128,-1,27 + 716 1430 716 1430 1005 1430 c 0,28,29 + 1208 1430 1208 1430 1362 1341.5 c 128,-1,30 + 1516 1253 1516 1253 1599.5 1091.5 c 128,-1,31 + 1683 930 1683 930 1683 725 c 0,32,33 + 1683 689 1683 689 1678 626 c 1,34,-1 + 523 626 l 1,0,1 +1005 1284 m 0,35,36 + 785 1284 785 1284 656.5 1151 c 128,-1,37 + 528 1018 528 1018 516 784 c 1,38,-1 + 1501 784 l 1,39,40 + 1483 1017 1483 1017 1349.5 1150.5 c 128,-1,41 + 1216 1284 1216 1284 1005 1284 c 0,35,36 +EndSplineSet +EndChar + +StartChar: uni04BD +Encoding: 1213 1213 1134 +Width: 1364 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 30 + 7 + 29 + 36 + 0 + 0 + 23 + 12 + 20 + 15 + 15 + 12 + 29 + 3 + 38 + 37 + 0 + 13 + 22 + 13 + 80 + 89 + 36 + 22 + 17 + 22 + 17 + 9 + 26 + 26 + 33 + 80 + 89 + 26 + 16 + 6 + 6 + 9 + 9 + 3 + 80 + 89 + 9 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +505 503 m 1,0,1 + 505 317 505 317 582 216 c 128,-1,2 + 659 115 659 115 807 115 c 0,3,4 + 924 115 924 115 994.5 162 c 128,-1,5 + 1065 209 1065 209 1090 281 c 1,6,-1 + 1248 236 l 1,7,8 + 1151 -20 1151 -20 807 -20 c 0,9,10 + 575 -20 575 -20 451 111 c 128,-1,11 + 327 242 327 242 317 504 c 1,12,-1 + 265 504 l 2,13,14 + 10 504 10 504 10 739 c 0,15,16 + 10 800 10 800 27 862 c 1,17,-1 + 194 862 l 1,18,19 + 172 803 172 803 172 753 c 0,20,21 + 172 641 172 641 294 641 c 2,22,-1 + 320 641 l 1,23,24 + 341 866 341 866 464.5 984 c 128,-1,25 + 588 1102 588 1102 800 1102 c 0,26,27 + 1277 1102 1277 1102 1277 527 c 2,28,-1 + 1277 503 l 1,29,-1 + 505 503 l 1,0,1 +1091 641 m 1,30,31 + 1076 812 1076 812 1004 890.5 c 128,-1,32 + 932 969 932 969 797 969 c 0,33,34 + 666 969 666 969 589.5 881.5 c 128,-1,35 + 513 794 513 794 507 641 c 1,36,-1 + 1091 641 l 1,30,31 +EndSplineSet +EndChar + +StartChar: uni04BE +Encoding: 1214 1214 1135 +Width: 1764 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 57 + 25 + 20 + 0 + 41 + 41 + 28 + 16 + 11 + 12 + 42 + 7 + 35 + 35 + 12 + 16 + 20 + 4 + 45 + 46 + 0 + 17 + 27 + 17 + 95 + 89 + 41 + 15 + 27 + 1 + 11 + 3 + 27 + 22 + 27 + 22 + 13 + 31 + 31 + 38 + 96 + 89 + 31 + 4 + 12 + 13 + 64 + 10 + 13 + 6 + 6 + 13 + 13 + 3 + 95 + 89 + 13 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SHP[rp1] +SMD +SRP0 +MDRP[min,rnd,black] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +523 626 m 1,0,1 + 541 398 541 398 669 267 c 128,-1,2 + 797 136 797 136 1003 136 c 0,3,4 + 1158 136 1158 136 1264.5 202.5 c 128,-1,5 + 1371 269 1371 269 1428 390 c 1,6,-1 + 1604 320 l 1,7,8 + 1531 172 1531 172 1396.5 84 c 128,-1,9 + 1262 -4 1262 -4 1067 -18 c 1,10,-1 + 1067 -309 l 1,11,-1 + 933 -309 l 1,12,-1 + 933 -17 l 1,13,14 + 666 3 666 3 508 172.5 c 128,-1,15 + 350 342 350 342 332 626 c 1,16,-1 + 265 626 l 2,17,18 + 147 626 147 626 78.5 693.5 c 128,-1,19 + 10 761 10 761 10 888 c 0,20,21 + 10 946 10 946 27 1005 c 1,22,-1 + 194 1005 l 1,23,24 + 172 946 172 946 172 896 c 0,25,26 + 172 784 172 784 294 784 c 2,27,-1 + 333 784 l 1,28,29 + 358 1086 358 1086 537 1258 c 128,-1,30 + 716 1430 716 1430 1005 1430 c 0,31,32 + 1208 1430 1208 1430 1362 1341.5 c 128,-1,33 + 1516 1253 1516 1253 1599.5 1091.5 c 128,-1,34 + 1683 930 1683 930 1683 725 c 0,35,36 + 1683 689 1683 689 1678 626 c 1,37,-1 + 523 626 l 1,0,1 +1005 1284 m 0,38,39 + 785 1284 785 1284 656.5 1151 c 128,-1,40 + 528 1018 528 1018 516 784 c 1,41,-1 + 1501 784 l 1,42,43 + 1483 1017 1483 1017 1349.5 1150.5 c 128,-1,44 + 1216 1284 1216 1284 1005 1284 c 0,38,39 +EndSplineSet +EndChar + +StartChar: uni04BF +Encoding: 1215 1215 1136 +Width: 1364 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 22 + 20 + 17 + 38 + 0 + 0 + 25 + 14 + 10 + 11 + 6 + 7 + 7 + 32 + 31 + 31 + 11 + 14 + 17 + 4 + 39 + 40 + 0 + 15 + 24 + 15 + 80 + 89 + 38 + 24 + 19 + 24 + 19 + 12 + 28 + 28 + 35 + 80 + 89 + 28 + 16 + 11 + 12 + 64 + 9 + 12 + 6 + 6 + 12 + 12 + 3 + 81 + 89 + 12 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SHP[rp1] +SMD +SRP0 +MDRP[min,rnd,black] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +505 503 m 1,0,1 + 505 317 505 317 582 216 c 128,-1,2 + 659 115 659 115 807 115 c 0,3,4 + 924 115 924 115 994.5 162 c 128,-1,5 + 1065 209 1065 209 1090 281 c 1,6,-1 + 1248 236 l 1,7,8 + 1160 5 1160 5 867 -18 c 1,9,-1 + 867 -310 l 1,10,-1 + 733 -310 l 1,11,-1 + 733 -16 l 1,12,13 + 335 24 335 24 317 504 c 1,14,-1 + 265 504 l 2,15,16 + 10 504 10 504 10 739 c 0,17,18 + 10 800 10 800 27 862 c 1,19,-1 + 194 862 l 1,20,21 + 172 803 172 803 172 753 c 0,22,23 + 172 641 172 641 294 641 c 2,24,-1 + 320 641 l 1,25,26 + 341 866 341 866 464.5 984 c 128,-1,27 + 588 1102 588 1102 800 1102 c 0,28,29 + 1277 1102 1277 1102 1277 527 c 2,30,-1 + 1277 503 l 1,31,-1 + 505 503 l 1,0,1 +1091 641 m 1,32,33 + 1076 812 1076 812 1004 890.5 c 128,-1,34 + 932 969 932 969 797 969 c 0,35,36 + 666 969 666 969 589.5 881.5 c 128,-1,37 + 513 794 513 794 507 641 c 1,38,-1 + 1091 641 l 1,32,33 +EndSplineSet +EndChar + +StartChar: uni04C0 +Encoding: 1216 1216 1137 +Width: 569 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04C1 +Encoding: 1217 1217 1138 +Width: 1891 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 36 + 36 + 5 + 38 + 1 + 38 + 0 + 38 + 44 + 5 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 967 1046 N 1 0 0 1 0 0 3 +Refer: 2299 -1 N 1 0 0 1 605 315 2 +EndChar + +StartChar: uni04C2 +Encoding: 1218 1218 1139 +Width: 1370 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 36 + 36 + 17 + 38 + 1 + 38 + 0 + 38 + 44 + 5 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 999 1078 N 1 0 0 1 0 0 3 +Refer: 2299 -1 N 1 0 0 1 345 0 2 +EndChar + +StartChar: uni04C3 +Encoding: 1219 1219 1140 +Width: 1367 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 32 + 23 + 28 + 29 + 29 + 14 + 14 + 0 + 23 + 19 + 19 + 20 + 8 + 7 + 7 + 20 + 0 + 20 + 36 + 35 + 32 + 23 + 23 + 18 + 96 + 89 + 23 + 23 + 28 + 21 + 3 + 8 + 20 + 4 + 4 + 11 + 95 + 89 + 4 + 20 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +SHP[rp1] +IP +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1279 209 m 0,0,1 + 1279 21 1279 21 1204.5 -123.5 c 128,-1,2 + 1130 -268 1130 -268 997 -346.5 c 128,-1,3 + 864 -425 864 -425 697 -425 c 0,4,5 + 507 -425 507 -425 378 -351.5 c 128,-1,6 + 249 -278 249 -278 189 -134 c 1,7,-1 + 367 -104 l 1,8,9 + 413 -197 413 -197 491 -236.5 c 128,-1,10 + 569 -276 569 -276 695 -276 c 0,11,12 + 882 -276 882 -276 986.5 -147 c 128,-1,13 + 1091 -18 1091 -18 1091 206 c 0,14,15 + 1091 424 1091 424 957.5 536 c 128,-1,16 + 824 648 824 648 558 648 c 2,17,-1 + 359 648 l 1,18,-1 + 359 0 l 1,19,-1 + 168 0 l 1,20,-1 + 168 1409 l 1,21,-1 + 359 1409 l 1,22,-1 + 359 790 l 1,23,24 + 434 790 434 790 479 810.5 c 128,-1,25 + 524 831 524 831 573 886.5 c 128,-1,26 + 622 942 622 942 729 1104 c 2,27,-1 + 934 1409 l 1,28,-1 + 1134 1409 l 1,29,-1 + 851 999 l 2,30,31 + 739 838 739 838 687 788 c 1,32,33 + 970 765 970 765 1124.5 614.5 c 128,-1,34 + 1279 464 1279 464 1279 209 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni04C4 +Encoding: 1220 1220 1141 +Width: 1128 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 33 + 24 + 29 + 30 + 30 + 14 + 14 + 0 + 24 + 20 + 20 + 21 + 8 + 7 + 7 + 21 + 0 + 21 + 37 + 36 + 33 + 24 + 24 + 19 + 81 + 89 + 24 + 24 + 21 + 29 + 22 + 15 + 8 + 8 + 4 + 21 + 21 + 4 + 11 + 80 + 89 + 4 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1049 92 m 0,0,1 + 1049 -69 1049 -69 992 -186 c 128,-1,2 + 935 -303 935 -303 830 -364 c 128,-1,3 + 725 -425 725 -425 583 -425 c 0,4,5 + 406 -425 406 -425 302 -355 c 128,-1,6 + 198 -285 198 -285 152 -142 c 1,7,-1 + 330 -129 l 1,8,9 + 360 -213 360 -213 420.5 -250.5 c 128,-1,10 + 481 -288 481 -288 583 -288 c 0,11,12 + 728 -288 728 -288 803 -195 c 128,-1,13 + 878 -102 878 -102 878 81 c 0,14,15 + 878 208 878 208 823 297.5 c 128,-1,16 + 768 387 768 387 670.5 433.5 c 128,-1,17 + 573 480 573 480 449 480 c 2,18,-1 + 321 480 l 1,19,-1 + 321 0 l 1,20,-1 + 141 0 l 1,21,-1 + 141 1082 l 1,22,-1 + 321 1082 l 1,23,-1 + 321 608 l 1,24,25 + 351 608 351 608 375 616 c 128,-1,26 + 399 624 399 624 425 649.5 c 128,-1,27 + 451 675 451 675 484 721 c 128,-1,28 + 517 767 517 767 712 1082 c 1,29,-1 + 900 1082 l 1,30,-1 + 684 757 l 2,31,32 + 600 633 600 633 562 597 c 1,33,34 + 791 575 791 575 920 440.5 c 128,-1,35 + 1049 306 1049 306 1049 92 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni04C5 +Encoding: 1221 1221 1142 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 24 + 21 + 19 + 1 + 17 + 9 + 17 + 19 + 3 + 26 + 25 + 24 + 19 + 95 + 89 + 24 + 18 + 17 + 1 + 95 + 89 + 17 + 3 + 22 + 6 + 6 + 11 + 95 + 89 + 6 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +991 1249 m 1,0,-1 + 573 1249 l 1,1,-1 + 524 881 l 2,2,3 + 468 459 468 459 420 291 c 128,-1,4 + 372 123 372 123 301 53.5 c 128,-1,5 + 230 -16 230 -16 104 -16 c 0,6,7 + 46 -16 46 -16 18 -6 c 1,8,-1 + 18 146 l 1,9,10 + 37 139 37 139 74 139 c 0,11,12 + 127 139 127 139 160.5 171.5 c 128,-1,13 + 194 204 194 204 223 279.5 c 128,-1,14 + 252 355 252 355 281 503.5 c 128,-1,15 + 310 652 310 652 339 869.5 c 128,-1,16 + 368 1087 368 1087 410 1409 c 1,17,-1 + 1177 1409 l 1,18,-1 + 1177 173 l 1,19,-1 + 1362 173 l 1,20,-1 + 1174 -410 l 1,21,-1 + 1002 -410 l 1,22,-1 + 1140 0 l 1,23,-1 + 991 0 l 1,24,-1 + 991 1249 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04C6 +Encoding: 1222 1222 1143 +Width: 1195 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 23 + 22 + 2 + 21 + 4 + 19 + 12 + 19 + 21 + 3 + 25 + 24 + 19 + 4 + 81 + 89 + 19 + 15 + 9 + 14 + 80 + 89 + 0 + 9 + 22 + 2 + 21 + 83 + 89 + 2 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MDRP[rnd,white] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +857 -311 m 1,0,-1 + 998 0 l 1,1,-1 + 872 0 l 1,2,-1 + 872 951 l 1,3,-1 + 497 951 l 1,4,5 + 438 515 438 515 406 362.5 c 128,-1,6 + 374 210 374 210 337 132 c 128,-1,7 + 300 54 300 54 245.5 17 c 128,-1,8 + 191 -20 191 -20 105 -20 c 0,9,10 + 55 -20 55 -20 11 -7 c 1,11,-1 + 11 122 l 1,12,13 + 36 113 36 113 79 113 c 0,14,15 + 134 113 134 113 167.5 168 c 128,-1,16 + 201 223 201 223 228.5 358 c 128,-1,17 + 256 493 256 493 291 757 c 2,18,-1 + 335 1082 l 1,19,-1 + 1053 1082 l 1,20,-1 + 1053 161 l 1,21,-1 + 1223 161 l 1,22,-1 + 1029 -311 l 1,23,-1 + 857 -311 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04C7 +Encoding: 1223 1223 1144 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 0 + 23 + 23 + 10 + 13 + 9 + 9 + 10 + 14 + 6 + 6 + 17 + 10 + 17 + 24 + 25 + 13 + 8 + 95 + 89 + 13 + 13 + 15 + 11 + 3 + 0 + 10 + 20 + 20 + 3 + 95 + 89 + 20 + 10 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +SHP[rp1] +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +368 -104 m 1,0,1 + 414 -196 414 -196 497.5 -235 c 128,-1,2 + 581 -274 581 -274 721 -274 c 0,3,4 + 933 -274 933 -274 1027 -146 c 128,-1,5 + 1121 -18 1121 -18 1121 255 c 2,6,-1 + 1121 653 l 1,7,-1 + 359 653 l 1,8,-1 + 359 0 l 1,9,-1 + 168 0 l 1,10,-1 + 168 1409 l 1,11,-1 + 359 1409 l 1,12,-1 + 359 813 l 1,13,-1 + 1121 813 l 1,14,-1 + 1121 1409 l 1,15,-1 + 1312 1409 l 1,16,-1 + 1312 237 l 2,17,18 + 1312 -85 1312 -85 1159.5 -255 c 128,-1,19 + 1007 -425 1007 -425 721 -425 c 0,20,21 + 521 -425 521 -425 383 -348 c 128,-1,22 + 245 -271 245 -271 188 -124 c 1,23,-1 + 368 -104 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni04C8 +Encoding: 1224 1224 1145 +Width: 1131 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 14 + 6 + 6 + 17 + 0 + 23 + 23 + 10 + 13 + 9 + 9 + 10 + 17 + 10 + 25 + 24 + 0 + 0 + 20 + 10 + 20 + 3 + 80 + 89 + 20 + 27 + 13 + 8 + 81 + 89 + 13 + 13 + 10 + 15 + 11 + 15 + 10 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +329 -128 m 1,0,1 + 348 -214 348 -214 402 -251 c 128,-1,2 + 456 -288 456 -288 563 -288 c 0,3,4 + 689 -288 689 -288 749 -199 c 128,-1,5 + 809 -110 809 -110 809 71 c 2,6,-1 + 809 493 l 1,7,-1 + 322 493 l 1,8,-1 + 322 0 l 1,9,-1 + 142 0 l 1,10,-1 + 142 1082 l 1,11,-1 + 322 1082 l 1,12,-1 + 322 624 l 1,13,-1 + 809 624 l 1,14,-1 + 809 1082 l 1,15,-1 + 989 1082 l 1,16,-1 + 989 63 l 2,17,18 + 989 -160 989 -160 877.5 -292.5 c 128,-1,19 + 766 -425 766 -425 569 -425 c 0,20,21 + 390 -425 390 -425 287.5 -358.5 c 128,-1,22 + 185 -292 185 -292 151 -141 c 1,23,-1 + 329 -128 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni04C9 +Encoding: 1225 1225 1146 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 15 + 14 + 2 + 13 + 9 + 5 + 5 + 6 + 13 + 6 + 17 + 16 + 9 + 4 + 95 + 89 + 9 + 9 + 6 + 11 + 7 + 3 + 0 + 6 + 18 + 2 + 13 + 95 + 89 + 2 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MDRP[rnd,white] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1136 -410 m 1,0,-1 + 1274 0 l 1,1,-1 + 1121 0 l 1,2,-1 + 1121 653 l 1,3,-1 + 359 653 l 1,4,-1 + 359 0 l 1,5,-1 + 168 0 l 1,6,-1 + 168 1409 l 1,7,-1 + 359 1409 l 1,8,-1 + 359 813 l 1,9,-1 + 1121 813 l 1,10,-1 + 1121 1409 l 1,11,-1 + 1312 1409 l 1,12,-1 + 1312 173 l 1,13,-1 + 1496 173 l 1,14,-1 + 1308 -410 l 1,15,-1 + 1136 -410 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04CA +Encoding: 1226 1226 1147 +Width: 1131 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 2 + 10 + 10 + 7 + 6 + 5 + 1 + 13 + 13 + 14 + 5 + 14 + 17 + 16 + 1 + 12 + 81 + 89 + 1 + 1 + 10 + 3 + 15 + 15 + 14 + 21 + 8 + 10 + 10 + 5 + 83 + 89 + 10 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +322 1082 m 1,0,-1 + 322 624 l 1,1,-1 + 809 624 l 1,2,-1 + 809 1082 l 1,3,-1 + 989 1082 l 1,4,-1 + 989 161 l 1,5,-1 + 1176 161 l 1,6,-1 + 982 -311 l 1,7,-1 + 810 -311 l 1,8,-1 + 951 0 l 1,9,-1 + 809 0 l 1,10,-1 + 809 493 l 1,11,-1 + 322 493 l 1,12,-1 + 322 0 l 1,13,-1 + 142 0 l 1,14,-1 + 142 1082 l 1,15,-1 + 322 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04CB +Encoding: 1227 1227 1148 +Width: 1365 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 11 + 8 + 21 + 22 + 16 + 1 + 1 + 19 + 19 + 22 + 8 + 3 + 23 + 24 + 14 + 5 + 95 + 89 + 14 + 14 + 9 + 22 + 20 + 64 + 20 + 0 + 95 + 89 + 20 + 18 + 17 + 9 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,black] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +869 160 m 1,0,-1 + 1008 160 l 1,1,-1 + 1008 508 l 1,2,3 + 853 474 853 474 762 462 c 128,-1,4 + 671 450 671 450 600 450 c 0,5,6 + 378 450 378 450 269 540.5 c 128,-1,7 + 160 631 160 631 160 815 c 2,8,-1 + 160 1409 l 1,9,-1 + 350 1409 l 1,10,-1 + 350 835 l 2,11,12 + 350 712 350 712 415 658 c 128,-1,13 + 480 604 480 604 614 604 c 0,14,15 + 763 604 763 604 1008 653 c 1,16,-1 + 1008 1409 l 1,17,-1 + 1198 1409 l 1,18,-1 + 1198 0 l 1,19,-1 + 1049 0 l 1,20,-1 + 1049 -408 l 1,21,-1 + 869 -408 l 1,22,-1 + 869 160 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04CC +Encoding: 1228 1228 1149 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 1 + 20 + 10 + 11 + 5 + 13 + 13 + 8 + 8 + 11 + 20 + 3 + 22 + 23 + 3 + 17 + 80 + 89 + 3 + 3 + 9 + 6 + 21 + 15 + 9 + 12 + 81 + 89 + 11 + 9 + 21 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +302 1082 m 1,0,-1 + 302 680 l 2,1,2 + 302 518 302 518 468 518 c 0,3,4 + 578 518 578 518 744 565 c 1,5,-1 + 744 1082 l 1,6,-1 + 924 1082 l 1,7,-1 + 924 0 l 1,8,-1 + 799 0 l 1,9,-1 + 799 -408 l 1,10,-1 + 636 -408 l 1,11,-1 + 636 131 l 1,12,-1 + 744 131 l 1,13,-1 + 744 461 l 1,14,-1 + 666 431 l 2,15,16 + 520 375 520 375 394 375 c 0,17,18 + 265 375 265 375 193.5 452.5 c 128,-1,19 + 122 530 122 530 122 671 c 2,20,-1 + 122 1082 l 1,21,-1 + 302 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04CD +Encoding: 1229 1229 1150 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 25 + 22 + 22 + 23 + 33 + 5 + 5 + 2 + 1 + 0 + 0 + 29 + 23 + 3 + 35 + 36 + 34 + 3 + 29 + 18 + 9 + 3 + 22 + 24 + 3 + 13 + 22 + 18 + 2 + 5 + 64 + 5 + 0 + 95 + 89 + 5 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1538 173 m 1,0,-1 + 1734 173 l 1,1,-1 + 1546 -410 l 1,2,-1 + 1374 -410 l 1,3,-1 + 1512 0 l 1,4,-1 + 1366 0 l 1,5,-1 + 1366 940 l 2,6,7 + 1366 1065 1366 1065 1374 1208 c 2,8,-1 + 1375 1239 l 1,9,-1 + 1366 1205 l 2,10,11 + 1326 1067 1326 1067 1287 960 c 2,12,-1 + 923 0 l 1,13,-1 + 789 0 l 1,14,-1 + 420 960 l 2,15,16 + 410 984 410 984 376 1091.5 c 128,-1,17 + 342 1199 342 1199 337 1221 c 2,18,-1 + 331 1239 l 1,19,-1 + 335 1127 l 1,20,-1 + 338 940 l 1,21,-1 + 338 0 l 1,22,-1 + 168 0 l 1,23,-1 + 168 1409 l 1,24,-1 + 419 1409 l 1,25,-1 + 794 432 l 2,26,27 + 814 373 814 373 832.5 305.5 c 128,-1,28 + 851 238 851 238 857 208 c 1,29,30 + 865 248 865 248 890.5 329.5 c 128,-1,31 + 916 411 916 411 925 432 c 2,32,-1 + 1293 1409 l 1,33,-1 + 1538 1409 l 1,34,-1 + 1538 173 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04CE +Encoding: 1230 1230 1151 +Width: 1408 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 14 + 21 + 21 + 18 + 17 + 16 + 8 + 5 + 5 + 6 + 6 + 11 + 16 + 3 + 26 + 25 + 18 + 21 + 64 + 21 + 16 + 83 + 89 + 21 + 21 + 14 + 15 + 11 + 2 + 24 + 3 + 6 + 7 + 15 + 1 + 6 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +787 0 m 1,0,-1 + 634 0 l 1,1,-1 + 310 951 l 1,2,3 + 316 795 316 795 316 724 c 2,4,-1 + 316 0 l 1,5,-1 + 142 0 l 1,6,-1 + 142 1082 l 1,7,-1 + 422 1082 l 1,8,-1 + 642 421 l 1,9,10 + 694 278 694 278 710 135 c 1,11,12 + 732 296 732 296 778 421 c 1,13,-1 + 998 1082 l 1,14,-1 + 1267 1082 l 1,15,-1 + 1267 161 l 1,16,-1 + 1441 161 l 1,17,-1 + 1247 -311 l 1,18,-1 + 1075 -311 l 1,19,-1 + 1216 0 l 1,20,-1 + 1094 0 l 1,21,-1 + 1094 724 l 1,22,-1 + 1097 838 l 1,23,-1 + 1102 953 l 1,24,-1 + 787 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04CF +Encoding: 1231 1231 1152 +Width: 455 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D0 +Encoding: 1232 1232 1153 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 17 + 17 + 5 + 38 + 2 + 20 + 4 + 20 + 28 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 378 0 2 +EndChar + +StartChar: uni04D1 +Encoding: 1233 1233 1154 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 49 + 49 + 17 + 38 + 2 + 52 +PUSHW_1 + -44 +PUSHB_5 + 52 + 58 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 271 0 2 +EndChar + +StartChar: uni04D2 +Encoding: 1234 1234 1155 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 24 + 24 + 5 + 38 + 3 + 2 + 22 + 6 + 22 + 20 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 366 0 2 +EndChar + +StartChar: uni04D3 +Encoding: 1235 1235 1156 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 56 + 56 + 17 + 38 + 3 + 2 + 54 +PUSHW_1 + -48 +PUSHB_5 + 54 + 52 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 241 0 2 +EndChar + +StartChar: uni04D4 +Encoding: 1236 1236 1157 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 136 198 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D5 +Encoding: 1237 1237 1158 +Width: 1821 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 168 230 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04D6 +Encoding: 1238 1238 1159 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 12 + 12 + 5 + 38 + 1 + 15 +PUSHW_1 + -2 +PUSHB_5 + 15 + 23 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 412 0 2 +EndChar + +StartChar: uni04D7 +Encoding: 1239 1239 1160 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 26 + 26 + 17 + 38 + 2 + 29 + 6 + 29 + 35 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 276 0 2 +EndChar + +StartChar: uni04D8 +Encoding: 1240 1240 1161 +Width: 1541 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 337 399 N 1 0 0 1 0 0 2 +EndChar + +StartChar: afii10846 +Encoding: 1241 1241 1162 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 539 601 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni04DA +Encoding: 1242 1242 1163 +Width: 1541 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 39 + 39 + 5 + 38 + 3 + 2 + 37 +PUSHW_1 + -14 +PUSHB_5 + 37 + 35 + 29 + 21 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 337 399 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 433 0 2 +EndChar + +StartChar: uni04DB +Encoding: 1243 1243 1164 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 33 + 33 + 17 + 38 + 3 + 2 + 31 +PUSHW_1 + -14 +PUSHB_5 + 31 + 29 + 18 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 539 601 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni04DC +Encoding: 1244 1244 1165 +Width: 1891 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 43 + 43 + 5 + 38 + 2 + 1 + 41 +PUSHW_1 + -1 +PUSHB_5 + 41 + 39 + 5 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 967 1046 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 621 0 2 +EndChar + +StartChar: uni04DD +Encoding: 1245 1245 1166 +Width: 1370 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 43 + 43 + 17 + 38 + 2 + 1 + 41 + 1 + 41 + 39 + 5 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 999 1078 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 363 0 2 +EndChar + +StartChar: uni04DE +Encoding: 1246 1246 1167 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 47 + 47 + 5 + 38 + 2 + 1 + 45 + 19 + 45 + 43 + 3 + 37 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 968 1047 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 297 0 2 +EndChar + +StartChar: uni04DF +Encoding: 1247 1247 1168 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 44 + 44 + 17 + 38 + 2 + 1 + 42 + 8 + 42 + 40 + 3 + 34 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1000 1079 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 140 0 2 +EndChar + +StartChar: uni04E0 +Encoding: 1248 1248 1169 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 4 + 3 + 20 + 14 + 14 + 17 + 15 + 19 + 19 + 9 + 23 + 23 + 17 + 3 + 3 + 27 + 28 + 14 + 20 + 20 + 13 + 96 + 89 + 20 + 20 + 0 + 17 + 19 + 16 + 17 + 16 + 95 + 89 + 17 + 3 + 0 + 6 + 95 + 89 + 4 + 4 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +631 -20 m 0,0,1 + 427 -20 427 -20 295 60.5 c 128,-1,2 + 163 141 163 141 77 328 c 1,3,-1 + 242 405 l 1,4,5 + 361 133 361 133 624 133 c 0,6,7 + 777 133 777 133 865 213.5 c 128,-1,8 + 953 294 953 294 953 429 c 0,9,10 + 953 562 953 562 857 635.5 c 128,-1,11 + 761 709 761 709 559 709 c 2,12,-1 + 496 709 l 1,13,-1 + 496 855 l 1,14,-1 + 936 1253 l 1,15,-1 + 126 1253 l 1,16,-1 + 126 1409 l 1,17,-1 + 1158 1409 l 1,18,-1 + 1158 1244 l 1,19,-1 + 701 845 l 1,20,21 + 907 834 907 834 1026.5 724 c 128,-1,22 + 1146 614 1146 614 1146 436 c 0,23,24 + 1146 305 1146 305 1082.5 201 c 128,-1,25 + 1019 97 1019 97 901 38.5 c 128,-1,26 + 783 -20 783 -20 631 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni04E1 +Encoding: 1249 1249 1170 +Width: 1116 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 596 658 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni04E2 +Encoding: 1250 1250 1171 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 15 + 15 + 5 + 38 + 1 + 16 + 0 + 16 + 17 + 1 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 969 1048 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 411 329 2 +EndChar + +StartChar: uni04E3 +Encoding: 1251 1251 1172 +Width: 1144 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 15 + 15 + 17 + 38 + 1 + 16 + 13 + 16 + 17 + 13 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1001 1080 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 260 0 2 +EndChar + +StartChar: uni04E4 +Encoding: 1252 1252 1173 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 21 + 21 + 5 + 38 + 2 + 1 + 19 +PUSHW_1 + -6 +PUSHB_5 + 19 + 17 + 1 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 969 1048 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 406 0 2 +EndChar + +StartChar: uni04E5 +Encoding: 1253 1253 1174 +Width: 1144 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 21 + 21 + 17 + 38 + 2 + 1 + 19 +PUSHW_1 + -1 +PUSHB_5 + 19 + 17 + 13 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1001 1080 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 247 0 2 +EndChar + +StartChar: uni04E6 +Encoding: 1254 1254 1175 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 34 + 34 + 5 + 38 + 3 + 2 + 32 + 7 + 32 + 30 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 480 0 2 +EndChar + +StartChar: uni04E7 +Encoding: 1255 1255 1176 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 30 + 30 + 17 + 38 + 3 + 2 + 28 + 7 + 28 + 26 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 253 0 2 +EndChar + +StartChar: uni04E8 +Encoding: 1256 1256 1177 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 25 + 19 + 19 + 8 + 26 + 18 + 18 + 0 + 8 + 0 + 29 + 30 + 25 + 19 + 95 + 89 + 25 + 25 + 4 + 11 + 11 + 22 + 95 + 89 + 11 + 4 + 4 + 15 + 95 + 89 + 4 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1495 711 m 0,0,1 + 1495 490 1495 490 1410.5 324 c 128,-1,2 + 1326 158 1326 158 1168 69 c 128,-1,3 + 1010 -20 1010 -20 795 -20 c 0,4,5 + 578 -20 578 -20 420.5 68 c 128,-1,6 + 263 156 263 156 180 322.5 c 128,-1,7 + 97 489 97 489 97 711 c 0,8,9 + 97 1049 97 1049 282 1239.5 c 128,-1,10 + 467 1430 467 1430 797 1430 c 0,11,12 + 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 + 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 + 1495 933 1495 933 1495 711 c 0,0,1 +795 135 m 0,15,16 + 1026 135 1026 135 1155.5 270 c 128,-1,17 + 1285 405 1285 405 1298 652 c 1,18,-1 + 293 652 l 1,19,20 + 308 413 308 413 439.5 274 c 128,-1,21 + 571 135 571 135 795 135 c 0,15,16 +797 1274 m 0,22,23 + 580 1274 580 1274 450.5 1154 c 128,-1,24 + 321 1034 321 1034 296 813 c 1,25,-1 + 1294 813 l 1,26,27 + 1269 1032 1269 1032 1139 1153 c 128,-1,28 + 1009 1274 1009 1274 797 1274 c 0,22,23 +EndSplineSet +EndChar + +StartChar: uni04E9 +Encoding: 1257 1257 1178 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 22 + 14 + 14 + 0 + 21 + 15 + 15 + 6 + 0 + 6 + 26 + 25 + 21 + 15 + 81 + 89 + 21 + 21 + 3 + 8 + 8 + 18 + 80 + 89 + 8 + 16 + 3 + 11 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1053 542 m 0,0,1 + 1053 258 1053 258 928 119 c 128,-1,2 + 803 -20 803 -20 565 -20 c 0,3,4 + 328 -20 328 -20 207 124.5 c 128,-1,5 + 86 269 86 269 86 542 c 0,6,7 + 86 1102 86 1102 571 1102 c 0,8,9 + 819 1102 819 1102 936 965.5 c 128,-1,10 + 1053 829 1053 829 1053 542 c 0,0,1 +563 113 m 0,11,12 + 715 113 715 113 785.5 204 c 128,-1,13 + 856 295 856 295 863 494 c 1,14,-1 + 276 494 l 1,15,16 + 283 304 283 304 352.5 208.5 c 128,-1,17 + 422 113 422 113 563 113 c 0,11,12 +574 969 m 0,18,19 + 432 969 432 969 361.5 886.5 c 128,-1,20 + 291 804 291 804 278 625 c 1,21,-1 + 861 625 l 1,22,23 + 850 801 850 801 784 885 c 128,-1,24 + 718 969 718 969 574 969 c 0,18,19 +EndSplineSet +EndChar + +StartChar: uni04EA +Encoding: 1258 1258 1179 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 4 + 3 + 36 + 36 + 5 + 38 + 4 + 3 + 34 + 5 + 34 + 32 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1177 1256 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 478 0 2 +EndChar + +StartChar: uni04EB +Encoding: 1259 1259 1180 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 4 + 3 + 32 + 32 + 17 + 38 + 4 + 3 + 30 + 4 + 30 + 28 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1178 1257 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 250 0 2 +EndChar + +StartChar: uni04EC +Encoding: 1260 1260 1181 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 36 + 36 + 5 + 38 + 2 + 1 + 34 +PUSHW_1 + -28 +PUSHB_5 + 34 + 32 + 16 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 990 1069 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 401 0 2 +EndChar + +StartChar: uni04ED +Encoding: 1261 1261 1182 +Width: 1045 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 35 + 35 + 17 + 38 + 2 + 1 + 33 +PUSHW_1 + -6 +PUSHB_5 + 33 + 31 + 0 + 22 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1022 1101 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 177 0 2 +EndChar + +StartChar: uni04EE +Encoding: 1262 1262 1183 +Width: 1301 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 21 + 21 + 5 + 38 + 1 + 22 + 18 + 22 + 23 + 11 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 980 1059 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 376 329 2 +EndChar + +StartChar: uni04EF +Encoding: 1263 1263 1184 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 24 + 24 + 17 + 38 + 1 + 25 + 13 + 25 + 26 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 200 0 2 +EndChar + +StartChar: uni04F0 +Encoding: 1264 1264 1185 +Width: 1301 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 27 + 27 + 5 + 38 + 2 + 1 + 25 + 23 + 25 + 23 + 11 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 980 1059 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 383 0 2 +EndChar + +StartChar: uni04F1 +Encoding: 1265 1265 1186 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 30 + 30 + 17 + 38 + 2 + 1 + 28 + 11 + 28 + 26 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 200 0 2 +EndChar + +StartChar: uni04F2 +Encoding: 1266 1266 1187 +Width: 1301 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 31 + 31 + 5 + 38 + 2 + 1 + 21 + 104 + 21 + 30 + 11 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 980 1059 N 1 0 0 1 0 0 3 +Refer: 2308 -1 N 1 0 0 1 380 0 2 +EndChar + +StartChar: uni04F3 +Encoding: 1267 1267 1188 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 34 + 34 + 17 + 38 + 2 + 1 + 24 + 110 + 24 + 33 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 671 733 N 1 0 0 1 215 0 2 +EndChar + +StartChar: uni04F4 +Encoding: 1268 1268 1189 +Width: 1365 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 26 + 26 + 5 + 38 + 2 + 1 + 24 + 12 + 24 + 22 + 7 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 984 1063 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 368 0 2 +EndChar + +StartChar: uni04F5 +Encoding: 1269 1269 1190 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 25 + 25 + 17 + 38 + 2 + 1 + 23 + 10 + 23 + 21 + 17 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1016 1095 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 210 0 2 +EndChar + +StartChar: uni04F6 +Encoding: 1270 1270 1191 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 5 + 6 + 3 + 8 + 8 + 6 + 0 + 3 + 11 + 10 + 9 + 2 + 95 + 89 + 9 + 3 + 6 + 8 + 8 + 3 + 95 + 89 + 8 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1071 1410 m 1,0,-1 + 1071 1254 l 1,1,-1 + 359 1254 l 1,2,-1 + 359 160 l 1,3,-1 + 498 160 l 1,4,-1 + 498 -408 l 1,5,-1 + 321 -408 l 1,6,-1 + 321 0 l 1,7,-1 + 168 0 l 1,8,-1 + 168 1410 l 1,9,-1 + 1071 1410 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04F7 +Encoding: 1271 1271 1192 +Width: 747 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 3 + 8 + 5 + 6 + 0 + 6 + 8 + 3 + 10 + 11 + 9 + 2 + 81 + 89 + 9 + 15 + 6 + 8 + 8 + 3 + 81 + 89 + 8 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +687 1082 m 1,0,-1 + 687 951 l 1,1,-1 + 322 951 l 1,2,-1 + 322 131 l 1,3,-1 + 438 131 l 1,4,-1 + 438 -408 l 1,5,-1 + 275 -408 l 1,6,-1 + 275 0 l 1,7,-1 + 142 0 l 1,8,-1 + 142 1082 l 1,9,-1 + 687 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04F8 +Encoding: 1272 1272 1193 +Width: 1813 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 4 + 3 + 31 + 31 + 5 + 38 + 4 + 3 + 29 +PUSHW_1 + -3 +PUSHB_5 + 29 + 27 + 5 + 23 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 988 1067 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 580 0 2 +EndChar + +StartChar: uni04F9 +Encoding: 1273 1273 1194 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 4 + 3 + 31 + 31 + 17 + 38 + 4 + 3 + 29 +PUSHW_1 + -2 +PUSHB_5 + 29 + 27 + 8 + 23 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1020 1099 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 410 0 2 +EndChar + +StartChar: uni04FA +Encoding: 1274 1274 1195 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 16 + 25 + 25 + 1 + 10 + 14 + 14 + 20 + 5 + 3 + 1 + 1 + 12 + 7 + 3 + 27 + 26 + 18 + 23 + 95 + 89 + 18 + 13 + 3 + 4 + 3 + 96 + 89 + 10 + 4 + 4 + 1 + 6 + 6 + 9 + 95 + 89 + 6 + 3 + 1 + 14 + 95 + 89 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +277 0 m 1,0,-1 + 168 0 l 1,1,-1 + 168 659 l 1,2,-1 + -1 659 l 1,3,-1 + -1 806 l 1,4,-1 + 168 806 l 1,5,-1 + 168 1410 l 1,6,-1 + 1071 1410 l 1,7,-1 + 1071 1254 l 1,8,-1 + 359 1254 l 1,9,-1 + 359 806 l 1,10,-1 + 779 806 l 1,11,-1 + 779 659 l 1,12,-1 + 359 659 l 1,13,-1 + 359 155 l 1,14,-1 + 448 155 l 1,15,-1 + 448 -129 l 2,16,17 + 448 -425 448 -425 167 -425 c 0,18,19 + 108 -425 108 -425 35 -409 c 1,20,-1 + 35 -249 l 1,21,22 + 85 -267 85 -267 154 -267 c 0,23,24 + 277 -267 277 -267 277 -119 c 2,25,-1 + 277 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04FB +Encoding: 1275 1275 1196 +Width: 747 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 10 + 14 + 14 + 23 + 23 + 25 + 1 + 18 + 18 + 25 + 8 + 12 + 12 + 3 + 25 + 5 + 25 + 27 + 26 + 11 + 1 + 2 + 1 + 80 + 89 + 8 + 2 + 2 + 25 + 4 + 25 + 12 + 80 + 89 + 25 + 21 + 16 + 21 + 80 + 89 + 16 + 27 + 4 + 7 + 81 + 89 + 4 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +142 514 m 1,0,-1 + 20 514 l 1,1,-1 + 20 646 l 1,2,-1 + 142 646 l 1,3,-1 + 142 1082 l 1,4,-1 + 687 1082 l 1,5,-1 + 687 951 l 1,6,-1 + 322 951 l 1,7,-1 + 322 646 l 1,8,-1 + 525 646 l 1,9,-1 + 525 514 l 1,10,-1 + 322 514 l 1,11,-1 + 322 155 l 1,12,-1 + 405 155 l 1,13,-1 + 405 -129 l 2,14,15 + 405 -425 405 -425 124 -425 c 0,16,17 + 73 -425 73 -425 0 -409 c 1,18,-1 + 0 -249 l 1,19,20 + 49 -267 49 -267 111 -267 c 0,21,22 + 237 -267 237 -267 237 -122 c 2,23,-1 + 237 0 l 1,24,-1 + 142 0 l 1,25,-1 + 142 514 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04FC +Encoding: 1276 1276 1197 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 6 + 24 + 21 + 15 + 18 + 5 + 19 + 22 + 23 + 23 + 11 + 0 + 20 + 19 + 19 + 16 + 17 + 0 + 17 + 28 + 27 + 22 + 3 + 15 + 18 + 24 + 21 + 4 + 16 + 20 + 3 + 3 + 8 + 95 + 89 + 3 + 16 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1355 -163 m 0,0,1 + 1355 -279 1355 -279 1275 -352 c 128,-1,2 + 1195 -425 1195 -425 1067 -425 c 0,3,4 + 1008 -425 1008 -425 935 -409 c 1,5,-1 + 935 -249 l 1,6,7 + 993 -270 993 -270 1054 -270 c 0,8,9 + 1107 -270 1107 -270 1140.5 -240 c 128,-1,10 + 1174 -210 1174 -210 1174 -147 c 0,11,12 + 1174 -118 1174 -118 1158.5 -81.5 c 128,-1,13 + 1143 -45 1143 -45 1100.5 17 c 128,-1,14 + 1058 79 1058 79 689 616 c 1,15,-1 + 257 0 l 1,16,-1 + 46 0 l 1,17,-1 + 582 732 l 1,18,-1 + 87 1409 l 1,19,-1 + 298 1409 l 1,20,-1 + 690 856 l 1,21,-1 + 1071 1409 l 1,22,-1 + 1282 1409 l 1,23,-1 + 800 739 l 1,24,-1 + 1279 62 l 1,25,26 + 1355 -55 1355 -55 1355 -163 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni04FD +Encoding: 1277 1277 1198 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 18 + 15 + 21 + 24 + 6 + 5 + 19 + 22 + 23 + 23 + 11 + 0 + 20 + 19 + 19 + 16 + 17 + 0 + 17 + 28 + 27 + 3 + 8 + 8 + 89 + 3 + 27 + 21 + 24 + 18 + 15 + 4 + 17 + 22 + 19 + 15 + 17 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +SRP0 +MDRP[min,rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1022 -152 m 0,0,1 + 1022 -277 1022 -277 949.5 -351 c 128,-1,2 + 877 -425 877 -425 757 -425 c 0,3,4 + 698 -425 698 -425 625 -409 c 1,5,-1 + 625 -249 l 1,6,7 + 683 -270 683 -270 739 -270 c 0,8,9 + 796 -270 796 -270 825 -237.5 c 128,-1,10 + 854 -205 854 -205 854 -155 c 0,11,12 + 854 -118 854 -118 836 -72.5 c 128,-1,13 + 818 -27 818 -27 763 57.5 c 128,-1,14 + 708 142 708 142 510 444 c 1,15,-1 + 217 0 l 1,16,-1 + 23 0 l 1,17,-1 + 408 556 l 1,18,-1 + 41 1082 l 1,19,-1 + 240 1082 l 1,20,-1 + 510 661 l 1,21,-1 + 778 1082 l 1,22,-1 + 979 1082 l 1,23,-1 + 612 558 l 1,24,-1 + 936 95 l 2,25,26 + 1022 -28 1022 -28 1022 -152 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni04FE +Encoding: 1278 1278 1199 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 1 + 10 + 6 + 14 + 14 + 11 + 12 + 12 + 0 + 17 + 6 + 9 + 8 + 8 + 2 + 3 + 17 + 3 + 19 + 18 + 16 + 5 + 6 + 5 + 95 + 89 + 13 + 1 + 3 + 10 + 8 + 6 + 6 + 3 + 11 + 8 + 3 + 0 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP2 +IP +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1112 0 m 1,0,-1 + 689 616 l 1,1,-1 + 257 0 l 1,2,-1 + 46 0 l 1,3,-1 + 524 657 l 1,4,-1 + 180 657 l 1,5,-1 + 180 809 l 1,6,-1 + 523 809 l 1,7,-1 + 87 1409 l 1,8,-1 + 298 1409 l 1,9,-1 + 690 856 l 1,10,-1 + 1071 1409 l 1,11,-1 + 1282 1409 l 1,12,-1 + 853 809 l 1,13,-1 + 1187 809 l 1,14,-1 + 1187 657 l 1,15,-1 + 861 657 l 1,16,-1 + 1323 0 l 1,17,-1 + 1112 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni04FF +Encoding: 1279 1279 1200 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 10 + 1 + 6 + 14 + 14 + 11 + 12 + 12 + 0 + 17 + 6 + 9 + 8 + 8 + 2 + 3 + 17 + 3 + 19 + 18 + 16 + 5 + 6 + 5 + 80 + 89 + 13 + 1 + 3 + 10 + 8 + 6 + 6 + 3 + 11 + 8 + 15 + 0 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP2 +IP +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +801 0 m 1,0,-1 + 510 444 l 1,1,-1 + 217 0 l 1,2,-1 + 23 0 l 1,3,-1 + 359 486 l 1,4,-1 + 51 486 l 1,5,-1 + 51 632 l 1,6,-1 + 355 632 l 1,7,-1 + 41 1082 l 1,8,-1 + 240 1082 l 1,9,-1 + 510 661 l 1,10,-1 + 778 1082 l 1,11,-1 + 979 1082 l 1,12,-1 + 664 632 l 1,13,-1 + 974 632 l 1,14,-1 + 974 486 l 1,15,-1 + 662 486 l 1,16,-1 + 1002 0 l 1,17,-1 + 801 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0500 +Encoding: 1280 1280 1201 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 12 + 0 + 5 + 15 + 15 + 8 + 0 + 8 + 19 + 20 + 4 + 17 + 95 + 89 + 4 + 4 + 9 + 6 + 9 + 14 + 95 + 89 + 9 + 18 + 6 + 3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +88 424 m 0,0,1 + 88 553 88 553 145.5 652 c 128,-1,2 + 203 751 203 751 313 805.5 c 128,-1,3 + 423 860 423 860 573 860 c 2,4,-1 + 987 860 l 1,5,-1 + 987 1409 l 1,6,-1 + 1178 1409 l 1,7,-1 + 1178 0 l 1,8,-1 + 585 0 l 2,9,10 + 348 0 348 0 218 111 c 128,-1,11 + 88 222 88 222 88 424 c 0,0,1 +280 426 m 0,12,13 + 280 153 280 153 608 153 c 2,14,-1 + 987 153 l 1,15,-1 + 987 709 l 1,16,-1 + 600 709 l 2,17,18 + 280 709 280 709 280 426 c 0,12,13 +EndSplineSet +EndChar + +StartChar: uni0501 +Encoding: 1281 1281 1202 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 71 100 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni0502 +Encoding: 1282 1282 1203 +Width: 1983 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 30 + 33 + 12 + 25 + 25 + 22 + 7 + 7 + 33 + 0 + 18 + 33 + 18 + 40 + 39 + 36 + 27 + 96 + 89 + 36 + 19 + 31 + 31 + 21 + 21 + 9 + 95 + 89 + 12 + 21 + 21 + 15 + 23 + 3 + 15 + 3 + 96 + 89 + 15 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +283 407 m 0,0,1 + 283 274 283 274 366.5 204.5 c 128,-1,2 + 450 135 450 135 603 135 c 0,3,4 + 727 135 727 135 814.5 175.5 c 128,-1,5 + 902 216 902 216 944.5 294 c 128,-1,6 + 987 372 987 372 987 482 c 2,7,-1 + 987 659 l 1,8,-1 + 611 659 l 2,9,10 + 447 659 447 659 365 593.5 c 128,-1,11 + 283 528 283 528 283 407 c 0,0,1 +1053 185 m 1,12,13 + 977 87 977 87 861 43.5 c 128,-1,14 + 745 0 745 0 576 0 c 0,15,16 + 350 0 350 0 220.5 113 c 128,-1,17 + 91 226 91 226 91 413 c 0,18,19 + 91 603 91 603 221.5 708 c 128,-1,20 + 352 813 352 813 588 813 c 2,21,-1 + 987 813 l 1,22,-1 + 987 1409 l 1,23,-1 + 1178 1409 l 1,24,-1 + 1178 440 l 2,25,26 + 1178 125 1178 125 1429 125 c 0,27,28 + 1555 125 1555 125 1611.5 202.5 c 128,-1,29 + 1668 280 1668 280 1668 439 c 2,30,-1 + 1668 840 l 1,31,-1 + 1849 840 l 1,32,-1 + 1849 397 l 2,33,34 + 1849 205 1849 205 1734.5 92.5 c 128,-1,35 + 1620 -20 1620 -20 1430 -20 c 0,36,37 + 1290 -20 1290 -20 1193.5 35.5 c 128,-1,38 + 1097 91 1097 91 1053 185 c 1,12,13 +EndSplineSet +EndChar + +StartChar: uni0503 +Encoding: 1283 1283 1204 +Width: 1795 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 29 + 2 + 7 + 23 + 23 + 20 + 19 + 36 + 30 + 13 + 13 + 36 + 2 + 3 + 43 + 42 + 21 + 0 + 7 + 10 + 19 + 15 + 0 + 0 + 10 + 15 + 15 + 39 + 80 + 89 + 15 + 16 + 10 + 33 + 80 + 89 + 10 + 22 + 5 + 26 + 80 + 89 + 5 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP2 +IP +SRP2 +IP +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1478 634 m 1,0,-1 + 1659 634 l 1,1,-1 + 1659 401 l 2,2,3 + 1659 210 1659 210 1546 95 c 128,-1,4 + 1433 -20 1433 -20 1241 -20 c 0,5,6 + 979 -20 979 -20 884 183 c 1,7,8 + 826 78 826 78 726 29 c 128,-1,9 + 626 -20 626 -20 484 -20 c 0,10,11 + 279 -20 279 -20 182.5 118 c 128,-1,12 + 86 256 86 256 86 536 c 0,13,14 + 86 1102 86 1102 484 1102 c 0,15,16 + 607 1102 607 1102 689 1057 c 128,-1,17 + 771 1012 771 1012 821 914 c 1,18,-1 + 823 914 l 1,19,-1 + 821 1035 l 1,20,-1 + 821 1484 l 1,21,-1 + 1001 1484 l 1,22,-1 + 1001 437 l 2,23,24 + 1001 278 1001 278 1057.5 198.5 c 128,-1,25 + 1114 119 1114 119 1240 119 c 256,26,27 + 1366 119 1366 119 1422 198 c 128,-1,28 + 1478 277 1478 277 1478 436 c 2,29,-1 + 1478 634 l 1,0,-1 +275 542 m 0,30,31 + 275 315 275 315 335 217 c 128,-1,32 + 395 119 395 119 530 119 c 0,33,34 + 683 119 683 119 752 225 c 128,-1,35 + 821 331 821 331 821 554 c 0,36,37 + 821 769 821 769 752 869 c 128,-1,38 + 683 969 683 969 532 969 c 0,39,40 + 396 969 396 969 335.5 868.5 c 128,-1,41 + 275 768 275 768 275 542 c 0,30,31 +EndSplineSet +EndChar + +StartChar: uni0504 +Encoding: 1284 1284 1205 +Width: 1958 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 25 + 12 + 12 + 31 + 3 + 36 + 39 + 39 + 3 + 8 + 19 + 4 + 42 + 43 + 28 + 8 + 7 + 8 + 7 + 96 + 89 + 37 + 37 + 8 + 8 + 0 + 22 + 18 + 18 + 22 + 22 + 15 + 95 + 89 + 22 + 4 + 0 + 34 + 96 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1380 -20 m 0,0,1 + 1177 -20 1177 -20 1066.5 92.5 c 128,-1,2 + 956 205 956 205 956 412 c 0,3,4 + 956 538 956 538 861 596 c 128,-1,5 + 766 654 766 654 549 654 c 2,6,-1 + 478 654 l 1,7,-1 + 478 802 l 1,8,-1 + 549 802 l 2,9,10 + 730 802 730 802 816.5 861.5 c 128,-1,11 + 903 921 903 921 903 1044 c 0,12,13 + 903 1151 903 1151 830.5 1212.5 c 128,-1,14 + 758 1274 758 1274 623 1274 c 0,15,16 + 497 1274 497 1274 411 1215.5 c 128,-1,17 + 325 1157 325 1157 274 1027 c 1,18,-1 + 96 1088 l 1,19,20 + 166 1261 166 1261 298 1345 c 128,-1,21 + 430 1429 430 1429 630 1429 c 0,22,23 + 842 1429 842 1429 968 1329.5 c 128,-1,24 + 1094 1230 1094 1230 1094 1061 c 0,25,26 + 1094 934 1094 934 1022 851 c 128,-1,27 + 950 768 950 768 814 736 c 1,28,29 + 967 714 967 714 1050.5 636 c 128,-1,30 + 1134 558 1134 558 1134 431 c 0,31,32 + 1134 273 1134 273 1195.5 199 c 128,-1,33 + 1257 125 1257 125 1381 125 c 0,34,35 + 1645 125 1645 125 1645 439 c 2,36,-1 + 1645 840 l 1,37,-1 + 1826 840 l 1,38,-1 + 1826 397 l 2,39,40 + 1826 209 1826 209 1701.5 94.5 c 128,-1,41 + 1577 -20 1577 -20 1380 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0505 +Encoding: 1285 1285 1206 +Width: 1670 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 28 + 2 + 2 + 21 + 9 + 33 + 36 + 16 + 5 + 9 + 36 + 4 + 40 + 39 + 24 + 6 + 5 + 6 + 5 + 80 + 89 + 34 + 34 + 6 + 6 + 0 + 18 + 15 + 15 + 18 + 18 + 12 + 80 + 89 + 18 + 16 + 0 + 31 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1103 -20 m 0,0,1 + 734 -20 734 -20 688 311 c 0,2,3 + 674 414 674 414 600.5 456.5 c 128,-1,4 + 527 499 527 499 340 499 c 1,5,-1 + 340 636 l 1,6,7 + 501 636 501 636 577 678 c 128,-1,8 + 653 720 653 720 653 808 c 0,9,10 + 653 882 653 882 603.5 925 c 128,-1,11 + 554 968 554 968 461 968 c 0,12,13 + 372 968 372 968 315.5 931 c 128,-1,14 + 259 894 259 894 247 824 c 1,15,-1 + 85 844 l 1,16,17 + 131 1102 131 1102 462 1102 c 0,18,19 + 630 1102 630 1102 733 1022.5 c 128,-1,20 + 836 943 836 943 836 817 c 0,21,22 + 836 716 836 716 763.5 648 c 128,-1,23 + 691 580 691 580 588 571 c 1,24,-1 + 588 569 l 1,25,26 + 732 554 732 554 793 504.5 c 128,-1,27 + 854 455 854 455 863 358 c 0,28,29 + 873 235 873 235 938 177 c 128,-1,30 + 1003 119 1003 119 1103 119 c 0,31,32 + 1356 119 1356 119 1356 436 c 2,33,-1 + 1356 634 l 1,34,-1 + 1537 634 l 1,35,-1 + 1537 401 l 2,36,37 + 1537 208 1537 208 1419.5 94 c 128,-1,38 + 1302 -20 1302 -20 1103 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0506 +Encoding: 1286 1286 1207 +Width: 1357 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 16 + 17 + 10 + 23 + 23 + 35 + 30 + 33 + 32 + 32 + 30 + 5 + 17 + 4 + 36 + 37 + 26 + 6 + 5 + 6 + 5 + 96 + 89 + 6 + 6 + 20 + 33 + 35 + 35 + 30 + 95 + 89 + 35 + 18 + 16 + 16 + 20 + 20 + 13 + 95 + 89 + 20 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +956 373 m 2,0,1 + 956 479 956 479 919 540 c 128,-1,2 + 882 601 882 601 804.5 627.5 c 128,-1,3 + 727 654 727 654 549 654 c 2,4,-1 + 478 654 l 1,5,-1 + 478 802 l 1,6,-1 + 549 802 l 2,7,8 + 730 802 730 802 816.5 861.5 c 128,-1,9 + 903 921 903 921 903 1044 c 0,10,11 + 903 1151 903 1151 830.5 1212.5 c 128,-1,12 + 758 1274 758 1274 623 1274 c 0,13,14 + 497 1274 497 1274 411 1215.5 c 128,-1,15 + 325 1157 325 1157 274 1027 c 1,16,-1 + 96 1088 l 1,17,18 + 166 1261 166 1261 298 1345 c 128,-1,19 + 430 1429 430 1429 630 1429 c 0,20,21 + 842 1429 842 1429 968 1329.5 c 128,-1,22 + 1094 1230 1094 1230 1094 1061 c 0,23,24 + 1094 934 1094 934 1022 851 c 128,-1,25 + 950 768 950 768 814 736 c 1,26,27 + 984 712 984 712 1059 628.5 c 128,-1,28 + 1134 545 1134 545 1134 399 c 2,29,-1 + 1134 160 l 1,30,-1 + 1287 160 l 1,31,-1 + 1287 -408 l 1,32,-1 + 1107 -408 l 1,33,-1 + 1107 0 l 1,34,-1 + 956 0 l 1,35,-1 + 956 373 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni0507 +Encoding: 1287 1287 1208 +Width: 1043 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 19 + 20 + 13 + 25 + 25 + 5 + 0 + 3 + 2 + 2 + 0 + 9 + 20 + 4 + 32 + 33 + 28 + 10 + 9 + 10 + 9 + 80 + 89 + 10 + 10 + 22 + 5 + 19 + 19 + 22 + 22 + 16 + 80 + 89 + 22 + 16 + 3 + 5 + 5 + 0 + 81 + 89 + 5 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +863 131 m 1,0,-1 + 982 131 l 1,1,-1 + 982 -408 l 1,2,-1 + 819 -408 l 1,3,-1 + 819 0 l 1,4,-1 + 688 0 l 1,5,-1 + 688 293 l 2,6,7 + 688 399 688 399 606.5 449 c 128,-1,8 + 525 499 525 499 340 499 c 1,9,-1 + 340 636 l 1,10,11 + 501 636 501 636 577 678 c 128,-1,12 + 653 720 653 720 653 808 c 0,13,14 + 653 882 653 882 603.5 925 c 128,-1,15 + 554 968 554 968 461 968 c 0,16,17 + 372 968 372 968 315.5 931 c 128,-1,18 + 259 894 259 894 247 824 c 1,19,-1 + 85 844 l 1,20,21 + 131 1102 131 1102 462 1102 c 0,22,23 + 630 1102 630 1102 733 1022.5 c 128,-1,24 + 836 943 836 943 836 817 c 0,25,26 + 836 716 836 716 763.5 648 c 128,-1,27 + 691 580 691 580 588 571 c 1,28,-1 + 588 569 l 1,29,30 + 863 540 863 540 863 320 c 2,31,-1 + 863 131 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0508 +Encoding: 1288 1288 1209 +Width: 1987 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 5 + 21 + 23 + 3 + 29 + 32 + 32 + 3 + 21 + 12 + 4 + 35 + 36 + 30 + 30 + 10 + 21 + 21 + 5 + 95 + 89 + 21 + 3 + 10 + 15 + 95 + 89 + 10 + 19 + 0 + 26 + 96 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1426 -20 m 0,0,1 + 1227 -20 1227 -20 1109 92 c 128,-1,2 + 991 204 991 204 991 397 c 2,3,-1 + 991 1249 l 1,4,-1 + 573 1249 l 1,5,-1 + 524 881 l 2,6,7 + 468 459 468 459 420 291 c 128,-1,8 + 372 123 372 123 301 53.5 c 128,-1,9 + 230 -16 230 -16 104 -16 c 0,10,11 + 46 -16 46 -16 18 -6 c 1,12,-1 + 18 146 l 1,13,14 + 37 139 37 139 74 139 c 0,15,16 + 127 139 127 139 160.5 171.5 c 128,-1,17 + 194 204 194 204 223 279.5 c 128,-1,18 + 252 355 252 355 281 503.5 c 128,-1,19 + 310 652 310 652 339 869.5 c 128,-1,20 + 368 1087 368 1087 410 1409 c 1,21,-1 + 1177 1409 l 1,22,-1 + 1177 439 l 2,23,24 + 1177 281 1177 281 1237 203 c 128,-1,25 + 1297 125 1297 125 1427 125 c 256,26,27 + 1557 125 1557 125 1616.5 203 c 128,-1,28 + 1676 281 1676 281 1676 439 c 2,29,-1 + 1676 840 l 1,30,-1 + 1857 840 l 1,31,-1 + 1857 397 l 2,32,33 + 1857 206 1857 206 1739 93 c 128,-1,34 + 1621 -20 1621 -20 1426 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0509 +Encoding: 1289 1289 1210 +Width: 1863 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 5 + 20 + 22 + 3 + 27 + 30 + 30 + 3 + 20 + 12 + 4 + 33 + 34 + 28 + 28 + 10 + 20 + 20 + 5 + 81 + 89 + 20 + 15 + 10 + 15 + 80 + 89 + 10 + 22 + 0 + 24 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1302 -20 m 0,0,1 + 1110 -20 1110 -20 991 96 c 128,-1,2 + 872 212 872 212 872 401 c 2,3,-1 + 872 951 l 1,4,-1 + 497 951 l 1,5,6 + 438 515 438 515 406 362.5 c 128,-1,7 + 374 210 374 210 337 132 c 128,-1,8 + 300 54 300 54 245.5 17 c 128,-1,9 + 191 -20 191 -20 105 -20 c 0,10,11 + 55 -20 55 -20 11 -7 c 1,12,-1 + 11 122 l 1,13,14 + 36 113 36 113 79 113 c 0,15,16 + 134 113 134 113 167.5 168 c 128,-1,17 + 201 223 201 223 228.5 358 c 128,-1,18 + 256 493 256 493 291 757 c 2,19,-1 + 335 1082 l 1,20,-1 + 1053 1082 l 1,21,-1 + 1053 436 l 2,22,23 + 1053 119 1053 119 1301 119 c 0,24,25 + 1427 119 1427 119 1487.5 198 c 128,-1,26 + 1548 277 1548 277 1548 436 c 2,27,-1 + 1548 634 l 1,28,-1 + 1729 634 l 1,29,-1 + 1729 401 l 2,30,31 + 1729 211 1729 211 1611 95.5 c 128,-1,32 + 1493 -20 1493 -20 1302 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni050A +Encoding: 1290 1290 1211 +Width: 2118 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 10 + 6 + 6 + 7 + 14 + 11 + 3 + 20 + 23 + 23 + 3 + 7 + 3 + 26 + 27 + 21 + 21 + 10 + 10 + 5 + 95 + 89 + 10 + 10 + 7 + 12 + 8 + 3 + 7 + 18 + 0 + 17 + 96 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1556 -20 m 0,0,1 + 1357 -20 1357 -20 1239 92 c 128,-1,2 + 1121 204 1121 204 1121 397 c 2,3,-1 + 1121 653 l 1,4,-1 + 359 653 l 1,5,-1 + 359 0 l 1,6,-1 + 168 0 l 1,7,-1 + 168 1409 l 1,8,-1 + 359 1409 l 1,9,-1 + 359 813 l 1,10,-1 + 1121 813 l 1,11,-1 + 1121 1409 l 1,12,-1 + 1312 1409 l 1,13,-1 + 1312 439 l 2,14,15 + 1312 281 1312 281 1369.5 203 c 128,-1,16 + 1427 125 1427 125 1557 125 c 256,17,18 + 1687 125 1687 125 1746.5 203 c 128,-1,19 + 1806 281 1806 281 1806 439 c 2,20,-1 + 1806 840 l 1,21,-1 + 1987 840 l 1,22,-1 + 1987 397 l 2,23,24 + 1987 206 1987 206 1869 93 c 128,-1,25 + 1751 -20 1751 -20 1556 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni050B +Encoding: 1291 1291 1212 +Width: 1799 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 1 + 22 + 22 + 23 + 5 + 2 + 19 + 10 + 13 + 13 + 19 + 23 + 3 + 25 + 26 + 1 + 21 + 81 + 89 + 1 + 11 + 1 + 11 + 23 + 3 + 24 + 15 + 23 + 21 + 16 + 7 + 80 + 89 + 16 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +322 1082 m 1,0,-1 + 322 624 l 1,1,-1 + 809 624 l 1,2,-1 + 809 1082 l 1,3,-1 + 989 1082 l 1,4,-1 + 989 436 l 2,5,6 + 989 119 989 119 1238 119 c 0,7,8 + 1364 119 1364 119 1424 198 c 128,-1,9 + 1484 277 1484 277 1484 436 c 2,10,-1 + 1484 634 l 1,11,-1 + 1665 634 l 1,12,-1 + 1665 401 l 2,13,14 + 1665 209 1665 209 1547.5 94.5 c 128,-1,15 + 1430 -20 1430 -20 1239 -20 c 0,16,17 + 1042 -20 1042 -20 925.5 93.5 c 128,-1,18 + 809 207 809 207 809 401 c 2,19,-1 + 809 493 l 1,20,-1 + 322 493 l 1,21,-1 + 322 0 l 1,22,-1 + 142 0 l 1,23,-1 + 142 1082 l 1,24,-1 + 322 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni050C +Encoding: 1292 1292 1213 +Width: 1593 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 42 71 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni050D +Encoding: 1293 1293 1214 +Width: 1144 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 548 610 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni050E +Encoding: 1294 1294 1215 +Width: 1529 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 10 + 3 + 16 + 19 + 19 + 8 + 3 + 6 + 4 + 22 + 23 + 17 + 17 + 0 + 6 + 9 + 5 + 6 + 5 + 95 + 89 + 6 + 3 + 0 + 13 + 96 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +965 -20 m 0,0,1 + 766 -20 766 -20 648 92 c 128,-1,2 + 530 204 530 204 530 397 c 2,3,-1 + 530 1253 l 1,4,-1 + 46 1253 l 1,5,-1 + 46 1409 l 1,6,-1 + 1204 1409 l 1,7,-1 + 1204 1253 l 1,8,-1 + 720 1253 l 1,9,-1 + 720 439 l 2,10,11 + 720 281 720 281 778 203 c 128,-1,12 + 836 125 836 125 966 125 c 256,13,14 + 1096 125 1096 125 1155.5 203 c 128,-1,15 + 1215 281 1215 281 1215 439 c 2,16,-1 + 1215 840 l 1,17,-1 + 1396 840 l 1,18,-1 + 1396 397 l 2,19,20 + 1396 206 1396 206 1278 93 c 128,-1,21 + 1160 -20 1160 -20 965 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni050F +Encoding: 1295 1295 1216 +Width: 1363 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 4 + 19 + 2 + 10 + 10 + 13 + 13 + 19 + 0 + 3 + 22 + 23 + 11 + 11 + 16 + 0 + 16 + 7 + 80 + 89 + 16 + 22 + 3 + 21 + 0 + 21 + 81 + 89 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +35 1082 m 1,0,-1 + 903 1082 l 1,1,-1 + 903 951 l 1,2,-1 + 559 951 l 1,3,-1 + 559 436 l 2,4,5 + 559 277 559 277 617.5 198 c 128,-1,6 + 676 119 676 119 802 119 c 256,7,8 + 928 119 928 119 988 198 c 128,-1,9 + 1048 277 1048 277 1048 436 c 2,10,-1 + 1048 634 l 1,11,-1 + 1229 634 l 1,12,-1 + 1229 401 l 2,13,14 + 1229 209 1229 209 1111.5 94.5 c 128,-1,15 + 994 -20 994 -20 803 -20 c 0,16,17 + 613 -20 613 -20 496 95 c 128,-1,18 + 379 210 379 210 379 401 c 2,19,-1 + 379 951 l 1,20,-1 + 35 951 l 1,21,-1 + 35 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0510 +Encoding: 1296 1296 1217 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 6 + 26 + 8 + 15 + 14 + 14 + 35 + 36 + 21 + 8 + 8 + 30 + 3 + 36 + 3 + 40 + 39 + 6 + 24 + 27 + 24 + 27 + 96 + 89 + 24 + 24 + 0 + 11 + 11 + 18 + 95 + 89 + 15 + 15 + 11 + 4 + 35 + 35 + 0 + 0 + 33 + 95 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +603 -20 m 0,0,1 + 364 -20 364 -20 223 99.5 c 128,-1,2 + 82 219 82 219 82 413 c 0,3,4 + 82 542 82 542 165.5 627.5 c 128,-1,5 + 249 713 249 713 404 736 c 1,6,7 + 124 803 124 803 124 1051 c 0,8,9 + 124 1221 124 1221 255.5 1325 c 128,-1,10 + 387 1429 387 1429 598 1429 c 0,11,12 + 794 1429 794 1429 922.5 1347 c 128,-1,13 + 1051 1265 1051 1265 1122 1088 c 1,14,-1 + 944 1027 l 1,15,16 + 892 1160 892 1160 810 1217 c 128,-1,17 + 728 1274 728 1274 605 1274 c 0,18,19 + 469 1274 469 1274 392 1212.5 c 128,-1,20 + 315 1151 315 1151 315 1044 c 0,21,22 + 315 921 315 921 401.5 861.5 c 128,-1,23 + 488 802 488 802 669 802 c 2,24,-1 + 740 802 l 1,25,-1 + 740 654 l 1,26,-1 + 669 654 l 2,27,28 + 467 654 467 654 371 595 c 128,-1,29 + 275 536 275 536 275 403 c 0,30,31 + 275 276 275 276 365.5 204.5 c 128,-1,32 + 456 133 456 133 610 133 c 0,33,34 + 869 133 869 133 986 405 c 1,35,-1 + 1151 328 l 1,36,37 + 1062 140 1062 140 931.5 60 c 128,-1,38 + 801 -20 801 -20 603 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0511 +Encoding: 1297 1297 1218 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 47 + 7 + 6 + 26 + 6 + 10 + 16 + 15 + 15 + 34 + 35 + 22 + 10 + 10 + 29 + 3 + 35 + 3 + 39 + 38 + 6 + 25 + 26 + 25 + 26 + 80 + 89 + 25 + 25 + 0 + 13 + 13 + 19 + 80 + 89 + 16 + 16 + 13 + 16 + 34 + 34 + 0 + 0 + 32 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +477 -20 m 0,0,1 + 286 -20 286 -20 179.5 65.5 c 128,-1,2 + 73 151 73 151 73 301 c 0,3,4 + 73 409 73 409 148 482.5 c 128,-1,5 + 223 556 223 556 347 569 c 1,6,-1 + 347 571 l 1,7,8 + 240 580 240 580 169.5 646.5 c 128,-1,9 + 99 713 99 713 99 812 c 0,10,11 + 99 941 99 941 203.5 1021.5 c 128,-1,12 + 308 1102 308 1102 473 1102 c 0,13,14 + 804 1102 804 1102 850 844 c 1,15,-1 + 688 824 l 1,16,17 + 676 894 676 894 620 931 c 128,-1,18 + 564 968 564 968 474 968 c 0,19,20 + 381 968 381 968 331.5 925 c 128,-1,21 + 282 882 282 882 282 808 c 0,22,23 + 282 721 282 721 357 678.5 c 128,-1,24 + 432 636 432 636 595 636 c 1,25,-1 + 595 499 l 1,26,27 + 428 499 428 499 344.5 448 c 128,-1,28 + 261 397 261 397 261 300 c 0,29,30 + 261 216 261 216 316.5 165 c 128,-1,31 + 372 114 372 114 473 114 c 0,32,33 + 674 114 674 114 727 278 c 1,34,-1 + 886 234 l 1,35,36 + 841 105 841 105 742 42.5 c 128,-1,37 + 643 -20 643 -20 477 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0512 +Encoding: 1298 1298 1219 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 0 + 16 + 28 + 18 + 18 + 23 + 16 + 7 + 4 + 30 + 31 + 16 + 0 + 95 + 89 + 16 + 3 + 21 + 26 + 95 + 89 + 21 + 5 + 5 + 10 + 95 + 89 + 5 + 8 + 95 + 89 + 5 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +573 1249 m 1,0,-1 + 524 881 l 2,1,2 + 468 459 468 459 420 291 c 128,-1,3 + 372 123 372 123 301 53.5 c 128,-1,4 + 230 -16 230 -16 104 -16 c 0,5,6 + 46 -16 46 -16 18 -6 c 1,7,-1 + 18 146 l 1,8,9 + 37 139 37 139 74 139 c 0,10,11 + 127 139 127 139 160.5 171.5 c 128,-1,12 + 194 204 194 204 223 279.5 c 128,-1,13 + 252 355 252 355 281 503.5 c 128,-1,14 + 310 652 310 652 339 869.5 c 128,-1,15 + 368 1087 368 1087 410 1409 c 1,16,-1 + 1177 1409 l 1,17,-1 + 1177 -129 l 2,18,19 + 1177 -274 1177 -274 1100.5 -349.5 c 128,-1,20 + 1024 -425 1024 -425 881 -425 c 0,21,22 + 822 -425 822 -425 758 -411 c 1,23,-1 + 758 -251 l 1,24,25 + 802 -267 802 -267 868 -267 c 0,26,27 + 991 -267 991 -267 991 -119 c 2,28,-1 + 991 1249 l 1,29,-1 + 573 1249 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0513 +Encoding: 1299 1299 1220 +Width: 1195 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 12 + 27 + 10 + 0 + 0 + 4 + 27 + 19 + 4 + 29 + 30 + 27 + 12 + 81 + 89 + 27 + 15 + 17 + 22 + 80 + 89 + 17 + 22 + 2 + 7 + 80 + 89 + 2 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1053 -129 m 2,0,1 + 1053 -425 1053 -425 772 -425 c 0,2,3 + 711 -425 711 -425 647 -411 c 1,4,-1 + 647 -255 l 1,5,6 + 691 -271 691 -271 759 -271 c 0,7,8 + 814 -271 814 -271 843 -237.5 c 128,-1,9 + 872 -204 872 -204 872 -123 c 2,10,-1 + 872 951 l 1,11,-1 + 497 951 l 1,12,13 + 438 515 438 515 406 362.5 c 128,-1,14 + 374 210 374 210 337 132 c 128,-1,15 + 300 54 300 54 245.5 17 c 128,-1,16 + 191 -20 191 -20 105 -20 c 0,17,18 + 55 -20 55 -20 11 -7 c 1,19,-1 + 11 122 l 1,20,21 + 36 113 36 113 79 113 c 0,22,23 + 134 113 134 113 167.5 168 c 128,-1,24 + 201 223 201 223 228.5 358 c 128,-1,25 + 256 493 256 493 291 757 c 2,26,-1 + 335 1082 l 1,27,-1 + 1053 1082 l 1,28,-1 + 1053 -129 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni051A +Encoding: 1306 1306 1221 +Width: 1593 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 52 81 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni051B +Encoding: 1307 1307 1222 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 84 113 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni051C +Encoding: 1308 1308 1223 +Width: 1933 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 58 87 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni051D +Encoding: 1309 1309 1224 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 90 119 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni0591 +Encoding: 1425 1425 1225 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 19 + 17 + 5 + 14 + 14 + 10 + 223 + 1 + 1 + 0 + 1 + 64 + 1 + 80 + 1 + 96 + 1 + 4 + 1 + 16 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +DELTAP1 +SHP[rp2] +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 220 20 mark 0 +AnchorPoint: "Anchor-11" -200 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +190 -385 m 1,0,-1 + 88 -385 l 1,1,-1 + 88 -338 l 2,2,3 + 88 -284 88 -284 69 -261 c 128,-1,4 + 50 -238 50 -238 2 -238 c 0,5,6 + -49 -238 -49 -238 -68.5 -261 c 128,-1,7 + -88 -284 -88 -284 -88 -338 c 2,8,-1 + -88 -385 l 1,9,-1 + -188 -385 l 1,10,-1 + -188 -336 l 2,11,12 + -188 -248 -188 -248 -154.5 -203 c 128,-1,13 + -121 -158 -121 -158 -51 -147 c 1,14,-1 + -51 -53 l 1,15,-1 + 51 -53 l 1,16,-1 + 51 -147 l 1,17,18 + 123 -158 123 -158 156.5 -203.5 c 128,-1,19 + 190 -249 190 -249 190 -336 c 2,20,-1 + 190 -385 l 1,0,-1 +EndSplineSet +Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 +EndChar + +StartChar: uni0592 +Encoding: 1426 1426 1226 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 22 + 21 + 9 + 9 + 15 + 15 + 3 + 1 + 175 + 3 + 239 + 3 + 255 + 3 + 3 + 3 + 64 + 9 + 13 + 72 + 3 + 27 + 33 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +CALL +DELTAP1 +DELTAP2 +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 480 1350 mark 0 +AnchorPoint: "Anchor-3" 230 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +43 1647 m 0,0,1 + 43 1679 43 1679 66 1701.5 c 128,-1,2 + 89 1724 89 1724 121 1724 c 0,3,4 + 155 1724 155 1724 178 1701.5 c 128,-1,5 + 201 1679 201 1679 201 1647 c 0,6,7 + 201 1613 201 1613 178 1590 c 128,-1,8 + 155 1567 155 1567 121 1567 c 0,9,10 + 89 1567 89 1567 66 1590 c 128,-1,11 + 43 1613 43 1613 43 1647 c 0,0,1 +272 1647 m 0,12,13 + 272 1679 272 1679 295 1701.5 c 128,-1,14 + 318 1724 318 1724 350 1724 c 0,15,16 + 384 1724 384 1724 407 1701.5 c 128,-1,17 + 430 1679 430 1679 430 1647 c 0,18,19 + 430 1613 430 1613 407 1590 c 128,-1,20 + 384 1567 384 1567 350 1567 c 0,21,22 + 318 1567 318 1567 295 1590 c 128,-1,23 + 272 1613 272 1613 272 1647 c 0,12,13 +158 1438 m 0,24,25 + 158 1472 158 1472 181 1495 c 128,-1,26 + 204 1518 204 1518 236 1518 c 0,27,28 + 270 1518 270 1518 292.5 1495 c 128,-1,29 + 315 1472 315 1472 315 1438 c 0,30,31 + 315 1406 315 1406 292.5 1382 c 128,-1,32 + 270 1358 270 1358 236 1358 c 0,33,34 + 204 1358 204 1358 181 1382 c 128,-1,35 + 158 1406 158 1406 158 1438 c 0,24,25 +EndSplineSet +EndChar + +StartChar: uni0593 +Encoding: 1427 1427 1227 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 0 + 6 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 200 1350 mark 0 +AnchorPoint: "Anchor-3" 0 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +147 1788 m 1,0,-1 + -8 1702 l 1,1,-1 + 147 1616 l 1,2,-1 + -8 1530 l 1,3,-1 + 147 1444 l 1,4,-1 + -29 1358 l 1,5,-1 + -147 1358 l 1,6,-1 + 8 1444 l 1,7,-1 + -147 1530 l 1,8,-1 + 8 1616 l 1,9,-1 + -147 1702 l 1,10,-1 + 8 1788 l 1,11,-1 + 147 1788 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0594 +Encoding: 1428 1428 1228 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 19 + 9 + 15 + 3 + 1 + 175 + 3 + 239 + 3 + 255 + 3 + 3 + 3 + 64 + 9 + 13 + 72 + 3 + 15 + 21 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +CALL +DELTAP1 +DELTAP2 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 300 1350 mark 0 +AnchorPoint: "Anchor-3" 170 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +96 1645 m 0,0,1 + 96 1679 96 1679 119 1701.5 c 128,-1,2 + 142 1724 142 1724 174 1724 c 0,3,4 + 208 1724 208 1724 232 1701.5 c 128,-1,5 + 256 1679 256 1679 256 1645 c 0,6,7 + 256 1613 256 1613 232.5 1590 c 128,-1,8 + 209 1567 209 1567 174 1567 c 0,9,10 + 142 1567 142 1567 119 1590 c 128,-1,11 + 96 1613 96 1613 96 1645 c 0,0,1 +94 1438 m 256,12,13 + 94 1472 94 1472 118 1495 c 128,-1,14 + 142 1518 142 1518 174 1518 c 256,15,16 + 206 1518 206 1518 230 1494 c 128,-1,17 + 254 1470 254 1470 254 1438 c 256,18,19 + 254 1406 254 1406 230.5 1382 c 128,-1,20 + 207 1358 207 1358 174 1358 c 0,21,22 + 140 1358 140 1358 117 1381 c 128,-1,23 + 94 1404 94 1404 94 1438 c 256,12,13 +EndSplineSet +EndChar + +StartChar: uni0595 +Encoding: 1429 1429 1229 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 22 + 25 + 3 + 24 + 9 + 15 + 3 + 1 + 175 + 3 + 239 + 3 + 255 + 3 + 3 + 3 + 64 + 9 + 13 + 72 + 3 + 15 + 21 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +CALL +DELTAP1 +DELTAP2 +SHP[rp2] +MDRP[rnd,grey] +SRP0 +MDRP[rnd,grey] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 480 1350 mark 0 +AnchorPoint: "Anchor-3" 260 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +295 1645 m 0,0,1 + 295 1679 295 1679 318 1701.5 c 128,-1,2 + 341 1724 341 1724 375 1724 c 0,3,4 + 407 1724 407 1724 431 1701.5 c 128,-1,5 + 455 1679 455 1679 455 1645 c 0,6,7 + 455 1613 455 1613 431 1590 c 128,-1,8 + 407 1567 407 1567 375 1567 c 0,9,10 + 341 1567 341 1567 318 1590 c 128,-1,11 + 295 1613 295 1613 295 1645 c 0,0,1 +295 1438 m 0,12,13 + 295 1470 295 1470 318 1494 c 128,-1,14 + 341 1518 341 1518 373 1518 c 0,15,16 + 406 1518 406 1518 429.5 1494.5 c 128,-1,17 + 453 1471 453 1471 453 1438 c 0,18,19 + 453 1404 453 1404 430 1381 c 128,-1,20 + 407 1358 407 1358 373 1358 c 0,21,22 + 341 1358 341 1358 318 1381 c 128,-1,23 + 295 1404 295 1404 295 1438 c 0,12,13 +96 1358 m 1,24,-1 + 96 1724 l 1,25,-1 + 207 1724 l 1,26,-1 + 207 1358 l 1,27,-1 + 96 1358 l 1,24,-1 +EndSplineSet +EndChar + +StartChar: uni0596 +Encoding: 1430 1430 1230 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 0 + 4 + 16 + 4 + 2 + 4 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 140 0 mark 0 +AnchorPoint: "Anchor-11" -200 20 mark 0 +AnchorPoint: "Anchor-5" 45 0 mark 0 +LayerCount: 2 +Fore +SplineSet +-68 -82 m 1,0,1 + -68 -174 -68 -174 -10 -226.5 c 128,-1,2 + 48 -279 48 -279 150 -279 c 1,3,-1 + 150 -385 l 1,4,5 + -6 -385 -6 -385 -92 -305 c 128,-1,6 + -178 -225 -178 -225 -178 -82 c 1,7,-1 + -68 -82 l 1,0,1 +EndSplineSet +Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 +EndChar + +StartChar: uni0597 +Encoding: 1431 1431 1231 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 3 + 1 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 200 1350 mark 0 +AnchorPoint: "Anchor-3" 0 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +152 1536 m 1,0,-1 + 0 1368 l 1,1,-1 + -152 1536 l 1,2,-1 + 0 1704 l 1,3,-1 + 152 1536 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni0598 +Encoding: 1432 1432 1232 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 13 + 17 + 28 + 0 + 11 + 28 + 11 + 28 + 11 + 15 + 23 + 1 + 23 + 6 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 300 1350 mark 0 +AnchorPoint: "Anchor-3" 0 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +-156 1593 m 0,0,1 + -184 1593 -184 1593 -202.5 1574 c 128,-1,2 + -221 1555 -221 1555 -221 1518 c 0,3,4 + -221 1454 -221 1454 -164 1432 c 1,5,-1 + -190 1360 l 1,6,7 + -299 1398 -299 1398 -299 1518 c 0,8,9 + -299 1583 -299 1583 -258 1624 c 128,-1,10 + -217 1665 -217 1665 -152 1665 c 0,11,12 + -105 1665 -105 1665 -64.5 1638.5 c 128,-1,13 + -24 1612 -24 1612 29 1538 c 0,14,15 + 69 1481 69 1481 96.5 1457.5 c 128,-1,16 + 124 1434 124 1434 156 1434 c 0,17,18 + 184 1434 184 1434 202.5 1453 c 128,-1,19 + 221 1472 221 1472 221 1509 c 0,20,21 + 221 1573 221 1573 164 1595 c 1,22,-1 + 190 1667 l 1,23,24 + 299 1626 299 1626 299 1509 c 0,25,26 + 299 1444 299 1444 258.5 1403 c 128,-1,27 + 218 1362 218 1362 156 1362 c 0,28,29 + 106 1362 106 1362 64.5 1389 c 128,-1,30 + 23 1416 23 1416 -29 1489 c 0,31,32 + -73 1551 -73 1551 -97.5 1572 c 128,-1,33 + -122 1593 -122 1593 -156 1593 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni0599 +Encoding: 1433 1433 1233 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 15 + 4 + 31 + 4 + 2 + 4 + 0 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-7" 0 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +-111 1358 m 1,0,1 + -111 1450 -111 1450 -167.5 1502 c 128,-1,2 + -224 1554 -224 1554 -328 1554 c 1,3,-1 + -328 1663 l 1,4,5 + -174 1663 -174 1663 -87 1583.5 c 128,-1,6 + 0 1504 0 1504 0 1358 c 1,7,-1 + -111 1358 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni059A +Encoding: 1434 1434 1234 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 4 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-9" 0 40 mark 0 +LayerCount: 2 +Fore +SplineSet +322 -385 m 1,0,-1 + 178 -385 l 1,1,-1 + 0 -205 l 1,2,-1 + 178 -25 l 1,3,-1 + 322 -25 l 1,4,-1 + 143 -205 l 1,5,-1 + 322 -385 l 1,0,-1 +EndSplineSet +Position2: "Single Positioning lookup 23 subtable" dx=320 dy=0 dh=0 dv=0 +EndChar + +StartChar: uni059B +Encoding: 1435 1435 1235 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 9 + 7 + 7 + 4 + 64 + 3 + 1 + 3 + 17 + 11 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 180 20 mark 0 +AnchorPoint: "Anchor-11" -200 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +150 -82 m 1,0,1 + 150 -223 150 -223 65 -304 c 128,-1,2 + -20 -385 -20 -385 -178 -385 c 1,3,-1 + -178 -279 l 1,4,5 + -77 -279 -77 -279 -18 -226.5 c 128,-1,6 + 41 -174 41 -174 41 -82 c 1,7,-1 + 150 -82 l 1,0,1 +-215 -94 m 0,8,9 + -215 -62 -215 -62 -192 -38 c 128,-1,10 + -169 -14 -169 -14 -137 -14 c 0,11,12 + -104 -14 -104 -14 -80.5 -37.5 c 128,-1,13 + -57 -61 -57 -61 -57 -94 c 0,14,15 + -57 -128 -57 -128 -80 -151 c 128,-1,16 + -103 -174 -103 -174 -137 -174 c 0,17,18 + -169 -174 -169 -174 -192 -151 c 128,-1,19 + -215 -128 -215 -128 -215 -94 c 0,8,9 +EndSplineSet +EndChar + +StartChar: uni059C +Encoding: 1436 1436 1236 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_8 + 4 + 15 + 3 + 31 + 3 + 2 + 3 + 0 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 360 1350 mark 0 +AnchorPoint: "Anchor-3" 160 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +0 1358 m 1,0,1 + 0 1503 0 1503 87 1583 c 128,-1,2 + 174 1663 174 1663 328 1663 c 1,3,-1 + 328 1554 l 1,4,5 + 226 1554 226 1554 168.5 1503.5 c 128,-1,6 + 111 1453 111 1453 111 1358 c 1,7,-1 + 0 1358 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni059D +Encoding: 1437 1437 1237 +Width: 0 +GlyphClass: 4 +Flags: W +AnchorPoint: "Anchor-8" 0 1350 mark 0 +LayerCount: 2 +Fore +Refer: 1236 1436 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni059E +Encoding: 1438 1438 1238 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 12 + 12 + 11 + 11 + 4 + 15 + 3 + 31 + 3 + 2 + 3 + 8 + 0 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 300 1350 mark 0 +AnchorPoint: "Anchor-3" -100 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +0 1358 m 1,0,1 + 0 1503 0 1503 87 1583 c 128,-1,2 + 174 1663 174 1663 328 1663 c 1,3,-1 + 328 1554 l 1,4,5 + 226 1554 226 1554 168.5 1503.5 c 128,-1,6 + 111 1453 111 1453 111 1358 c 1,7,-1 + 0 1358 l 1,0,1 +-328 1358 m 1,8,9 + -328 1501 -328 1501 -242 1582 c 128,-1,10 + -156 1663 -156 1663 0 1663 c 1,11,-1 + 0 1554 l 1,12,13 + -102 1554 -102 1554 -159.5 1503.5 c 128,-1,14 + -217 1453 -217 1453 -217 1358 c 1,15,-1 + -328 1358 l 1,8,9 +EndSplineSet +EndChar + +StartChar: uni059F +Encoding: 1439 1439 1239 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 16 + 25 + 3 + 3 + 47 + 47 + 41 + 1 + 41 + 19 + 53 + 53 + 9 + 80 + 35 + 1 + 35 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +MDRP[rnd,grey] +DELTAP1 +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 500 1350 mark 0 +AnchorPoint: "Anchor-3" 0 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +90 1618 m 0,0,1 + 90 1707 90 1707 153 1770 c 128,-1,2 + 216 1833 216 1833 305 1833 c 0,3,4 + 396 1833 396 1833 459 1770.5 c 128,-1,5 + 522 1708 522 1708 522 1618 c 0,6,7 + 522 1529 522 1529 460 1466 c 128,-1,8 + 398 1403 398 1403 305 1403 c 0,9,10 + 246 1403 246 1403 201 1427 c 1,11,-1 + 113 1339 l 1,12,-1 + 31 1423 l 1,13,-1 + 119 1511 l 1,14,15 + 90 1558 90 1558 90 1618 c 0,0,1 +211 1618 m 256,16,17 + 211 1578 211 1578 238.5 1550 c 128,-1,18 + 266 1522 266 1522 305 1522 c 0,19,20 + 345 1522 345 1522 374 1550.5 c 128,-1,21 + 403 1579 403 1579 403 1618 c 256,22,23 + 403 1657 403 1657 373 1685.5 c 128,-1,24 + 343 1714 343 1714 305 1714 c 0,25,26 + 269 1714 269 1714 240 1686 c 128,-1,27 + 211 1658 211 1658 211 1618 c 256,16,17 +-90 1618 m 0,28,29 + -90 1558 -90 1558 -119 1511 c 1,30,-1 + -31 1423 l 1,31,-1 + -113 1339 l 1,32,-1 + -201 1427 l 1,33,34 + -246 1403 -246 1403 -305 1403 c 0,35,36 + -397 1403 -397 1403 -459.5 1465.5 c 128,-1,37 + -522 1528 -522 1528 -522 1618 c 0,38,39 + -522 1707 -522 1707 -459 1770 c 128,-1,40 + -396 1833 -396 1833 -305 1833 c 0,41,42 + -216 1833 -216 1833 -153 1770 c 128,-1,43 + -90 1707 -90 1707 -90 1618 c 0,28,29 +-211 1618 m 256,44,45 + -211 1658 -211 1658 -240 1686 c 128,-1,46 + -269 1714 -269 1714 -305 1714 c 0,47,48 + -343 1714 -343 1714 -373 1685 c 128,-1,49 + -403 1656 -403 1656 -403 1618 c 0,50,51 + -403 1579 -403 1579 -374 1550.5 c 128,-1,52 + -345 1522 -345 1522 -305 1522 c 0,53,54 + -267 1522 -267 1522 -239 1550 c 128,-1,55 + -211 1578 -211 1578 -211 1618 c 256,44,45 +EndSplineSet +EndChar + +StartChar: uni05A0 +Encoding: 1440 1440 1240 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 10 + 25 + 47 + 3 + 1 + 3 + 19 + 80 + 9 + 1 + 9 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +MDRP[rnd,grey] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-8" 0 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +61 1618 m 0,0,1 + 61 1707 61 1707 124 1770 c 128,-1,2 + 187 1833 187 1833 276 1833 c 0,3,4 + 364 1833 364 1833 428 1771 c 128,-1,5 + 492 1709 492 1709 492 1618 c 0,6,7 + 492 1528 492 1528 429 1465.5 c 128,-1,8 + 366 1403 366 1403 276 1403 c 0,9,10 + 219 1403 219 1403 170 1427 c 1,11,-1 + 84 1339 l 1,12,-1 + 0 1423 l 1,13,-1 + 88 1511 l 1,14,15 + 61 1557 61 1557 61 1618 c 0,0,1 +180 1618 m 256,16,17 + 180 1578 180 1578 208 1550 c 128,-1,18 + 236 1522 236 1522 276 1522 c 0,19,20 + 317 1522 317 1522 345 1550 c 128,-1,21 + 373 1578 373 1578 373 1618 c 256,22,23 + 373 1658 373 1658 344 1686 c 128,-1,24 + 315 1714 315 1714 276 1714 c 0,25,26 + 238 1714 238 1714 209 1686 c 128,-1,27 + 180 1658 180 1658 180 1618 c 256,16,17 +EndSplineSet +EndChar + +StartChar: uni05A1 +Encoding: 1441 1441 1241 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 9 + 13 + 4 + 4 + 9 + 15 + 0 + 1 + 0 + 8 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 200 1350 mark 0 +AnchorPoint: "Anchor-3" 0 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +168 1690 m 1,0,-1 + 168 1640 l 2,1,2 + 168 1552 168 1552 124.5 1501 c 128,-1,3 + 81 1450 81 1450 -6 1450 c 0,4,5 + -40 1450 -40 1450 -63 1460 c 1,6,-1 + -63 1358 l 1,7,-1 + -164 1358 l 1,8,-1 + -164 1690 l 1,9,-1 + -63 1690 l 1,10,-1 + -63 1552 l 1,11,12 + -53 1540 -53 1540 -20 1540 c 0,13,14 + 28 1540 28 1540 47 1562.5 c 128,-1,15 + 66 1585 66 1585 66 1640 c 2,16,-1 + 66 1690 l 1,17,-1 + 168 1690 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni05A2 +Encoding: 1442 1442 1242 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 19 + 15 + 3 + 6 + 6 + 223 + 5 + 1 + 0 + 5 + 64 + 5 + 80 + 5 + 96 + 5 + 4 + 5 + 19 + 11 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +DELTAP1 +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 220 20 mark 0 +AnchorPoint: "Anchor-11" -200 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +190 -102 m 2,0,1 + 190 -192 190 -192 155.5 -237 c 128,-1,2 + 121 -282 121 -282 51 -293 c 1,3,-1 + 51 -385 l 1,4,-1 + -51 -385 l 1,5,-1 + -51 -293 l 1,6,7 + -118 -283 -118 -283 -153 -238 c 128,-1,8 + -188 -193 -188 -193 -188 -102 c 2,9,-1 + -188 -53 l 1,10,-1 + -88 -53 l 1,11,-1 + -88 -102 l 2,12,13 + -88 -155 -88 -155 -68.5 -179 c 128,-1,14 + -49 -203 -49 -203 2 -203 c 0,15,16 + 50 -203 50 -203 69 -179 c 128,-1,17 + 88 -155 88 -155 88 -102 c 2,18,-1 + 88 -53 l 1,19,-1 + 190 -53 l 1,20,-1 + 190 -102 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni05A3 +Encoding: 1443 1443 1243 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_6 + 3 + 0 + 2 + 1 + 2 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 180 20 mark 0 +AnchorPoint: "Anchor-11" -200 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +143 -35 m 1,0,-1 + 143 -348 l 1,1,-1 + -184 -348 l 1,2,-1 + -184 -242 l 1,3,-1 + 35 -242 l 1,4,-1 + 35 -35 l 1,5,-1 + 143 -35 l 1,0,-1 +EndSplineSet +Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 +EndChar + +StartChar: uni05A4 +Encoding: 1444 1444 1244 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 4 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 160 20 mark 0 +AnchorPoint: "Anchor-11" -200 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +162 -385 m 1,0,-1 + 18 -385 l 1,1,-1 + -162 -205 l 1,2,-1 + 18 -25 l 1,3,-1 + 162 -25 l 1,4,-1 + -18 -205 l 1,5,-1 + 162 -385 l 1,0,-1 +EndSplineSet +PairPos2: "Pairwise Positioning (kerning) lookup 25 subtable" uni05A5 dx=200 dy=0 dh=0 dv=0 dx=-200 dy=0 dh=0 dv=0 +Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 +EndChar + +StartChar: uni05A5 +Encoding: 1445 1445 1245 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_8 + 4 + 0 + 3 + 16 + 3 + 2 + 3 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 200 0 mark 0 +AnchorPoint: "Anchor-11" -200 20 mark 0 +AnchorPoint: "Anchor-5" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +178 -82 m 1,0,1 + 178 -225 178 -225 92.5 -305 c 128,-1,2 + 7 -385 7 -385 -150 -385 c 1,3,-1 + -150 -279 l 1,4,5 + -48 -279 -48 -279 10 -226 c 128,-1,6 + 68 -173 68 -173 68 -82 c 1,7,-1 + 178 -82 l 1,0,1 +EndSplineSet +Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 +EndChar + +StartChar: uni05A6 +Encoding: 1446 1446 1246 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 12 + 12 + 11 + 11 + 4 + 0 + 3 + 16 + 3 + 2 + 3 + 15 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 360 0 mark 0 +AnchorPoint: "Anchor-11" -330 20 mark 0 +AnchorPoint: "Anchor-5" 27 0 mark 0 +LayerCount: 2 +Fore +SplineSet +0 -82 m 1,0,1 + 0 -225 0 -225 -85.5 -305 c 128,-1,2 + -171 -385 -171 -385 -328 -385 c 1,3,-1 + -328 -279 l 1,4,5 + -225 -279 -225 -279 -168 -225.5 c 128,-1,6 + -111 -172 -111 -172 -111 -82 c 1,7,-1 + 0 -82 l 1,0,1 +328 -82 m 1,8,9 + 328 -223 328 -223 243 -304 c 128,-1,10 + 158 -385 158 -385 0 -385 c 1,11,-1 + 0 -279 l 1,12,13 + 103 -279 103 -279 160 -225.5 c 128,-1,14 + 217 -172 217 -172 217 -82 c 1,15,-1 + 328 -82 l 1,8,9 +EndSplineSet +EndChar + +StartChar: uni05A7 +Encoding: 1447 1447 1247 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_5 + 64 + 1 + 1 + 1 + 5 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 180 20 mark 0 +AnchorPoint: "Anchor-11" -200 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +156 -334 m 1,0,-1 + -129 -385 l 1,1,-1 + -129 -305 l 1,2,-1 + 12 -283 l 1,3,-1 + -158 -59 l 1,4,-1 + 129 -8 l 1,5,-1 + 129 -84 l 1,6,-1 + -14 -109 l 1,7,-1 + 156 -334 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni05A8 +Encoding: 1448 1448 1248 +Width: 0 +GlyphClass: 4 +Flags: W +AnchorPoint: "Anchor-12" 200 1350 mark 0 +AnchorPoint: "Anchor-3" 0 1350 mark 0 +LayerCount: 2 +Fore +Refer: 1233 1433 N 1 0 0 1 164 0 2 +EndChar + +StartChar: uni05A9 +Encoding: 1449 1449 1249 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 10 + 19 + 47 + 13 + 1 + 13 + 25 + 80 + 7 + 1 + 7 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +MDRP[rnd,grey] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-7" 0 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +-61 1618 m 0,0,1 + -61 1557 -61 1557 -88 1511 c 1,2,-1 + 0 1423 l 1,3,-1 + -84 1339 l 1,4,-1 + -170 1427 l 1,5,6 + -220 1403 -220 1403 -276 1403 c 0,7,8 + -365 1403 -365 1403 -428.5 1465 c 128,-1,9 + -492 1527 -492 1527 -492 1618 c 0,10,11 + -492 1708 -492 1708 -428 1770.5 c 128,-1,12 + -364 1833 -364 1833 -276 1833 c 0,13,14 + -189 1833 -189 1833 -125 1770 c 128,-1,15 + -61 1707 -61 1707 -61 1618 c 0,0,1 +-180 1618 m 256,16,17 + -180 1658 -180 1658 -209 1686 c 128,-1,18 + -238 1714 -238 1714 -276 1714 c 0,19,20 + -315 1714 -315 1714 -344 1685.5 c 128,-1,21 + -373 1657 -373 1657 -373 1618 c 0,22,23 + -373 1578 -373 1578 -345 1550 c 128,-1,24 + -317 1522 -317 1522 -276 1522 c 0,25,26 + -236 1522 -236 1522 -208 1550 c 128,-1,27 + -180 1578 -180 1578 -180 1618 c 256,16,17 +EndSplineSet +EndChar + +StartChar: uni05AA +Encoding: 1450 1450 1250 +Width: 0 +GlyphClass: 4 +Flags: W +AnchorPoint: "Anchor-13" 220 20 mark 0 +AnchorPoint: "Anchor-11" -200 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +Refer: 1242 1442 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni05AB +Encoding: 1451 1451 1251 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 4 + 1 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 200 1350 mark 0 +AnchorPoint: "Anchor-3" 20 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +162 1358 m 1,0,-1 + 18 1358 l 1,1,-1 + -162 1538 l 1,2,-1 + 18 1718 l 1,3,-1 + 162 1718 l 1,4,-1 + -18 1538 l 1,5,-1 + 162 1358 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni05AC +Encoding: 1452 1452 1252 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_6 + 15 + 0 + 1 + 0 + 3 + 2 +PUSHW_1 + 318 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 200 1350 mark 0 +AnchorPoint: "Anchor-3" 0 1350 mark 0 +LayerCount: 2 +Fore +SplineSet +143 1671 m 1,0,-1 + 143 1358 l 1,1,-1 + -184 1358 l 1,2,-1 + -184 1464 l 1,3,-1 + 35 1464 l 1,4,-1 + 35 1671 l 1,5,-1 + 143 1671 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni05AD +Encoding: 1453 1453 1253 +Width: 0 +GlyphClass: 4 +Flags: W +AnchorPoint: "Anchor-9" 0 10 mark 0 +LayerCount: 2 +Fore +Refer: 1230 1430 N 1 0 0 1 178 0 2 +Position2: "Single Positioning lookup 23 subtable" dx=320 dy=0 dh=0 dv=0 +EndChar + +StartChar: uni05AE +Encoding: 1454 1454 1254 +Width: 0 +GlyphClass: 4 +Flags: W +AnchorPoint: "Anchor-7" 0 1350 mark 0 +LayerCount: 2 +Fore +Refer: 1232 1432 N 1 0 0 1 -299 0 2 +EndChar + +StartChar: uni05AF +Encoding: 1455 1455 1255 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_7 + 21 + 47 + 3 + 1 + 3 + 15 + 9 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-12" 240 1390 mark 0 +AnchorPoint: "Anchor-3" 0 1390 mark 0 +LayerCount: 2 +Fore +SplineSet +-215 1618 m 256,0,1 + -215 1707 -215 1707 -152 1770 c 128,-1,2 + -89 1833 -89 1833 0 1833 c 256,3,4 + 89 1833 89 1833 152 1770 c 128,-1,5 + 215 1707 215 1707 215 1618 c 256,6,7 + 215 1529 215 1529 153 1466 c 128,-1,8 + 91 1403 91 1403 0 1403 c 256,9,10 + -91 1403 -91 1403 -153 1466 c 128,-1,11 + -215 1529 -215 1529 -215 1618 c 256,0,1 +-96 1618 m 256,12,13 + -96 1578 -96 1578 -68 1550 c 128,-1,14 + -40 1522 -40 1522 0 1522 c 256,15,16 + 40 1522 40 1522 68 1550 c 128,-1,17 + 96 1578 96 1578 96 1618 c 256,18,19 + 96 1658 96 1658 67 1686 c 128,-1,20 + 38 1714 38 1714 0 1714 c 256,21,22 + -38 1714 -38 1714 -67 1686 c 128,-1,23 + -96 1658 -96 1658 -96 1618 c 256,12,13 +EndSplineSet +EndChar + +StartChar: sheva +Encoding: 1456 1456 1256 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 12 + 15 + 0 + 21 + 1 + 64 + 21 + 160 + 21 + 2 + 21 + 9 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +DELTAP2 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 160 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +-80 -98 m 0,0,1 + -80 -65 -80 -65 -56.5 -41.5 c 128,-1,2 + -33 -18 -33 -18 0 -18 c 0,3,4 + 34 -18 34 -18 57 -42 c 128,-1,5 + 80 -66 80 -66 80 -98 c 256,6,7 + 80 -130 80 -130 56 -153 c 128,-1,8 + 32 -176 32 -176 0 -176 c 256,9,10 + -32 -176 -32 -176 -56 -153 c 128,-1,11 + -80 -130 -80 -130 -80 -98 c 0,0,1 +-80 -305 m 256,12,13 + -80 -271 -80 -271 -56 -248 c 128,-1,14 + -32 -225 -32 -225 0 -225 c 256,15,16 + 32 -225 32 -225 56 -249 c 128,-1,17 + 80 -273 80 -273 80 -305 c 256,18,19 + 80 -337 80 -337 56.5 -361 c 128,-1,20 + 33 -385 33 -385 0 -385 c 0,21,22 + -34 -385 -34 -385 -57 -362 c 128,-1,23 + -80 -339 -80 -339 -80 -305 c 256,12,13 +EndSplineSet +EndChar + +StartChar: hatafsegol +Encoding: 1457 1457 1257 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 20 + 51 + 27 + 27 + 57 + 0 + 33 + 1 + 64 + 33 + 160 + 33 + 2 + 33 + 45 + 21 + 9 + 9 + 39 + 15 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +DELTAP2 +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 320 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +-301 -96 m 0,0,1 + -301 -64 -301 -64 -278 -41 c 128,-1,2 + -255 -18 -255 -18 -223 -18 c 0,3,4 + -189 -18 -189 -18 -166 -41 c 128,-1,5 + -143 -64 -143 -64 -143 -96 c 0,6,7 + -143 -130 -143 -130 -166 -153 c 128,-1,8 + -189 -176 -189 -176 -223 -176 c 0,9,10 + -255 -176 -255 -176 -278 -153 c 128,-1,11 + -301 -130 -301 -130 -301 -96 c 0,0,1 +-72 -96 m 0,12,13 + -72 -64 -72 -64 -49 -41 c 128,-1,14 + -26 -18 -26 -18 6 -18 c 0,15,16 + 40 -18 40 -18 63 -41 c 128,-1,17 + 86 -64 86 -64 86 -96 c 0,18,19 + 86 -130 86 -130 63 -153 c 128,-1,20 + 40 -176 40 -176 6 -176 c 0,21,22 + -26 -176 -26 -176 -49 -153 c 128,-1,23 + -72 -130 -72 -130 -72 -96 c 0,12,13 +-186 -305 m 0,24,25 + -186 -271 -186 -271 -163.5 -248 c 128,-1,26 + -141 -225 -141 -225 -109 -225 c 0,27,28 + -74 -225 -74 -225 -51.5 -248 c 128,-1,29 + -29 -271 -29 -271 -29 -305 c 0,30,31 + -29 -337 -29 -337 -51.5 -361 c 128,-1,32 + -74 -385 -74 -385 -109 -385 c 0,33,34 + -141 -385 -141 -385 -163.5 -361 c 128,-1,35 + -186 -337 -186 -337 -186 -305 c 0,24,25 +143 -98 m 0,36,37 + 143 -64 143 -64 166 -41 c 128,-1,38 + 189 -18 189 -18 221 -18 c 0,39,40 + 255 -18 255 -18 278 -41 c 128,-1,41 + 301 -64 301 -64 301 -98 c 0,42,43 + 301 -130 301 -130 278 -153 c 128,-1,44 + 255 -176 255 -176 221 -176 c 0,45,46 + 189 -176 189 -176 166 -153 c 128,-1,47 + 143 -130 143 -130 143 -98 c 0,36,37 +141 -305 m 256,48,49 + 141 -271 141 -271 165 -248 c 128,-1,50 + 189 -225 189 -225 221 -225 c 256,51,52 + 253 -225 253 -225 277 -249 c 128,-1,53 + 301 -273 301 -273 301 -305 c 256,54,55 + 301 -337 301 -337 277.5 -361 c 128,-1,56 + 254 -385 254 -385 221 -385 c 0,57,58 + 187 -385 187 -385 164 -362 c 128,-1,59 + 141 -339 141 -339 141 -305 c 256,48,49 +EndSplineSet +EndChar + +StartChar: hatafpatah +Encoding: 1458 1458 1258 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 15 + 0 + 1 + 1 + 19 + 0 + 25 + 1 + 64 + 25 + 160 + 25 + 2 + 25 + 13 + 7 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +DELTAP2 +SHP[rp2] +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 300 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +-270 -162 m 1,0,-1 + -270 -53 l 1,1,-1 + 57 -53 l 1,2,-1 + 57 -162 l 1,3,-1 + -270 -162 l 1,0,-1 +113 -98 m 0,4,5 + 113 -64 113 -64 135.5 -41 c 128,-1,6 + 158 -18 158 -18 193 -18 c 0,7,8 + 225 -18 225 -18 248.5 -41 c 128,-1,9 + 272 -64 272 -64 272 -98 c 0,10,11 + 272 -130 272 -130 248.5 -153 c 128,-1,12 + 225 -176 225 -176 193 -176 c 0,13,14 + 158 -176 158 -176 135.5 -153 c 128,-1,15 + 113 -130 113 -130 113 -98 c 0,4,5 +113 -305 m 0,16,17 + 113 -273 113 -273 135.5 -249 c 128,-1,18 + 158 -225 158 -225 190 -225 c 0,19,20 + 225 -225 225 -225 247.5 -249 c 128,-1,21 + 270 -273 270 -273 270 -305 c 0,22,23 + 270 -339 270 -339 247.5 -362 c 128,-1,24 + 225 -385 225 -385 190 -385 c 0,25,26 + 158 -385 158 -385 135.5 -362 c 128,-1,27 + 113 -339 113 -339 113 -305 c 0,16,17 +EndSplineSet +EndChar + +StartChar: hatafqamats +Encoding: 1459 1459 1259 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 2 + 2 + 3 + 3 + 23 + 0 + 29 + 1 + 64 + 29 + 160 + 29 + 2 + 29 + 17 + 11 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +DELTAP2 +SHP[rp2] +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 300 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +-160 -276 m 1,0,-1 + -160 -162 l 1,1,-1 + -270 -162 l 1,2,-1 + -270 -53 l 1,3,-1 + 57 -53 l 1,4,-1 + 57 -162 l 1,5,-1 + -49 -162 l 1,6,-1 + -49 -276 l 1,7,-1 + -160 -276 l 1,0,-1 +113 -98 m 0,8,9 + 113 -64 113 -64 135.5 -41 c 128,-1,10 + 158 -18 158 -18 193 -18 c 0,11,12 + 225 -18 225 -18 248.5 -41 c 128,-1,13 + 272 -64 272 -64 272 -98 c 0,14,15 + 272 -130 272 -130 248.5 -153 c 128,-1,16 + 225 -176 225 -176 193 -176 c 0,17,18 + 158 -176 158 -176 135.5 -153 c 128,-1,19 + 113 -130 113 -130 113 -98 c 0,8,9 +113 -305 m 0,20,21 + 113 -273 113 -273 135.5 -249 c 128,-1,22 + 158 -225 158 -225 190 -225 c 0,23,24 + 225 -225 225 -225 247.5 -249 c 128,-1,25 + 270 -273 270 -273 270 -305 c 0,26,27 + 270 -339 270 -339 247.5 -362 c 128,-1,28 + 225 -385 225 -385 190 -385 c 0,29,30 + 158 -385 158 -385 135.5 -362 c 128,-1,31 + 113 -339 113 -339 113 -305 c 0,20,21 +EndSplineSet +EndChar + +StartChar: hiriq +Encoding: 1460 1460 1260 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 9 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 140 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +-80 -270 m 0,0,1 + -80 -237 -80 -237 -56.5 -213.5 c 128,-1,2 + -33 -190 -33 -190 0 -190 c 0,3,4 + 34 -190 34 -190 57 -214 c 128,-1,5 + 80 -238 80 -238 80 -270 c 256,6,7 + 80 -302 80 -302 56 -325 c 128,-1,8 + 32 -348 32 -348 0 -348 c 256,9,10 + -32 -348 -32 -348 -56 -325 c 128,-1,11 + -80 -302 -80 -302 -80 -270 c 0,0,1 +EndSplineSet +EndChar + +StartChar: tsere +Encoding: 1461 1461 1261 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_5 + 21 + 9 + 9 + 15 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 240 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +-195 -268 m 256,0,1 + -195 -234 -195 -234 -171 -211 c 128,-1,2 + -147 -188 -147 -188 -115 -188 c 256,3,4 + -83 -188 -83 -188 -59 -212 c 128,-1,5 + -35 -236 -35 -236 -35 -268 c 256,6,7 + -35 -300 -35 -300 -58.5 -324 c 128,-1,8 + -82 -348 -82 -348 -115 -348 c 0,9,10 + -149 -348 -149 -348 -172 -325 c 128,-1,11 + -195 -302 -195 -302 -195 -268 c 256,0,1 +37 -268 m 0,12,13 + 37 -236 37 -236 60 -212 c 128,-1,14 + 83 -188 83 -188 115 -188 c 0,15,16 + 148 -188 148 -188 171.5 -211.5 c 128,-1,17 + 195 -235 195 -235 195 -268 c 0,18,19 + 195 -302 195 -302 172 -325 c 128,-1,20 + 149 -348 149 -348 115 -348 c 0,21,22 + 83 -348 83 -348 60 -325 c 128,-1,23 + 37 -302 37 -302 37 -268 c 0,12,13 +EndSplineSet +EndChar + +StartChar: segol +Encoding: 1462 1462 1262 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 15 + 27 + 0 + 33 + 1 + 64 + 33 + 160 + 33 + 2 + 33 + 21 + 9 + 9 + 15 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +DELTAP2 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 240 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +-195 -98 m 0,0,1 + -195 -64 -195 -64 -172 -41 c 128,-1,2 + -149 -18 -149 -18 -115 -18 c 256,3,4 + -81 -18 -81 -18 -58 -42 c 128,-1,5 + -35 -66 -35 -66 -35 -98 c 256,6,7 + -35 -130 -35 -130 -59 -154 c 128,-1,8 + -83 -178 -83 -178 -115 -178 c 256,9,10 + -147 -178 -147 -178 -171 -154.5 c 128,-1,11 + -195 -131 -195 -131 -195 -98 c 0,0,1 +37 -98 m 0,12,13 + 37 -64 37 -64 60 -41 c 128,-1,14 + 83 -18 83 -18 115 -18 c 0,15,16 + 149 -18 149 -18 172 -41 c 128,-1,17 + 195 -64 195 -64 195 -98 c 256,18,19 + 195 -132 195 -132 171 -155 c 128,-1,20 + 147 -178 147 -178 115 -178 c 256,21,22 + 83 -178 83 -178 60 -154 c 128,-1,23 + 37 -130 37 -130 37 -98 c 0,12,13 +-80 -305 m 256,24,25 + -80 -273 -80 -273 -56 -250 c 128,-1,26 + -32 -227 -32 -227 0 -227 c 256,27,28 + 32 -227 32 -227 56 -250 c 128,-1,29 + 80 -273 80 -273 80 -305 c 256,30,31 + 80 -337 80 -337 56.5 -361 c 128,-1,32 + 33 -385 33 -385 0 -385 c 0,33,34 + -34 -385 -34 -385 -57 -361 c 128,-1,35 + -80 -337 -80 -337 -80 -305 c 256,24,25 +EndSplineSet +EndChar + +StartChar: patah +Encoding: 1463 1463 1263 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_5 + 3 + 7 + 1 + 1 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 200 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +-164 -125 m 1,0,-1 + 164 -125 l 1,1,-1 + 164 -231 l 1,2,-1 + -164 -231 l 1,3,-1 + -164 -125 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: qamats +Encoding: 1464 1464 1264 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_1 + 2 +SVTCA[y-axis] +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 200 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +-53 -348 m 1,0,-1 + -53 -231 l 1,1,-1 + -164 -231 l 1,2,-1 + -164 -125 l 1,3,-1 + 164 -125 l 1,4,-1 + 164 -231 l 1,5,-1 + 57 -231 l 1,6,-1 + 57 -348 l 1,7,-1 + -53 -348 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: holam +Encoding: 1465 1465 1265 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 3 + 9 +PUSHW_1 + 319 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-0" 0 1430 mark 0 +LayerCount: 2 +Fore +SplineSet +-80 1526 m 256,0,1 + -80 1558 -80 1558 -56 1582 c 128,-1,2 + -32 1606 -32 1606 0 1606 c 256,3,4 + 32 1606 32 1606 56 1582 c 128,-1,5 + 80 1558 80 1558 80 1526 c 256,6,7 + 80 1494 80 1494 56.5 1470 c 128,-1,8 + 33 1446 33 1446 0 1446 c 0,9,10 + -34 1446 -34 1446 -57 1470 c 128,-1,11 + -80 1494 -80 1494 -80 1526 c 256,0,1 +EndSplineSet +Position2: "Single Positioning lookup 18 subtable" dx=25 dy=0 dh=10 dv=0 +EndChar + +StartChar: uni05BA +Encoding: 1466 1466 1266 +Width: 0 +GlyphClass: 4 +Flags: W +LayerCount: 2 +Fore +Refer: 1265 1465 N 1 0 0 1 0 0 2 +EndChar + +StartChar: qubuts +Encoding: 1467 1467 1267 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 13 + 21 + 15 + 15 + 27 + 27 + 64 + 33 + 160 + 33 + 2 + 33 + 9 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 260 20 mark 0 +AnchorPoint: "Anchor-11" -240 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +-238 -96 m 0,0,1 + -238 -62 -238 -62 -215 -39 c 128,-1,2 + -192 -16 -192 -16 -160 -16 c 0,3,4 + -126 -16 -126 -16 -103 -39 c 128,-1,5 + -80 -62 -80 -62 -80 -96 c 0,6,7 + -80 -128 -80 -128 -103 -151 c 128,-1,8 + -126 -174 -126 -174 -160 -174 c 0,9,10 + -192 -174 -192 -174 -215 -151 c 128,-1,11 + -238 -128 -238 -128 -238 -96 c 0,0,1 +-80 -201 m 256,12,13 + -80 -169 -80 -169 -56 -145 c 128,-1,14 + -32 -121 -32 -121 0 -121 c 256,15,16 + 32 -121 32 -121 56 -145 c 128,-1,17 + 80 -169 80 -169 80 -201 c 256,18,19 + 80 -233 80 -233 56.5 -257 c 128,-1,20 + 33 -281 33 -281 0 -281 c 0,21,22 + -34 -281 -34 -281 -57 -257 c 128,-1,23 + -80 -233 -80 -233 -80 -201 c 256,12,13 +80 -305 m 256,24,25 + 80 -271 80 -271 104 -248 c 128,-1,26 + 128 -225 128 -225 160 -225 c 256,27,28 + 192 -225 192 -225 216 -249 c 128,-1,29 + 240 -273 240 -273 240 -305 c 256,30,31 + 240 -337 240 -337 216.5 -361 c 128,-1,32 + 193 -385 193 -385 160 -385 c 0,33,34 + 126 -385 126 -385 103 -362 c 128,-1,35 + 80 -339 80 -339 80 -305 c 256,24,25 +EndSplineSet +EndChar + +StartChar: dagesh +Encoding: 1468 1468 1268 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 3 + 9 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-2" 0 700 mark 0 +LayerCount: 2 +Fore +SplineSet +-80 702 m 0,0,1 + -80 737 -80 737 -56 759.5 c 128,-1,2 + -32 782 -32 782 0 782 c 256,3,4 + 32 782 32 782 56 759.5 c 128,-1,5 + 80 737 80 737 80 702 c 0,6,7 + 80 670 80 670 56 647.5 c 128,-1,8 + 32 625 32 625 0 625 c 256,9,10 + -32 625 -32 625 -56 647.5 c 128,-1,11 + -80 670 -80 670 -80 702 c 0,0,1 +EndSplineSet +EndChar + +StartChar: meteg +Encoding: 1469 1469 1269 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 0 + 2 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 120 0 mark 0 +AnchorPoint: "Anchor-11" -240 0 mark 0 +AnchorPoint: "Anchor-5" 0 0 mark 0 +LayerCount: 2 +Fore +SplineSet +-55 -348 m 1,0,-1 + -55 -125 l 1,1,-1 + 55 -125 l 1,2,-1 + 55 -348 l 1,3,-1 + -55 -348 l 1,0,-1 +EndSplineSet +Position2: "Single Positioning lookup 24 subtable" dx=-400 dy=0 dh=0 dv=0 +EndChar + +StartChar: maqaf +Encoding: 1470 1470 1270 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 5 + 0 + 4 + 0 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +133 1356 m 1,0,-1 + 705 1356 l 1,1,-1 + 705 1145 l 1,2,-1 + 133 1145 l 1,3,-1 + 133 1356 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: rafe +Encoding: 1471 1471 1271 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_5 + 0 + 8 + 3 + 1 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-10" 0 1430 mark 0 +AnchorPoint: "Anchor-3" 0 1430 mark 0 +LayerCount: 2 +Fore +SplineSet +-164 1579 m 1,0,-1 + 164 1579 l 1,1,-1 + 164 1473 l 1,2,-1 + -164 1473 l 1,3,-1 + -164 1579 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: paseq +Encoding: 1472 1472 1272 +Width: 1153 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 3 + 5 + 4 + 2 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +500 -416 m 1,0,-1 + 500 2007 l 1,1,-1 + 653 2007 l 1,2,-1 + 653 -416 l 1,3,-1 + 500 -416 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: shindot +Encoding: 1473 1473 1273 +Width: 0 +GlyphClass: 4 +Flags: W +AnchorPoint: "Anchor-1" 0 1430 mark 0 +LayerCount: 2 +Fore +Refer: 1265 1465 N 1 0 0 1 0 0 2 +EndChar + +StartChar: sindot +Encoding: 1474 1474 1274 +Width: 0 +GlyphClass: 4 +Flags: W +LayerCount: 2 +Fore +Refer: 1265 1465 N 1 0 0 1 0 0 2 +EndChar + +StartChar: sofpasuq +Encoding: 1475 1475 1275 +Width: 569 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 10 + 0 + 4 + 4 + 3 + 7 + 7 + 9 + 8 + 1 + 0 +PUSHW_1 + 323 +PUSHB_5 + 89 + 1 + 4 + 4 + 5 +PUSHW_4 + 323 + 89 + 4 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +186 874 m 1,0,-1 + 186 1081 l 1,1,-1 + 383 1081 l 1,2,-1 + 383 874 l 1,3,-1 + 186 874 l 1,0,-1 +186 0 m 1,4,-1 + 186 207 l 1,5,-1 + 383 207 l 1,6,-1 + 383 0 l 1,7,-1 + 186 0 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: upper_dot +Encoding: 1476 1476 1276 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 3 + 9 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-4" 0 1550 mark 0 +LayerCount: 2 +Fore +SplineSet +-80 1638 m 0,0,1 + -80 1670 -80 1670 -56 1694 c 128,-1,2 + -32 1718 -32 1718 0 1718 c 256,3,4 + 32 1718 32 1718 56 1694 c 128,-1,5 + 80 1670 80 1670 80 1638 c 0,6,7 + 80 1604 80 1604 56 1581.5 c 128,-1,8 + 32 1559 32 1559 0 1559 c 256,9,10 + -32 1559 -32 1559 -56 1581.5 c 128,-1,11 + -80 1604 -80 1604 -80 1638 c 0,0,1 +EndSplineSet +EndChar + +StartChar: lowerdot +Encoding: 1477 1477 1277 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_2 + 9 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-6" 0 50 mark 0 +LayerCount: 2 +Fore +SplineSet +-80 -328 m 0,0,1 + -80 -295 -80 -295 -56.5 -271.5 c 128,-1,2 + -33 -248 -33 -248 0 -248 c 0,3,4 + 34 -248 34 -248 57 -272 c 128,-1,5 + 80 -296 80 -296 80 -328 c 256,6,7 + 80 -360 80 -360 56 -383 c 128,-1,8 + 32 -406 32 -406 0 -406 c 256,9,10 + -32 -406 -32 -406 -56 -383 c 128,-1,11 + -80 -360 -80 -360 -80 -328 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni05C6 +Encoding: 1478 1478 1278 +Width: 776 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 6 + 14 + 15 + 14 + 17 + 12 + 15 + 15 + 16 + 4 + 7 +NPUSHW + 10 + 320 + 89 + 4 + 313 + 15 + 12 + 320 + 89 + 15 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +154 752 m 2,0,1 + 154 936 154 936 187.5 1037 c 128,-1,2 + 221 1138 221 1138 295 1182.5 c 128,-1,3 + 369 1227 369 1227 528 1227 c 2,4,-1 + 657 1227 l 1,5,-1 + 657 1057 l 1,6,-1 + 522 1057 l 2,7,8 + 449 1057 449 1057 410 1028 c 128,-1,9 + 371 999 371 999 354.5 933.5 c 128,-1,10 + 338 868 338 868 338 700 c 2,11,-1 + 338 170 l 1,12,-1 + 715 170 l 1,13,-1 + 715 0 l 1,14,-1 + 154 0 l 1,15,-1 + 154 752 l 2,0,1 +EndSplineSet +EndChar + +StartChar: qamatsqatan +Encoding: 1479 1479 1279 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_1 + 7 +SVTCA[y-axis] +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 540 0 mark 0 +AnchorPoint: "Anchor-11" 0 0 mark 0 +AnchorPoint: "Anchor-5" 253 0 mark 0 +LayerCount: 2 +Fore +SplineSet +485 -205 m 1,0,-1 + 305 -205 l 1,1,-1 + 324 -365 l 1,2,-1 + 324 -385 l 1,3,-1 + 215 -385 l 1,4,-1 + 215 -365 l 1,5,-1 + 231 -205 l 1,6,-1 + 53 -205 l 1,7,-1 + 53 -98 l 1,8,-1 + 485 -98 l 1,9,-1 + 485 -205 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: alef +Encoding: 1488 1488 1280 +Width: 1286 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 14 + 25 + 13 + 0 + 11 + 2 + 12 + 1 + 5 + 6 + 13 + 6 + 12 + 1 + 19 + 0 + 20 + 12 + 27 + 20 + 26 + 11 + 2 + 14 + 25 + 2 + 25 + 13 + 20 +PUSHW_4 + 314 + 5 + 0 + 313 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1120 1430 basechar 0 +AnchorPoint: "Anchor-9" 1060 0 basechar 0 +AnchorPoint: "Anchor-8" 1080 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 671 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +125 1227 m 1,0,-1 + 352 1227 l 1,1,-1 + 803 606 l 1,2,3 + 953 746 953 746 981 1004 c 2,4,-1 + 1004 1227 l 1,5,-1 + 1194 1227 l 1,6,-1 + 1171 1008 l 2,7,8 + 1161 901 1161 901 1131 815 c 128,-1,9 + 1101 729 1101 729 1051.5 654 c 128,-1,10 + 1002 579 1002 579 899 477 c 1,11,-1 + 1260 0 l 1,12,-1 + 1026 0 l 1,13,-1 + 498 717 l 1,14,15 + 455 696 455 696 428.5 664.5 c 128,-1,16 + 402 633 402 633 383.5 582 c 128,-1,17 + 365 531 365 531 340 403 c 2,18,-1 + 260 0 l 1,19,-1 + 66 0 l 1,20,-1 + 150 399 l 2,21,22 + 186 570 186 570 216 641 c 128,-1,23 + 246 712 246 712 291.5 756 c 128,-1,24 + 337 800 337 800 414 831 c 1,25,-1 + 125 1227 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: bet +Encoding: 1489 1489 1281 +Width: 1225 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 8 + 11 + 0 + 9 + 6 + 6 + 17 + 9 + 16 + 1 + 0 +PUSHW_4 + 320 + 89 + 1 + 313 +PUSHB_4 + 6 + 10 + 9 + 10 +PUSHW_4 + 320 + 89 + 9 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 560 0 basechar 0 +AnchorPoint: "Anchor-12" 500 1350 basechar 0 +AnchorPoint: "Anchor-11" 550 0 basechar 0 +AnchorPoint: "Anchor-10" 940 1430 basechar 0 +AnchorPoint: "Anchor-9" 840 0 basechar 0 +AnchorPoint: "Anchor-8" 900 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 560 0 basechar 0 +AnchorPoint: "Anchor-5" 560 0 basechar 0 +AnchorPoint: "Anchor-4" 500 1700 basechar 0 +AnchorPoint: "Anchor-3" 500 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +129 1057 m 1,0,-1 + 129 1227 l 1,1,-1 + 506 1227 l 2,2,3 + 782 1227 782 1227 901 1109 c 128,-1,4 + 1020 991 1020 991 1020 719 c 2,5,-1 + 1020 170 l 1,6,-1 + 1153 170 l 1,7,-1 + 1153 0 l 1,8,-1 + 82 0 l 1,9,-1 + 82 170 l 1,10,-1 + 836 170 l 1,11,-1 + 836 721 l 2,12,13 + 836 905 836 905 761.5 981 c 128,-1,14 + 687 1057 687 1057 504 1057 c 2,15,-1 + 129 1057 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: gimel +Encoding: 1490 1490 1282 +Width: 866 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 8 + 20 + 7 + 20 + 7 + 7 + 6 + 6 + 28 + 25 + 13 + 14 + 8 + 20 + 20 + 26 + 7 + 14 +PUSHW_7 + 314 + 26 + 25 + 320 + 89 + 26 + 313 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SDPVTL[orthog] +MDRP[grey] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 450 0 basechar 0 +AnchorPoint: "Anchor-12" 360 1350 basechar 0 +AnchorPoint: "Anchor-11" 450 0 basechar 0 +AnchorPoint: "Anchor-10" 640 1430 basechar 0 +AnchorPoint: "Anchor-9" 580 0 basechar 0 +AnchorPoint: "Anchor-8" 500 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 450 0 basechar 0 +AnchorPoint: "Anchor-5" 450 0 basechar 0 +AnchorPoint: "Anchor-4" 360 1700 basechar 0 +AnchorPoint: "Anchor-3" 360 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +260 1227 m 2,0,1 + 357 1227 357 1227 409.5 1211.5 c 128,-1,2 + 462 1196 462 1196 496 1161.5 c 128,-1,3 + 530 1127 530 1127 558.5 1057 c 128,-1,4 + 587 987 587 987 639 762 c 2,5,-1 + 813 0 l 1,6,-1 + 631 0 l 1,7,-1 + 518 504 l 1,8,9 + 434 483 434 483 395.5 453 c 128,-1,10 + 357 423 357 423 332 364 c 128,-1,11 + 307 305 307 305 285 180 c 2,12,-1 + 252 0 l 1,13,-1 + 63 0 l 1,14,-1 + 98 182 l 2,15,16 + 122 314 122 314 145 381 c 128,-1,17 + 168 448 168 448 204 494 c 128,-1,18 + 240 540 240 540 294 570.5 c 128,-1,19 + 348 601 348 601 487 639 c 1,20,21 + 437 851 437 851 411 925 c 128,-1,22 + 385 999 385 999 354 1028 c 128,-1,23 + 323 1057 323 1057 266 1057 c 2,24,-1 + 131 1057 l 1,25,-1 + 131 1227 l 1,26,-1 + 260 1227 l 2,0,1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: dalet +Encoding: 1491 1491 1283 +Width: 1135 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 6 + 7 + 7 + 9 + 3 + 8 + 1 +PUSHW_1 + 314 +PUSHB_4 + 7 + 3 + 4 + 3 +PUSHW_4 + 320 + 89 + 4 + 313 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 730 0 basechar 0 +AnchorPoint: "Anchor-12" 540 1350 basechar 0 +AnchorPoint: "Anchor-11" 560 0 basechar 0 +AnchorPoint: "Anchor-10" 960 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 900 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 830 0 basechar 0 +AnchorPoint: "Anchor-5" 830 0 basechar 0 +AnchorPoint: "Anchor-4" 540 1700 basechar 0 +AnchorPoint: "Anchor-3" 540 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +926 0 m 1,0,-1 + 741 0 l 1,1,-1 + 741 1057 l 1,2,-1 + 41 1057 l 1,3,-1 + 41 1227 l 1,4,-1 + 1079 1227 l 1,5,-1 + 1079 1057 l 1,6,-1 + 926 1057 l 1,7,-1 + 926 0 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: he +Encoding: 1492 1492 1284 +Width: 1298 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 5 + 4 + 4 + 17 + 10 + 0 + 1 + 16 + 2 + 2 + 1 + 11 + 11 + 10 +PUSHW_7 + 320 + 89 + 11 + 313 + 5 + 1 + 314 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 600 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1000 1430 basechar 0 +AnchorPoint: "Anchor-9" 960 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +356 0 m 1,0,-1 + 172 0 l 1,1,-1 + 172 797 l 1,2,-1 + 356 797 l 1,3,-1 + 356 0 l 1,0,-1 +1135 0 m 1,4,-1 + 950 0 l 1,5,-1 + 950 721 l 2,6,7 + 950 905 950 905 875.5 981 c 128,-1,8 + 801 1057 801 1057 618 1057 c 2,9,-1 + 152 1057 l 1,10,-1 + 152 1227 l 1,11,-1 + 621 1227 l 2,12,13 + 897 1227 897 1227 1016 1109 c 128,-1,14 + 1135 991 1135 991 1135 719 c 2,15,-1 + 1135 0 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: vav +Encoding: 1493 1493 1285 +Width: 532 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 4 + 5 + 3 +PUSHW_3 + 314 + 0 + 313 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 360 0 basechar 0 +AnchorPoint: "Anchor-12" 270 1350 basechar 0 +AnchorPoint: "Anchor-11" 270 0 basechar 0 +AnchorPoint: "Anchor-10" 500 1430 basechar 0 +AnchorPoint: "Anchor-9" 180 0 basechar 0 +AnchorPoint: "Anchor-8" 360 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 270 0 basechar 0 +AnchorPoint: "Anchor-5" 270 0 basechar 0 +AnchorPoint: "Anchor-4" 270 1700 basechar 0 +AnchorPoint: "Anchor-3" 270 1350 basechar 0 +AnchorPoint: "Anchor-0" 260 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +174 1227 m 1,0,-1 + 358 1227 l 1,1,-1 + 358 0 l 1,2,-1 + 174 0 l 1,3,-1 + 174 1227 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: zayin +Encoding: 1494 1494 1286 +Width: 662 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 8 + 7 + 7 + 15 + 12 + 1 + 16 + 13 + 15 + 2 + 12 + 1 + 13 + 13 + 14 + 0 + 1 + 1 + 8 + 14 +PUSHW_3 + 312 + 8 + 314 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 300 0 basechar 0 +AnchorPoint: "Anchor-12" 420 1350 basechar 0 +AnchorPoint: "Anchor-11" 300 0 basechar 0 +AnchorPoint: "Anchor-10" 540 1430 basechar 0 +AnchorPoint: "Anchor-9" 240 0 basechar 0 +AnchorPoint: "Anchor-8" 460 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 300 0 basechar 0 +AnchorPoint: "Anchor-5" 300 0 basechar 0 +AnchorPoint: "Anchor-4" 420 1700 basechar 0 +AnchorPoint: "Anchor-3" 420 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +633 1049 m 1,0,-1 + 633 858 l 1,1,-1 + 524 895 l 1,2,3 + 465 864 465 864 442 837 c 128,-1,4 + 419 810 419 810 409 772.5 c 128,-1,5 + 399 735 399 735 399 678 c 2,6,-1 + 399 0 l 1,7,-1 + 215 0 l 1,8,-1 + 215 670 l 2,9,10 + 215 776 215 776 255.5 842 c 128,-1,11 + 296 908 296 908 393 940 c 1,12,-1 + 51 1055 l 1,13,-1 + 51 1245 l 1,14,-1 + 633 1049 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" dalet dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: het +Encoding: 1495 1495 1287 +Width: 1348 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 13 + 12 + 12 + 15 + 5 + 6 + 6 + 14 + 13 + 6 +PUSHW_7 + 314 + 7 + 4 + 320 + 89 + 7 + 313 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1080 1430 basechar 0 +AnchorPoint: "Anchor-9" 1020 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 680 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 660 1350 basechar 0 +AnchorPoint: "Anchor-2" 650 700 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +999 721 m 2,0,1 + 999 903 999 903 925.5 980 c 128,-1,2 + 852 1057 852 1057 668 1057 c 2,3,-1 + 358 1057 l 1,4,-1 + 358 0 l 1,5,-1 + 174 0 l 1,6,-1 + 174 1227 l 1,7,-1 + 670 1227 l 2,8,9 + 946 1227 946 1227 1065 1109 c 128,-1,10 + 1184 991 1184 991 1184 719 c 2,11,-1 + 1184 0 l 1,12,-1 + 999 0 l 1,13,-1 + 999 721 l 2,0,1 +EndSplineSet +EndChar + +StartChar: tet +Encoding: 1496 1496 1288 +Width: 1337 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 17 + 12 + 6 + 12 + 24 + 24 + 28 + 6 + 3 + 3 + 27 + 20 + 15 +NPUSHW + 12 + 320 + 89 + 20 + 312 + 4 + 313 + 0 + 9 + 320 + 89 + 0 + 315 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 680 0 basechar 0 +AnchorPoint: "Anchor-10" 1080 1430 basechar 0 +AnchorPoint: "Anchor-9" 1020 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 680 0 basechar 0 +AnchorPoint: "Anchor-5" 680 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 660 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +659 -20 m 0,0,1 + 404 -20 404 -20 284 108.5 c 128,-1,2 + 164 237 164 237 164 504 c 2,3,-1 + 164 1227 l 1,4,-1 + 348 1227 l 1,5,-1 + 348 510 l 2,6,7 + 348 324 348 324 421.5 238 c 128,-1,8 + 495 152 495 152 662 152 c 0,9,10 + 858 152 858 152 946 273 c 128,-1,11 + 1034 394 1034 394 1034 674 c 0,12,13 + 1034 882 1034 882 990 978.5 c 128,-1,14 + 946 1075 946 1075 840 1075 c 0,15,16 + 738 1075 738 1075 643 1010 c 1,17,-1 + 643 1186 l 1,18,19 + 721 1247 721 1247 858 1247 c 256,20,21 + 995 1247 995 1247 1073.5 1188 c 128,-1,22 + 1152 1129 1152 1129 1189.5 1002.5 c 128,-1,23 + 1227 876 1227 876 1227 674 c 0,24,25 + 1227 315 1227 315 1090 147.5 c 128,-1,26 + 953 -20 953 -20 659 -20 c 0,0,1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: yod +Encoding: 1497 1497 1289 +Width: 532 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 3 + 2 + 2 + 5 + 4 + 3 + 0 +PUSHW_1 + 313 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 380 0 basechar 0 +AnchorPoint: "Anchor-12" 270 1350 basechar 0 +AnchorPoint: "Anchor-11" 200 0 basechar 0 +AnchorPoint: "Anchor-10" 500 1430 basechar 0 +AnchorPoint: "Anchor-9" 180 0 basechar 0 +AnchorPoint: "Anchor-8" 360 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 270 0 basechar 0 +AnchorPoint: "Anchor-5" 270 0 basechar 0 +AnchorPoint: "Anchor-4" 270 1700 basechar 0 +AnchorPoint: "Anchor-3" 270 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +174 1227 m 1,0,-1 + 358 1227 l 1,1,-1 + 358 582 l 1,2,-1 + 174 582 l 1,3,-1 + 174 1227 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: finalkaf +Encoding: 1498 1498 1290 +Width: 1094 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 0 + 0 + 13 + 6 + 12 + 7 + 6 +PUSHW_6 + 320 + 89 + 7 + 313 + 1 + 317 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 540 0 basechar 0 +AnchorPoint: "Anchor-12" 400 1350 basechar 0 +AnchorPoint: "Anchor-11" 340 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 1040 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 420 0 basechar 0 +AnchorPoint: "Anchor-5" 420 0 basechar 0 +AnchorPoint: "Anchor-4" 400 1700 basechar 0 +AnchorPoint: "Anchor-3" 400 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +930 -385 m 1,0,-1 + 745 -385 l 1,1,-1 + 745 721 l 2,2,3 + 745 903 745 903 671.5 980 c 128,-1,4 + 598 1057 598 1057 414 1057 c 2,5,-1 + 39 1057 l 1,6,-1 + 39 1227 l 1,7,-1 + 416 1227 l 2,8,9 + 692 1227 692 1227 811 1109 c 128,-1,10 + 930 991 930 991 930 719 c 2,11,-1 + 930 -385 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: kaf +Encoding: 1499 1499 1291 +Width: 1075 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 13 + 3 + 3 + 18 + 8 + 0 + 0 + 19 + 14 + 13 +NPUSHW + 10 + 320 + 89 + 14 + 313 + 3 + 4 + 320 + 89 + 3 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 460 0 basechar 0 +AnchorPoint: "Anchor-12" 400 1350 basechar 0 +AnchorPoint: "Anchor-11" 460 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 460 0 basechar 0 +AnchorPoint: "Anchor-5" 460 0 basechar 0 +AnchorPoint: "Anchor-4" 400 1700 basechar 0 +AnchorPoint: "Anchor-3" 400 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +963 596 m 2,0,1 + 963 0 963 0 399 0 c 2,2,-1 + 80 0 l 1,3,-1 + 80 170 l 1,4,-1 + 403 170 l 2,5,6 + 594 170 594 170 685 276 c 128,-1,7 + 776 382 776 382 776 594 c 2,8,-1 + 776 633 l 2,9,10 + 776 846 776 846 684.5 951.5 c 128,-1,11 + 593 1057 593 1057 403 1057 c 2,12,-1 + 80 1057 l 1,13,-1 + 80 1227 l 1,14,-1 + 399 1227 l 2,15,16 + 963 1227 963 1227 963 631 c 2,17,-1 + 963 596 l 2,0,1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: lamed +Encoding: 1500 1500 1292 +Width: 1085 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 16 + 13 + 10 + 7 + 7 + 17 + 4 + 13 + 13 + 18 + 0 + 16 +NPUSHW + 9 + 316 + 8 + 310 + 10 + 7 + 320 + 89 + 10 + 313 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 420 0 basechar 0 +AnchorPoint: "Anchor-12" 680 1350 basechar 0 +AnchorPoint: "Anchor-11" 420 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 700 0 basechar 0 +AnchorPoint: "Anchor-8" 880 1350 basechar 0 +AnchorPoint: "Anchor-7" 0 1350 basechar 0 +AnchorPoint: "Anchor-6" 420 0 basechar 0 +AnchorPoint: "Anchor-5" 420 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" -130 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +193 162 m 1,0,1 + 384 233 384 233 521 341.5 c 128,-1,2 + 658 450 658 450 729.5 578 c 128,-1,3 + 801 706 801 706 801 838 c 0,4,5 + 801 1057 801 1057 567 1057 c 2,6,-1 + 70 1057 l 1,7,-1 + 70 1665 l 1,8,-1 + 254 1665 l 1,9,-1 + 254 1227 l 1,10,-1 + 586 1227 l 2,11,12 + 987 1227 987 1227 987 870 c 0,13,14 + 987 578 987 578 772 331.5 c 128,-1,15 + 557 85 557 85 193 -45 c 1,16,-1 + 193 162 l 1,0,1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: finalmem +Encoding: 1501 1501 1293 +Width: 1389 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 9 + 0 + 0 + 15 + 8 + 1 + 1 + 14 + 2 + 7 +NPUSHW + 10 + 320 + 89 + 2 + 313 + 1 + 8 + 320 + 89 + 1 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 680 0 basechar 0 +AnchorPoint: "Anchor-10" 1200 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 680 0 basechar 0 +AnchorPoint: "Anchor-5" 680 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 660 1350 basechar 0 +AnchorPoint: "Anchor-2" 680 640 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +1225 0 m 1,0,-1 + 174 0 l 1,1,-1 + 174 1227 l 1,2,-1 + 711 1227 l 2,3,4 + 987 1227 987 1227 1106 1109 c 128,-1,5 + 1225 991 1225 991 1225 719 c 2,6,-1 + 1225 0 l 1,0,-1 +358 1057 m 1,7,-1 + 358 170 l 1,8,-1 + 1040 170 l 1,9,-1 + 1040 721 l 2,10,11 + 1040 903 1040 903 966.5 980 c 128,-1,12 + 893 1057 893 1057 709 1057 c 2,13,-1 + 358 1057 l 1,7,-1 +EndSplineSet +EndChar + +StartChar: mem +Encoding: 1502 1502 1294 +Width: 1407 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 5 + 19 + 22 + 3 + 20 + 4 + 15 + 16 + 21 + 16 + 20 + 20 + 25 + 7 + 4 + 4 + 26 + 19 + 22 + 22 + 5 + 20 +NPUSHW + 15 + 313 + 16 + 314 + 0 + 11 + 320 + 89 + 0 + 312 + 5 + 6 + 320 + 89 + 5 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 780 1350 basechar 0 +AnchorPoint: "Anchor-11" 680 0 basechar 0 +AnchorPoint: "Anchor-10" 1200 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 680 0 basechar 0 +AnchorPoint: "Anchor-5" 680 0 basechar 0 +AnchorPoint: "Anchor-4" 780 1700 basechar 0 +AnchorPoint: "Anchor-3" 780 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +778 1247 m 0,0,1 + 1020 1247 1020 1247 1131.5 1099.5 c 128,-1,2 + 1243 952 1243 952 1243 631 c 2,3,-1 + 1243 0 l 1,4,-1 + 641 0 l 1,5,-1 + 641 170 l 1,6,-1 + 1057 170 l 1,7,-1 + 1057 608 l 2,8,9 + 1057 853 1057 853 994 964 c 128,-1,10 + 931 1075 931 1075 780 1075 c 0,11,12 + 645 1075 645 1075 558 952.5 c 128,-1,13 + 471 830 471 830 397 522 c 2,14,-1 + 272 0 l 1,15,-1 + 74 0 l 1,16,-1 + 211 537 l 2,17,18 + 258 724 258 724 305 842 c 1,19,-1 + 55 1227 l 1,20,-1 + 272 1227 l 1,21,-1 + 397 1024 l 1,22,23 + 475 1142 475 1142 564 1194.5 c 128,-1,24 + 653 1247 653 1247 778 1247 c 0,0,1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: finalnun +Encoding: 1503 1503 1295 +Width: 532 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 3 + 2 + 2 + 5 + 4 + 0 +PUSHW_3 + 313 + 3 + 317 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 140 0 basechar 0 +AnchorPoint: "Anchor-12" 270 1350 basechar 0 +AnchorPoint: "Anchor-11" 440 0 basechar 0 +AnchorPoint: "Anchor-10" 500 1430 basechar 0 +AnchorPoint: "Anchor-9" 460 0 basechar 0 +AnchorPoint: "Anchor-8" 360 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 270 0 basechar 0 +AnchorPoint: "Anchor-5" -260 0 basechar 0 +AnchorPoint: "Anchor-4" 270 1700 basechar 0 +AnchorPoint: "Anchor-3" 270 1350 basechar 0 +AnchorPoint: "Anchor-2" -50 700 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +174 1227 m 1,0,-1 + 358 1227 l 1,1,-1 + 358 -385 l 1,2,-1 + 174 -385 l 1,3,-1 + 174 1227 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: nun +Encoding: 1504 1504 1296 +Width: 797 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 9 + 1 + 0 + 1 + 16 + 3 + 0 + 0 + 17 + 10 + 9 +NPUSHW + 10 + 320 + 89 + 10 + 313 + 1 + 2 + 320 + 89 + 1 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 360 0 basechar 0 +AnchorPoint: "Anchor-12" 320 1350 basechar 0 +AnchorPoint: "Anchor-11" 360 0 basechar 0 +AnchorPoint: "Anchor-10" 650 1430 basechar 0 +AnchorPoint: "Anchor-9" 460 0 basechar 0 +AnchorPoint: "Anchor-8" 500 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 360 0 basechar 0 +AnchorPoint: "Anchor-5" 360 0 basechar 0 +AnchorPoint: "Anchor-4" 320 1700 basechar 0 +AnchorPoint: "Anchor-3" 320 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +633 0 m 1,0,-1 + 72 0 l 1,1,-1 + 72 170 l 1,2,-1 + 449 170 l 1,3,-1 + 449 700 l 2,4,5 + 449 860 449 860 432.5 929 c 128,-1,6 + 416 998 416 998 377 1027.5 c 128,-1,7 + 338 1057 338 1057 264 1057 c 2,8,-1 + 129 1057 l 1,9,-1 + 129 1227 l 1,10,-1 + 258 1227 l 2,11,12 + 418 1227 418 1227 491.5 1182.5 c 128,-1,13 + 565 1138 565 1138 599 1036.5 c 128,-1,14 + 633 935 633 935 633 752 c 2,15,-1 + 633 0 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: samekh +Encoding: 1505 1505 1297 +Width: 1343 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 26 + 10 + 10 + 32 + 17 + 3 + 3 + 20 + 20 + 4 + 16 + 16 + 31 + 13 + 23 +PUSHW_4 + 320 + 89 + 13 + 315 +PUSHB_4 + 17 + 4 + 5 + 4 +PUSHW_4 + 320 + 89 + 5 + 313 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 640 1350 basechar 0 +AnchorPoint: "Anchor-11" 680 0 basechar 0 +AnchorPoint: "Anchor-10" 1200 1430 basechar 0 +AnchorPoint: "Anchor-9" 1000 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 680 0 basechar 0 +AnchorPoint: "Anchor-5" 680 0 basechar 0 +AnchorPoint: "Anchor-4" 640 1700 basechar 0 +AnchorPoint: "Anchor-3" 640 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +133 643 m 2,0,1 + 133 764 133 764 162.5 885 c 128,-1,2 + 192 1006 192 1006 231 1057 c 1,3,-1 + 51 1057 l 1,4,-1 + 51 1227 l 1,5,-1 + 715 1227 l 2,6,7 + 991 1227 991 1227 1111 1109.5 c 128,-1,8 + 1231 992 1231 992 1231 719 c 2,9,-1 + 1231 631 l 2,10,11 + 1231 311 1231 311 1087.5 145.5 c 128,-1,12 + 944 -20 944 -20 668 -20 c 0,13,14 + 394 -20 394 -20 263.5 134.5 c 128,-1,15 + 133 289 133 289 133 608 c 2,16,-1 + 133 643 l 2,0,1 +395 1057 m 1,17,18 + 328 938 328 938 328 651 c 2,19,-1 + 328 598 l 2,20,21 + 328 378 328 378 416.5 264 c 128,-1,22 + 505 150 505 150 672 150 c 0,23,24 + 863 150 863 150 948.5 263 c 128,-1,25 + 1034 376 1034 376 1034 633 c 2,26,-1 + 1034 721 l 2,27,28 + 1034 907 1034 907 963 982 c 128,-1,29 + 892 1057 892 1057 713 1057 c 2,30,-1 + 395 1057 l 1,17,18 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: ayin +Encoding: 1506 1506 1298 +Width: 1192 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 5 + 2 + 2 + 13 + 8 + 9 + 9 + 15 + 3 + 13 + 13 + 14 + 2 + 5 + 3 + 0 + 13 +PUSHW_4 + 316 + 8 + 3 + 313 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +IP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 600 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1080 1430 basechar 0 +AnchorPoint: "Anchor-9" 860 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-2" 660 800 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +41 162 m 1,0,1 + 317 162 317 162 475 213 c 1,2,-1 + 104 1227 l 1,3,-1 + 307 1227 l 1,4,-1 + 635 291 l 1,5,6 + 775 391 775 391 836 600.5 c 128,-1,7 + 897 810 897 810 897 1227 c 1,8,-1 + 1090 1227 l 1,9,10 + 1090 764 1090 764 991.5 503 c 128,-1,11 + 893 242 893 242 670.5 115 c 128,-1,12 + 448 -12 448 -12 41 -33 c 1,13,-1 + 41 162 l 1,0,1 +EndSplineSet +EndChar + +StartChar: finalpe +Encoding: 1507 1507 1299 +Width: 1276 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 13 + 4 + 11 + 14 + 14 + 16 + 5 + 4 + 4 + 17 + 11 + 14 +PUSHW_1 + 320 +PUSHB_5 + 89 + 11 + 11 + 15 + 5 +PUSHW_7 + 317 + 15 + 10 + 320 + 89 + 15 + 313 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 600 0 basechar 0 +AnchorPoint: "Anchor-12" 600 1350 basechar 0 +AnchorPoint: "Anchor-11" 430 0 basechar 0 +AnchorPoint: "Anchor-10" 1100 1430 basechar 0 +AnchorPoint: "Anchor-9" 1200 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 500 0 basechar 0 +AnchorPoint: "Anchor-5" 500 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +598 1227 m 2,0,1 + 874 1227 874 1227 993 1110 c 128,-1,2 + 1112 993 1112 993 1112 719 c 2,3,-1 + 1112 -385 l 1,4,-1 + 928 -385 l 1,5,-1 + 928 721 l 2,6,7 + 928 905 928 905 853.5 981 c 128,-1,8 + 779 1057 779 1057 596 1057 c 2,9,-1 + 319 1057 l 1,10,-1 + 319 711 l 1,11,-1 + 563 711 l 1,12,-1 + 563 541 l 1,13,-1 + 133 541 l 1,14,-1 + 133 1227 l 1,15,-1 + 598 1227 l 2,0,1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: pe +Encoding: 1508 1508 1300 +Width: 1249 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 17 + 7 + 14 + 5 + 8 + 8 + 23 + 22 + 14 + 14 + 24 + 5 + 8 +PUSHW_1 + 320 +PUSHB_7 + 89 + 5 + 5 + 17 + 9 + 9 + 4 +NPUSHW + 10 + 320 + 89 + 9 + 313 + 17 + 18 + 320 + 89 + 17 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 600 0 basechar 0 +AnchorPoint: "Anchor-12" 600 1350 basechar 0 +AnchorPoint: "Anchor-11" 600 0 basechar 0 +AnchorPoint: "Anchor-10" 1100 1430 basechar 0 +AnchorPoint: "Anchor-9" 900 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 600 0 basechar 0 +AnchorPoint: "Anchor-5" 600 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +950 682 m 2,0,1 + 950 871 950 871 867 964 c 128,-1,2 + 784 1057 784 1057 606 1057 c 2,3,-1 + 330 1057 l 1,4,-1 + 330 711 l 1,5,-1 + 573 711 l 1,6,-1 + 573 541 l 1,7,-1 + 143 541 l 1,8,-1 + 143 1227 l 1,9,-1 + 608 1227 l 2,10,11 + 876 1227 876 1227 1006.5 1093.5 c 128,-1,12 + 1137 960 1137 960 1137 678 c 2,13,-1 + 1137 596 l 2,14,15 + 1137 0 1137 0 573 0 c 2,16,-1 + 154 0 l 1,17,-1 + 154 170 l 1,18,-1 + 578 170 l 2,19,20 + 768 170 768 170 859 275.5 c 128,-1,21 + 950 381 950 381 950 594 c 2,22,-1 + 950 682 l 2,0,1 +EndSplineSet +EndChar + +StartChar: finaltsadi +Encoding: 1509 1509 1301 +Width: 1032 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 10 + 1 + 0 + 0 + 6 + 15 + 16 + 16 + 22 + 7 + 6 + 6 + 21 + 20 + 2 + 10 + 10 + 1 + 15 + 6 +PUSHW_3 + 313 + 1 + 317 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 300 0 basechar 0 +AnchorPoint: "Anchor-12" 520 1350 basechar 0 +AnchorPoint: "Anchor-11" 600 0 basechar 0 +AnchorPoint: "Anchor-10" 980 1430 basechar 0 +AnchorPoint: "Anchor-9" 740 0 basechar 0 +AnchorPoint: "Anchor-8" 900 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 420 0 basechar 0 +AnchorPoint: "Anchor-5" 960 0 basechar 0 +AnchorPoint: "Anchor-4" 520 1700 basechar 0 +AnchorPoint: "Anchor-3" 520 1350 basechar 0 +AnchorPoint: "Anchor-2" 120 540 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +512 -385 m 1,0,-1 + 328 -385 l 1,1,-1 + 328 545 l 2,2,3 + 328 634 328 634 306 706.5 c 128,-1,4 + 284 779 284 779 233 872.5 c 128,-1,5 + 182 966 182 966 10 1227 c 1,6,-1 + 227 1227 l 1,7,8 + 399 961 399 961 448.5 848 c 128,-1,9 + 498 735 498 735 508 616 c 1,10,11 + 600 639 600 639 652 679 c 128,-1,12 + 704 719 704 719 730.5 786.5 c 128,-1,13 + 757 854 757 854 768 979 c 2,14,-1 + 788 1227 l 1,15,-1 + 981 1227 l 1,16,-1 + 954 948 l 2,17,18 + 935 732 935 732 835 623.5 c 128,-1,19 + 735 515 735 515 512 471 c 1,20,-1 + 512 -385 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tet dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: tsadi +Encoding: 1510 1510 1302 +Width: 1116 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 10 + 11 + 11 + 16 + 6 + 5 + 3 + 17 + 17 + 19 + 5 + 4 + 4 + 2 + 18 + 16 + 6 + 6 + 1 + 10 + 5 +PUSHW_1 + 313 +PUSHB_4 + 17 + 2 + 1 + 2 +PUSHW_4 + 320 + 89 + 1 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 600 0 basechar 0 +AnchorPoint: "Anchor-12" 520 1350 basechar 0 +AnchorPoint: "Anchor-11" 600 0 basechar 0 +AnchorPoint: "Anchor-10" 980 1430 basechar 0 +AnchorPoint: "Anchor-9" 800 0 basechar 0 +AnchorPoint: "Anchor-8" 900 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 560 0 basechar 0 +AnchorPoint: "Anchor-5" 560 0 basechar 0 +AnchorPoint: "Anchor-4" 520 1700 basechar 0 +AnchorPoint: "Anchor-3" 520 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +1028 0 m 1,0,-1 + 84 0 l 1,1,-1 + 84 170 l 1,2,-1 + 799 170 l 1,3,-1 + 10 1227 l 1,4,-1 + 240 1227 l 1,5,-1 + 621 709 l 1,6,7 + 698 742 698 742 733 806.5 c 128,-1,8 + 768 871 768 871 780 1004 c 2,9,-1 + 803 1227 l 1,10,-1 + 993 1227 l 1,11,-1 + 973 1008 l 2,12,13 + 959 868 959 868 931.5 795.5 c 128,-1,14 + 904 723 904 723 853 675 c 128,-1,15 + 802 627 802 627 709 590 c 1,16,-1 + 1028 158 l 1,17,-1 + 1028 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: qof +Encoding: 1511 1511 1303 +Width: 1208 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 19 + 11 + 8 + 1 + 2 + 2 + 20 + 15 + 8 + 8 + 21 + 3 + 3 + 4 + 12 + 11 +NPUSHW + 9 + 315 + 2 + 317 + 4 + 19 + 320 + 89 + 4 + 313 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 160 0 basechar 0 +AnchorPoint: "Anchor-12" 560 1350 basechar 0 +AnchorPoint: "Anchor-11" 620 0 basechar 0 +AnchorPoint: "Anchor-10" 1080 1430 basechar 0 +AnchorPoint: "Anchor-9" 600 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 620 0 basechar 0 +AnchorPoint: "Anchor-5" 860 0 basechar 0 +AnchorPoint: "Anchor-4" 560 1700 basechar 0 +AnchorPoint: "Anchor-3" 560 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +358 797 m 1,0,-1 + 358 -385 l 1,1,-1 + 174 -385 l 1,2,-1 + 174 797 l 1,3,-1 + 358 797 l 1,0,-1 +123 1227 m 1,4,-1 + 641 1227 l 2,5,6 + 888 1227 888 1227 992 1138.5 c 128,-1,7 + 1096 1050 1096 1050 1096 846 c 0,8,9 + 1096 564 1096 564 928.5 328.5 c 128,-1,10 + 761 93 761 93 475 -27 c 1,11,-1 + 475 184 l 1,12,13 + 684 278 684 278 796.5 445.5 c 128,-1,14 + 909 613 909 613 909 821 c 0,15,16 + 909 955 909 955 850.5 1006 c 128,-1,17 + 792 1057 792 1057 649 1057 c 2,18,-1 + 123 1057 l 1,19,-1 + 123 1227 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: resh +Encoding: 1512 1512 1304 +Width: 1094 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 6 + 12 + 1 + 0 + 0 + 13 + 1 +PUSHW_7 + 314 + 7 + 6 + 320 + 89 + 7 + 313 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 420 1350 basechar 0 +AnchorPoint: "Anchor-11" 700 0 basechar 0 +AnchorPoint: "Anchor-10" 860 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 860 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 500 0 basechar 0 +AnchorPoint: "Anchor-5" 820 0 basechar 0 +AnchorPoint: "Anchor-4" 420 1700 basechar 0 +AnchorPoint: "Anchor-3" 420 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +930 0 m 1,0,-1 + 745 0 l 1,1,-1 + 745 721 l 2,2,3 + 745 903 745 903 671.5 980 c 128,-1,4 + 598 1057 598 1057 414 1057 c 2,5,-1 + 39 1057 l 1,6,-1 + 39 1227 l 1,7,-1 + 416 1227 l 2,8,9 + 692 1227 692 1227 811 1109 c 128,-1,10 + 930 991 930 991 930 719 c 2,11,-1 + 930 0 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: shin +Encoding: 1513 1513 1305 +Width: 1495 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 15 + 16 + 0 + 1 + 7 + 25 + 8 + 24 + 24 + 23 + 22 + 8 + 23 + 8 + 1 + 16 + 4 + 31 + 30 + 25 + 7 +PUSHW_1 + 322 +PUSHB_7 + 89 + 25 + 25 + 22 + 15 + 0 + 23 +PUSHW_7 + 313 + 22 + 8 + 321 + 89 + 22 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 700 0 basechar 0 +AnchorPoint: "Anchor-12" 700 1350 basechar 0 +AnchorPoint: "Anchor-11" 720 0 basechar 0 +AnchorPoint: "Anchor-10" 1360 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1300 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 720 0 basechar 0 +AnchorPoint: "Anchor-5" 720 0 basechar 0 +AnchorPoint: "Anchor-4" 760 1700 basechar 0 +AnchorPoint: "Anchor-3" 760 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +668 1227 m 1,0,-1 + 858 1227 l 1,1,-1 + 827 899 l 2,2,3 + 812 732 812 732 786.5 657.5 c 128,-1,4 + 761 583 761 583 711 542.5 c 128,-1,5 + 661 502 661 502 545 471 c 2,6,-1 + 395 436 l 1,7,-1 + 444 178 l 1,8,-1 + 468 178 l 2,9,10 + 669 178 669 178 790 201.5 c 128,-1,11 + 911 225 911 225 981 275 c 128,-1,12 + 1051 325 1051 325 1089.5 416.5 c 128,-1,13 + 1128 508 1128 508 1151 702 c 2,14,-1 + 1214 1227 l 1,15,-1 + 1407 1227 l 1,16,-1 + 1343 709 l 2,17,18 + 1312 447 1312 447 1255 320.5 c 128,-1,19 + 1198 194 1198 194 1094 124.5 c 128,-1,20 + 990 55 990 55 807.5 23.5 c 128,-1,21 + 625 -8 625 -8 285 -10 c 1,22,-1 + 51 1227 l 1,23,-1 + 242 1227 l 1,24,-1 + 365 596 l 1,25,-1 + 438 610 l 2,26,27 + 546 634 546 634 589 694.5 c 128,-1,28 + 632 755 632 755 643 901 c 2,29,-1 + 668 1227 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: tav +Encoding: 1514 1514 1306 +Width: 1415 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 14 + 25 + 25 + 7 + 1 + 19 + 19 + 26 + 8 + 7 + 7 + 27 + 19 + 20 +PUSHW_1 + 320 +PUSHB_3 + 89 + 8 + 19 +PUSHW_1 + 314 +PUSHB_4 + 13 + 1 + 2 + 1 +PUSHW_4 + 320 + 89 + 2 + 313 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1200 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1100 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 700 1700 basechar 0 +AnchorPoint: "Anchor-3" 700 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +SplineSet +262 1057 m 1,0,-1 + 72 1057 l 1,1,-1 + 72 1227 l 1,2,-1 + 735 1227 l 2,3,4 + 1011 1227 1011 1227 1131 1109.5 c 128,-1,5 + 1251 992 1251 992 1251 719 c 2,6,-1 + 1251 0 l 1,7,-1 + 1067 0 l 1,8,-1 + 1067 721 l 2,9,10 + 1067 905 1067 905 992.5 981 c 128,-1,11 + 918 1057 918 1057 733 1057 c 2,12,-1 + 446 1057 l 1,13,-1 + 446 475 l 2,14,15 + 446 291 446 291 412.5 190 c 128,-1,16 + 379 89 379 89 305 44.5 c 128,-1,17 + 231 0 231 0 72 0 c 2,18,-1 + 61 0 l 1,19,-1 + 61 170 l 1,20,-1 + 78 170 l 2,21,22 + 148 170 148 170 188 195.5 c 128,-1,23 + 228 221 228 221 245 275 c 128,-1,24 + 262 329 262 329 262 438 c 2,25,-1 + 262 1057 l 1,0,-1 +EndSplineSet +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: vavvav +Encoding: 1520 1520 1307 +Width: 1042 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 520 0 basechar 0 +AnchorPoint: "Anchor-12" 520 1350 basechar 0 +AnchorPoint: "Anchor-11" 360 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 700 0 basechar 0 +AnchorPoint: "Anchor-8" 780 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 520 0 basechar 0 +AnchorPoint: "Anchor-5" 520 0 basechar 0 +AnchorPoint: "Anchor-4" 520 1700 basechar 0 +AnchorPoint: "Anchor-3" 520 1350 basechar 0 +AnchorPoint: "Anchor-2" -50 700 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1285 1493 N 1 0 0 1 0 0 2 +Refer: 1285 1493 N 1 0 0 1 510 0 2 +EndChar + +StartChar: vavyod +Encoding: 1521 1521 1308 +Width: 1042 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 520 0 basechar 0 +AnchorPoint: "Anchor-12" 520 1350 basechar 0 +AnchorPoint: "Anchor-11" 360 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 700 0 basechar 0 +AnchorPoint: "Anchor-8" 780 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 520 0 basechar 0 +AnchorPoint: "Anchor-5" 520 0 basechar 0 +AnchorPoint: "Anchor-4" 520 1700 basechar 0 +AnchorPoint: "Anchor-3" 520 1350 basechar 0 +AnchorPoint: "Anchor-2" -50 800 basechar 0 +AnchorPoint: "Anchor-0" 80 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1289 1497 N 1 0 0 1 0 0 2 +Refer: 1285 1493 N 1 0 0 1 510 0 2 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: yodyod +Encoding: 1522 1522 1309 +Width: 1042 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 520 0 basechar 0 +AnchorPoint: "Anchor-12" 520 1350 basechar 0 +AnchorPoint: "Anchor-11" 360 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 700 0 basechar 0 +AnchorPoint: "Anchor-8" 780 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 520 0 basechar 0 +AnchorPoint: "Anchor-5" 520 0 basechar 0 +AnchorPoint: "Anchor-4" 520 1700 basechar 0 +AnchorPoint: "Anchor-3" 520 1350 basechar 0 +AnchorPoint: "Anchor-2" -50 800 basechar 0 +AnchorPoint: "Anchor-0" 80 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1289 1497 N 1 0 0 1 0 0 2 +Refer: 1289 1497 N 1 0 0 1 510 0 2 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: geresh +Encoding: 1523 1523 1310 +Width: 788 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 0 + 1 + 1 + 2 + 3 + 3 + 5 + 4 + 1 + 2 +PUSHW_1 + 310 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +352 1030 m 1,0,-1 + 215 1030 l 1,1,-1 + 352 1665 l 1,2,-1 + 584 1665 l 1,3,-1 + 352 1030 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: gershayim +Encoding: 1524 1524 1311 +Width: 1235 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 4 + 5 + 6 + 5 + 7 + 2 + 3 + 3 + 0 + 1 + 7 + 1 + 9 + 8 + 5 + 1 + 6 + 2 +PUSHW_1 + 310 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +352 1030 m 1,0,-1 + 215 1030 l 1,1,-1 + 352 1665 l 1,2,-1 + 584 1665 l 1,3,-1 + 352 1030 l 1,0,-1 +799 1030 m 1,4,-1 + 662 1030 l 1,5,-1 + 799 1665 l 1,6,-1 + 1030 1665 l 1,7,-1 + 799 1030 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni1D00 +Encoding: 7424 7424 1312 +Width: 1016 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 7 + 6 + 9 + 8 + 9 + 10 + 3 + 5 + 0 + 0 + 5 + 12 + 11 + 10 + 3 + 80 + 89 + 9 + 8 + 6 + 47 + 10 + 1 + 10 + 8 + 10 + 8 + 5 + 6 + 15 + 1 + 5 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +DELTAP1 +SRP1 +SRP2 +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +995 0 m 1,0,-1 + 825 0 l 1,1,-1 + 707 309 l 1,2,-1 + 312 309 l 1,3,-1 + 196 0 l 1,4,-1 + 21 0 l 1,5,-1 + 425 1082 l 1,6,-1 + 593 1082 l 1,7,-1 + 995 0 l 1,0,-1 +663 445 m 1,8,-1 + 507 906 l 1,9,-1 + 356 445 l 1,10,-1 + 663 445 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: uni1D01 +Encoding: 7425 7425 1313 +Width: 1531 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 52 + 10 + 14 + 14 + 17 + 1 + 16 + 12 + 5 + 8 + 0 + 4 + 5 + 5 + 0 + 1 + 3 + 21 + 20 + 9 + 19 + 6 + 19 + 80 + 89 + 16 + 3 + 80 + 89 + 10 + 13 + 80 + 89 + 15 + 10 + 1 + 11 + 3 + 16 + 10 + 16 + 10 + 1 + 6 + 15 + 5 + 21 + 1 + 14 + 80 + 89 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1456 0 m 1,0,-1 + 763 0 l 1,1,-1 + 763 332 l 1,2,-1 + 379 332 l 1,3,-1 + 219 0 l 1,4,-1 + 25 0 l 1,5,-1 + 565 1082 l 1,6,-1 + 1431 1082 l 1,7,-1 + 1431 943 l 1,8,-1 + 943 943 l 1,9,-1 + 943 624 l 1,10,-1 + 1392 624 l 1,11,-1 + 1392 486 l 1,12,-1 + 943 486 l 1,13,-1 + 943 139 l 1,14,-1 + 1456 139 l 1,15,-1 + 1456 0 l 1,0,-1 +443 470 m 1,16,-1 + 763 470 l 1,17,-1 + 763 943 l 1,18,-1 + 669 943 l 1,19,-1 + 443 470 l 1,16,-1 +EndSplineSet +EndChar + +StartChar: uni1D02 +Encoding: 7426 7426 1314 +Width: 1821 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 82 + 28 + 29 + 29 + 45 + 17 + 34 + 11 + 59 + 40 + 22 + 22 + 0 + 59 + 6 + 7 + 7 + 53 + 38 + 38 + 59 + 17 + 3 + 61 + 60 + 36 + 56 + 80 + 89 + 36 + 22 + 39 + 53 + 80 + 89 + 40 + 21 + 81 + 89 + 11 + 14 + 39 + 34 + 40 + 32 + 31 + 40 + 1 + 39 + 40 + 39 + 40 + 14 + 32 + 0 + 28 + 1 + 10 + 3 + 28 + 28 + 32 + 32 + 25 + 80 + 89 + 32 + 22 + 14 + 48 + 80 + 89 + 14 + 16 + 6 + 6 + 9 + 9 + 3 + 80 + 89 + 9 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +DELTAP1 +SRP1 +SRP2 +IP +SRP1 +SRP2 +IP +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +828 579 m 1,0,-1 + 828 596 l 1,1,2 + 819 965 819 965 536 965 c 0,3,4 + 419 965 419 965 348.5 918 c 128,-1,5 + 278 871 278 871 253 799 c 1,6,-1 + 95 844 l 1,7,8 + 192 1100 192 1100 536 1100 c 0,9,10 + 857 1100 857 1100 959 843 c 1,11,12 + 1038 983 1038 983 1143 1041.5 c 128,-1,13 + 1248 1100 1248 1100 1394 1100 c 0,14,15 + 1561 1100 1561 1100 1645.5 1014 c 128,-1,16 + 1730 928 1730 928 1730 778 c 0,17,18 + 1730 605 1730 605 1611.5 517.5 c 128,-1,19 + 1493 430 1493 430 1250 426 c 2,20,-1 + 1010 422 l 1,21,-1 + 1010 363 l 2,22,23 + 1010 228 1010 228 1065.5 172.5 c 128,-1,24 + 1121 117 1121 117 1242 117 c 0,25,26 + 1368 117 1368 117 1424.5 157 c 128,-1,27 + 1481 197 1481 197 1494 289 c 1,28,-1 + 1682 272 l 1,29,30 + 1656 123 1656 123 1545.5 51.5 c 128,-1,31 + 1435 -20 1435 -20 1238 -20 c 0,32,33 + 988 -20 988 -20 889 119 c 1,34,35 + 771 -20 771 -20 543 -20 c 0,36,37 + 66 -20 66 -20 66 555 c 2,38,-1 + 66 579 l 1,39,-1 + 828 579 l 1,0,-1 +1010 548 m 1,40,-1 + 1205 552 l 2,41,42 + 1333 554 1333 554 1401 577.5 c 128,-1,43 + 1469 601 1469 601 1507 650 c 128,-1,44 + 1545 699 1545 699 1545 781 c 0,45,46 + 1545 868 1545 868 1495 916.5 c 128,-1,47 + 1445 965 1445 965 1352 965 c 0,48,49 + 1250 965 1250 965 1173 920.5 c 128,-1,50 + 1096 876 1096 876 1053 800 c 128,-1,51 + 1010 724 1010 724 1010 637 c 2,52,-1 + 1010 548 l 1,40,-1 +252 441 m 1,53,54 + 267 270 267 270 339 191.5 c 128,-1,55 + 411 113 411 113 546 113 c 0,56,57 + 673 113 673 113 746.5 198.5 c 128,-1,58 + 820 284 820 284 826 441 c 1,59,-1 + 252 441 l 1,53,54 +EndSplineSet +EndChar + +StartChar: uni1D03 +Encoding: 7427 7427 1315 +Width: 1088 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 35 + 11 + 8 + 6 + 6 + 26 + 10 + 14 + 31 + 22 + 22 + 20 + 1 + 18 + 14 + 18 + 40 + 39 + 21 + 11 + 20 + 0 + 20 + 80 + 89 + 31 + 8 + 15 + 0 + 1 + 11 + 3 + 0 + 0 + 18 + 2 + 18 + 22 + 80 + 89 + 18 + 21 + 2 + 30 + 80 + 89 + 2 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +25 610 m 1,0,-1 + 142 610 l 1,1,-1 + 142 1082 l 1,2,-1 + 573 1082 l 2,3,4 + 759 1082 759 1082 866 1003 c 128,-1,5 + 973 924 973 924 973 780 c 0,6,7 + 973 680 973 680 898 610 c 1,8,-1 + 1065 610 l 1,9,-1 + 1065 472 l 1,10,-1 + 926 472 l 1,11,12 + 959 442 959 442 981.5 395.5 c 128,-1,13 + 1004 349 1004 349 1004 298 c 0,14,15 + 1004 152 1004 152 905 76 c 128,-1,16 + 806 0 806 0 604 0 c 2,17,-1 + 142 0 l 1,18,-1 + 142 472 l 1,19,-1 + 25 472 l 1,20,-1 + 25 610 l 1,0,-1 +322 472 m 1,21,-1 + 322 136 l 1,22,-1 + 592 136 l 2,23,24 + 713 136 713 136 764 177 c 128,-1,25 + 815 218 815 218 815 300 c 0,26,27 + 815 389 815 389 760 430.5 c 128,-1,28 + 705 472 705 472 592 472 c 2,29,-1 + 322 472 l 1,21,-1 +322 945 m 1,30,-1 + 322 610 l 1,31,-1 + 561 610 l 2,32,33 + 682 610 682 610 733 652.5 c 128,-1,34 + 784 695 784 695 784 777 c 256,35,36 + 784 859 784 859 733 902 c 128,-1,37 + 682 945 682 945 561 945 c 2,38,-1 + 322 945 l 1,30,-1 +EndSplineSet +EndChar + +StartChar: uni1D04 +Encoding: 7428 7428 1316 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 70 99 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D05 +Encoding: 7429 7429 1317 +Width: 1129 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 8 + 0 + 13 + 4 + 0 + 4 + 18 + 17 + 5 + 12 + 80 + 89 + 5 + 15 + 4 + 13 + 80 + 89 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1053 557 m 0,0,1 + 1053 282 1053 282 911.5 141 c 128,-1,2 + 770 0 770 0 501 0 c 2,3,-1 + 135 0 l 1,4,-1 + 135 1082 l 1,5,-1 + 501 1082 l 2,6,7 + 1053 1082 1053 1082 1053 557 c 0,0,1 +868 559 m 0,8,9 + 868 761 868 761 781.5 851.5 c 128,-1,10 + 695 942 695 942 499 942 c 2,11,-1 + 315 942 l 1,12,-1 + 315 139 l 1,13,-1 + 502 139 l 2,14,15 + 685 139 685 139 776.5 240.5 c 128,-1,16 + 868 342 868 342 868 559 c 0,8,9 +EndSplineSet +EndChar + +StartChar: uni1D06 +Encoding: 7430 7430 1318 +Width: 1129 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 17 + 21 + 21 + 11 + 1 + 19 + 9 + 12 + 5 + 9 + 5 + 25 + 26 + 20 + 11 + 0 + 11 + 80 + 89 + 17 + 15 + 0 + 1 + 11 + 3 + 0 + 0 + 9 + 2 + 9 + 21 + 80 + 89 + 9 + 21 + 2 + 16 + 80 + 89 + 2 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +0 624 m 1,0,-1 + 135 624 l 1,1,-1 + 135 1082 l 1,2,-1 + 501 1082 l 2,3,4 + 1053 1082 1053 1082 1053 557 c 0,5,6 + 1053 282 1053 282 911.5 141 c 128,-1,7 + 770 0 770 0 501 0 c 2,8,-1 + 135 0 l 1,9,-1 + 135 486 l 1,10,-1 + 0 486 l 1,11,-1 + 0 624 l 1,0,-1 +868 559 m 0,12,13 + 868 761 868 761 781.5 851.5 c 128,-1,14 + 695 942 695 942 499 942 c 2,15,-1 + 315 942 l 1,16,-1 + 315 624 l 1,17,-1 + 556 624 l 1,18,-1 + 556 486 l 1,19,-1 + 315 486 l 1,20,-1 + 315 139 l 1,21,-1 + 502 139 l 2,22,23 + 685 139 685 139 776.5 240.5 c 128,-1,24 + 868 342 868 342 868 559 c 0,12,13 +EndSplineSet +EndChar + +StartChar: uni1D07 +Encoding: 7431 7431 1319 +Width: 1003 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 4 + 0 + 6 + 10 + 10 + 8 + 1 + 0 + 0 + 1 + 13 + 12 + 6 + 9 + 80 + 89 + 15 + 6 + 1 + 11 + 3 + 6 + 6 + 1 + 2 + 2 + 5 + 80 + 89 + 2 + 15 + 1 + 10 + 80 + 89 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +927 0 m 1,0,-1 + 135 0 l 1,1,-1 + 135 1082 l 1,2,-1 + 902 1082 l 1,3,-1 + 902 943 l 1,4,-1 + 315 943 l 1,5,-1 + 315 624 l 1,6,-1 + 863 624 l 1,7,-1 + 863 486 l 1,8,-1 + 315 486 l 1,9,-1 + 315 139 l 1,10,-1 + 927 139 l 1,11,-1 + 927 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D08 +Encoding: 7432 7432 1320 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 12 + 30 + 22 + 15 + 27 + 27 + 9 + 34 + 21 + 22 + 22 + 4 + 3 + 34 + 3 + 38 + 37 + 0 + 38 + 1 + 10 + 3 + 30 + 12 + 11 + 12 + 11 + 80 + 89 + 12 + 12 + 0 + 24 + 21 + 21 + 24 + 24 + 18 + 80 + 89 + 24 + 16 + 0 + 6 + 80 + 89 + 4 + 4 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SVTCA[x-axis] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +458 -20 m 0,0,1 + 291 -20 291 -20 192.5 42.5 c 128,-1,2 + 94 105 94 105 49 234 c 1,3,-1 + 208 278 l 1,4,5 + 261 114 261 114 462 114 c 0,6,7 + 558 114 558 114 614.5 161 c 128,-1,8 + 671 208 671 208 671 299 c 0,9,10 + 671 499 671 499 340 499 c 1,11,-1 + 340 636 l 1,12,13 + 501 636 501 636 577 678 c 128,-1,14 + 653 720 653 720 653 808 c 0,15,16 + 653 882 653 882 603.5 925 c 128,-1,17 + 554 968 554 968 461 968 c 0,18,19 + 372 968 372 968 315.5 931 c 128,-1,20 + 259 894 259 894 247 824 c 1,21,-1 + 85 844 l 1,22,23 + 131 1102 131 1102 462 1102 c 0,24,25 + 630 1102 630 1102 733 1022.5 c 128,-1,26 + 836 943 836 943 836 817 c 0,27,28 + 836 716 836 716 763.5 648 c 128,-1,29 + 691 580 691 580 588 571 c 1,30,-1 + 588 569 l 1,31,32 + 709 556 709 556 785.5 484.5 c 128,-1,33 + 862 413 862 413 862 304 c 0,34,35 + 862 152 862 152 754.5 66 c 128,-1,36 + 647 -20 647 -20 458 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D09 +Encoding: 7433 7433 1321 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 6 + 2 + 2 + 5 + 1 + 1 + 8 + 9 + 7 + 15 + 2 + 3 + 6 + 21 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rp0,rnd,white] +MDRP[min,rnd,black] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +317 -230 m 1,0,-1 + 317 -402 l 1,1,-1 + 137 -402 l 1,2,-1 + 137 -230 l 1,3,-1 + 317 -230 l 1,0,-1 +317 1082 m 1,4,-1 + 317 0 l 1,5,-1 + 137 0 l 1,6,-1 + 137 1082 l 1,7,-1 + 317 1082 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni1D0A +Encoding: 7434 7434 1322 +Width: 865 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 9 + 11 + 14 + 3 + 2 + 14 + 2 + 18 + 17 + 12 + 11 + 80 + 89 + 12 + 15 + 0 + 6 + 80 + 89 + 3 + 3 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +379 -20 m 0,0,1 + 100 -20 100 -20 48 265 c 1,2,-1 + 204 304 l 1,3,4 + 219 204 219 204 266.5 159 c 128,-1,5 + 314 114 314 114 378 114 c 0,6,7 + 457 114 457 114 504 166 c 128,-1,8 + 551 218 551 218 551 332 c 2,9,-1 + 551 943 l 1,10,-1 + 312 943 l 1,11,-1 + 312 1082 l 1,12,-1 + 730 1082 l 1,13,-1 + 730 319 l 2,14,15 + 730 160 730 160 638 70 c 128,-1,16 + 546 -20 546 -20 379 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D0B +Encoding: 7435 7435 1323 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 250 312 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1D0C +Encoding: 7436 7436 1324 +Width: 822 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 8 + 12 + 12 + 5 + 3 + 1 + 1 + 10 + 0 + 3 + 15 + 14 + 8 + 5 + 11 + 2 + 4 + 9 + 3 + 9 + 3 + 9 + 1 + 6 + 15 + 1 + 12 + 80 + 89 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +784 0 m 1,0,-1 + 135 0 l 1,1,-1 + 135 415 l 1,2,-1 + 16 314 l 1,3,-1 + 16 473 l 1,4,-1 + 135 574 l 1,5,-1 + 135 1082 l 1,6,-1 + 315 1082 l 1,7,-1 + 315 682 l 1,8,-1 + 502 841 l 1,9,-1 + 502 682 l 1,10,-1 + 315 523 l 1,11,-1 + 315 139 l 1,12,-1 + 784 139 l 1,13,-1 + 784 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D0D +Encoding: 7437 7437 1325 +Width: 1408 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 8 + 5 + 5 + 6 + 14 + 17 + 17 + 16 + 16 + 11 + 6 + 3 + 21 + 22 + 128 + 22 + 176 + 22 + 192 + 22 + 3 + 63 + 22 + 1 + 11 + 2 + 20 + 3 + 6 + 14 + 7 + 15 + 17 + 6 + 21 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +SVTCA[x-axis] +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +787 0 m 1,0,-1 + 634 0 l 1,1,-1 + 310 951 l 1,2,3 + 316 795 316 795 316 724 c 2,4,-1 + 316 0 l 1,5,-1 + 142 0 l 1,6,-1 + 142 1082 l 1,7,-1 + 422 1082 l 1,8,-1 + 642 421 l 1,9,10 + 694 278 694 278 710 135 c 1,11,12 + 732 296 732 296 778 421 c 1,13,-1 + 998 1082 l 1,14,-1 + 1267 1082 l 1,15,-1 + 1267 0 l 1,16,-1 + 1094 0 l 1,17,-1 + 1094 724 l 1,18,-1 + 1097 838 l 1,19,-1 + 1102 953 l 1,20,-1 + 787 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D0E +Encoding: 7438 7438 1326 +Width: 1144 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 11 + 1 + 1 + 12 + 3 + 6 + 6 + 5 + 12 + 5 + 14 + 15 + 176 + 15 + 192 + 15 + 208 + 15 + 3 + 176 + 15 + 240 + 15 + 2 + 112 + 15 + 128 + 15 + 160 + 15 + 176 + 15 + 192 + 15 + 5 + 2 + 10 + 12 + 3 + 13 + 15 + 6 + 12 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +SVTCA[x-axis] +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +316 1082 m 1,0,-1 + 316 490 l 1,1,-1 + 306 213 l 1,2,-1 + 805 1082 l 1,3,-1 + 1002 1082 l 1,4,-1 + 1002 0 l 1,5,-1 + 830 0 l 1,6,-1 + 830 660 l 2,7,8 + 830 696 830 696 833.5 769 c 128,-1,9 + 837 842 837 842 840 873 c 1,10,-1 + 334 0 l 1,11,-1 + 142 0 l 1,12,-1 + 142 1082 l 1,13,-1 + 316 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D0F +Encoding: 7439 7439 1327 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D10 +Encoding: 7440 7440 1328 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 534 596 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D11 +Encoding: 7441 7441 1329 +Width: 1246 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 20 + 3 + 14 + 8 + 3 + 8 + 24 + 23 + 6 + 17 + 83 + 89 + 6 + 0 + 11 + 83 + 89 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +622 1016 m 0,0,1 + 906 1016 906 1016 1045 891 c 128,-1,2 + 1184 766 1184 766 1184 528 c 0,3,4 + 1184 291 1184 291 1039.5 170 c 128,-1,5 + 895 49 895 49 622 49 c 0,6,7 + 62 49 62 49 62 534 c 0,8,9 + 62 782 62 782 198.5 899 c 128,-1,10 + 335 1016 335 1016 622 1016 c 0,0,1 +622 827 m 0,11,12 + 398 827 398 827 296.5 760.5 c 128,-1,13 + 195 694 195 694 195 537 c 0,14,15 + 195 379 195 379 298.5 308.5 c 128,-1,16 + 402 238 402 238 622 238 c 0,17,18 + 837 238 837 238 944 307.5 c 128,-1,19 + 1051 377 1051 377 1051 526 c 0,20,21 + 1051 688 1051 688 947 757.5 c 128,-1,22 + 843 827 843 827 622 827 c 0,11,12 +EndSplineSet +EndChar + +StartChar: uni1D12 +Encoding: 7442 7442 1330 +Width: 1246 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 23 + 16 + 3 + 10 + 10 + 6 + 20 + 16 + 4 + 27 + 26 + 13 + 0 + 83 + 89 + 13 + 20 + 6 + 6 + 19 + 7 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +631 802 m 0,0,1 + 415 802 415 802 311 734 c 128,-1,2 + 207 666 207 666 207 529 c 0,3,4 + 207 433 207 433 259 368.5 c 128,-1,5 + 311 304 311 304 419 289 c 1,6,-1 + 407 107 l 1,7,8 + 251 128 251 128 158 240 c 128,-1,9 + 65 352 65 352 65 524 c 0,10,11 + 65 751 65 751 208.5 870.5 c 128,-1,12 + 352 990 352 990 627 990 c 0,13,14 + 900 990 900 990 1043.5 870 c 128,-1,15 + 1187 750 1187 750 1187 526 c 0,16,17 + 1187 360 1187 360 1101 250.5 c 128,-1,18 + 1015 141 1015 141 864 113 c 1,19,-1 + 850 298 l 1,20,21 + 940 312 940 312 993 369 c 128,-1,22 + 1046 426 1046 426 1046 531 c 0,23,24 + 1046 674 1046 674 951 738 c 128,-1,25 + 856 802 856 802 631 802 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D13 +Encoding: 7443 7443 1331 +Width: 1246 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 32 + 15 + 12 + 24 + 7 + 3 + 3 + 5 + 8 + 22 + 21 + 30 + 17 + 14 + 12 + 9 + 36 + 35 + 17 + 14 + 30 + 22 + 5 + 8 + 6 + 10 + 0 + 10 + 27 + 83 + 89 + 7 + 10 + 0 + 19 + 83 + 89 + 16 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +627 50 m 0,0,1 + 343 50 343 50 204 175 c 128,-1,2 + 65 300 65 300 65 538 c 0,3,4 + 65 733 65 733 163 851 c 1,5,-1 + 47 951 l 1,6,-1 + 47 1118 l 1,7,-1 + 261 934 l 1,8,9 + 399 1017 399 1017 627 1017 c 0,10,11 + 1187 1017 1187 1017 1187 532 c 0,12,13 + 1187 331 1187 331 1096 216 c 1,14,-1 + 1201 125 l 1,15,-1 + 1201 -42 l 1,16,-1 + 1000 131 l 1,17,18 + 867 50 867 50 627 50 c 0,0,1 +627 239 m 0,19,20 + 756 239 756 239 848 262 c 1,21,-1 + 286 745 l 1,22,23 + 198 677 198 677 198 540 c 0,24,25 + 198 378 198 378 302 308.5 c 128,-1,26 + 406 239 406 239 627 239 c 0,19,20 +627 828 m 0,27,28 + 497 828 497 828 412 804 c 1,29,-1 + 973 322 l 1,30,31 + 1054 389 1054 389 1054 529 c 0,32,33 + 1054 687 1054 687 950.5 757.5 c 128,-1,34 + 847 828 847 828 627 828 c 0,27,28 +EndSplineSet +EndChar + +StartChar: uni1D14 +Encoding: 7444 7444 1332 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 58 + 6 + 7 + 7 + 38 + 25 + 21 + 11 + 27 + 27 + 0 + 44 + 33 + 16 + 16 + 44 + 25 + 3 + 45 + 46 + 26 + 38 + 80 + 89 + 21 + 23 + 11 + 9 + 26 + 26 + 23 + 9 + 23 + 41 + 80 + 89 + 23 + 22 + 19 + 30 + 80 + 89 + 19 + 22 + 13 + 35 + 80 + 89 + 13 + 16 + 6 + 6 + 9 + 9 + 3 + 80 + 89 + 9 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP2 +IP +SRP2 +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +859 579 m 1,0,1 + 859 765 859 765 782 866 c 128,-1,2 + 705 967 705 967 557 967 c 0,3,4 + 440 967 440 967 369.5 920 c 128,-1,5 + 299 873 299 873 274 801 c 1,6,-1 + 116 846 l 1,7,8 + 213 1102 213 1102 557 1102 c 0,9,10 + 831 1102 831 1102 953 919 c 1,11,12 + 1077 1102 1077 1102 1354 1102 c 0,13,14 + 1592 1102 1592 1102 1717.5 957.5 c 128,-1,15 + 1843 813 1843 813 1843 540 c 0,16,17 + 1843 261 1843 261 1716 120.5 c 128,-1,18 + 1589 -20 1589 -20 1348 -20 c 0,19,20 + 1067 -20 1067 -20 950 157 c 1,21,22 + 824 -20 824 -20 564 -20 c 0,23,24 + 87 -20 87 -20 87 555 c 2,25,-1 + 87 579 l 1,26,-1 + 859 579 l 1,0,1 +1048 540 m 0,27,28 + 1048 321 1048 321 1117 217 c 128,-1,29 + 1186 113 1186 113 1345 113 c 0,30,31 + 1507 113 1507 113 1580.5 219.5 c 128,-1,32 + 1654 326 1654 326 1654 540 c 0,33,34 + 1654 969 1654 969 1356 969 c 0,35,36 + 1192 969 1192 969 1120 865 c 128,-1,37 + 1048 761 1048 761 1048 540 c 0,27,28 +273 441 m 1,38,39 + 288 270 288 270 360 191.5 c 128,-1,40 + 432 113 432 113 567 113 c 0,41,42 + 698 113 698 113 774.5 200.5 c 128,-1,43 + 851 288 851 288 857 441 c 1,44,-1 + 273 441 l 1,38,39 +EndSplineSet +EndChar + +StartChar: uni1D15 +Encoding: 7445 7445 1333 +Width: 936 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 16 + 3 + 0 + 21 + 20 + 20 + 32 + 13 + 26 + 0 + 0 + 27 + 7 + 13 + 7 + 38 + 39 + 4 + 16 + 29 + 64 + 24 + 24 + 10 + 26 + 20 + 15 + 10 + 35 + 81 + 89 + 10 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SMD +MDRP[min,rnd,black] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +845 1082 m 1,0,1 + 845 951 845 951 774.5 859 c 128,-1,2 + 704 767 704 767 583 743 c 1,3,-1 + 583 739 l 1,4,5 + 715 717 715 717 791.5 620.5 c 128,-1,6 + 868 524 868 524 868 383 c 0,7,8 + 868 188 868 188 764 84 c 128,-1,9 + 660 -20 660 -20 468 -20 c 0,10,11 + 275 -20 275 -20 171 85 c 128,-1,12 + 67 190 67 190 67 381 c 0,13,14 + 67 522 67 522 147.5 619.5 c 128,-1,15 + 228 717 228 717 348 737 c 1,16,-1 + 348 741 l 1,17,18 + 227 770 227 770 157.5 861.5 c 128,-1,19 + 88 953 88 953 88 1082 c 1,20,-1 + 272 1082 l 1,21,22 + 272 955 272 955 323 887 c 128,-1,23 + 374 819 374 819 466 819 c 0,24,25 + 658 819 658 819 658 1082 c 1,26,-1 + 845 1082 l 1,0,1 +691 381 m 0,27,28 + 691 649 691 649 465 649 c 0,29,30 + 357 649 357 649 300 580.5 c 128,-1,31 + 243 512 243 512 243 381 c 0,32,33 + 243 251 243 251 301 181 c 128,-1,34 + 359 111 359 111 469 111 c 0,35,36 + 578 111 578 111 634.5 179 c 128,-1,37 + 691 247 691 247 691 381 c 0,27,28 +EndSplineSet +EndChar + +StartChar: uni1D16 +Encoding: 7446 7446 1334 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 7 + 0 + 12 + 7 + 12 + 13 + 14 + 0 + 7 + 9 + 9 + 3 + 80 + 89 + 9 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +864 542 m 1,0,1 + 864 766 864 766 797.5 867.5 c 128,-1,2 + 731 969 731 969 574 969 c 0,3,4 + 416 969 416 969 345.5 865.5 c 128,-1,5 + 275 762 275 762 275 542 c 1,6,-1 + 86 542 l 1,7,8 + 86 1102 86 1102 571 1102 c 0,9,10 + 819 1102 819 1102 936 965.5 c 128,-1,11 + 1053 829 1053 829 1053 542 c 1,12,-1 + 864 542 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D17 +Encoding: 7447 7447 1335 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 0 + 13 + 6 + 7 + 13 + 7 + 14 + 15 + 6 + 13 + 10 + 10 + 3 + 80 + 89 + 10 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +275 542 m 1,0,1 + 275 328 275 328 344.5 220.5 c 128,-1,2 + 414 113 414 113 563 113 c 0,3,4 + 725 113 725 113 794.5 217 c 128,-1,5 + 864 321 864 321 864 542 c 1,6,-1 + 1053 542 l 1,7,8 + 1053 258 1053 258 928 119 c 128,-1,9 + 803 -20 803 -20 565 -20 c 0,10,11 + 328 -20 328 -20 207 124.5 c 128,-1,12 + 86 269 86 269 86 542 c 1,13,-1 + 275 542 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D18 +Encoding: 7448 7448 1336 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 12 + 0 + 0 + 1 + 16 + 6 + 1 + 6 + 20 + 21 + 12 + 10 + 80 + 89 + 12 + 12 + 1 + 2 + 2 + 11 + 80 + 89 + 2 + 15 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +322 0 m 1,0,-1 + 142 0 l 1,1,-1 + 142 1082 l 1,2,-1 + 604 1082 l 2,3,4 + 782 1082 782 1082 893 992.5 c 128,-1,5 + 1004 903 1004 903 1004 755 c 0,6,7 + 1004 599 1004 599 896 509 c 128,-1,8 + 788 419 788 419 604 419 c 2,9,-1 + 322 419 l 1,10,-1 + 322 0 l 1,0,-1 +322 945 m 1,11,-1 + 322 555 l 1,12,-1 + 592 555 l 2,13,14 + 697 555 697 555 756 605.5 c 128,-1,15 + 815 656 815 656 815 752 c 0,16,17 + 815 846 815 846 756.5 895.5 c 128,-1,18 + 698 945 698 945 592 945 c 2,19,-1 + 322 945 l 1,11,-1 +EndSplineSet +EndChar + +StartChar: uni1D19 +Encoding: 7449 7449 1337 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 3 + 0 + 5 + 21 + 21 + 11 + 11 + 10 + 1 + 2 + 2 + 17 + 5 + 10 + 5 + 23 + 22 + 3 + 0 + 20 + 0 + 81 + 89 + 20 + 20 + 2 + 8 + 8 + 14 + 81 + 89 + 8 + 15 + 11 + 2 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +535 458 m 1,0,-1 + 220 0 l 1,1,-1 + 17 0 l 1,2,-1 + 361 471 l 1,3,4 + 112 522 112 522 112 783 c 0,5,6 + 112 932 112 932 220 1007 c 128,-1,7 + 328 1082 328 1082 535 1082 c 2,8,-1 + 967 1082 l 1,9,-1 + 967 0 l 1,10,-1 + 787 0 l 1,11,-1 + 787 458 l 1,12,-1 + 535 458 l 1,0,-1 +787 955 m 1,13,-1 + 553 955 l 2,14,15 + 423 955 423 955 363 909 c 128,-1,16 + 303 863 303 863 303 770 c 0,17,18 + 303 676 303 676 356.5 629.5 c 128,-1,19 + 410 583 410 583 534 583 c 2,20,-1 + 787 583 l 1,21,-1 + 787 955 l 1,13,-1 +EndSplineSet +EndChar + +StartChar: uni1D1A +Encoding: 7450 7450 1338 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 9 + 12 + 10 + 0 + 0 + 21 + 21 + 3 + 11 + 10 + 10 + 17 + 7 + 3 + 7 + 23 + 22 + 12 + 14 + 81 + 89 + 9 + 12 + 12 + 4 + 1 + 10 + 15 + 4 + 20 + 81 + 89 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +787 624 m 1,0,-1 + 787 1082 l 1,1,-1 + 967 1082 l 1,2,-1 + 967 0 l 1,3,-1 + 535 0 l 2,4,5 + 328 0 328 0 220 75 c 128,-1,6 + 112 150 112 150 112 299 c 0,7,8 + 112 560 112 560 361 611 c 1,9,-1 + 17 1082 l 1,10,-1 + 220 1082 l 1,11,-1 + 535 624 l 1,12,-1 + 787 624 l 1,0,-1 +787 499 m 1,13,-1 + 534 499 l 2,14,15 + 410 499 410 499 356.5 452.5 c 128,-1,16 + 303 406 303 406 303 312 c 0,17,18 + 303 219 303 219 363 173 c 128,-1,19 + 423 127 423 127 553 127 c 2,20,-1 + 787 127 l 1,21,-1 + 787 499 l 1,13,-1 +EndSplineSet +EndChar + +StartChar: uni1D1B +Encoding: 7451 7451 1339 +Width: 938 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 4 + 5 + 1 + 5 + 0 + 3 + 8 + 9 + 128 + 9 + 1 + 63 + 9 + 1 + 16 + 9 + 32 + 9 + 2 + 15 + 9 + 1 + 11 + 3 + 5 + 21 + 3 + 7 + 0 + 7 + 81 + 89 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +35 1082 m 1,0,-1 + 903 1082 l 1,1,-1 + 903 951 l 1,2,-1 + 559 951 l 1,3,-1 + 559 0 l 1,4,-1 + 379 0 l 1,5,-1 + 379 951 l 1,6,-1 + 35 951 l 1,7,-1 + 35 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D1C +Encoding: 7452 7452 1340 +Width: 1120 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D1D +Encoding: 7453 7453 1341 +Width: 1222 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 9 + 0 + 18 + 19 + 19 + 5 + 5 + 14 + 22 + 0 + 22 + 27 + 28 + 0 + 26 + 18 + 9 + 10 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +68 269 m 1,0,-1 + 754 269 l 2,1,2 + 861 269 861 269 920 290 c 128,-1,3 + 979 311 979 311 1005 357 c 128,-1,4 + 1031 403 1031 403 1031 492 c 0,5,6 + 1031 622 1031 622 942 697 c 128,-1,7 + 853 772 853 772 695 772 c 2,8,-1 + 68 772 l 1,9,-1 + 68 952 l 1,10,-1 + 919 952 l 2,11,12 + 1108 952 1108 952 1150 958 c 1,13,-1 + 1150 788 l 1,14,15 + 1145 787 1145 787 1123 786 c 128,-1,16 + 1101 785 1101 785 1072.5 783.5 c 128,-1,17 + 1044 782 1044 782 965 780 c 1,18,-1 + 965 777 l 1,19,20 + 1077 715 1077 715 1123.5 633.5 c 128,-1,21 + 1170 552 1170 552 1170 431 c 0,22,23 + 1170 253 1170 253 1081.5 170.5 c 128,-1,24 + 993 88 993 88 789 88 c 2,25,-1 + 68 88 l 1,26,-1 + 68 269 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D1E +Encoding: 7454 7454 1342 +Width: 1502 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 18 + 19 + 19 + 5 + 5 + 14 + 22 + 9 + 26 + 33 + 29 + 29 + 34 + 30 + 30 + 26 + 22 + 3 + 36 + 35 + 34 + 31 + 27 + 30 + 31 + 30 + 31 + 30 + 10 + 0 + 26 + 18 + 9 + 10 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +MDRP[min,rnd,black] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP0 +MDRP[min,rnd,black] +SRP0 +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +348 269 m 1,0,-1 + 1034 269 l 2,1,2 + 1141 269 1141 269 1200 290 c 128,-1,3 + 1259 311 1259 311 1285 357 c 128,-1,4 + 1311 403 1311 403 1311 492 c 0,5,6 + 1311 622 1311 622 1222 697 c 128,-1,7 + 1133 772 1133 772 975 772 c 2,8,-1 + 348 772 l 1,9,-1 + 348 952 l 1,10,-1 + 1199 952 l 2,11,12 + 1388 952 1388 952 1430 958 c 1,13,-1 + 1430 788 l 1,14,15 + 1425 787 1425 787 1403 786 c 128,-1,16 + 1381 785 1381 785 1352.5 783.5 c 128,-1,17 + 1324 782 1324 782 1245 780 c 1,18,-1 + 1245 777 l 1,19,20 + 1357 715 1357 715 1403.5 633.5 c 128,-1,21 + 1450 552 1450 552 1450 431 c 0,22,23 + 1450 253 1450 253 1361.5 170.5 c 128,-1,24 + 1273 88 1273 88 1069 88 c 2,25,-1 + 348 88 l 1,26,-1 + 348 269 l 1,0,-1 +69 406 m 1,27,-1 + 253 406 l 1,28,-1 + 253 243 l 1,29,-1 + 69 243 l 1,30,-1 + 69 406 l 1,27,-1 +69 800 m 1,31,-1 + 253 800 l 1,32,-1 + 253 635 l 1,33,-1 + 69 635 l 1,34,-1 + 69 800 l 1,31,-1 +EndSplineSet +EndChar + +StartChar: uni1D1F +Encoding: 7455 7455 1343 +Width: 1222 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 17 + 24 + 9 + 12 + 9 + 0 + 33 + 4 + 21 + 21 + 12 + 37 + 28 + 33 + 28 + 42 + 43 + 41 + 24 + 0 + 0 + 9 + 33 + 32 + 17 + 8 + 9 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +MDRP[min,rnd,black] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +63 636 m 1,0,-1 + 749 636 l 2,1,2 + 906 636 906 636 966 679 c 128,-1,3 + 1026 722 1026 722 1026 834 c 0,4,5 + 1026 949 1026 949 938 1016 c 128,-1,6 + 850 1083 850 1083 690 1083 c 2,7,-1 + 63 1083 l 1,8,-1 + 63 1262 l 1,9,-1 + 914 1262 l 2,10,11 + 1103 1262 1103 1262 1145 1268 c 1,12,-1 + 1145 1098 l 1,13,14 + 1140 1097 1140 1097 1118 1096 c 128,-1,15 + 1096 1095 1096 1095 1067.5 1093.5 c 128,-1,16 + 1039 1092 1039 1092 960 1090 c 1,17,-1 + 960 1087 l 1,18,19 + 1075 1029 1075 1029 1120 954 c 128,-1,20 + 1165 879 1165 879 1165 771 c 0,21,22 + 1165 648 1165 648 1116 576.5 c 128,-1,23 + 1067 505 1067 505 960 477 c 1,24,-1 + 960 474 l 1,25,26 + 1069 418 1069 418 1117 338.5 c 128,-1,27 + 1165 259 1165 259 1165 146 c 0,28,29 + 1165 -18 1165 -18 1076 -92.5 c 128,-1,30 + 987 -167 987 -167 784 -167 c 2,31,-1 + 63 -167 l 1,32,-1 + 63 11 l 1,33,-1 + 749 11 l 2,34,35 + 906 11 906 11 966 54 c 128,-1,36 + 1026 97 1026 97 1026 209 c 0,37,38 + 1026 327 1026 327 938.5 392.5 c 128,-1,39 + 851 458 851 458 690 458 c 2,40,-1 + 63 458 l 1,41,-1 + 63 636 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D20 +Encoding: 7456 7456 1344 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 89 118 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D21 +Encoding: 7457 7457 1345 +Width: 1479 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 90 119 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D22 +Encoding: 7458 7458 1346 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 93 122 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D23 +Encoding: 7459 7459 1347 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 14 + 20 + 17 + 15 + 19 + 19 + 9 + 23 + 17 + 4 + 3 + 23 + 3 + 27 + 26 + 14 + 20 + 20 + 12 + 81 + 89 + 20 + 20 + 17 + 0 + 19 + 16 + 17 + 16 + 80 + 89 + 17 + 15 + 0 + 6 + 80 + 89 + 4 + 4 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +458 -20 m 0,0,1 + 291 -20 291 -20 192.5 42.5 c 128,-1,2 + 94 105 94 105 49 234 c 1,3,-1 + 208 278 l 1,4,5 + 261 114 261 114 462 114 c 0,6,7 + 558 114 558 114 618.5 164 c 128,-1,8 + 679 214 679 214 679 304 c 0,9,10 + 679 411 679 411 610.5 460 c 128,-1,11 + 542 509 542 509 388 509 c 2,12,-1 + 340 509 l 1,13,-1 + 340 646 l 1,14,-1 + 650 943 l 1,15,-1 + 113 943 l 1,16,-1 + 113 1082 l 1,17,-1 + 858 1082 l 1,18,-1 + 858 947 l 1,19,-1 + 513 629 l 1,20,21 + 681 626 681 626 771.5 540.5 c 128,-1,22 + 862 455 862 455 862 304 c 0,23,24 + 862 152 862 152 754.5 66 c 128,-1,25 + 647 -20 647 -20 458 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D24 +Encoding: 7460 7460 1348 +Width: 875 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 53 + 29 + 30 + 30 + 4 + 16 + 0 + 19 + 9 + 10 + 10 + 24 + 36 + 36 + 19 + 16 + 3 + 40 + 41 + 39 + 1 + 81 + 89 + 20 + 19 + 81 + 89 + 4 + 13 + 39 + 24 + 20 + 33 + 39 + 20 + 39 + 20 + 13 + 29 + 33 + 33 + 27 + 80 + 89 + 33 + 16 + 9 + 13 + 13 + 7 + 80 + 89 + 13 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +SRP1 +SRP2 +IP +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +528 428 m 1,0,-1 + 469 428 l 2,1,2 + 349 428 349 428 297.5 388 c 128,-1,3 + 246 348 246 348 246 267 c 0,4,5 + 246 203 246 203 295 160 c 128,-1,6 + 344 117 344 117 428 117 c 0,7,8 + 588 117 588 117 641 288 c 1,9,-1 + 811 268 l 1,10,11 + 780 126 780 126 678.5 52.5 c 128,-1,12 + 577 -21 577 -21 426 -21 c 0,13,14 + 259 -21 259 -21 162 54 c 128,-1,15 + 65 129 65 129 65 264 c 0,16,17 + 65 380 65 380 142 450.5 c 128,-1,18 + 219 521 219 521 348 527 c 1,19,-1 + 348 651 l 1,20,-1 + 407 651 l 2,21,22 + 527 651 527 651 578.5 691 c 128,-1,23 + 630 731 630 731 630 812 c 0,24,25 + 630 876 630 876 581 919 c 128,-1,26 + 532 962 532 962 448 962 c 0,27,28 + 288 962 288 962 235 791 c 1,29,-1 + 65 811 l 1,30,31 + 96 953 96 953 197.5 1026.5 c 128,-1,32 + 299 1100 299 1100 450 1100 c 0,33,34 + 617 1100 617 1100 714 1024.5 c 128,-1,35 + 811 949 811 949 811 815 c 0,36,37 + 811 699 811 699 734 628.5 c 128,-1,38 + 657 558 657 558 528 552 c 1,39,-1 + 528 428 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D25 +Encoding: 7461 7461 1349 +Width: 1243 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 25 + 40 + 11 + 3 + 15 + 21 + 21 + 33 + 15 + 3 + 33 + 3 + 45 + 44 + 40 + 25 + 11 + 3 + 18 + 32 + 36 + 36 + 29 + 80 + 89 + 36 + 22 + 18 + 16 + 0 + 7 + 80 + 89 + 4 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +301 -20 m 0,0,1 + 214 -20 214 -20 155.5 7.5 c 128,-1,2 + 97 35 97 35 41 98 c 1,3,-1 + 129 213 l 1,4,5 + 162 174 162 174 207 148 c 128,-1,6 + 252 122 252 122 297 122 c 0,7,8 + 331 122 331 122 366.5 139 c 128,-1,9 + 402 156 402 156 427 191 c 2,10,-1 + 520 322 l 1,11,-1 + 375 500 l 2,12,13 + 301 591 301 591 272 659 c 128,-1,14 + 243 727 243 727 243 794 c 0,15,16 + 243 940 243 940 340.5 1020.5 c 128,-1,17 + 438 1101 438 1101 623 1101 c 0,18,19 + 807 1101 807 1101 905 1021.5 c 128,-1,20 + 1003 942 1003 942 1003 795 c 0,21,22 + 1003 728 1003 728 974 659 c 128,-1,23 + 945 590 945 590 871 500 c 2,24,-1 + 726 322 l 1,25,-1 + 819 191 l 2,26,27 + 844 156 844 156 879.5 139 c 128,-1,28 + 915 122 915 122 949 122 c 0,29,30 + 994 122 994 122 1039 148 c 128,-1,31 + 1084 174 1084 174 1117 213 c 1,32,-1 + 1205 98 l 1,33,34 + 1148 35 1148 35 1090.5 7.5 c 128,-1,35 + 1033 -20 1033 -20 945 -20 c 0,36,37 + 858 -20 858 -20 797 15.5 c 128,-1,38 + 736 51 736 51 678 142 c 2,39,-1 + 623 227 l 1,40,-1 + 568 142 l 2,41,42 + 511 52 511 52 450.5 16 c 128,-1,43 + 390 -20 390 -20 301 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D26 +Encoding: 7462 7462 1350 +Width: 747 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 4 + 4 + 0 + 6 + 7 + 5 + 2 + 81 + 89 + 5 + 15 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +687 1082 m 1,0,-1 + 687 951 l 1,1,-1 + 322 951 l 1,2,-1 + 322 0 l 1,3,-1 + 142 0 l 1,4,-1 + 142 1082 l 1,5,-1 + 687 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D27 +Encoding: 7463 7463 1351 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 590 652 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D28 +Encoding: 7464 7464 1352 +Width: 1109 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 2 + 1 + 5 + 6 + 1 + 6 + 9 + 8 + 160 + 9 + 176 + 9 + 192 + 9 + 3 + 160 + 9 + 224 + 9 + 2 + 96 + 9 + 144 + 9 + 160 + 9 + 176 + 9 + 4 + 15 + 9 + 1 + 10 + 3 + 7 + 4 + 81 + 89 + 7 + 15 + 2 + 6 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +967 1082 m 1,0,-1 + 967 0 l 1,1,-1 + 787 0 l 1,2,-1 + 787 951 l 1,3,-1 + 322 951 l 1,4,-1 + 322 0 l 1,5,-1 + 142 0 l 1,6,-1 + 142 1082 l 1,7,-1 + 967 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D29 +Encoding: 7465 7465 1353 +Width: 1067 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1336 7448 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D2A +Encoding: 7466 7466 1354 +Width: 1460 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 8 + 5 + 14 + 25 + 25 + 11 + 0 + 17 + 20 + 20 + 0 + 5 + 3 + 26 + 27 + 24 + 1 + 11 + 1 + 80 + 89 + 14 + 47 + 11 + 1 + 11 + 11 + 18 + 12 + 6 + 15 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +IP +MDAP[rnd] +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +641 0 m 1,0,-1 + 641 310 l 1,1,2 + 490 310 490 310 371.5 364 c 128,-1,3 + 253 418 253 418 189.5 513 c 128,-1,4 + 126 608 126 608 126 727 c 2,5,-1 + 126 1082 l 1,6,-1 + 299 1082 l 1,7,-1 + 299 774 l 2,8,9 + 299 619 299 619 388 531 c 128,-1,10 + 477 443 477 443 641 443 c 1,11,-1 + 641 1082 l 1,12,-1 + 818 1082 l 1,13,-1 + 818 443 l 1,14,15 + 983 443 983 443 1072 528.5 c 128,-1,16 + 1161 614 1161 614 1161 774 c 2,17,-1 + 1161 1082 l 1,18,-1 + 1334 1082 l 1,19,-1 + 1334 727 l 2,20,21 + 1334 606 1334 606 1272 511 c 128,-1,22 + 1210 416 1210 416 1092 363 c 128,-1,23 + 974 310 974 310 818 310 c 1,24,-1 + 818 0 l 1,25,-1 + 641 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D2B +Encoding: 7467 7467 1355 +Width: 1195 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 2 + 17 + 0 + 19 + 19 + 17 + 9 + 3 + 20 + 21 + 112 + 21 + 128 + 21 + 144 + 21 + 3 + 112 + 21 + 176 + 21 + 2 + 0 + 21 + 32 + 21 + 48 + 21 + 96 + 21 + 112 + 21 + 128 + 21 + 6 + 13 + 3 + 17 + 2 + 81 + 89 + 17 + 15 + 7 + 12 + 80 + 89 + 7 + 10 + 80 + 89 + 7 + 22 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[x-axis] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +872 0 m 1,0,-1 + 872 951 l 1,1,-1 + 497 951 l 1,2,3 + 438 515 438 515 406 362.5 c 128,-1,4 + 374 210 374 210 337 132 c 128,-1,5 + 300 54 300 54 245.5 17 c 128,-1,6 + 191 -20 191 -20 105 -20 c 0,7,8 + 55 -20 55 -20 11 -7 c 1,9,-1 + 11 122 l 1,10,11 + 36 113 36 113 79 113 c 0,12,13 + 134 113 134 113 167.5 168 c 128,-1,14 + 201 223 201 223 228.5 358 c 128,-1,15 + 256 493 256 493 291 757 c 2,16,-1 + 335 1082 l 1,17,-1 + 1053 1082 l 1,18,-1 + 1053 0 l 1,19,-1 + 872 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D2C +Encoding: 7468 7468 1356 +Width: 928 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 11 + 12 + 4 + 0 + 7 + 7 + 16 + 3 + 4 + 4 + 15 + 11 + 2 + 229 + 89 + 63 + 11 + 1 + 11 + 11 + 4 + 8 + 5 + 230 + 0 + 4 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +786 490 m 1,0,-1 + 677 779 l 1,1,-1 + 253 779 l 1,2,-1 + 142 490 l 1,3,-1 + -4 490 l 1,4,-1 + 388 1484 l 1,5,-1 + 544 1484 l 1,6,-1 + 930 490 l 1,7,-1 + 786 490 l 1,0,-1 +465 1359 m 1,8,9 + 454 1325 454 1325 438.5 1279 c 128,-1,10 + 423 1233 423 1233 295 890 c 1,11,-1 + 637 890 l 1,12,-1 + 514 1211 l 2,13,14 + 481 1293 481 1293 465 1359 c 1,8,9 +EndSplineSet +EndChar + +StartChar: uni1D2D +Encoding: 7469 7469 1357 +Width: 1359 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 59 + 11 + 7 + 14 + 20 + 2 + 21 + 4 + 21 + 0 + 9 + 13 + 13 + 0 + 3 + 4 + 4 + 0 + 14 + 3 + 23 + 22 + 20 + 2 + 229 + 89 + 9 + 12 + 229 + 89 + 15 + 20 + 1 + 15 + 9 + 1 + 12 + 3 + 20 + 9 + 20 + 9 + 0 + 5 + 16 + 8 + 5 + 8 + 229 + 89 + 5 + 230 + 4 + 232 + 0 + 13 + 229 + 89 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +651 490 m 1,0,-1 + 651 779 l 1,1,-1 + 291 779 l 1,2,-1 + 157 490 l 1,3,-1 + 11 490 l 1,4,-1 + 478 1484 l 1,5,-1 + 1307 1484 l 1,6,-1 + 1307 1368 l 1,7,-1 + 792 1368 l 1,8,-1 + 792 1058 l 1,9,-1 + 1266 1058 l 1,10,-1 + 1266 944 l 1,11,-1 + 792 944 l 1,12,-1 + 792 606 l 1,13,-1 + 1334 606 l 1,14,-1 + 1334 490 l 1,15,-1 + 651 490 l 1,0,-1 +651 1375 m 1,16,-1 + 561 1375 l 1,17,-1 + 514 1272 l 1,18,-1 + 490 1217 l 1,19,-1 + 341 890 l 1,20,-1 + 651 890 l 1,21,-1 + 651 1375 l 1,16,-1 +EndSplineSet +EndChar + +StartChar: uni1D2E +Encoding: 7470 7470 1358 +Width: 849 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 19 + 26 + 26 + 4 + 14 + 8 + 8 + 22 + 0 + 4 + 0 + 30 + 31 + 11 + 19 + 25 + 19 + 25 + 229 + 89 + 15 + 19 + 1 + 12 + 3 + 19 + 19 + 4 + 5 + 5 + 18 + 229 + 89 + 5 + 230 + 4 + 26 + 229 + 89 + 4 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +798 772 m 0,0,1 + 798 640 798 640 704.5 565 c 128,-1,2 + 611 490 611 490 442 490 c 2,3,-1 + 53 490 l 1,4,-1 + 53 1484 l 1,5,-1 + 400 1484 l 2,6,7 + 742 1484 742 1484 742 1241 c 0,8,9 + 742 1162 742 1162 699.5 1100.5 c 128,-1,10 + 657 1039 657 1039 572 1015 c 1,11,12 + 683 998 683 998 740.5 932.5 c 128,-1,13 + 798 867 798 867 798 772 c 0,0,1 +601 1225 m 0,14,15 + 601 1304 601 1304 549 1337 c 128,-1,16 + 497 1370 497 1370 400 1370 c 2,17,-1 + 194 1370 l 1,18,-1 + 194 1064 l 1,19,-1 + 400 1064 l 2,20,21 + 601 1064 601 1064 601 1225 c 0,14,15 +656 782 m 0,22,23 + 656 954 656 954 424 954 c 2,24,-1 + 194 954 l 1,25,-1 + 194 604 l 1,26,-1 + 435 604 l 2,27,28 + 549 604 549 604 602.5 648 c 128,-1,29 + 656 692 656 692 656 782 c 0,22,23 +EndSplineSet +EndChar + +StartChar: uni1D2F +Encoding: 7471 7471 1359 +Width: 849 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 10 + 7 + 5 + 32 + 32 + 23 + 23 + 18 + 1 + 16 + 27 + 5 + 5 + 19 + 12 + 16 + 12 + 35 + 36 + 22 + 10 + 18 + 0 + 18 + 229 + 89 + 32 + 7 + 0 + 0 + 16 + 2 + 16 + 23 + 229 + 89 + 16 + 232 + 2 + 31 + 229 + 89 + 2 + 230 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-36 1069 m 1,0,-1 + 58 1069 l 1,1,-1 + 58 1484 l 1,2,-1 + 405 1484 l 2,3,4 + 747 1484 747 1484 747 1241 c 0,5,6 + 747 1135 747 1135 677 1069 c 1,7,-1 + 865 1069 l 1,8,-1 + 865 949 l 1,9,-1 + 727 949 l 1,10,11 + 803 881 803 881 803 772 c 0,12,13 + 803 640 803 640 709.5 565 c 128,-1,14 + 616 490 616 490 447 490 c 2,15,-1 + 58 490 l 1,16,-1 + 58 949 l 1,17,-1 + -36 949 l 1,18,-1 + -36 1069 l 1,0,-1 +660 782 m 0,19,20 + 660 954 660 954 429 954 c 2,21,-1 + 199 954 l 1,22,-1 + 199 604 l 1,23,-1 + 440 604 l 2,24,25 + 554 604 554 604 607 648 c 128,-1,26 + 660 692 660 692 660 782 c 0,19,20 +606 1225 m 0,27,28 + 606 1304 606 1304 554 1337 c 128,-1,29 + 502 1370 502 1370 405 1370 c 2,30,-1 + 199 1370 l 1,31,-1 + 199 1064 l 1,32,-1 + 405 1064 l 2,33,34 + 606 1064 606 1064 606 1225 c 0,27,28 +EndSplineSet +EndChar + +StartChar: uni1D30 +Encoding: 7472 7472 1360 +Width: 920 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 15 + 5 + 10 + 0 + 5 + 0 + 19 + 20 + 6 + 14 + 229 + 89 + 6 + 230 + 5 + 15 + 229 + 89 + 5 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +878 997 m 0,0,1 + 878 843 878 843 820 727.5 c 128,-1,2 + 762 612 762 612 654 551 c 128,-1,3 + 546 490 546 490 408 490 c 2,4,-1 + 50 490 l 1,5,-1 + 50 1484 l 1,6,-1 + 366 1484 l 2,7,8 + 613 1484 613 1484 745.5 1357.5 c 128,-1,9 + 878 1231 878 1231 878 997 c 0,0,1 +736 997 m 256,10,11 + 736 1179 736 1179 640.5 1274.5 c 128,-1,12 + 545 1370 545 1370 363 1370 c 2,13,-1 + 191 1370 l 1,14,-1 + 191 604 l 1,15,-1 + 392 604 l 2,16,17 + 552 604 552 604 644 709.5 c 128,-1,18 + 736 815 736 815 736 997 c 256,10,11 +EndSplineSet +EndChar + +StartChar: uni1D31 +Encoding: 7473 7473 1361 +Width: 840 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 5 + 9 + 9 + 0 + 7 + 3 + 10 + 0 + 10 + 12 + 13 + 5 + 8 + 229 + 89 + 15 + 5 + 1 + 12 + 3 + 5 + 5 + 0 + 1 + 1 + 4 + 229 + 89 + 1 + 230 + 0 + 9 + 229 + 89 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +49 490 m 1,0,-1 + 49 1484 l 1,1,-1 + 779 1484 l 1,2,-1 + 779 1368 l 1,3,-1 + 190 1368 l 1,4,-1 + 190 1058 l 1,5,-1 + 739 1058 l 1,6,-1 + 739 944 l 1,7,-1 + 190 944 l 1,8,-1 + 190 606 l 1,9,-1 + 807 606 l 1,10,-1 + 807 490 l 1,11,-1 + 49 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D32 +Encoding: 7474 7474 1362 +Width: 840 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 6 + 2 + 2 + 11 + 8 + 4 + 0 + 11 + 0 + 13 + 12 + 5 + 4 + 229 + 89 + 15 + 5 + 1 + 12 + 3 + 5 + 5 + 0 + 9 + 9 + 8 + 229 + 89 + 9 + 230 + 0 + 1 + 229 + 89 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +32 490 m 1,0,-1 + 32 606 l 1,1,-1 + 649 606 l 1,2,-1 + 649 944 l 1,3,-1 + 100 944 l 1,4,-1 + 100 1058 l 1,5,-1 + 649 1058 l 1,6,-1 + 649 1368 l 1,7,-1 + 60 1368 l 1,8,-1 + 60 1484 l 1,9,-1 + 790 1484 l 1,10,-1 + 790 490 l 1,11,-1 + 32 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D33 +Encoding: 7475 7475 1363 +Width: 1016 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 13 + 0 + 7 + 6 + 6 + 19 + 24 + 24 + 21 + 0 + 3 + 30 + 31 + 22 + 21 + 229 + 89 + 22 + 7 + 22 + 7 + 27 + 3 + 27 + 16 + 229 + 89 + 27 + 233 + 3 + 10 + 229 + 89 + 3 + 231 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +48 992 m 0,0,1 + 48 1234 48 1234 173.5 1366.5 c 128,-1,2 + 299 1499 299 1499 528 1499 c 0,3,4 + 691 1499 691 1499 791.5 1441.5 c 128,-1,5 + 892 1384 892 1384 944 1261 c 1,6,-1 + 812 1220 l 1,7,8 + 771 1304 771 1304 700.5 1343.5 c 128,-1,9 + 630 1383 630 1383 524 1383 c 0,10,11 + 363 1383 363 1383 277 1281 c 128,-1,12 + 191 1179 191 1179 191 992 c 0,13,14 + 191 807 191 807 282 699 c 128,-1,15 + 373 591 373 591 534 591 c 0,16,17 + 622 591 622 591 701.5 618.5 c 128,-1,18 + 781 646 781 646 834 697 c 1,19,-1 + 834 872 l 1,20,-1 + 548 872 l 1,21,-1 + 548 991 l 1,22,-1 + 964 991 l 1,23,-1 + 964 646 l 1,24,25 + 892 568 892 568 779.5 522 c 128,-1,26 + 667 476 667 476 534 476 c 0,27,28 + 305 476 305 476 176.5 613.5 c 128,-1,29 + 48 751 48 751 48 992 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D34 +Encoding: 7476 7476 1364 +Width: 878 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 8 + 0 + 0 + 11 + 7 + 3 + 3 + 4 + 11 + 4 + 13 + 12 + 7 + 2 + 229 + 89 + 7 + 7 + 4 + 9 + 5 + 230 + 0 + 4 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +690 490 m 1,0,-1 + 690 948 l 1,1,-1 + 187 948 l 1,2,-1 + 187 490 l 1,3,-1 + 46 490 l 1,4,-1 + 46 1484 l 1,5,-1 + 187 1484 l 1,6,-1 + 187 1066 l 1,7,-1 + 690 1066 l 1,8,-1 + 690 1484 l 1,9,-1 + 833 1484 l 1,10,-1 + 833 490 l 1,11,-1 + 690 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D35 +Encoding: 7477 7477 1365 +Width: 342 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 1 + 0 + 0 + 4 + 5 + 2 + 230 + 1 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +241 490 m 1,0,-1 + 99 490 l 1,1,-1 + 99 1484 l 1,2,-1 + 241 1484 l 1,3,-1 + 241 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D36 +Encoding: 7478 7478 1366 +Width: 644 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 9 + 14 + 3 + 2 + 2 + 12 + 14 + 3 + 18 + 17 + 3 + 3 + 0 + 12 + 12 + 11 + 229 + 89 + 12 + 230 + 0 + 6 + 229 + 89 + 0 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +311 476 m 0,0,1 + 65 476 65 476 17 741 c 1,2,-1 + 155 765 l 1,3,4 + 168 681 168 681 209 636 c 128,-1,5 + 250 591 250 591 312 591 c 0,6,7 + 379 591 379 591 418 640 c 128,-1,8 + 457 689 457 689 457 785 c 2,9,-1 + 457 1368 l 1,10,-1 + 274 1368 l 1,11,-1 + 274 1484 l 1,12,-1 + 598 1484 l 1,13,-1 + 598 788 l 2,14,15 + 598 644 598 644 522 560 c 128,-1,16 + 446 476 446 476 311 476 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D37 +Encoding: 7479 7479 1367 +Width: 870 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 1 + 10 + 7 + 9 + 7 + 3 + 3 + 4 + 8 + 9 + 9 + 0 + 11 + 4 + 11 + 12 + 13 + 2 + 7 + 10 + 7 + 1 + 3 + 4 + 8 + 5 + 230 + 0 + 4 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +686 490 m 1,0,-1 + 308 964 l 1,1,-1 + 190 871 l 1,2,-1 + 190 490 l 1,3,-1 + 49 490 l 1,4,-1 + 49 1484 l 1,5,-1 + 190 1484 l 1,6,-1 + 190 998 l 1,7,-1 + 641 1484 l 1,8,-1 + 805 1484 l 1,9,-1 + 396 1052 l 1,10,-1 + 859 490 l 1,11,-1 + 686 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D38 +Encoding: 7480 7480 1368 +Width: 720 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 0 + 0 + 4 + 6 + 7 + 1 + 230 + 0 + 3 + 229 + 89 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +45 490 m 1,0,-1 + 45 1484 l 1,1,-1 + 186 1484 l 1,2,-1 + 186 606 l 1,3,-1 + 668 606 l 1,4,-1 + 668 490 l 1,5,-1 + 45 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D39 +Encoding: 7481 7481 1369 +Width: 1045 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 15 + 12 + 12 + 13 + 21 + 0 + 0 + 23 + 23 + 18 + 13 + 3 + 24 + 25 + 21 + 230 + 3 + 10 + 18 + 3 + 13 + 14 + 230 + 7 + 0 + 13 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +863 490 m 1,0,-1 + 863 1153 l 2,1,2 + 863 1275 863 1275 866 1311 c 1,3,4 + 862 1290 862 1290 845.5 1238.5 c 128,-1,5 + 829 1187 829 1187 574 490 c 1,6,-1 + 474 490 l 1,7,-1 + 223 1166 l 2,8,9 + 193 1243 193 1243 176 1311 c 1,10,-1 + 179 1153 l 1,11,-1 + 179 490 l 1,12,-1 + 52 490 l 1,13,-1 + 52 1484 l 1,14,-1 + 233 1484 l 1,15,-1 + 488 798 l 2,16,17 + 497 774 497 774 525 668 c 1,18,-1 + 534 701 l 1,19,-1 + 564 798 l 1,20,-1 + 815 1484 l 1,21,-1 + 991 1484 l 1,22,-1 + 991 490 l 1,23,-1 + 863 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D3A +Encoding: 7482 7482 1370 +Width: 881 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 6 + 3 + 3 + 4 + 0 + 9 + 9 + 12 + 4 + 12 + 13 + 14 + 7 + 1 + 4 + 10 + 5 + 230 + 0 + 4 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +667 490 m 1,0,-1 + 168 1312 l 1,1,-1 + 173 1150 l 1,2,-1 + 173 490 l 1,3,-1 + 46 490 l 1,4,-1 + 46 1484 l 1,5,-1 + 206 1484 l 1,6,-1 + 710 657 l 1,7,8 + 704 741 704 741 704 833 c 2,9,-1 + 704 1484 l 1,10,-1 + 833 1484 l 1,11,-1 + 833 490 l 1,12,-1 + 667 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D3B +Encoding: 7483 7483 1371 +Width: 879 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 13 + 3 + 3 + 0 + 6 + 9 + 9 + 8 + 0 + 8 + 14 + 15 + 5 + 12 + 6 + 1 + 230 + 9 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +46 490 m 1,0,-1 + 46 1484 l 1,1,-1 + 174 1484 l 1,2,-1 + 174 833 l 2,3,4 + 174 819 174 819 168 657 c 1,5,-1 + 672 1484 l 1,6,-1 + 833 1484 l 1,7,-1 + 833 490 l 1,8,-1 + 705 490 l 1,9,-1 + 705 1150 l 2,10,11 + 705 1240 705 1240 710 1312 c 1,12,-1 + 212 490 l 1,13,-1 + 46 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D3C +Encoding: 7484 7484 1372 +Width: 1048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 18 + 6 + 12 + 0 + 6 + 0 + 24 + 25 + 9 + 15 + 229 + 89 + 9 + 231 + 3 + 21 + 229 + 89 + 3 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1001 992 m 256,0,1 + 1001 754 1001 754 873.5 615 c 128,-1,2 + 746 476 746 476 521 476 c 0,3,4 + 298 476 298 476 170.5 613 c 128,-1,5 + 43 750 43 750 43 992 c 0,6,7 + 43 1231 43 1231 170 1365 c 128,-1,8 + 297 1499 297 1499 523 1499 c 0,9,10 + 746 1499 746 1499 873.5 1364.5 c 128,-1,11 + 1001 1230 1001 1230 1001 992 c 256,0,1 +857 992 m 0,12,13 + 857 1178 857 1178 767.5 1280.5 c 128,-1,14 + 678 1383 678 1383 523 1383 c 0,15,16 + 364 1383 364 1383 275 1281 c 128,-1,17 + 186 1179 186 1179 186 992 c 0,18,19 + 186 807 186 807 275 699 c 128,-1,20 + 364 591 364 591 521 591 c 0,21,22 + 682 591 682 591 769.5 695 c 128,-1,23 + 857 799 857 799 857 992 c 0,12,13 +EndSplineSet +EndChar + +StartChar: uni1D3D +Encoding: 7485 7485 1373 +Width: 783 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 19 + 7 + 4 + 23 + 22 + 22 + 29 + 16 + 3 + 4 + 4 + 35 + 10 + 16 + 10 + 38 + 39 + 19 + 7 + 0 + 26 + 0 + 26 + 228 + 89 + 0 + 0 + 13 + 3 + 22 + 13 + 32 + 228 + 89 + 13 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +392 1220 m 0,0,1 + 475 1220 475 1220 524 1284 c 128,-1,2 + 573 1348 573 1348 573 1460 c 1,3,-1 + 702 1460 l 1,4,5 + 702 1352 702 1352 660.5 1271 c 128,-1,6 + 619 1190 619 1190 548 1163 c 1,7,8 + 634 1136 634 1136 682.5 1051.5 c 128,-1,9 + 731 967 731 967 731 846 c 0,10,11 + 731 657 731 657 648 567 c 128,-1,12 + 565 477 565 477 390 477 c 0,13,14 + 217 477 217 477 134.5 567.5 c 128,-1,15 + 52 658 52 658 52 846 c 0,16,17 + 52 969 52 969 100 1053 c 128,-1,18 + 148 1137 148 1137 235 1166 c 1,19,20 + 163 1189 163 1189 122 1267.5 c 128,-1,21 + 81 1346 81 1346 81 1460 c 1,22,-1 + 209 1460 l 1,23,24 + 209 1342 209 1342 256 1281 c 128,-1,25 + 303 1220 303 1220 392 1220 c 0,0,1 +392 1121 m 0,26,27 + 293 1121 293 1121 235.5 1047 c 128,-1,28 + 178 973 178 973 178 853 c 0,29,30 + 178 706 178 706 228.5 639.5 c 128,-1,31 + 279 573 279 573 392 573 c 256,32,33 + 505 573 505 573 554.5 641 c 128,-1,34 + 604 709 604 709 604 853 c 0,35,36 + 604 973 604 973 547 1047 c 128,-1,37 + 490 1121 490 1121 392 1121 c 0,26,27 +EndSplineSet +EndChar + +StartChar: uni1D3E +Encoding: 7486 7486 1374 +Width: 857 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 15 + 5 + 5 + 6 + 11 + 0 + 6 + 0 + 18 + 19 + 15 + 4 + 229 + 89 + 15 + 15 + 6 + 7 + 7 + 14 + 229 + 89 + 7 + 230 + 6 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +795 1183 m 0,0,1 + 795 1042 795 1042 705 958.5 c 128,-1,2 + 615 875 615 875 461 875 c 2,3,-1 + 186 875 l 1,4,-1 + 186 490 l 1,5,-1 + 45 490 l 1,6,-1 + 45 1484 l 1,7,-1 + 453 1484 l 2,8,9 + 619 1484 619 1484 707 1403.5 c 128,-1,10 + 795 1323 795 1323 795 1183 c 0,0,1 +654 1182 m 0,11,12 + 654 1370 654 1370 437 1370 c 2,13,-1 + 186 1370 l 1,14,-1 + 186 987 l 1,15,-1 + 443 987 l 2,16,17 + 654 987 654 987 654 1182 c 0,11,12 +EndSplineSet +EndChar + +StartChar: uni1D3F +Encoding: 7487 7487 1375 +Width: 924 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 1 + 12 + 18 + 13 + 18 + 3 + 3 + 4 + 0 + 13 + 13 + 14 + 9 + 4 + 9 + 22 + 23 + 12 + 2 + 18 + 2 + 229 + 89 + 15 + 18 + 1 + 12 + 3 + 18 + 18 + 4 + 5 + 5 + 17 + 229 + 89 + 5 + 230 + 0 + 4 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +721 490 m 1,0,-1 + 474 900 l 1,1,-1 + 186 900 l 1,2,-1 + 186 490 l 1,3,-1 + 45 490 l 1,4,-1 + 45 1484 l 1,5,-1 + 500 1484 l 2,6,7 + 666 1484 666 1484 754 1408 c 128,-1,8 + 842 1332 842 1332 842 1198 c 0,9,10 + 842 1089 842 1089 780.5 1013.5 c 128,-1,11 + 719 938 719 938 611 917 c 1,12,-1 + 882 490 l 1,13,-1 + 721 490 l 1,0,-1 +700 1197 m 0,14,15 + 700 1370 700 1370 487 1370 c 2,16,-1 + 186 1370 l 1,17,-1 + 186 1012 l 1,18,-1 + 493 1012 l 2,19,20 + 588 1012 588 1012 644 1059.5 c 128,-1,21 + 700 1107 700 1107 700 1197 c 0,14,15 +EndSplineSet +EndChar + +StartChar: uni1D40 +Encoding: 7488 7488 1376 +Width: 886 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 1 + 2 + 6 + 2 + 4 + 3 + 8 + 9 + 0 + 4 + 5 + 4 + 229 + 89 + 5 + 230 + 2 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +510 1368 m 1,0,-1 + 510 490 l 1,1,-1 + 370 490 l 1,2,-1 + 370 1368 l 1,3,-1 + 42 1368 l 1,4,-1 + 42 1484 l 1,5,-1 + 838 1484 l 1,6,-1 + 838 1368 l 1,7,-1 + 510 1368 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D41 +Encoding: 7489 7489 1377 +Width: 879 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 3 + 12 + 15 + 3 + 15 + 18 + 19 + 13 + 4 + 230 + 0 + 9 + 229 + 89 + 0 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +433 476 m 0,0,1 + 251 476 251 476 145 576.5 c 128,-1,2 + 39 677 39 677 39 852 c 2,3,-1 + 39 1484 l 1,4,-1 + 180 1484 l 1,5,-1 + 180 863 l 2,6,7 + 180 730 180 730 244.5 660.5 c 128,-1,8 + 309 591 309 591 433 591 c 0,9,10 + 561 591 561 591 629 663.5 c 128,-1,11 + 697 736 697 736 697 872 c 2,12,-1 + 697 1484 l 1,13,-1 + 838 1484 l 1,14,-1 + 838 865 l 2,15,16 + 838 685 838 685 730 580.5 c 128,-1,17 + 622 476 622 476 433 476 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D42 +Encoding: 7490 7490 1378 +Width: 1275 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 20 + 18 + 11 + 9 + 4 + 21 + 22 + 14 + 230 + 11 + 18 + 4 + 3 + 8 + 19 + 9 + 230 + 1 + 8 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1009 490 m 1,0,-1 + 845 490 l 1,1,-1 + 678 1120 l 2,2,3 + 656 1200 656 1200 637 1330 c 1,4,5 + 623 1232 623 1232 595 1120 c 2,6,-1 + 428 490 l 1,7,-1 + 264 490 l 1,8,-1 + 1 1484 l 1,9,-1 + 149 1484 l 1,10,-1 + 351 637 l 1,11,-1 + 375 750 l 1,12,-1 + 404 867 l 1,13,-1 + 570 1484 l 1,14,-1 + 704 1484 l 1,15,-1 + 871 867 l 2,16,17 + 908 725 908 725 925 639 c 1,18,-1 + 1125 1484 l 1,19,-1 + 1272 1484 l 1,20,-1 + 1009 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D43 +Encoding: 7491 7491 1379 +Width: 762 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 58 + 45 + 3 + 14 + 15 + 32 + 8 + 40 + 40 + 27 + 21 + 21 + 15 + 3 + 3 + 48 + 49 + 32 + 6 + 29 + 6 + 42 + 228 + 89 + 6 + 6 + 0 + 17 + 15 + 14 + 31 + 14 + 47 + 14 + 3 + 15 + 3 + 14 + 14 + 17 + 17 + 11 + 228 + 89 + 17 + 236 + 29 + 24 + 228 + 89 + 29 + 29 + 0 + 0 + 36 + 228 + 89 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +282 476 m 0,0,1 + 170 476 170 476 114.5 536.5 c 128,-1,2 + 59 597 59 597 59 703 c 0,3,4 + 59 823 59 823 136 886 c 128,-1,5 + 213 949 213 949 377 952 c 2,6,-1 + 542 955 l 1,7,-1 + 542 997 l 2,8,9 + 542 1092 542 1092 503.5 1131 c 128,-1,10 + 465 1170 465 1170 384 1170 c 256,11,12 + 303 1170 303 1170 265 1141 c 128,-1,13 + 227 1112 227 1112 220 1049 c 1,14,-1 + 92 1061 l 1,15,16 + 124 1267 124 1267 387 1267 c 0,17,18 + 525 1267 525 1267 595.5 1201 c 128,-1,19 + 666 1135 666 1135 666 1010 c 2,20,-1 + 666 682 l 2,21,22 + 666 625 666 625 680 596.5 c 128,-1,23 + 694 568 694 568 734 568 c 0,24,25 + 753 568 753 568 775 573 c 1,26,-1 + 775 494 l 1,27,28 + 724 483 724 483 680 483 c 0,29,30 + 610 483 610 483 580.5 521 c 128,-1,31 + 551 559 551 559 546 636 c 1,32,-1 + 542 636 l 1,33,34 + 495 550 495 550 434.5 513 c 128,-1,35 + 374 476 374 476 282 476 c 0,0,1 +310 571 m 0,36,37 + 376 571 376 571 428.5 603 c 128,-1,38 + 481 635 481 635 511.5 689.5 c 128,-1,39 + 542 744 542 744 542 804 c 2,40,-1 + 542 866 l 1,41,-1 + 408 864 l 2,42,43 + 283 861 283 861 234 821.5 c 128,-1,44 + 185 782 185 782 185 701 c 0,45,46 + 185 638 185 638 217.5 604.5 c 128,-1,47 + 250 571 250 571 310 571 c 0,36,37 +EndSplineSet +EndChar + +StartChar: uni1D44 +Encoding: 7492 7492 1380 +Width: 762 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 41 + 32 + 8 + 8 + 26 + 20 + 14 + 15 + 45 + 3 + 3 + 15 + 20 + 3 + 48 + 49 + 41 + 7 + 228 + 89 + 32 + 41 + 64 + 9 + 12 + 72 + 41 + 41 + 29 + 17 + 29 + 24 + 228 + 89 + 29 + 236 + 14 +PUSHW_1 + -64 +NPUSHB + 18 + 14 + 17 + 72 + 14 + 14 + 17 + 17 + 11 + 228 + 89 + 17 + 233 + 0 + 36 + 228 + 89 + 0 + 236 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +473 1267 m 0,0,1 + 585 1267 585 1267 640.5 1206.5 c 128,-1,2 + 696 1146 696 1146 696 1040 c 0,3,4 + 696 920 696 920 619 857 c 128,-1,5 + 542 794 542 794 378 791 c 2,6,-1 + 213 788 l 1,7,-1 + 213 746 l 2,8,9 + 213 651 213 651 251.5 612 c 128,-1,10 + 290 573 290 573 371 573 c 0,11,12 + 449 573 449 573 487 599.5 c 128,-1,13 + 525 626 525 626 535 694 c 1,14,-1 + 663 682 l 1,15,16 + 631 476 631 476 368 476 c 0,17,18 + 230 476 230 476 159.5 542 c 128,-1,19 + 89 608 89 608 89 733 c 2,20,-1 + 89 1061 l 2,21,22 + 89 1118 89 1118 75 1146.5 c 128,-1,23 + 61 1175 61 1175 21 1175 c 0,24,25 + 2 1175 2 1175 -20 1170 c 1,26,-1 + -20 1249 l 1,27,28 + 31 1260 31 1260 75 1260 c 0,29,30 + 145 1260 145 1260 174.5 1222 c 128,-1,31 + 204 1184 204 1184 209 1107 c 1,32,-1 + 213 1107 l 1,33,34 + 255 1190 255 1190 317.5 1228.5 c 128,-1,35 + 380 1267 380 1267 473 1267 c 0,0,1 +445 1172 m 0,36,37 + 377 1172 377 1172 324.5 1139.5 c 128,-1,38 + 272 1107 272 1107 242.5 1052 c 128,-1,39 + 213 997 213 997 213 939 c 2,40,-1 + 213 877 l 1,41,-1 + 347 879 l 2,42,43 + 472 882 472 882 521 921.5 c 128,-1,44 + 570 961 570 961 570 1042 c 0,45,46 + 570 1105 570 1105 537.5 1138.5 c 128,-1,47 + 505 1172 505 1172 445 1172 c 0,36,37 +EndSplineSet +EndChar + +StartChar: uni1D45 +Encoding: 7493 7493 1381 +Width: 772 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 29 + 12 + 22 + 22 + 17 + 23 + 6 + 17 + 6 + 36 + 35 + 14 + 235 + 11 + 0 + 8 + 3 + 8 + 32 + 228 + 89 + 8 + 236 + 3 + 26 + 228 + 89 + 20 + 3 + 233 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +559 613 m 1,0,1 + 524 539 524 539 468.5 507.5 c 128,-1,2 + 413 476 413 476 329 476 c 0,3,4 + 189 476 189 476 124 573 c 128,-1,5 + 59 670 59 670 59 868 c 0,6,7 + 59 1266 59 1266 329 1266 c 0,8,9 + 413 1266 413 1266 469 1233.5 c 128,-1,10 + 525 1201 525 1201 560 1132 c 1,11,-1 + 561 1132 l 1,12,13 + 561 1183 561 1183 568 1253 c 1,14,-1 + 685 1253 l 1,15,-1 + 681 1117 l 1,16,-1 + 681 647 l 2,17,18 + 681 546 681 546 685 490 c 1,19,-1 + 568 490 l 1,20,21 + 562 532 562 532 562 613 c 1,22,-1 + 559 613 l 1,0,1 +187 872 m 0,23,24 + 187 711 187 711 227.5 642.5 c 128,-1,25 + 268 574 268 574 361 574 c 0,26,27 + 465 574 465 574 512 649 c 128,-1,28 + 559 724 559 724 559 881 c 0,29,30 + 559 1032 559 1032 512 1102 c 128,-1,31 + 465 1172 465 1172 362 1172 c 0,32,33 + 270 1172 270 1172 228.5 1102 c 128,-1,34 + 187 1032 187 1032 187 872 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni1D46 +Encoding: 7494 7494 1382 +Width: 1228 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 53 + 8 + 40 + 13 + 35 + 59 + 52 + 24 + 24 + 1 + 59 + 45 + 31 + 19 + 19 + 59 + 40 + 3 + 60 + 61 + 40 + 53 + 228 + 89 + 40 + 40 + 37 + 11 + 41 + 23 + 228 + 89 + 13 + 16 + 35 + 33 + 41 + 64 + 9 + 12 + 72 + 41 + 41 + 16 + 33 + 30 +PUSHW_1 + -64 +NPUSHB + 34 + 14 + 17 + 72 + 30 + 30 + 33 + 33 + 27 + 228 + 89 + 33 + 33 + 37 + 37 + 56 + 228 + 89 + 37 + 233 + 16 + 48 + 228 + 89 + 16 + 236 + 7 + 7 + 11 + 11 + 4 + 228 + 89 + 11 + 236 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP2 +IP +SRP2 +IP +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +564 898 m 1,0,-1 + 564 910 l 2,1,2 + 562 1040 562 1040 510.5 1106 c 128,-1,3 + 459 1172 459 1172 365 1172 c 0,4,5 + 285 1172 285 1172 237 1139 c 128,-1,6 + 189 1106 189 1106 172 1055 c 1,7,-1 + 65 1087 l 1,8,9 + 102 1182 102 1182 178 1224.5 c 128,-1,10 + 254 1267 254 1267 365 1267 c 0,11,12 + 582 1267 582 1267 653 1086 c 1,13,14 + 708 1185 708 1185 779 1226 c 128,-1,15 + 850 1267 850 1267 949 1267 c 0,16,17 + 1063 1267 1063 1267 1120 1206.5 c 128,-1,18 + 1177 1146 1177 1146 1177 1040 c 0,19,20 + 1177 920 1177 920 1099 857 c 128,-1,21 + 1021 794 1021 794 850 791 c 2,22,-1 + 687 788 l 1,23,-1 + 687 746 l 2,24,25 + 687 651 687 651 725 612 c 128,-1,26 + 763 573 763 573 845 573 c 256,27,28 + 927 573 927 573 966.5 600 c 128,-1,29 + 1006 627 1006 627 1016 694 c 1,30,-1 + 1145 682 l 1,31,32 + 1113 476 1113 476 843 476 c 0,33,34 + 672 476 672 476 605 574 c 1,35,36 + 524 476 524 476 370 476 c 0,37,38 + 45 476 45 476 45 881 c 2,39,-1 + 45 898 l 1,40,-1 + 564 898 l 1,0,-1 +687 877 m 1,41,-1 + 820 879 l 2,42,43 + 948 882 948 882 999.5 923 c 128,-1,44 + 1051 964 1051 964 1051 1042 c 0,45,46 + 1051 1103 1051 1103 1017 1137.5 c 128,-1,47 + 983 1172 983 1172 920 1172 c 0,48,49 + 850 1172 850 1172 797 1139.5 c 128,-1,50 + 744 1107 744 1107 715.5 1053 c 128,-1,51 + 687 999 687 999 687 939 c 2,52,-1 + 687 877 l 1,41,-1 +171 801 m 1,53,54 + 182 680 182 680 230.5 625 c 128,-1,55 + 279 570 279 570 372 570 c 0,56,57 + 458 570 458 570 507.5 630.5 c 128,-1,58 + 557 691 557 691 562 801 c 1,59,-1 + 171 801 l 1,53,54 +EndSplineSet +EndChar + +StartChar: uni1D47 +Encoding: 7495 7495 1383 +Width: 773 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 17 + 5 + 31 + 31 + 14 + 25 + 0 + 14 + 0 + 37 + 38 + 18 + 5 + 22 + 2 + 22 + 28 + 228 + 89 + 22 + 236 + 15 + 234 + 2 + 34 + 228 + 89 + 12 + 2 + 233 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +716 875 m 0,0,1 + 716 476 716 476 446 476 c 0,2,3 + 362 476 362 476 306.5 507.5 c 128,-1,4 + 251 539 251 539 216 608 c 1,5,-1 + 215 608 l 1,6,7 + 215 590 215 590 214 570.5 c 128,-1,8 + 213 551 213 551 212 534 c 128,-1,9 + 211 517 211 517 209.5 505 c 128,-1,10 + 208 493 208 493 208 490 c 2,11,-1 + 90 490 l 1,12,13 + 94 546 94 546 94 647 c 2,14,-1 + 94 1536 l 1,15,-1 + 216 1536 l 1,16,-1 + 216 1238 l 1,17,-1 + 213 1130 l 1,18,-1 + 216 1130 l 1,19,20 + 251 1204 251 1204 306.5 1235.5 c 128,-1,21 + 362 1267 362 1267 446 1267 c 0,22,23 + 586 1267 586 1267 651 1170 c 128,-1,24 + 716 1073 716 1073 716 875 c 0,0,1 +588 871 m 0,25,26 + 588 1028 588 1028 547.5 1098.5 c 128,-1,27 + 507 1169 507 1169 414 1169 c 0,28,29 + 310 1169 310 1169 263 1095.5 c 128,-1,30 + 216 1022 216 1022 216 863 c 0,31,32 + 216 712 216 712 263 641 c 128,-1,33 + 310 570 310 570 413 570 c 0,34,35 + 505 570 505 570 546.5 640 c 128,-1,36 + 588 710 588 710 588 871 c 0,25,26 +EndSplineSet +EndChar + +StartChar: uni1D48 +Encoding: 7496 7496 1384 +Width: 773 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 23 + 6 + 29 + 14 + 22 + 22 + 19 + 17 + 6 + 17 + 35 + 36 + 15 + 234 + 13 + 0 + 8 + 3 + 8 + 32 + 228 + 89 + 8 + 236 + 3 + 26 + 228 + 89 + 20 + 3 + 233 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +559 613 m 1,0,1 + 524 539 524 539 468.5 507.5 c 128,-1,2 + 413 476 413 476 329 476 c 0,3,4 + 189 476 189 476 124 573 c 128,-1,5 + 59 670 59 670 59 868 c 0,6,7 + 59 1267 59 1267 329 1267 c 0,8,9 + 413 1267 413 1267 468.5 1235 c 128,-1,10 + 524 1203 524 1203 559 1134 c 1,11,-1 + 560 1134 l 1,12,-1 + 560 1157 l 1,13,-1 + 559 1220 l 1,14,-1 + 559 1536 l 1,15,-1 + 681 1536 l 1,16,-1 + 681 647 l 2,17,18 + 681 546 681 546 685 490 c 1,19,-1 + 568 490 l 1,20,21 + 562 532 562 532 562 613 c 1,22,-1 + 559 613 l 1,0,1 +187 872 m 256,23,24 + 187 711 187 711 227.5 642.5 c 128,-1,25 + 268 574 268 574 361 574 c 0,26,27 + 465 574 465 574 512 649 c 128,-1,28 + 559 724 559 724 559 881 c 0,29,30 + 559 1032 559 1032 512 1102.5 c 128,-1,31 + 465 1173 465 1173 362 1173 c 0,32,33 + 270 1173 270 1173 228.5 1103 c 128,-1,34 + 187 1033 187 1033 187 872 c 256,23,24 +EndSplineSet +EndChar + +StartChar: uni1D49 +Encoding: 7497 7497 1385 +Width: 761 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 6 + 7 + 7 + 20 + 19 + 26 + 0 + 0 + 13 + 19 + 13 + 28 + 27 + 6 + 6 + 0 + 3 + 26 + 0 + 228 + 89 + 26 + 64 + 9 + 12 + 72 + 26 + 26 + 10 + 16 + 16 + 23 + 228 + 89 + 16 + 236 + 10 + 3 + 228 + 89 + 10 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +188 845 m 1,0,1 + 188 713 188 713 240.5 642 c 128,-1,2 + 293 571 293 571 393 571 c 0,3,4 + 473 571 473 571 521 604 c 128,-1,5 + 569 637 569 637 586 688 c 1,6,-1 + 693 656 l 1,7,8 + 662 565 662 565 584 520.5 c 128,-1,9 + 506 476 506 476 393 476 c 0,10,11 + 229 476 229 476 144 576 c 128,-1,12 + 59 676 59 676 59 876 c 0,13,14 + 59 1065 59 1065 144 1166 c 128,-1,15 + 229 1267 229 1267 389 1267 c 0,16,17 + 713 1267 713 1267 713 862 c 2,18,-1 + 713 845 l 1,19,-1 + 188 845 l 1,0,1 +587 942 m 1,20,21 + 576 1063 576 1063 527.5 1118 c 128,-1,22 + 479 1173 479 1173 386 1173 c 0,23,24 + 297 1173 297 1173 245.5 1112.5 c 128,-1,25 + 194 1052 194 1052 189 942 c 1,26,-1 + 587 942 l 1,20,21 +EndSplineSet +EndChar + +StartChar: uni1D4A +Encoding: 7498 7498 1386 +Width: 761 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 19 + 7 + 18 + 0 + 25 + 25 + 12 + 18 + 12 + 26 + 27 + 18 + 19 + 228 + 89 + 18 + 6 + 18 + 6 + 15 + 9 + 15 + 22 + 228 + 89 + 15 + 233 + 9 + 3 + 228 + 89 + 9 + 236 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +584 898 m 1,0,1 + 584 1030 584 1030 531.5 1101 c 128,-1,2 + 479 1172 479 1172 379 1172 c 0,3,4 + 299 1172 299 1172 251 1139 c 128,-1,5 + 203 1106 203 1106 186 1055 c 1,6,-1 + 79 1087 l 1,7,8 + 143 1267 143 1267 379 1267 c 0,9,10 + 543 1267 543 1267 628 1167 c 128,-1,11 + 713 1067 713 1067 713 867 c 0,12,13 + 713 678 713 678 628 577 c 128,-1,14 + 543 476 543 476 383 476 c 0,15,16 + 59 476 59 476 59 881 c 2,17,-1 + 59 898 l 1,18,-1 + 584 898 l 1,0,1 +185 801 m 1,19,20 + 196 680 196 680 244.5 625 c 128,-1,21 + 293 570 293 570 386 570 c 0,22,23 + 475 570 475 570 526.5 630.5 c 128,-1,24 + 578 691 578 691 583 801 c 1,25,-1 + 185 801 l 1,19,20 +EndSplineSet +EndChar + +StartChar: uni1D4B +Encoding: 7499 7499 1387 +Width: 652 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 6 + 24 + 15 + 21 + 10 + 10 + 26 + 3 + 16 + 15 + 15 + 32 + 3 + 32 + 35 + 36 + 31 + 31 + 0 + 6 + 23 + 24 + 23 + 24 + 228 + 89 + 16 + 16 + 13 + 15 + 23 + 1 + 30 + 3 + 23 + 64 + 9 + 12 + 72 + 23 + 23 + 0 + 13 + 13 + 18 + 228 + 89 + 13 + 236 + 0 + 29 + 228 + 89 + 0 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SDS +SDB +DELTAP1 +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP2 +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +331 476 m 0,0,1 + 202 476 202 476 129 537 c 128,-1,2 + 56 598 56 598 56 704 c 0,3,4 + 56 779 56 779 107 830.5 c 128,-1,5 + 158 882 158 882 243 891 c 1,6,-1 + 243 893 l 1,7,8 + 171 900 171 900 123 948 c 128,-1,9 + 75 996 75 996 75 1066 c 0,10,11 + 75 1156 75 1156 145.5 1211.5 c 128,-1,12 + 216 1267 216 1267 328 1267 c 0,13,14 + 555 1267 555 1267 585 1085 c 1,15,-1 + 475 1071 l 1,16,17 + 458 1172 458 1172 329 1172 c 0,18,19 + 266 1172 266 1172 232.5 1142 c 128,-1,20 + 199 1112 199 1112 199 1060 c 0,21,22 + 199 938 199 938 411 938 c 1,23,-1 + 411 842 l 1,24,25 + 187 842 187 842 187 701 c 0,26,27 + 187 637 187 637 225.5 603.5 c 128,-1,28 + 264 570 264 570 328 570 c 0,29,30 + 465 570 465 570 501 686 c 1,31,-1 + 609 655 l 1,32,33 + 579 564 579 564 512.5 520 c 128,-1,34 + 446 476 446 476 331 476 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D4C +Encoding: 7500 7500 1388 +Width: 652 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 11 + 29 + 26 + 20 + 21 + 21 + 4 + 3 + 14 + 26 + 26 + 9 + 33 + 3 + 33 + 36 + 37 + 29 + 12 + 4 + 4 + 11 + 0 + 12 + 11 + 228 + 89 + 15 + 12 + 1 + 30 + 3 + 12 + 64 + 9 + 12 + 72 + 20 + 12 + 20 + 12 + 23 + 0 + 23 + 17 + 228 + 89 + 23 + 236 + 0 + 6 + 228 + 89 + 0 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +326 476 m 0,0,1 + 211 476 211 476 144.5 520 c 128,-1,2 + 78 564 78 564 48 655 c 1,3,-1 + 156 686 l 1,4,5 + 192 570 192 570 329 570 c 0,6,7 + 393 570 393 570 431.5 603.5 c 128,-1,8 + 470 637 470 637 470 701 c 0,9,10 + 470 842 470 842 246 842 c 1,11,-1 + 246 938 l 1,12,13 + 458 938 458 938 458 1060 c 0,14,15 + 458 1112 458 1112 424.5 1142 c 128,-1,16 + 391 1172 391 1172 328 1172 c 0,17,18 + 264 1172 264 1172 226.5 1145.5 c 128,-1,19 + 189 1119 189 1119 182 1071 c 1,20,-1 + 72 1085 l 1,21,22 + 102 1267 102 1267 329 1267 c 0,23,24 + 442 1267 442 1267 512 1211.5 c 128,-1,25 + 582 1156 582 1156 582 1066 c 0,26,27 + 582 995 582 995 533 947.5 c 128,-1,28 + 484 900 484 900 414 893 c 1,29,-1 + 414 891 l 1,30,31 + 499 882 499 882 550 830 c 128,-1,32 + 601 778 601 778 601 704 c 0,33,34 + 601 598 601 598 527.5 537 c 128,-1,35 + 454 476 454 476 326 476 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D4D +Encoding: 7501 7501 1389 +Width: 772 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 52 + 32 + 22 + 8 + 8 + 28 + 26 + 29 + 4 + 3 + 3 + 38 + 15 + 29 + 15 + 45 + 44 + 25 + 235 + 21 + 9 + 18 + 4 + 4 + 12 + 0 + 12 + 41 + 228 + 89 + 15 + 12 + 31 + 12 + 2 + 9 + 3 + 12 + 12 + 0 + 18 + 18 + 35 + 228 + 89 + 18 + 236 + 0 + 6 + 228 + 89 + 0 + 237 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +IP +IP +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +372 190 m 0,0,1 + 246 190 246 190 177 242 c 128,-1,2 + 108 294 108 294 89 379 c 1,3,-1 + 212 397 l 1,4,5 + 238 287 238 287 376 287 c 0,6,7 + 560 287 560 287 560 509 c 2,8,-1 + 560 632 l 1,9,-1 + 558 632 l 1,10,11 + 487 484 487 484 321 484 c 0,12,13 + 181 484 181 484 120 581.5 c 128,-1,14 + 59 679 59 679 59 870 c 0,15,16 + 59 1074 59 1074 128 1169.5 c 128,-1,17 + 197 1265 197 1265 335 1265 c 0,18,19 + 413 1265 413 1265 470.5 1228 c 128,-1,20 + 528 1191 528 1191 560 1122 c 1,21,-1 + 562 1122 l 1,22,23 + 562 1158 562 1158 565.5 1204 c 128,-1,24 + 569 1250 569 1250 571 1253 c 2,25,-1 + 685 1253 l 1,26,-1 + 684 1232 l 1,27,-1 + 681 1095 l 1,28,-1 + 681 512 l 2,29,30 + 681 351 681 351 605.5 270.5 c 128,-1,31 + 530 190 530 190 372 190 c 0,0,1 +560 871 m 0,32,33 + 560 1011 560 1011 506.5 1090.5 c 128,-1,34 + 453 1170 453 1170 365 1170 c 0,35,36 + 271 1170 271 1170 228 1100 c 128,-1,37 + 185 1030 185 1030 185 871 c 256,38,39 + 185 712 185 712 226 645 c 128,-1,40 + 267 578 267 578 363 578 c 0,41,42 + 452 578 452 578 506 656.5 c 128,-1,43 + 560 735 560 735 560 871 c 0,32,33 +EndSplineSet +EndChar + +StartChar: uni1D4E +Encoding: 7502 7502 1390 +Width: 322 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 2 + 2 + 5 + 1 + 1 + 9 + 8 + 7 + 235 + 2 + 3 + 229 + 89 + 2 + 6 + 232 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,white] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +215 328 m 1,0,-1 + 215 207 l 1,1,-1 + 94 207 l 1,2,-1 + 94 328 l 1,3,-1 + 215 328 l 1,0,-1 +215 1253 m 1,4,-1 + 215 490 l 1,5,-1 + 94 490 l 1,6,-1 + 94 1253 l 1,7,-1 + 215 1253 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni1D4F +Encoding: 7503 7503 1391 +Width: 694 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 1 + 10 + 7 + 8 + 9 + 9 + 0 + 11 + 11 + 13 + 7 + 3 + 3 + 4 + 4 + 12 + 13 + 2 + 7 + 10 + 7 + 1 + 3 + 4 + 8 + 235 + 5 + 234 + 0 + 4 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +555 490 m 1,0,-1 + 306 838 l 1,1,-1 + 216 761 l 1,2,-1 + 216 490 l 1,3,-1 + 94 490 l 1,4,-1 + 94 1536 l 1,5,-1 + 216 1536 l 1,6,-1 + 216 883 l 1,7,-1 + 539 1253 l 1,8,-1 + 683 1253 l 1,9,-1 + 384 925 l 1,10,-1 + 699 490 l 1,11,-1 + 555 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D50 +Encoding: 7504 7504 1392 +Width: 1173 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 13 + 8 + 8 + 9 + 37 + 0 + 29 + 28 + 28 + 0 + 9 + 3 + 38 + 39 + 24 + 33 + 228 + 89 + 24 + 236 + 21 + 14 + 18 + 0 + 18 + 4 + 228 + 89 + 18 + 236 + 11 + 235 + 0 + 29 + 9 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +522 490 m 1,0,-1 + 522 974 l 2,1,2 + 522 1081 522 1081 494 1125 c 128,-1,3 + 466 1169 466 1169 388 1169 c 256,4,5 + 310 1169 310 1169 264 1108 c 128,-1,6 + 218 1047 218 1047 218 932 c 2,7,-1 + 218 490 l 1,8,-1 + 96 490 l 1,9,-1 + 96 1090 l 1,10,-1 + 93 1253 l 1,11,-1 + 208 1253 l 1,12,-1 + 213 1157 l 1,13,-1 + 213 1122 l 1,14,-1 + 215 1122 l 1,15,16 + 253 1200 253 1200 303.5 1233.5 c 128,-1,17 + 354 1267 354 1267 430 1267 c 0,18,19 + 514 1267 514 1267 562.5 1232 c 128,-1,20 + 611 1197 611 1197 631 1122 c 1,21,-1 + 633 1122 l 1,22,23 + 700 1267 700 1267 856 1267 c 0,24,25 + 968 1267 968 1267 1018.5 1203.5 c 128,-1,26 + 1069 1140 1069 1140 1069 998 c 2,27,-1 + 1069 490 l 1,28,-1 + 948 490 l 1,29,-1 + 948 974 l 2,30,31 + 948 1081 948 1081 920 1125 c 128,-1,32 + 892 1169 892 1169 813 1169 c 0,33,34 + 735 1169 735 1169 689.5 1109.5 c 128,-1,35 + 644 1050 644 1050 644 932 c 2,36,-1 + 644 490 l 1,37,-1 + 522 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D51 +Encoding: 7505 7505 1393 +Width: 783 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 22 + 17 + 17 + 18 + 9 + 0 + 0 + 4 + 18 + 3 + 31 + 32 + 27 + 13 + 228 + 89 + 27 + 236 + 23 + 18 + 20 + 235 + 18 + 232 + 2 + 7 + 229 + 89 + 2 + 237 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +684 399 m 2,0,1 + 684 190 684 190 493 190 c 0,2,3 + 452 190 452 190 410 200 c 1,4,-1 + 410 316 l 1,5,6 + 437 305 437 305 482 305 c 0,7,8 + 562 305 562 305 562 409 c 2,9,-1 + 562 974 l 2,10,11 + 562 1082 562 1082 529 1125.5 c 128,-1,12 + 496 1169 496 1169 409 1169 c 256,13,14 + 322 1169 322 1169 270.5 1108 c 128,-1,15 + 219 1047 219 1047 219 932 c 2,16,-1 + 219 490 l 1,17,-1 + 96 490 l 1,18,-1 + 96 1090 l 1,19,-1 + 93 1253 l 1,20,-1 + 208 1253 l 1,21,-1 + 213 1157 l 1,22,-1 + 213 1122 l 1,23,-1 + 215 1122 l 1,24,25 + 259 1202 259 1202 313.5 1234.5 c 128,-1,26 + 368 1267 368 1267 451 1267 c 0,27,28 + 574 1267 574 1267 629 1203.5 c 128,-1,29 + 684 1140 684 1140 684 998 c 2,30,-1 + 684 399 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1D52 +Encoding: 7506 7506 1394 +Width: 773 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 16 + 5 + 10 + 0 + 5 + 0 + 22 + 23 + 7 + 13 + 228 + 89 + 7 + 236 + 2 + 19 + 228 + 89 + 2 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +716 872 m 0,0,1 + 716 476 716 476 384 476 c 0,2,3 + 230 476 230 476 144.5 573.5 c 128,-1,4 + 59 671 59 671 59 872 c 0,5,6 + 59 1267 59 1267 389 1267 c 0,7,8 + 561 1267 561 1267 638.5 1168.5 c 128,-1,9 + 716 1070 716 1070 716 872 c 0,0,1 +588 872 m 0,10,11 + 588 1030 588 1030 542.5 1101.5 c 128,-1,12 + 497 1173 497 1173 391 1173 c 0,13,14 + 283 1173 283 1173 235 1100 c 128,-1,15 + 187 1027 187 1027 187 872 c 0,16,17 + 187 722 187 722 234 646 c 128,-1,18 + 281 570 281 570 383 570 c 0,19,20 + 493 570 493 570 540.5 643.5 c 128,-1,21 + 588 717 588 717 588 872 c 0,10,11 +EndSplineSet +EndChar + +StartChar: uni1D53 +Encoding: 7507 7507 1395 +Width: 725 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 5 + 6 + 6 + 18 + 0 + 12 + 18 + 12 + 24 + 25 + 15 + 22 + 228 + 89 + 19 + 19 + 15 + 233 + 5 + 5 + 9 + 9 + 3 + 228 + 89 + 9 + 236 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +545 875 m 0,0,1 + 545 1032 545 1032 501.5 1100 c 128,-1,2 + 458 1168 458 1168 360 1168 c 0,3,4 + 224 1168 224 1168 202 1029 c 1,5,-1 + 76 1039 l 1,6,7 + 97 1149 97 1149 172 1208 c 128,-1,8 + 247 1267 247 1267 358 1267 c 0,9,10 + 511 1267 511 1267 592 1165 c 128,-1,11 + 673 1063 673 1063 673 872 c 0,12,13 + 673 679 673 679 591.5 577.5 c 128,-1,14 + 510 476 510 476 356 476 c 0,15,16 + 239 476 239 476 162.5 541.5 c 128,-1,17 + 86 607 86 607 72 717 c 1,18,-1 + 195 725 l 1,19,20 + 206 649 206 649 250 612.5 c 128,-1,21 + 294 576 294 576 360 576 c 0,22,23 + 545 576 545 576 545 875 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D54 +Encoding: 7508 7508 1396 +Width: 773 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 7 + 0 + 12 + 7 + 12 + 13 + 14 + 0 + 7 + 9 + 9 + 3 + 228 + 89 + 9 + 236 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +588 872 m 1,0,1 + 588 1030 588 1030 542.5 1101.5 c 128,-1,2 + 497 1173 497 1173 391 1173 c 0,3,4 + 283 1173 283 1173 235 1100 c 128,-1,5 + 187 1027 187 1027 187 872 c 1,6,-1 + 59 872 l 1,7,8 + 59 1267 59 1267 389 1267 c 0,9,10 + 561 1267 561 1267 638.5 1168.5 c 128,-1,11 + 716 1070 716 1070 716 872 c 1,12,-1 + 588 872 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D55 +Encoding: 7509 7509 1397 +Width: 773 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 5 + 12 + 0 + 5 + 0 + 13 + 14 + 12 + 5 + 2 + 64 + 2 + 9 + 228 + 89 + 2 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +716 872 m 1,0,1 + 716 476 716 476 384 476 c 0,2,3 + 230 476 230 476 144.5 573.5 c 128,-1,4 + 59 671 59 671 59 872 c 1,5,-1 + 187 872 l 1,6,7 + 187 722 187 722 234 646 c 128,-1,8 + 281 570 281 570 383 570 c 0,9,10 + 493 570 493 570 540.5 643.5 c 128,-1,11 + 588 717 588 717 588 872 c 1,12,-1 + 716 872 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D56 +Encoding: 7510 7510 1398 +Width: 774 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 31 + 18 + 8 + 8 + 9 + 25 + 0 + 9 + 0 + 37 + 38 + 18 + 4 + 22 + 2 + 22 + 28 + 228 + 89 + 22 + 236 + 12 + 235 + 9 + 237 + 2 + 34 + 228 + 89 + 2 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +716 875 m 0,0,1 + 716 476 716 476 446 476 c 0,2,3 + 277 476 277 476 217 608 c 1,4,-1 + 213 608 l 1,5,6 + 216 602 216 602 216 531 c 2,7,-1 + 216 190 l 1,8,-1 + 94 190 l 1,9,-1 + 94 1097 l 1,10,-1 + 91 1232 l 1,11,-1 + 90 1253 l 1,12,-1 + 208 1253 l 2,13,14 + 208 1251 208 1251 209.5 1238.5 c 128,-1,15 + 211 1226 211 1226 212 1208 c 128,-1,16 + 213 1190 213 1190 214 1169 c 128,-1,17 + 215 1148 215 1148 215 1130 c 1,18,-1 + 218 1130 l 1,19,20 + 252 1203 252 1203 306 1234.5 c 128,-1,21 + 360 1266 360 1266 446 1266 c 0,22,23 + 583 1266 583 1266 649.5 1170.5 c 128,-1,24 + 716 1075 716 1075 716 875 c 0,0,1 +588 872 m 0,25,26 + 588 1034 588 1034 546 1101 c 128,-1,27 + 504 1168 504 1168 414 1168 c 0,28,29 + 307 1168 307 1168 261.5 1092.5 c 128,-1,30 + 216 1017 216 1017 216 862 c 0,31,32 + 216 711 216 711 263 640.5 c 128,-1,33 + 310 570 310 570 413 570 c 0,34,35 + 505 570 505 570 546.5 641.5 c 128,-1,36 + 588 713 588 713 588 872 c 0,25,26 +EndSplineSet +EndChar + +StartChar: uni1D57 +Encoding: 7511 7511 1399 +Width: 450 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 11 + 15 + 15 + 8 + 6 + 4 + 0 + 13 + 4 + 3 + 21 + 22 + 14 + 6 + 7 + 6 + 228 + 89 + 11 + 9 + 64 + 7 + 235 + 2 + 18 + 228 + 89 + 2 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,white] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +388 496 m 1,0,1 + 328 479 328 479 264 479 c 0,2,3 + 117 479 117 479 117 651 c 2,4,-1 + 117 1160 l 1,5,-1 + 32 1160 l 1,6,-1 + 32 1253 l 1,7,-1 + 122 1253 l 1,8,-1 + 158 1423 l 1,9,-1 + 240 1423 l 1,10,-1 + 240 1253 l 1,11,-1 + 376 1253 l 1,12,-1 + 376 1160 l 1,13,-1 + 240 1160 l 1,14,-1 + 240 679 l 2,15,16 + 240 624 240 624 257 602 c 128,-1,17 + 274 580 274 580 317 580 c 0,18,19 + 343 580 343 580 388 589 c 1,20,-1 + 388 496 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D58 +Encoding: 7512 7512 1400 +Width: 783 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 13 + 13 + 10 + 1 + 20 + 10 + 20 + 23 + 22 + 13 + 17 + 8 + 21 + 235 + 12 + 17 + 17 + 4 + 228 + 89 + 17 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +213 1253 m 1,0,-1 + 213 769 l 2,1,2 + 213 659 213 659 246 616.5 c 128,-1,3 + 279 574 279 574 366 574 c 256,4,5 + 453 574 453 574 504.5 635 c 128,-1,6 + 556 696 556 696 556 811 c 2,7,-1 + 556 1253 l 1,8,-1 + 678 1253 l 1,9,-1 + 678 653 l 1,10,-1 + 682 490 l 1,11,-1 + 566 490 l 1,12,-1 + 562 620 l 1,13,-1 + 560 620 l 1,14,15 + 518 544 518 544 463 510 c 128,-1,16 + 408 476 408 476 324 476 c 0,17,18 + 201 476 201 476 146 539.5 c 128,-1,19 + 91 603 91 603 91 745 c 2,20,-1 + 91 1253 l 1,21,-1 + 213 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D59 +Encoding: 7513 7513 1401 +Width: 834 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 8 + 0 + 13 + 14 + 14 + 4 + 4 + 12 + 17 + 0 + 17 + 22 + 23 + 21 + 0 + 229 + 89 + 21 + 13 + 8 + 9 + 8 + 229 + 89 + 10 + 9 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +43 657 m 1,0,-1 + 507 657 l 2,1,2 + 617 657 617 657 659.5 690 c 128,-1,3 + 702 723 702 723 702 810 c 256,4,5 + 702 897 702 897 641 948.5 c 128,-1,6 + 580 1000 580 1000 465 1000 c 2,7,-1 + 43 1000 l 1,8,-1 + 43 1122 l 1,9,-1 + 623 1122 l 1,10,-1 + 786 1126 l 1,11,-1 + 786 1010 l 1,12,-1 + 656 1006 l 1,13,-1 + 656 1004 l 1,14,15 + 733 962 733 962 766.5 907 c 128,-1,16 + 800 852 800 852 800 768 c 0,17,18 + 800 645 800 645 736.5 590 c 128,-1,19 + 673 535 673 535 531 535 c 2,20,-1 + 43 535 l 1,21,-1 + 43 657 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D5A +Encoding: 7514 7514 1402 +Width: 1173 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 13 + 7 + 7 + 10 + 21 + 1 + 37 + 31 + 28 + 28 + 37 + 10 + 3 + 40 + 39 + 14 + 21 + 25 + 38 + 8 + 29 + 235 + 12 + 18 + 18 + 4 + 228 + 89 + 18 + 18 + 25 + 25 + 34 + 228 + 89 + 25 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +640 1254 m 1,0,-1 + 640 770 l 2,1,2 + 640 663 640 663 668 619 c 128,-1,3 + 696 575 696 575 774 575 c 256,4,5 + 852 575 852 575 898 636 c 128,-1,6 + 944 697 944 697 944 812 c 2,7,-1 + 944 1254 l 1,8,-1 + 1066 1254 l 1,9,-1 + 1066 654 l 1,10,-1 + 1069 491 l 1,11,-1 + 954 491 l 1,12,-1 + 950 587 l 1,13,-1 + 949 622 l 1,14,-1 + 947 622 l 1,15,16 + 904 539 904 539 855 508 c 128,-1,17 + 806 477 806 477 732 477 c 0,18,19 + 648 477 648 477 599.5 512 c 128,-1,20 + 551 547 551 547 531 622 c 1,21,-1 + 529 622 l 1,22,23 + 497 555 497 555 445 516 c 128,-1,24 + 393 477 393 477 306 477 c 0,25,26 + 193 477 193 477 143 540.5 c 128,-1,27 + 93 604 93 604 93 746 c 2,28,-1 + 93 1254 l 1,29,-1 + 214 1254 l 1,30,-1 + 214 770 l 2,31,32 + 214 663 214 663 242 619 c 128,-1,33 + 270 575 270 575 349 575 c 0,34,35 + 427 575 427 575 472.5 634.5 c 128,-1,36 + 518 694 518 694 518 812 c 2,37,-1 + 518 1254 l 1,38,-1 + 640 1254 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D5B +Encoding: 7515 7515 1403 +Width: 658 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 5 + 10 + 9 + 11 + 2 + 10 + 5 + 1 + 8 + 2 + 235 + 1 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +399 490 m 1,0,-1 + 254 490 l 1,1,-1 + -13 1253 l 1,2,-1 + 117 1253 l 1,3,-1 + 279 756 l 1,4,-1 + 327 589 l 1,5,6 + 341 641 341 641 351 674.5 c 128,-1,7 + 361 708 361 708 544 1253 c 1,8,-1 + 674 1253 l 1,9,-1 + 399 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D5C +Encoding: 7516 7516 1404 +Width: 800 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 22 + 9 + 18 + 9 + 12 + 3 + 3 + 29 + 29 + 3 + 41 + 40 + 32 + 25 + 228 + 89 + 32 + 233 + 28 + 36 + 0 + 9 + 22 + 15 + 4 + 4 + 0 + 15 + 236 + 0 + 6 + 228 + 89 + 0 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +IP +SRP2 +IP +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +181 477 m 0,0,1 + 130 477 130 477 88.5 494.5 c 128,-1,2 + 47 512 47 512 4 562 c 1,3,-1 + 64 644 l 1,4,5 + 116 579 116 579 178 579 c 0,6,7 + 233 579 233 579 265 620 c 2,8,-1 + 334 707 l 1,9,-1 + 230 835 l 2,10,11 + 141 945 141 945 141 1045 c 0,12,13 + 141 1148 141 1148 205 1207.5 c 128,-1,14 + 269 1267 269 1267 399 1267 c 0,15,16 + 528 1267 528 1267 592 1207.5 c 128,-1,17 + 656 1148 656 1148 656 1046 c 0,18,19 + 656 1001 656 1001 637.5 952.5 c 128,-1,20 + 619 904 619 904 567 835 c 2,21,-1 + 469 712 l 1,22,-1 + 533 625 l 2,23,24 + 567 579 567 579 619 579 c 0,25,26 + 650 579 650 579 680.5 597 c 128,-1,27 + 711 615 711 615 734 644 c 1,28,-1 + 793 562 l 1,29,30 + 750 512 750 512 709 494.5 c 128,-1,31 + 668 477 668 477 617 477 c 0,32,33 + 578 477 578 477 548.5 487.5 c 128,-1,34 + 519 498 519 498 493 520 c 128,-1,35 + 467 542 467 542 399 635 c 1,36,37 + 326 539 326 539 301 517.5 c 128,-1,38 + 276 496 276 496 248.5 486.5 c 128,-1,39 + 221 477 221 477 181 477 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D5D +Encoding: 7517 7517 1405 +Width: 789 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 30 + 18 + 21 + 16 + 21 + 8 + 8 + 9 + 34 + 16 + 16 + 27 + 0 + 9 + 0 + 41 + 42 + 31 + 30 + 228 + 89 + 18 + 6 + 15 + 31 + 1 + 12 + 3 + 31 + 31 + 3 + 13 + 13 + 37 + 228 + 89 + 13 + 234 + 9 + 237 + 3 + 24 + 228 + 89 + 3 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +IP +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +746 776 m 0,0,1 + 746 634 746 634 663.5 555 c 128,-1,2 + 581 476 581 476 435 476 c 0,3,4 + 312 476 312 476 219 542 c 1,5,-1 + 215 542 l 1,6,-1 + 219 400 l 1,7,-1 + 219 190 l 1,8,-1 + 96 190 l 1,9,-1 + 96 1214 l 2,10,11 + 96 1382 96 1382 173.5 1459 c 128,-1,12 + 251 1536 251 1536 405 1536 c 0,13,14 + 541 1536 541 1536 611 1471.5 c 128,-1,15 + 681 1407 681 1407 681 1290 c 0,16,17 + 681 1113 681 1113 530 1050 c 1,18,19 + 631 1029 631 1029 688.5 958 c 128,-1,20 + 746 887 746 887 746 776 c 0,0,1 +219 635 m 1,21,22 + 257 608 257 608 313.5 589 c 128,-1,23 + 370 570 370 570 430 570 c 0,24,25 + 529 570 529 570 579 625 c 128,-1,26 + 629 680 629 680 629 773 c 0,27,28 + 629 875 629 875 570 930.5 c 128,-1,29 + 511 986 511 986 400 986 c 1,30,-1 + 400 1086 l 1,31,32 + 487 1105 487 1105 525.5 1154 c 128,-1,33 + 564 1203 564 1203 564 1289 c 0,34,35 + 564 1357 564 1357 523 1397 c 128,-1,36 + 482 1437 482 1437 407 1437 c 0,37,38 + 309 1437 309 1437 264 1383.5 c 128,-1,39 + 219 1330 219 1330 219 1210 c 2,40,-1 + 219 635 l 1,21,22 +EndSplineSet +EndChar + +StartChar: uni1D5E +Encoding: 7518 7518 1406 +Width: 658 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 8 + 0 + 0 + 2 + 5 + 6 + 6 + 10 + 3 + 2 + 2 + 9 + 1 + 4 + 5 + 2 + 235 + 0 + 237 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +IP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +270 190 m 1,0,-1 + 270 491 l 1,1,-1 + 2 1253 l 1,2,-1 + 132 1253 l 1,3,-1 + 334 623 l 1,4,-1 + 537 1253 l 1,5,-1 + 667 1253 l 1,6,-1 + 392 490 l 1,7,-1 + 392 190 l 1,8,-1 + 270 190 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D5F +Encoding: 7519 7519 1407 +Width: 774 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 3 + 27 + 13 + 3 + 28 + 18 + 28 + 6 + 24 + 0 + 18 + 18 + 31 + 24 + 3 + 32 + 33 + 3 + 27 + 27 + 21 + 29 + 28 + 11 + 29 + 11 + 228 + 89 + 29 + 234 + 21 + 9 + 228 + 89 + 21 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +588 822 m 0,0,1 + 588 900 588 900 552.5 981 c 128,-1,2 + 517 1062 517 1062 438 1145 c 1,3,4 + 322 1103 322 1103 254.5 1019 c 128,-1,5 + 187 935 187 935 187 822 c 0,6,7 + 187 702 187 702 241 636 c 128,-1,8 + 295 570 295 570 389 570 c 0,9,10 + 588 570 588 570 588 822 c 0,0,1 +413 1443 m 2,11,12 + 362 1443 362 1443 308 1449 c 1,13,-1 + 523 1220 l 2,14,15 + 615 1120 615 1120 647.5 1067 c 128,-1,16 + 680 1014 680 1014 698 954 c 128,-1,17 + 716 894 716 894 716 825 c 0,18,19 + 716 663 716 663 627.5 569.5 c 128,-1,20 + 539 476 539 476 389 476 c 0,21,22 + 234 476 234 476 146.5 568 c 128,-1,23 + 59 660 59 660 59 823 c 0,24,25 + 59 958 59 958 137 1057 c 128,-1,26 + 215 1156 215 1156 374 1213 c 1,27,-1 + 158 1452 l 1,28,-1 + 158 1536 l 1,29,-1 + 656 1536 l 1,30,-1 + 656 1443 l 1,31,-1 + 413 1443 l 2,11,12 +EndSplineSet +EndChar + +StartChar: uni1D60 +Encoding: 7520 7520 1408 +Width: 901 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 24 + 0 + 13 + 9 + 18 + 18 + 5 + 30 + 4 + 4 + 5 + 15 + 9 + 9 + 5 + 0 + 3 + 34 + 33 + 21 + 27 + 228 + 89 + 21 + 236 + 13 + 12 + 236 + 30 + 18 + 6 + 18 + 228 + 89 + 3 + 6 + 233 + 5 + 237 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +845 888 m 0,0,1 + 845 695 845 695 758.5 590.5 c 128,-1,2 + 672 486 672 486 505 477 c 1,3,-1 + 505 190 l 1,4,-1 + 389 190 l 1,5,-1 + 389 477 l 1,6,7 + 228 483 228 483 143 583.5 c 128,-1,8 + 58 684 58 684 58 874 c 0,9,10 + 58 1034 58 1034 133.5 1141 c 128,-1,11 + 209 1248 209 1248 344 1270 c 1,12,-1 + 358 1174 l 1,13,14 + 186 1134 186 1134 186 871 c 0,15,16 + 186 721 186 721 236.5 650.5 c 128,-1,17 + 287 580 287 580 389 574 c 1,18,-1 + 389 983 l 2,19,20 + 389 1268 389 1268 601 1268 c 0,21,22 + 713 1268 713 1268 779 1166.5 c 128,-1,23 + 845 1065 845 1065 845 888 c 0,0,1 +716 890 m 0,24,25 + 716 1027 716 1027 686.5 1101 c 128,-1,26 + 657 1175 657 1175 603 1175 c 0,27,28 + 505 1175 505 1175 505 985 c 2,29,-1 + 505 574 l 1,30,31 + 615 579 615 579 665.5 655.5 c 128,-1,32 + 716 732 716 732 716 890 c 0,24,25 +EndSplineSet +EndChar + +StartChar: uni1D61 +Encoding: 7521 7521 1409 +Width: 703 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 19 + 16 + 0 + 3 + 4 + 18 + 20 + 20 + 23 + 10 + 2 + 22 + 16 + 3 + 19 + 0 + 4 + 2 + 17 + 235 + 12 + 7 + 228 + 89 + 12 + 236 + 21 + 2 + 238 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +SLOOP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +359 658 m 1,0,-1 + 132 191 l 1,1,-1 + 4 191 l 1,2,-1 + 304 773 l 1,3,-1 + 188 1015 l 2,4,5 + 141 1115 141 1115 118 1142 c 128,-1,6 + 95 1169 95 1169 67 1169 c 0,7,8 + 49 1169 49 1169 32 1162 c 1,9,-1 + 9 1254 l 1,10,11 + 43 1268 43 1268 90 1268 c 0,12,13 + 147 1268 147 1268 183 1235 c 128,-1,14 + 219 1202 219 1202 276 1081 c 2,15,-1 + 372 873 l 1,16,-1 + 552 1253 l 1,17,-1 + 679 1253 l 1,18,-1 + 429 761 l 1,19,-1 + 705 191 l 1,20,-1 + 576 191 l 1,21,-1 + 359 658 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D62 +Encoding: 7522 7522 1410 +Width: 322 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 807 869 N 1 0 0 1 161 -626 2 +EndChar + +StartChar: uni1D63 +Encoding: 7523 7523 1411 +Width: 491 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 629 691 N 1 0 0 1 0 -626 2 +EndChar + +StartChar: uni1D64 +Encoding: 7524 7524 1412 +Width: 783 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1400 7512 N 1 0 0 1 5 -626 2 +EndChar + +StartChar: uni1D65 +Encoding: 7525 7525 1413 +Width: 658 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1403 7515 N 1 0 0 1 0 -626 2 +EndChar + +StartChar: uni1D66 +Encoding: 7526 7526 1414 +Width: 789 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 30 + 18 + 21 + 16 + 21 + 6 + 8 + 8 + 9 + 34 + 16 + 16 + 27 + 0 + 9 + 0 + 41 + 42 + 31 + 30 + 228 + 89 + 18 + 15 + 31 + 31 + 31 + 2 + 11 + 3 + 31 + 31 + 3 + 13 + 13 + 37 + 228 + 89 + 13 + 8 + 3 + 24 + 228 + 89 + 3 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +747 150 m 0,0,1 + 747 8 747 8 664.5 -71 c 128,-1,2 + 582 -150 582 -150 436 -150 c 0,3,4 + 313 -150 313 -150 220 -84 c 1,5,-1 + 216 -84 l 1,6,-1 + 220 -226 l 1,7,-1 + 220 -415 l 1,8,-1 + 98 -415 l 1,9,-1 + 98 588 l 2,10,11 + 98 756 98 756 175 833 c 128,-1,12 + 252 910 252 910 407 910 c 0,13,14 + 542 910 542 910 612.5 845.5 c 128,-1,15 + 683 781 683 781 683 664 c 0,16,17 + 683 489 683 489 531 425 c 1,18,19 + 633 404 633 404 690 332 c 128,-1,20 + 747 260 747 260 747 150 c 0,0,1 +220 9 m 1,21,22 + 256 -17 256 -17 315 -36.5 c 128,-1,23 + 374 -56 374 -56 431 -56 c 0,24,25 + 529 -56 529 -56 579.5 -0.5 c 128,-1,26 + 630 55 630 55 630 148 c 0,27,28 + 630 249 630 249 571.5 304.5 c 128,-1,29 + 513 360 513 360 402 360 c 1,30,-1 + 402 460 l 1,31,32 + 489 479 489 479 527 528 c 128,-1,33 + 565 577 565 577 565 663 c 0,34,35 + 565 734 565 734 523 772.5 c 128,-1,36 + 481 811 481 811 408 811 c 0,37,38 + 310 811 310 811 265 757.5 c 128,-1,39 + 220 704 220 704 220 584 c 2,40,-1 + 220 9 l 1,21,22 +EndSplineSet +EndChar + +StartChar: uni1D67 +Encoding: 7527 7527 1415 +Width: 658 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 11 + 12 + 12 + 14 + 0 + 8 + 8 + 16 + 0 + 15 + 4 + 1 + 12 + 7 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP2 +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-13 626 m 1,0,-1 + 117 626 l 1,1,-1 + 284 150 l 2,2,3 + 318 48 318 48 331 -17 c 1,4,5 + 334 -2 334 -2 357 74.5 c 128,-1,6 + 380 151 380 151 544 626 c 1,7,-1 + 673 626 l 1,8,-1 + 408 -100 l 2,9,10 + 359 -239 359 -239 337 -416 c 1,11,-1 + 207 -416 l 1,12,13 + 220 -316 220 -316 267 -129 c 1,14,-1 + -13 626 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D68 +Encoding: 7528 7528 1416 +Width: 777 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 17 + 16 + 16 + 24 + 5 + 10 + 30 + 30 + 0 + 5 + 0 + 37 + 36 + 20 + 13 + 228 + 89 + 7 + 33 + 228 + 89 + 10 + 7 + 7 + 64 + 9 + 12 + 72 + 20 + 7 + 20 + 7 + 2 + 17 + 2 + 27 + 228 + 89 + 2 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +IP +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +60 246 m 0,0,1 + 60 641 60 641 390 641 c 0,2,3 + 562 641 562 641 639.5 542 c 128,-1,4 + 717 443 717 443 717 246 c 0,5,6 + 717 -151 717 -151 385 -151 c 0,7,8 + 305 -151 305 -151 253 -124.5 c 128,-1,9 + 201 -98 201 -98 164 -49 c 1,10,11 + 182 -181 182 -181 249.5 -228 c 128,-1,12 + 317 -275 317 -275 482 -275 c 0,13,14 + 630 -275 630 -275 679 -303 c 128,-1,15 + 728 -331 728 -331 736 -416 c 1,16,-1 + 625 -416 l 1,17,18 + 620 -395 620 -395 592.5 -387.5 c 128,-1,19 + 565 -380 565 -380 438 -380 c 0,20,21 + 284 -380 284 -380 205 -329.5 c 128,-1,22 + 126 -279 126 -279 93 -160 c 128,-1,23 + 60 -41 60 -41 60 246 c 0,0,1 +589 246 m 0,24,25 + 589 404 589 404 543.5 475.5 c 128,-1,26 + 498 547 498 547 392 547 c 0,27,28 + 284 547 284 547 236 474 c 128,-1,29 + 188 401 188 401 188 246 c 0,30,31 + 188 95 188 95 235.5 19 c 128,-1,32 + 283 -57 283 -57 384 -57 c 0,33,34 + 494 -57 494 -57 541.5 16.5 c 128,-1,35 + 589 90 589 90 589 246 c 0,24,25 +EndSplineSet +EndChar + +StartChar: uni1D69 +Encoding: 7529 7529 1417 +Width: 901 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 26 + 0 + 32 + 4 + 4 + 19 + 13 + 5 + 16 + 9 + 9 + 5 + 0 + 3 + 36 + 35 + 13 + 12 + 12 + 23 + 23 + 29 + 228 + 89 + 23 + 3 + 32 + 228 + 89 + 3 + 3 + 6 + 6 + 19 + 228 + 89 + 6 + 4 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +845 259 m 0,0,1 + 845 66 845 66 758.5 -38.5 c 128,-1,2 + 672 -143 672 -143 505 -152 c 1,3,-1 + 505 -415 l 1,4,-1 + 389 -415 l 1,5,-1 + 389 -152 l 1,6,7 + 229 -146 229 -146 143.5 -46.5 c 128,-1,8 + 58 53 58 53 58 245 c 0,9,10 + 58 406 58 406 134 512 c 128,-1,11 + 210 618 210 618 344 640 c 1,12,-1 + 358 544 l 1,13,14 + 275 526 275 526 231 451 c 128,-1,15 + 187 376 187 376 187 242 c 0,16,17 + 187 92 187 92 237 21 c 128,-1,18 + 287 -50 287 -50 389 -56 c 1,19,-1 + 389 353 l 2,20,21 + 389 490 389 490 441.5 564.5 c 128,-1,22 + 494 639 494 639 601 639 c 0,23,24 + 713 639 713 639 779 537.5 c 128,-1,25 + 845 436 845 436 845 259 c 0,0,1 +716 260 m 0,26,27 + 716 397 716 397 687 471 c 128,-1,28 + 658 545 658 545 603 545 c 0,29,30 + 505 545 505 545 505 355 c 2,31,-1 + 505 -56 l 1,32,33 + 615 -51 615 -51 665.5 26 c 128,-1,34 + 716 103 716 103 716 260 c 0,26,27 +EndSplineSet +EndChar + +StartChar: uni1D6A +Encoding: 7530 7530 1418 +Width: 703 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1409 7521 N 1 0 0 1 0 -626 2 +EndChar + +StartChar: uni1D6B +Encoding: 7531 7531 1419 +Width: 1860 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 56 + 20 + 17 + 11 + 27 + 42 + 30 + 0 + 0 + 27 + 6 + 7 + 7 + 36 + 35 + 35 + 27 + 17 + 3 + 43 + 44 + 6 + 6 + 0 + 3 + 42 + 0 + 80 + 89 + 42 + 42 + 32 + 9 + 32 + 39 + 80 + 89 + 32 + 16 + 11 + 30 + 14 + 28 + 18 + 15 + 14 + 24 + 80 + 89 + 14 + 22 + 9 + 3 + 80 + 89 + 9 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1005 503 m 1,0,1 + 1005 317 1005 317 1082 216 c 128,-1,2 + 1159 115 1159 115 1307 115 c 0,3,4 + 1424 115 1424 115 1494.5 162 c 128,-1,5 + 1565 209 1565 209 1590 281 c 1,6,-1 + 1748 236 l 1,7,8 + 1651 -20 1651 -20 1307 -20 c 0,9,10 + 1067 -20 1067 -20 941 133 c 1,11,12 + 890 53 890 53 794.5 16.5 c 128,-1,13 + 699 -20 699 -20 556 -20 c 0,14,15 + 336 -20 336 -20 234.5 69.5 c 128,-1,16 + 133 159 133 159 133 361 c 2,17,-1 + 133 1082 l 1,18,-1 + 314 1082 l 1,19,-1 + 314 396 l 2,20,21 + 314 287 314 287 336.5 229 c 128,-1,22 + 359 171 359 171 409.5 145 c 128,-1,23 + 460 119 460 119 556 119 c 0,24,25 + 700 119 700 119 757.5 181.5 c 128,-1,26 + 815 244 815 244 815 396 c 2,27,-1 + 815 1082 l 1,28,-1 + 996 1082 l 1,29,-1 + 996 996 l 1,30,31 + 1120 1102 1120 1102 1300 1102 c 0,32,33 + 1777 1102 1777 1102 1777 527 c 2,34,-1 + 1777 503 l 1,35,-1 + 1005 503 l 1,0,1 +1591 641 m 1,36,37 + 1576 812 1576 812 1504 890.5 c 128,-1,38 + 1432 969 1432 969 1297 969 c 0,39,40 + 1166 969 1166 969 1089.5 881.5 c 128,-1,41 + 1013 794 1013 794 1007 641 c 1,42,-1 + 1591 641 l 1,36,37 +EndSplineSet +EndChar + +StartChar: uni1D6C +Encoding: 7532 7532 1420 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 37 + 5 + 52 + 52 + 12 + 25 + 24 + 24 + 12 + 18 + 19 + 19 + 12 + 31 + 32 + 46 + 0 + 0 + 32 + 12 + 3 + 58 + 59 + 15 + 22 + 35 + 28 + 22 + 28 + 18 + 32 + 18 + 32 + 18 + 25 + 39 + 5 + 43 + 2 + 43 + 49 + 80 + 89 + 43 + 16 + 25 + 0 + 10 + 21 + 2 + 55 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 -20 1053 -20 655 -20 c 0,2,3 + 532 -20 532 -20 450.5 24.5 c 128,-1,4 + 369 69 369 69 318 168 c 1,5,-1 + 316 168 l 1,6,7 + 316 137 316 137 312 73.5 c 128,-1,8 + 308 10 308 10 306 0 c 1,9,-1 + 132 0 l 1,10,11 + 138 54 138 54 138 223 c 2,12,-1 + 138 1243 l 1,13,14 + 112 1251 112 1251 86 1251 c 0,15,16 + 47 1251 47 1251 33.5 1227 c 128,-1,17 + 20 1203 20 1203 20 1156 c 1,18,-1 + -110 1156 l 1,19,20 + -108 1260 -108 1260 -54.5 1322 c 128,-1,21 + -1 1384 -1 1384 83 1384 c 1,22,-1 + 138 1379 l 1,23,-1 + 138 1484 l 1,24,-1 + 318 1484 l 1,25,-1 + 318 1311 l 1,26,27 + 346 1304 346 1304 366 1304 c 0,28,29 + 397 1304 397 1304 410 1327.5 c 128,-1,30 + 423 1351 423 1351 429 1399 c 1,31,-1 + 559 1399 l 1,32,33 + 559 1285 559 1285 514 1228 c 128,-1,34 + 469 1171 469 1171 373 1171 c 1,35,-1 + 318 1177 l 1,36,-1 + 318 1061 l 2,37,38 + 318 996 318 996 314 908 c 1,39,-1 + 318 908 l 1,40,41 + 368 1012 368 1012 450.5 1057 c 128,-1,42 + 533 1102 533 1102 655 1102 c 0,43,44 + 860 1102 860 1102 956.5 964 c 128,-1,45 + 1053 826 1053 826 1053 546 c 0,0,1 +864 540 m 0,46,47 + 864 767 864 767 804 865 c 128,-1,48 + 744 963 744 963 609 963 c 0,49,50 + 457 963 457 963 387.5 859 c 128,-1,51 + 318 755 318 755 318 529 c 0,52,53 + 318 316 318 316 386 214.5 c 128,-1,54 + 454 113 454 113 607 113 c 0,55,56 + 743 113 743 113 803.5 213.5 c 128,-1,57 + 864 314 864 314 864 540 c 0,46,47 +EndSplineSet +EndChar + +StartChar: uni1D6D +Encoding: 7533 7533 1421 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 52 + 24 + 13 + 0 + 51 + 51 + 38 + 32 + 33 + 33 + 26 + 38 + 19 + 20 + 45 + 6 + 6 + 20 + 38 + 3 + 58 + 57 + 40 + 21 + 16 + 23 + 36 + 29 + 23 + 29 + 20 + 33 + 20 + 33 + 20 + 26 + 0 + 11 + 0 + 8 + 3 + 8 + 54 + 80 + 89 + 8 + 16 + 3 + 48 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +821 174 m 1,0,1 + 771 70 771 70 688.5 25 c 128,-1,2 + 606 -20 606 -20 484 -20 c 0,3,4 + 279 -20 279 -20 182.5 118 c 128,-1,5 + 86 256 86 256 86 536 c 0,6,7 + 86 1102 86 1102 484 1102 c 0,8,9 + 607 1102 607 1102 689 1057 c 128,-1,10 + 771 1012 771 1012 821 914 c 1,11,-1 + 823 914 l 1,12,-1 + 821 1035 l 1,13,-1 + 821 1243 l 1,14,15 + 795 1251 795 1251 769 1251 c 0,16,17 + 730 1251 730 1251 716.5 1227 c 128,-1,18 + 703 1203 703 1203 703 1156 c 1,19,-1 + 573 1156 l 1,20,21 + 575 1260 575 1260 628.5 1322 c 128,-1,22 + 682 1384 682 1384 766 1384 c 1,23,-1 + 821 1379 l 1,24,-1 + 821 1484 l 1,25,-1 + 1001 1484 l 1,26,-1 + 1001 1311 l 1,27,28 + 1029 1304 1029 1304 1049 1304 c 0,29,30 + 1080 1304 1080 1304 1093 1327.5 c 128,-1,31 + 1106 1351 1106 1351 1112 1399 c 1,32,-1 + 1242 1399 l 1,33,34 + 1242 1285 1242 1285 1197 1228 c 128,-1,35 + 1152 1171 1152 1171 1056 1171 c 1,36,-1 + 1001 1177 l 1,37,-1 + 1001 223 l 2,38,39 + 1001 54 1001 54 1007 0 c 1,40,-1 + 835 0 l 1,41,42 + 832 16 832 16 828.5 74 c 128,-1,43 + 825 132 825 132 825 174 c 1,44,-1 + 821 174 l 1,0,1 +275 542 m 0,45,46 + 275 315 275 315 335 217 c 128,-1,47 + 395 119 395 119 530 119 c 0,48,49 + 683 119 683 119 752 225 c 128,-1,50 + 821 331 821 331 821 554 c 0,51,52 + 821 769 821 769 752 869 c 128,-1,53 + 683 969 683 969 532 969 c 0,54,55 + 396 969 396 969 335.5 868.5 c 128,-1,56 + 275 768 275 768 275 542 c 0,45,46 +EndSplineSet +EndChar + +StartChar: uni1D6E +Encoding: 7534 7534 1422 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 6 + 7 + 7 + 42 + 35 + 35 + 45 + 19 + 20 + 20 + 13 + 41 + 1 + 12 + 12 + 29 + 27 + 25 + 13 + 13 + 44 + 45 + 16 + 23 + 10 + 3 + 23 + 3 + 19 + 7 + 19 + 7 + 19 + 41 + 12 + 41 + 0 + 81 + 89 + 41 + 15 + 32 + 37 + 80 + 89 + 32 + 0 + 28 + 25 + 81 + 89 + 28 + 15 + 12 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +361 951 m 1,0,-1 + 361 548 l 1,1,2 + 389 541 389 541 409 541 c 0,3,4 + 440 541 440 541 453 564.5 c 128,-1,5 + 466 588 466 588 472 636 c 1,6,-1 + 602 636 l 1,7,8 + 602 522 602 522 557 465 c 128,-1,9 + 512 408 512 408 416 408 c 1,10,-1 + 361 414 l 1,11,-1 + 361 0 l 1,12,-1 + 181 0 l 1,13,-1 + 181 480 l 1,14,15 + 155 488 155 488 129 488 c 0,16,17 + 90 488 90 488 76.5 464 c 128,-1,18 + 63 440 63 440 63 393 c 1,19,-1 + -67 393 l 1,20,21 + -65 497 -65 497 -11.5 559 c 128,-1,22 + 42 621 42 621 126 621 c 1,23,-1 + 181 616 l 1,24,-1 + 181 951 l 1,25,-1 + 29 951 l 1,26,-1 + 29 1082 l 1,27,-1 + 181 1082 l 1,28,-1 + 181 1204 l 2,29,30 + 181 1352 181 1352 246 1417 c 128,-1,31 + 311 1482 311 1482 445 1482 c 0,32,33 + 520 1482 520 1482 572 1470 c 1,34,-1 + 572 1333 l 1,35,36 + 527 1341 527 1341 492 1341 c 0,37,38 + 423 1341 423 1341 392 1306 c 128,-1,39 + 361 1271 361 1271 361 1179 c 2,40,-1 + 361 1082 l 1,41,-1 + 572 1082 l 1,42,-1 + 572 951 l 1,43,-1 + 361 951 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D6F +Encoding: 7535 7535 1423 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 77 + 51 + 43 + 43 + 38 + 34 + 42 + 27 + 0 + 57 + 47 + 47 + 61 + 0 + 58 + 20 + 4 + 4 + 12 + 9 + 5 + 5 + 0 + 42 + 3 + 68 + 67 + 27 + 20 + 31 + 43 + 21 + 31 + 54 + 80 + 89 + 31 + 16 + 46 + 48 + 48 + 1 + 60 + 60 + 58 + 6 + 12 + 12 + 3 + 58 + 41 + 44 + 44 + 35 + 50 + 37 + 58 + 50 + 8 + 8 + 50 + 58 + 37 + 4 + 24 + 0 + 24 + 64 + 80 + 89 + 24 + 16 + 15 + 15 + 4 + 21 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1410 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 855 1200 basechar 0 +AnchorPoint: "Anchor-15" 1560 1260 basechar 0 +AnchorPoint: "Anchor-14" 875 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +768 0 m 1,0,-1 + 768 428 l 1,1,2 + 464 486 464 486 321 499 c 1,3,-1 + 321 0 l 1,4,-1 + 142 0 l 1,5,-1 + 142 496 l 1,6,7 + 73 472 73 472 73 390 c 1,8,-1 + -57 390 l 1,9,10 + -57 478 -57 478 -2.5 544.5 c 128,-1,11 + 52 611 52 611 142 631 c 1,12,-1 + 142 851 l 2,13,14 + 142 1040 142 1040 136 1082 c 1,15,-1 + 306 1082 l 1,16,17 + 307 1077 307 1077 308 1055 c 128,-1,18 + 309 1033 309 1033 310.5 1004.5 c 128,-1,19 + 312 976 312 976 314 897 c 1,20,-1 + 317 897 l 1,21,22 + 375 1012 375 1012 450 1057 c 128,-1,23 + 525 1102 525 1102 633 1102 c 0,24,25 + 756 1102 756 1102 827.5 1053 c 128,-1,26 + 899 1004 899 1004 927 897 c 1,27,-1 + 930 897 l 1,28,29 + 986 1006 986 1006 1065.5 1054 c 128,-1,30 + 1145 1102 1145 1102 1258 1102 c 0,31,32 + 1422 1102 1422 1102 1496.5 1013 c 128,-1,33 + 1571 924 1571 924 1571 721 c 2,34,-1 + 1571 475 l 1,35,36 + 1634 511 1634 511 1634 635 c 1,37,-1 + 1764 635 l 1,38,39 + 1764 516 1764 516 1715 436.5 c 128,-1,40 + 1666 357 1666 357 1571 334 c 1,41,-1 + 1571 0 l 1,42,-1 + 1393 0 l 1,43,-1 + 1393 328 l 1,44,45 + 1224 341 1224 341 946 393 c 1,46,-1 + 946 0 l 1,47,-1 + 768 0 l 1,0,-1 +946 529 m 1,48,49 + 1247 472 1247 472 1393 460 c 1,50,-1 + 1393 686 l 2,51,52 + 1393 843 1393 843 1350 903 c 128,-1,53 + 1307 963 1307 963 1195 963 c 0,54,55 + 1077 963 1077 963 1011.5 875.5 c 128,-1,56 + 946 788 946 788 946 627 c 2,57,-1 + 946 529 l 1,48,49 +321 633 m 1,58,59 + 488 620 488 620 768 565 c 1,60,-1 + 768 686 l 2,61,62 + 768 843 768 843 725 903 c 128,-1,63 + 682 963 682 963 570 963 c 0,64,65 + 454 963 454 963 388.5 875 c 128,-1,66 + 323 787 323 787 321 633 c 1,58,59 +EndSplineSet +EndChar + +StartChar: uni1D70 +Encoding: 7536 7536 1424 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 53 + 45 + 0 + 0 + 35 + 31 + 39 + 40 + 20 + 7 + 7 + 16 + 13 + 8 + 39 + 8 + 53 + 52 + 24 + 28 + 0 + 38 + 1 + 1 + 32 + 44 + 6 + 9 + 9 + 40 + 16 + 13 + 44 + 16 + 35 + 35 + 16 + 44 + 13 + 4 + 7 + 28 + 28 + 49 + 80 + 89 + 28 + 16 + 20 + 15 + 7 + 21 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 840 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 560 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +825 0 m 1,0,-1 + 825 333 l 1,1,2 + 760 343 760 343 695 363 c 128,-1,3 + 630 383 630 383 566.5 406 c 128,-1,4 + 503 429 503 429 441.5 451.5 c 128,-1,5 + 380 474 380 474 322 488 c 1,6,-1 + 322 0 l 1,7,-1 + 142 0 l 1,8,-1 + 142 498 l 1,9,10 + 98 487 98 487 75.5 457.5 c 128,-1,11 + 53 428 53 428 53 390 c 1,12,-1 + -77 390 l 1,13,14 + -77 483 -77 483 -16 550.5 c 128,-1,15 + 45 618 45 618 142 634 c 1,16,-1 + 142 851 l 2,17,18 + 142 1040 142 1040 136 1082 c 1,19,-1 + 306 1082 l 1,20,21 + 307 1077 307 1077 308 1055 c 128,-1,22 + 309 1033 309 1033 310.5 1004.5 c 128,-1,23 + 312 976 312 976 314 897 c 1,24,-1 + 317 897 l 1,25,26 + 379 1009 379 1009 460.5 1055.5 c 128,-1,27 + 542 1102 542 1102 663 1102 c 0,28,29 + 841 1102 841 1102 923.5 1013.5 c 128,-1,30 + 1006 925 1006 925 1006 721 c 2,31,-1 + 1006 474 l 1,32,33 + 1084 510 1084 510 1084 635 c 1,34,-1 + 1214 635 l 1,35,36 + 1214 516 1214 516 1158.5 437.5 c 128,-1,37 + 1103 359 1103 359 1006 335 c 1,38,-1 + 1006 0 l 1,39,-1 + 825 0 l 1,0,-1 +322 624 m 1,40,41 + 417 604 417 604 587 543 c 0,42,43 + 762 480 762 480 825 467 c 1,44,-1 + 825 686 l 2,45,46 + 825 793 825 793 804 852 c 128,-1,47 + 783 911 783 911 737 937 c 128,-1,48 + 691 963 691 963 602 963 c 0,49,50 + 472 963 472 963 397 873.5 c 128,-1,51 + 322 784 322 784 322 624 c 1,40,41 +EndSplineSet +EndChar + +StartChar: uni1D71 +Encoding: 7537 7537 1425 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 47 + 0 + 54 + 36 + 7 + 20 + 20 + 32 + 28 + 21 + 21 + 14 + 0 + 3 + 61 + 60 + 40 + 4 + 44 + 2 + 44 + 50 + 80 + 89 + 44 + 16 + 35 + 15 + 24 + 31 + 10 + 17 + 31 + 17 + 28 + 14 + 28 + 14 + 28 + 2 + 20 + 27 + 2 + 57 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 165 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 -20 1053 -20 655 -20 c 0,2,3 + 405 -20 405 -20 319 168 c 1,4,-1 + 314 168 l 1,5,6 + 318 160 318 160 318 -2 c 2,7,-1 + 318 -174 l 1,8,9 + 350 -182 350 -182 370 -182 c 0,10,11 + 401 -182 401 -182 414 -158.5 c 128,-1,12 + 427 -135 427 -135 433 -87 c 1,13,-1 + 563 -87 l 1,14,15 + 563 -201 563 -201 518 -258 c 128,-1,16 + 473 -315 473 -315 377 -315 c 0,17,18 + 353 -315 353 -315 318 -307 c 1,19,-1 + 318 -425 l 1,20,-1 + 138 -425 l 1,21,-1 + 138 -242 l 1,22,23 + 115 -235 115 -235 90 -235 c 0,24,25 + 51 -235 51 -235 37.5 -259 c 128,-1,26 + 24 -283 24 -283 24 -330 c 1,27,-1 + -106 -330 l 1,28,29 + -104 -226 -104 -226 -50.5 -164 c 128,-1,30 + 3 -102 3 -102 87 -102 c 1,31,-1 + 138 -106 l 1,32,-1 + 138 861 l 2,33,34 + 138 1028 138 1028 132 1082 c 1,35,-1 + 306 1082 l 1,36,37 + 307 1078 307 1078 309 1053.5 c 128,-1,38 + 311 1029 311 1029 313.5 978 c 128,-1,39 + 316 927 316 927 316 908 c 1,40,-1 + 320 908 l 1,41,42 + 368 1008 368 1008 447 1054.5 c 128,-1,43 + 526 1101 526 1101 655 1101 c 0,44,45 + 855 1101 855 1101 954 967 c 128,-1,46 + 1053 833 1053 833 1053 546 c 0,0,1 +864 542 m 0,47,48 + 864 768 864 768 803 865 c 128,-1,49 + 742 962 742 962 609 962 c 0,50,51 + 502 962 502 962 441.5 917 c 128,-1,52 + 381 872 381 872 349.5 776.5 c 128,-1,53 + 318 681 318 681 318 528 c 0,54,55 + 318 315 318 315 386 214 c 128,-1,56 + 454 113 454 113 607 113 c 0,57,58 + 741 113 741 113 802.5 211.5 c 128,-1,59 + 864 310 864 310 864 542 c 0,47,48 +EndSplineSet +EndChar + +StartChar: uni1D72 +Encoding: 7538 7538 1426 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 30 + 17 + 42 + 42 + 11 + 7 + 0 + 0 + 36 + 24 + 3 + 44 + 43 + 17 + 14 + 42 + 3 + 10 + 39 + 32 + 10 + 32 + 6 + 36 + 6 + 36 + 6 + 21 + 42 + 21 + 21 + 26 + 83 + 89 + 21 + 16 + 14 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +142 0 m 1,0,-1 + 142 387 l 1,1,2 + 118 393 118 393 98 393 c 0,3,4 + 59 393 59 393 45.5 369 c 128,-1,5 + 32 345 32 345 32 298 c 1,6,-1 + -98 298 l 1,7,8 + -96 402 -96 402 -42.5 464 c 128,-1,9 + 11 526 11 526 95 526 c 1,10,-1 + 142 522 l 1,11,-1 + 142 830 l 2,12,13 + 142 944 142 944 136 1082 c 1,14,-1 + 306 1082 l 1,15,16 + 314 898 314 898 314 861 c 1,17,-1 + 318 861 l 1,18,19 + 361 1000 361 1000 417 1051 c 128,-1,20 + 473 1102 473 1102 575 1102 c 0,21,22 + 611 1102 611 1102 648 1092 c 1,23,-1 + 648 927 l 1,24,25 + 612 937 612 937 552 937 c 0,26,27 + 440 937 440 937 381 840.5 c 128,-1,28 + 322 744 322 744 322 564 c 2,29,-1 + 322 455 l 1,30,31 + 347 446 347 446 378 446 c 256,32,33 + 409 446 409 446 422 469.5 c 128,-1,34 + 435 493 435 493 441 541 c 1,35,-1 + 571 541 l 1,36,37 + 571 427 571 427 526 370 c 128,-1,38 + 481 313 481 313 385 313 c 0,39,40 + 357 313 357 313 322 321 c 1,41,-1 + 322 0 l 1,42,-1 + 142 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D73 +Encoding: 7539 7539 1427 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 12 + 25 + 25 + 33 + 0 + 26 + 26 + 19 + 7 + 3 + 39 + 38 + 29 + 36 + 22 + 15 + 36 + 15 + 33 + 19 + 33 + 19 + 33 + 4 + 25 + 21 + 4 + 9 + 83 + 89 + 4 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +142 686 m 2,0,1 + 142 814 142 814 188 907 c 128,-1,2 + 234 1000 234 1000 329 1051 c 128,-1,3 + 424 1102 424 1102 552 1102 c 0,4,5 + 611 1102 611 1102 648 1092 c 1,6,-1 + 648 927 l 1,7,8 + 612 937 612 937 552 937 c 0,9,10 + 428 937 428 937 373 867.5 c 128,-1,11 + 318 798 318 798 318 630 c 2,12,-1 + 318 455 l 1,13,14 + 343 446 343 446 374 446 c 256,15,16 + 405 446 405 446 418 469.5 c 128,-1,17 + 431 493 431 493 437 541 c 1,18,-1 + 567 541 l 1,19,20 + 567 427 567 427 522 370 c 128,-1,21 + 477 313 477 313 381 313 c 0,22,23 + 353 313 353 313 318 321 c 1,24,-1 + 318 0 l 1,25,-1 + 142 0 l 1,26,-1 + 142 387 l 1,27,28 + 118 393 118 393 98 393 c 0,29,30 + 59 393 59 393 45.5 369 c 128,-1,31 + 32 345 32 345 32 298 c 1,32,-1 + -98 298 l 1,33,34 + -96 402 -96 402 -42.5 464 c 128,-1,35 + 11 526 11 526 95 526 c 1,36,-1 + 142 522 l 1,37,-1 + 142 686 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1D74 +Encoding: 7540 7540 1428 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 40 + 25 + 23 + 6 + 27 + 54 + 52 + 33 + 13 + 0 + 27 + 0 + 56 + 57 + 25 + 22 + 20 + 20 + 54 + 52 + 48 + 13 + 48 + 40 + 3 + 30 + 3 + 30 + 37 + 80 + 89 + 34 + 30 + 16 + 3 + 10 + 80 + 89 + 7 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +950 299 m 0,0,1 + 950 146 950 146 834.5 63 c 128,-1,2 + 719 -20 719 -20 511 -20 c 0,3,4 + 309 -20 309 -20 199.5 46.5 c 128,-1,5 + 90 113 90 113 57 254 c 1,6,-1 + 216 285 l 1,7,8 + 239 198 239 198 311 157.5 c 128,-1,9 + 383 117 383 117 511 117 c 0,10,11 + 648 117 648 117 711.5 159 c 128,-1,12 + 775 201 775 201 775 285 c 0,13,14 + 775 347 775 347 733 385 c 128,-1,15 + 691 423 691 423 588 452 c 2,16,-1 + 460 489 l 2,17,18 + 375 515 375 515 308 535 c 128,-1,19 + 241 555 241 555 198 555 c 0,20,21 + 123 555 123 555 123 450 c 1,22,-1 + -7 450 l 1,23,24 + -3 628 -3 628 131 669 c 1,25,26 + 100 722 100 722 100 796 c 0,27,28 + 100 944 100 944 205.5 1021.5 c 128,-1,29 + 311 1099 311 1099 513 1099 c 0,30,31 + 692 1099 692 1099 797.5 1036 c 128,-1,32 + 903 973 903 973 931 834 c 1,33,-1 + 769 814 l 1,34,35 + 754 886 754 886 688.5 924.5 c 128,-1,36 + 623 963 623 963 513 963 c 0,37,38 + 391 963 391 963 333 926 c 128,-1,39 + 275 889 275 889 275 814 c 0,40,41 + 275 773 275 773 296.5 745.5 c 128,-1,42 + 318 718 318 718 356.5 698 c 128,-1,43 + 395 678 395 678 449 662.5 c 128,-1,44 + 503 647 503 647 568 629 c 2,45,-1 + 643 608 l 2,46,47 + 781 568 781 568 828 568 c 0,48,49 + 855 568 855 568 866.5 583 c 128,-1,50 + 878 598 878 598 884 649 c 1,51,-1 + 1014 649 l 1,52,53 + 1014 482 1014 482 917 438 c 1,54,55 + 950 378 950 378 950 299 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D75 +Encoding: 7541 7541 1429 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 32 + 22 + 44 + 25 + 21 + 39 + 39 + 18 + 15 + 10 + 4 + 44 + 4 + 46 + 45 + 6 + 13 + 35 + 28 + 13 + 28 + 10 + 31 + 10 + 31 + 10 + 21 + 2 + 21 + 24 + 81 + 89 + 20 + 64 + 21 + 15 + 18 + 15 + 81 + 89 + 18 + 15 + 2 + 42 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,black] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 260 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +554 8 m 1,0,1 + 465 -16 465 -16 372 -16 c 0,2,3 + 156 -16 156 -16 156 229 c 2,4,-1 + 156 507 l 1,5,-1 + 118 512 l 1,6,7 + 79 512 79 512 65.5 488 c 128,-1,8 + 52 464 52 464 52 417 c 1,9,-1 + -78 417 l 1,10,11 + -76 521 -76 521 -22.5 583 c 128,-1,12 + 31 645 31 645 115 645 c 1,13,-1 + 156 642 l 1,14,-1 + 156 951 l 1,15,-1 + 31 951 l 1,16,-1 + 31 1082 l 1,17,-1 + 163 1082 l 1,18,-1 + 216 1324 l 1,19,-1 + 336 1324 l 1,20,-1 + 336 1082 l 1,21,-1 + 536 1082 l 1,22,-1 + 536 951 l 1,23,-1 + 336 951 l 1,24,-1 + 336 575 l 1,25,26 + 341 573 341 573 366.5 569 c 128,-1,27 + 392 565 392 565 394 565 c 0,28,29 + 425 565 425 565 438 588.5 c 128,-1,30 + 451 612 451 612 457 660 c 1,31,-1 + 587 660 l 1,32,33 + 587 546 587 546 542 489 c 128,-1,34 + 497 432 497 432 401 432 c 0,35,36 + 396 432 396 432 367 435.5 c 128,-1,37 + 338 439 338 439 336 441 c 2,38,-1 + 336 268 l 2,39,40 + 336 190 336 190 361.5 158.5 c 128,-1,41 + 387 127 387 127 450 127 c 0,42,43 + 486 127 486 127 554 141 c 1,44,-1 + 554 8 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D76 +Encoding: 7542 7542 1430 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 8 + 19 + 2 + 25 + 4 + 31 + 14 + 14 + 3 + 7 + 31 + 20 + 24 + 4 + 24 + 21 + 7 + 4 + 34 + 35 + 24 + 21 + 22 + 21 + 80 + 89 + 10 + 17 + 0 + 27 + 17 + 27 + 14 + 31 + 14 + 31 + 14 + 5 + 22 + 15 + 7 + 4 + 5 + 4 + 80 + 89 + 5 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 740 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +738 431 m 0,0,1 + 687 431 687 431 523 470 c 1,2,-1 + 251 139 l 1,3,-1 + 950 139 l 1,4,-1 + 950 0 l 1,5,-1 + 49 0 l 1,6,-1 + 49 137 l 1,7,-1 + 356 512 l 1,8,9 + 300 525 300 525 272 525 c 0,10,11 + 233 525 233 525 218 501 c 128,-1,12 + 203 477 203 477 203 430 c 1,13,-1 + 73 430 l 1,14,15 + 75 534 75 534 130.5 596 c 128,-1,16 + 186 658 186 658 271 658 c 0,17,18 + 324 658 324 658 450 626 c 1,19,-1 + 710 943 l 1,20,-1 + 89 943 l 1,21,-1 + 89 1082 l 1,22,-1 + 913 1082 l 1,23,-1 + 913 945 l 1,24,-1 + 615 582 l 1,25,26 + 689 563 689 563 731 563 c 0,27,28 + 762 563 762 563 775 587 c 128,-1,29 + 788 611 788 611 794 659 c 1,30,-1 + 924 659 l 1,31,32 + 924 545 924 545 879 488 c 128,-1,33 + 834 431 834 431 738 431 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D77 +Encoding: 7543 7543 1431 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 38 + 3 + 16 + 31 + 10 + 23 + 23 + 26 + 28 + 16 + 28 + 46 + 45 + 13 + 41 + 80 + 89 + 22 + 10 + 13 + 13 + 19 + 0 + 19 + 35 + 80 + 89 + 26 + 26 + 19 + 27 + 0 + 7 + 80 + 89 + 4 + 0 + 16 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +594 1099 m 0,0,1 + 771 1099 771 1099 876 1029.5 c 128,-1,2 + 981 960 981 960 1011 832 c 1,3,-1 + 830 806 l 1,4,5 + 812 881 812 881 750.5 921.5 c 128,-1,6 + 689 962 689 962 589 962 c 0,7,8 + 320 962 320 962 320 647 c 2,9,-1 + 320 473 l 1,10,-1 + 323 473 l 1,11,12 + 428 682 428 682 670 682 c 0,13,14 + 869 682 869 682 962.5 550 c 128,-1,15 + 1056 418 1056 418 1056 135 c 0,16,17 + 1056 -152 1056 -152 955.5 -288.5 c 128,-1,18 + 855 -425 855 -425 650 -425 c 0,19,20 + 535 -425 535 -425 450.5 -372.5 c 128,-1,21 + 366 -320 366 -320 320 -223 c 1,22,-1 + 316 -223 l 1,23,24 + 316 -325 316 -325 306 -408 c 1,25,-1 + 135 -408 l 1,26,27 + 141 -354 141 -354 141 -184 c 2,28,-1 + 141 643 l 2,29,30 + 141 1099 141 1099 594 1099 c 0,0,1 +320 133 m 0,31,32 + 320 1 320 1 356 -94.5 c 128,-1,33 + 392 -190 392 -190 457.5 -240.5 c 128,-1,34 + 523 -291 523 -291 606 -291 c 0,35,36 + 744 -291 744 -291 807 -191 c 128,-1,37 + 870 -91 870 -91 870 133 c 0,38,39 + 870 355 870 355 811 452 c 128,-1,40 + 752 549 752 549 609 549 c 0,41,42 + 524 549 524 549 458 499 c 128,-1,43 + 392 449 392 449 356 355.5 c 128,-1,44 + 320 262 320 262 320 133 c 0,31,32 +EndSplineSet +EndChar + +StartChar: uni1D78 +Encoding: 7544 7544 1432 +Width: 779 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 7 + 3 + 3 + 4 + 8 + 0 + 0 + 11 + 4 + 11 + 12 + 13 + 7 + 2 + 228 + 89 + 7 + 64 + 9 + 12 + 72 + 7 + 7 + 6 + 11 + 3 + 3 + 11 + 232 + 9 + 9 + 6 + 235 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 580 480 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 779 1540 basechar 0 +AnchorPoint: "Anchor-20" 779 -380 basechar 0 +AnchorPoint: "Anchor-16" 260 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +561 475 m 1,0,-1 + 561 798 l 1,1,-1 + 217 798 l 1,2,-1 + 217 475 l 1,3,-1 + 98 475 l 1,4,-1 + 98 1192 l 1,5,-1 + 217 1192 l 1,6,-1 + 217 896 l 1,7,-1 + 561 896 l 1,8,-1 + 561 1192 l 1,9,-1 + 681 1192 l 1,10,-1 + 681 475 l 1,11,-1 + 561 475 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D79 +Encoding: 7545 7545 1433 +Width: 1140 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 15 + 42 + 42 + 25 + 11 + 18 + 18 + 4 + 7 + 36 + 12 + 0 + 0 + 7 + 25 + 3 + 46 + 45 + 4 + 33 + 80 + 89 + 18 + 13 + 4 + 4 + 29 + 13 + 29 + 39 + 80 + 89 + 29 + 27 + 15 + 12 + 13 + 12 + 80 + 89 + 13 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP2 +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1140 1540 basechar 0 +AnchorPoint: "Anchor-20" 1140 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +77 56 m 0,0,1 + 77 192 77 192 140 301 c 128,-1,2 + 203 410 203 410 314 470.5 c 128,-1,3 + 425 531 425 531 556 531 c 1,4,5 + 524 563 524 563 503.5 593 c 128,-1,6 + 483 623 483 623 483 661 c 0,7,8 + 483 702 483 702 504.5 732 c 128,-1,9 + 526 762 526 762 583 806 c 2,10,-1 + 760 943 l 1,11,-1 + 163 943 l 1,12,-1 + 163 1082 l 1,13,-1 + 968 1082 l 1,14,-1 + 968 947 l 1,15,-1 + 701 726 l 2,16,17 + 656 690 656 690 656 661 c 0,18,19 + 656 633 656 633 686.5 606 c 128,-1,20 + 717 579 717 579 763.5 545.5 c 128,-1,21 + 810 512 810 512 863.5 469.5 c 128,-1,22 + 917 427 917 427 963.5 369 c 128,-1,23 + 1010 311 1010 311 1040.5 234 c 128,-1,24 + 1071 157 1071 157 1071 56 c 0,25,26 + 1071 -86 1071 -86 1007 -195.5 c 128,-1,27 + 943 -305 943 -305 827.5 -365 c 128,-1,28 + 712 -425 712 -425 570 -425 c 0,29,30 + 427 -425 427 -425 313.5 -365.5 c 128,-1,31 + 200 -306 200 -306 138.5 -196.5 c 128,-1,32 + 77 -87 77 -87 77 56 c 0,0,1 +570 398 m 0,33,34 + 416 398 416 398 334.5 309.5 c 128,-1,35 + 253 221 253 221 253 56 c 0,36,37 + 253 -111 253 -111 335.5 -201 c 128,-1,38 + 418 -291 418 -291 570 -291 c 0,39,40 + 725 -291 725 -291 810 -200 c 128,-1,41 + 895 -109 895 -109 895 56 c 0,42,43 + 895 220 895 220 810.5 309 c 128,-1,44 + 726 398 726 398 570 398 c 0,33,34 +EndSplineSet +EndChar + +StartChar: uni1D7A +Encoding: 7546 7546 1434 +Width: 1609 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 72 + 28 + 27 + 20 + 21 + 19 + 16 + 16 + 37 + 37 + 38 + 11 + 14 + 14 + 44 + 38 + 9 + 13 + 13 + 51 + 6 + 4 + 2 + 2 + 38 + 19 + 27 + 4 + 53 + 52 + 13 + 0 + 9 + 50 + 47 + 47 + 42 + 80 + 89 + 47 + 22 + 37 + 21 + 39 + 14 + 18 + 3 + 23 + 28 + 21 + 23 + 33 + 80 + 89 + 23 + 16 + 19 + 16 + 0 + 9 + 12 + 81 + 89 + 8 + 64 + 9 + 15 + 6 + 3 + 81 + 89 + 6 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,black] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MDRP[rnd,white] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1310 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1609 1540 basechar 0 +AnchorPoint: "Anchor-20" 1609 -380 basechar 0 +AnchorPoint: "Anchor-16" 1020 1580 basechar 0 +AnchorPoint: "Anchor-15" 1450 1540 basechar 0 +AnchorPoint: "Anchor-14" 1029 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +179 125 m 1,0,1 + 167 170 167 170 167 229 c 2,2,-1 + 167 951 l 1,3,-1 + 42 951 l 1,4,-1 + 42 1082 l 1,5,-1 + 174 1082 l 1,6,-1 + 227 1324 l 1,7,-1 + 347 1324 l 1,8,-1 + 347 1082 l 1,9,-1 + 543 1082 l 1,10,-1 + 543 951 l 1,11,-1 + 347 951 l 1,12,-1 + 347 370 l 1,13,-1 + 602 743 l 1,14,-1 + 602 1484 l 1,15,-1 + 782 1484 l 1,16,-1 + 782 1098 l 1,17,-1 + 780 1004 l 1,18,-1 + 1129 1515 l 1,19,-1 + 1290 1515 l 1,20,-1 + 997 1087 l 1,21,22 + 1054 1102 1054 1102 1123 1102 c 0,23,24 + 1299 1102 1299 1102 1382.5 1014.5 c 128,-1,25 + 1466 927 1466 927 1466 721 c 2,26,-1 + 1466 0 l 1,27,-1 + 1285 0 l 1,28,-1 + 1285 686 l 2,29,30 + 1285 800 1285 800 1264 855.5 c 128,-1,31 + 1243 911 1243 911 1195 937 c 128,-1,32 + 1147 963 1147 963 1062 963 c 0,33,34 + 935 963 935 963 858.5 875 c 128,-1,35 + 782 787 782 787 782 638 c 2,36,-1 + 782 0 l 1,37,-1 + 602 0 l 1,38,-1 + 602 508 l 1,39,-1 + 367 165 l 1,40,41 + 394 127 394 127 461 127 c 0,42,43 + 497 127 497 127 565 141 c 1,44,-1 + 565 8 l 1,45,46 + 476 -16 476 -16 383 -16 c 0,47,48 + 310 -16 310 -16 262 11 c 1,49,-1 + 216 -57 l 1,50,-1 + 55 -57 l 1,51,-1 + 179 125 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D7B +Encoding: 7547 7547 1435 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 11 + 1 + 9 + 9 + 6 + 4 + 8 + 8 + 13 + 12 + 7 + 11 + 0 + 11 + 80 + 89 + 4 + 0 + 0 + 2 + 9 + 21 + 2 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +26 617 m 1,0,-1 + 135 617 l 1,1,-1 + 135 1082 l 1,2,-1 + 315 1082 l 1,3,-1 + 315 617 l 1,4,-1 + 429 617 l 1,5,-1 + 429 484 l 1,6,-1 + 315 484 l 1,7,-1 + 315 0 l 1,8,-1 + 135 0 l 1,9,-1 + 135 484 l 1,10,-1 + 26 484 l 1,11,-1 + 26 617 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D7C +Encoding: 7548 7548 1436 +Width: 455 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 1435 7547 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1D7D +Encoding: 7549 7549 1437 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 42 + 34 + 34 + 17 + 16 + 19 + 41 + 35 + 5 + 27 + 27 + 30 + 1 + 28 + 19 + 28 + 46 + 45 + 27 + 27 + 35 + 19 + 30 + 0 + 64 + 41 + 41 + 16 + 23 + 21 + 9 + 13 + 15 + 0 + 1 + 11 + 3 + 0 + 0 + 21 + 13 + 21 + 31 + 80 + 89 + 21 + 22 + 13 + 38 + 80 + 89 + 13 + 16 + 5 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP2 +IP +SRP2 +IP +SHP[rp1] +SHP[rp1] +MDAP[rnd] +SMD +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp2] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +30 617 m 1,0,-1 + 138 617 l 1,1,-1 + 138 861 l 2,2,3 + 138 1028 138 1028 132 1082 c 1,4,-1 + 306 1082 l 1,5,6 + 307 1078 307 1078 309 1053.5 c 128,-1,7 + 311 1029 311 1029 313.5 978 c 128,-1,8 + 316 927 316 927 316 908 c 1,9,-1 + 320 908 l 1,10,11 + 368 1008 368 1008 447 1054.5 c 128,-1,12 + 526 1101 526 1101 655 1101 c 0,13,14 + 842 1101 842 1101 940.5 983.5 c 128,-1,15 + 1039 866 1039 866 1051 617 c 1,16,-1 + 1129 617 l 1,17,-1 + 1129 484 l 1,18,-1 + 1052 484 l 1,19,20 + 1029 -20 1029 -20 655 -20 c 0,21,22 + 405 -20 405 -20 319 168 c 1,23,-1 + 314 168 l 1,24,25 + 318 160 318 160 318 -2 c 2,26,-1 + 318 -425 l 1,27,-1 + 138 -425 l 1,28,-1 + 138 484 l 1,29,-1 + 30 484 l 1,30,-1 + 30 617 l 1,0,-1 +607 113 m 0,31,32 + 732 113 732 113 794 199.5 c 128,-1,33 + 856 286 856 286 863 484 c 1,34,-1 + 318 484 l 1,35,36 + 326 291 326 291 395.5 202 c 128,-1,37 + 465 113 465 113 607 113 c 0,31,32 +609 962 m 0,38,39 + 467 962 467 962 399.5 875 c 128,-1,40 + 332 788 332 788 321 617 c 1,41,-1 + 862 617 l 1,42,43 + 853 800 853 800 791.5 881 c 128,-1,44 + 730 962 730 962 609 962 c 0,38,39 +EndSplineSet +EndChar + +StartChar: uni1D7E +Encoding: 7550 7550 1438 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 5 + 24 + 24 + 10 + 8 + 12 + 4 + 27 + 27 + 20 + 1 + 18 + 12 + 18 + 31 + 30 + 26 + 11 + 20 + 0 + 20 + 80 + 89 + 8 + 4 + 15 + 0 + 1 + 11 + 3 + 0 + 0 + 15 + 2 + 15 + 21 + 80 + 89 + 15 + 22 + 6 + 2 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 652 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1120 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 560 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +30 617 m 1,0,-1 + 133 617 l 1,1,-1 + 133 1082 l 1,2,-1 + 314 1082 l 1,3,-1 + 314 617 l 1,4,-1 + 808 617 l 1,5,-1 + 808 1082 l 1,6,-1 + 989 1082 l 1,7,-1 + 989 617 l 1,8,-1 + 1090 617 l 1,9,-1 + 1090 484 l 1,10,-1 + 989 484 l 1,11,-1 + 989 361 l 2,12,13 + 989 178 989 178 876 79 c 128,-1,14 + 763 -20 763 -20 559 -20 c 0,15,16 + 358 -20 358 -20 245.5 78.5 c 128,-1,17 + 133 177 133 177 133 361 c 2,18,-1 + 133 484 l 1,19,-1 + 30 484 l 1,20,-1 + 30 617 l 1,0,-1 +560 119 m 0,21,22 + 689 119 689 119 748.5 188 c 128,-1,23 + 808 257 808 257 808 396 c 2,24,-1 + 808 484 l 1,25,-1 + 314 484 l 1,26,-1 + 314 396 l 2,27,28 + 314 255 314 255 373.5 187 c 128,-1,29 + 433 119 433 119 560 119 c 0,21,22 +EndSplineSet +EndChar + +StartChar: uni1D7F +Encoding: 7551 7551 1439 +Width: 1164 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 56 + 12 + 39 + 39 + 23 + 22 + 18 + 11 + 42 + 42 + 19 + 15 + 8 + 4 + 4 + 27 + 35 + 5 + 1 + 33 + 27 + 33 + 46 + 45 + 41 + 25 + 35 + 0 + 35 + 80 + 89 + 22 + 11 + 15 + 0 + 1 + 11 + 3 + 0 + 0 + 30 + 6 + 30 + 36 + 80 + 89 + 30 + 22 + 19 + 5 + 6 + 5 + 80 + 89 + 16 + 6 + 15 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1164 1540 basechar 0 +AnchorPoint: "Anchor-20" 1164 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +10 617 m 1,0,-1 + 103 617 l 1,1,2 + 125 698 125 698 170.5 769.5 c 128,-1,3 + 216 841 216 841 321 943 c 1,4,-1 + 57 943 l 1,5,-1 + 57 1082 l 1,6,-1 + 511 1082 l 1,7,-1 + 511 943 l 1,8,9 + 433 905 433 905 373.5 822 c 128,-1,10 + 314 739 314 739 287 617 c 1,11,-1 + 876 617 l 1,12,13 + 849 738 849 738 789.5 821.5 c 128,-1,14 + 730 905 730 905 652 943 c 1,15,-1 + 652 1082 l 1,16,-1 + 1107 1082 l 1,17,-1 + 1107 943 l 1,18,-1 + 842 943 l 1,19,20 + 945 842 945 842 991 770.5 c 128,-1,21 + 1037 699 1037 699 1059 617 c 1,22,-1 + 1154 617 l 1,23,-1 + 1154 484 l 1,24,-1 + 1078 484 l 1,25,-1 + 1079 466 l 1,26,-1 + 1079 448 l 2,27,28 + 1079 239 1079 239 944 109.5 c 128,-1,29 + 809 -20 809 -20 581 -20 c 0,30,31 + 356 -20 356 -20 220 108 c 128,-1,32 + 84 236 84 236 84 448 c 2,33,-1 + 84 484 l 1,34,-1 + 10 484 l 1,35,-1 + 10 617 l 1,0,-1 +581 123 m 256,36,37 + 724 123 724 123 808 218 c 128,-1,38 + 892 313 892 313 892 472 c 2,39,-1 + 892 484 l 1,40,-1 + 271 484 l 1,41,-1 + 271 472 l 2,42,43 + 271 313 271 313 354.5 218 c 128,-1,44 + 438 123 438 123 581 123 c 256,36,37 +EndSplineSet +EndChar + +StartChar: uni1D80 +Encoding: 7552 7552 1440 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 37 + 28 + 18 + 43 + 43 + 25 + 8 + 3 + 12 + 12 + 0 + 25 + 0 + 25 + 50 + 49 + 2 + 18 + 30 + 3 + 34 + 15 + 34 + 40 + 80 + 89 + 34 + 16 + 27 + 0 + 23 + 21 + 15 + 46 + 80 + 89 + 15 + 22 + 5 + 10 + 80 + 89 + 5 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 272 1053 272 959 129 c 1,2,-1 + 959 -129 l 2,3,4 + 959 -425 959 -425 678 -425 c 0,5,6 + 619 -425 619 -425 546 -409 c 1,7,-1 + 546 -249 l 1,8,9 + 596 -267 596 -267 665 -267 c 0,10,11 + 790 -267 790 -267 790 -119 c 2,12,-1 + 790 0 l 1,13,14 + 727 -20 727 -20 655 -20 c 0,15,16 + 532 -20 532 -20 450.5 24.5 c 128,-1,17 + 369 69 369 69 318 168 c 1,18,-1 + 316 168 l 1,19,20 + 316 137 316 137 312 73.5 c 128,-1,21 + 308 10 308 10 306 0 c 1,22,-1 + 132 0 l 1,23,24 + 138 54 138 54 138 223 c 2,25,-1 + 138 1484 l 1,26,-1 + 318 1484 l 1,27,-1 + 318 1061 l 2,28,29 + 318 996 318 996 314 908 c 1,30,-1 + 318 908 l 1,31,32 + 368 1012 368 1012 450.5 1057 c 128,-1,33 + 533 1102 533 1102 655 1102 c 0,34,35 + 860 1102 860 1102 956.5 964 c 128,-1,36 + 1053 826 1053 826 1053 546 c 0,0,1 +864 540 m 0,37,38 + 864 767 864 767 804 865 c 128,-1,39 + 744 963 744 963 609 963 c 0,40,41 + 457 963 457 963 387.5 859 c 128,-1,42 + 318 755 318 755 318 529 c 0,43,44 + 318 316 318 316 386 214.5 c 128,-1,45 + 454 113 454 113 607 113 c 0,46,47 + 743 113 743 113 803.5 213.5 c 128,-1,48 + 864 314 864 314 864 540 c 0,37,38 +EndSplineSet +EndChar + +StartChar: uni1D81 +Encoding: 7553 7553 1441 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 47 + 14 + 0 + 39 + 39 + 16 + 16 + 28 + 28 + 18 + 33 + 6 + 6 + 23 + 18 + 3 + 46 + 45 + 29 + 16 + 80 + 89 + 29 + 21 + 20 + 25 + 80 + 89 + 20 + 27 + 14 + 0 + 11 + 0 + 8 + 3 + 8 + 42 + 80 + 89 + 8 + 16 + 3 + 36 + 80 + 89 + 3 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 870 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +821 174 m 1,0,1 + 771 70 771 70 688.5 25 c 128,-1,2 + 606 -20 606 -20 484 -20 c 0,3,4 + 279 -20 279 -20 182.5 118 c 128,-1,5 + 86 256 86 256 86 536 c 0,6,7 + 86 1102 86 1102 484 1102 c 0,8,9 + 607 1102 607 1102 689 1057 c 128,-1,10 + 771 1012 771 1012 821 914 c 1,11,-1 + 823 914 l 1,12,-1 + 821 1035 l 1,13,-1 + 821 1484 l 1,14,-1 + 1001 1484 l 1,15,-1 + 1001 155 l 1,16,-1 + 1090 155 l 1,17,-1 + 1090 -129 l 2,18,19 + 1090 -425 1090 -425 809 -425 c 0,20,21 + 750 -425 750 -425 677 -409 c 1,22,-1 + 677 -249 l 1,23,24 + 727 -267 727 -267 796 -267 c 0,25,26 + 921 -267 921 -267 921 -119 c 2,27,-1 + 921 0 l 1,28,-1 + 835 0 l 1,29,30 + 832 16 832 16 828.5 74 c 128,-1,31 + 825 132 825 132 825 174 c 1,32,-1 + 821 174 l 1,0,1 +275 542 m 0,33,34 + 275 315 275 315 335 217 c 128,-1,35 + 395 119 395 119 530 119 c 0,36,37 + 683 119 683 119 752 225 c 128,-1,38 + 821 331 821 331 821 554 c 0,39,40 + 821 769 821 769 752 869 c 128,-1,41 + 683 969 683 969 532 969 c 0,42,43 + 396 969 396 969 335.5 868.5 c 128,-1,44 + 275 768 275 768 275 542 c 0,33,34 +EndSplineSet +EndChar + +StartChar: uni1D82 +Encoding: 7554 7554 1442 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 32 + 25 + 25 + 12 + 3 + 16 + 1 + 14 + 8 + 14 + 3 + 3 + 35 + 34 + 31 + 0 + 81 + 89 + 31 + 15 + 22 + 27 + 80 + 89 + 22 + 0 + 18 + 15 + 81 + 89 + 18 + 15 + 14 + 2 + 80 + 89 + 14 + 21 + 5 + 10 + 80 + 89 + 5 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 371 1540 basechar 0 +AnchorPoint: "Anchor-15" 560 1540 basechar 0 +AnchorPoint: "Anchor-14" 270 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +361 951 m 1,0,-1 + 361 155 l 1,1,-1 + 445 155 l 1,2,-1 + 445 -129 l 2,3,4 + 445 -425 445 -425 164 -425 c 0,5,6 + 110 -425 110 -425 41 -410 c 1,7,-1 + 41 -250 l 1,8,9 + 88 -267 88 -267 151 -267 c 0,10,11 + 276 -267 276 -267 276 -119 c 2,12,-1 + 276 0 l 1,13,-1 + 181 0 l 1,14,-1 + 181 951 l 1,15,-1 + 29 951 l 1,16,-1 + 29 1082 l 1,17,-1 + 181 1082 l 1,18,-1 + 181 1204 l 2,19,20 + 181 1352 181 1352 246 1417 c 128,-1,21 + 311 1482 311 1482 445 1482 c 0,22,23 + 520 1482 520 1482 572 1470 c 1,24,-1 + 572 1333 l 1,25,26 + 527 1341 527 1341 492 1341 c 0,27,28 + 423 1341 423 1341 392 1306 c 128,-1,29 + 361 1271 361 1271 361 1179 c 2,30,-1 + 361 1082 l 1,31,-1 + 572 1082 l 1,32,-1 + 572 951 l 1,33,-1 + 361 951 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D83 +Encoding: 7555 7555 1443 +Width: 1460 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 64 + 5 + 41 + 40 + 0 + 7 + 7 + 47 + 32 + 18 + 54 + 12 + 26 + 26 + 18 + 41 + 3 + 62 + 61 + 37 + 15 + 40 + 6 + 80 + 89 + 32 + 29 + 19 + 23 + 40 + 40 + 29 + 23 + 29 + 51 + 80 + 89 + 29 + 16 + 23 + 57 + 80 + 89 + 23 + 21 + 44 + 2 + 80 + 89 + 44 + 44 + 9 + 9 + 16 + 80 + 89 + 53 + 13 + 1 + 38 + 13 + 1 + 13 + 9 + 27 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +DELTAP1 +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP2 +IP +SRP2 +IP +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1840 basechar 0 +AnchorPoint: "Anchor-20" 1460 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1067 -147 m 1,0,1 + 1112 -157 1112 -157 1152 -157 c 0,2,3 + 1270 -157 1270 -157 1270 -6 c 2,4,-1 + 1270 133 l 1,5,-1 + 1001 133 l 1,6,-1 + 1001 31 l 2,7,8 + 1001 -425 1001 -425 548 -425 c 0,9,10 + 371 -425 371 -425 266 -355.5 c 128,-1,11 + 161 -286 161 -286 131 -158 c 1,12,-1 + 312 -132 l 1,13,14 + 330 -207 330 -207 391.5 -247.5 c 128,-1,15 + 453 -288 453 -288 553 -288 c 0,16,17 + 822 -288 822 -288 822 27 c 2,18,-1 + 822 201 l 1,19,-1 + 820 201 l 1,20,21 + 769 97 769 97 680 44.5 c 128,-1,22 + 591 -8 591 -8 472 -8 c 0,23,24 + 273 -8 273 -8 179.5 124 c 128,-1,25 + 86 256 86 256 86 539 c 0,26,27 + 86 826 86 826 186.5 962.5 c 128,-1,28 + 287 1099 287 1099 492 1099 c 0,29,30 + 607 1099 607 1099 691.5 1046.5 c 128,-1,31 + 776 994 776 994 822 897 c 1,32,-1 + 824 897 l 1,33,34 + 824 927 824 927 828 1001 c 128,-1,35 + 832 1075 832 1075 836 1082 c 1,36,-1 + 1007 1082 l 1,37,38 + 1001 1028 1001 1028 1001 858 c 2,39,-1 + 1001 275 l 1,40,-1 + 1429 275 l 1,41,-1 + 1429 -16 l 2,42,43 + 1429 -312 1429 -312 1154 -312 c 0,44,45 + 1113 -312 1113 -312 1067 -304 c 1,46,-1 + 1067 -147 l 1,0,1 +822 541 m 0,47,48 + 822 673 822 673 786 768.5 c 128,-1,49 + 750 864 750 864 684.5 914.5 c 128,-1,50 + 619 965 619 965 536 965 c 0,51,52 + 398 965 398 965 335 865 c 128,-1,53 + 272 765 272 765 272 541 c 0,54,55 + 272 319 272 319 331 222 c 128,-1,56 + 390 125 390 125 533 125 c 0,57,58 + 618 125 618 125 684 175 c 128,-1,59 + 750 225 750 225 786 318.5 c 128,-1,60 + 822 412 822 412 822 541 c 0,47,48 +EndSplineSet +EndChar + +StartChar: uni1D84 +Encoding: 7556 7556 1444 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 5 + 14 + 22 + 3 + 13 + 11 + 11 + 7 + 7 + 8 + 12 + 13 + 13 + 3 + 16 + 8 + 16 + 24 + 25 + 19 + 0 + 80 + 89 + 19 + 27 + 5 + 6 + 6 + 14 + 11 + 11 + 7 + 12 + 15 + 10 + 0 + 7 + 21 + 3 + 16 + 80 + 89 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 760 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 514 1540 basechar 0 +AnchorPoint: "Anchor-15" 960 1540 basechar 0 +AnchorPoint: "Anchor-14" 512 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +730 -267 m 0,0,1 + 855 -267 855 -267 855 -119 c 2,2,-1 + 855 0 l 1,3,-1 + 816 0 l 1,4,-1 + 450 494 l 1,5,-1 + 318 385 l 1,6,-1 + 318 0 l 1,7,-1 + 138 0 l 1,8,-1 + 138 1484 l 1,9,-1 + 318 1484 l 1,10,-1 + 318 557 l 1,11,-1 + 793 1082 l 1,12,-1 + 1004 1082 l 1,13,-1 + 565 617 l 1,14,-1 + 911 155 l 1,15,-1 + 1024 155 l 1,16,-1 + 1024 -129 l 2,17,18 + 1024 -425 1024 -425 743 -425 c 0,19,20 + 684 -425 684 -425 611 -409 c 1,21,-1 + 611 -249 l 1,22,23 + 661 -267 661 -267 730 -267 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D85 +Encoding: 7557 7557 1445 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 9 + 6 + 4 + 11 + 11 + 6 + 15 + 3 + 16 + 17 + 13 + 2 + 80 + 89 + 13 + 27 + 7 + 0 + 6 + 9 + 80 + 89 + 6 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 170 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +15 -255 m 1,0,1 + 58 -267 58 -267 111 -267 c 0,2,3 + 238 -267 238 -267 238 -119 c 2,4,-1 + 238 0 l 1,5,-1 + 138 0 l 1,6,-1 + 138 1484 l 1,7,-1 + 318 1484 l 1,8,-1 + 318 155 l 1,9,-1 + 405 155 l 1,10,-1 + 405 -129 l 2,11,12 + 405 -425 405 -425 124 -425 c 0,13,14 + 79 -425 79 -425 15 -414 c 1,15,-1 + 15 -255 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D86 +Encoding: 7558 7558 1446 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 54 + 45 + 32 + 32 + 43 + 34 + 24 + 53 + 53 + 0 + 17 + 8 + 8 + 12 + 9 + 9 + 0 + 38 + 34 + 4 + 55 + 54 + 45 + 32 + 80 + 89 + 45 + 21 + 36 + 41 + 80 + 89 + 36 + 27 + 28 + 49 + 80 + 89 + 28 + 16 + 17 + 24 + 21 + 9 + 21 + 4 + 80 + 89 + 21 + 16 + 12 + 15 + 0 + 9 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1400 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 855 1200 basechar 0 +AnchorPoint: "Anchor-15" 1560 1260 basechar 0 +AnchorPoint: "Anchor-14" 853 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +768 0 m 1,0,-1 + 768 686 l 2,1,2 + 768 843 768 843 725 903 c 128,-1,3 + 682 963 682 963 570 963 c 0,4,5 + 455 963 455 963 388 875 c 128,-1,6 + 321 787 321 787 321 627 c 2,7,-1 + 321 0 l 1,8,-1 + 142 0 l 1,9,-1 + 142 851 l 2,10,11 + 142 1040 142 1040 136 1082 c 1,12,-1 + 306 1082 l 1,13,14 + 307 1077 307 1077 308 1055 c 128,-1,15 + 309 1033 309 1033 310.5 1004.5 c 128,-1,16 + 312 976 312 976 314 897 c 1,17,-1 + 317 897 l 1,18,19 + 375 1012 375 1012 450 1057 c 128,-1,20 + 525 1102 525 1102 633 1102 c 0,21,22 + 756 1102 756 1102 827.5 1053 c 128,-1,23 + 899 1004 899 1004 927 897 c 1,24,-1 + 930 897 l 1,25,26 + 986 1006 986 1006 1065.5 1054 c 128,-1,27 + 1145 1102 1145 1102 1258 1102 c 0,28,29 + 1422 1102 1422 1102 1496.5 1013 c 128,-1,30 + 1571 924 1571 924 1571 721 c 2,31,-1 + 1571 155 l 1,32,-1 + 1669 155 l 1,33,-1 + 1669 -129 l 2,34,35 + 1669 -425 1669 -425 1388 -425 c 0,36,37 + 1329 -425 1329 -425 1256 -409 c 1,38,-1 + 1256 -249 l 1,39,40 + 1306 -267 1306 -267 1375 -267 c 0,41,42 + 1500 -267 1500 -267 1500 -119 c 2,43,-1 + 1500 0 l 1,44,-1 + 1393 0 l 1,45,-1 + 1393 686 l 2,46,47 + 1393 843 1393 843 1350 903 c 128,-1,48 + 1307 963 1307 963 1195 963 c 0,49,50 + 1077 963 1077 963 1011.5 875.5 c 128,-1,51 + 946 788 946 788 946 627 c 2,52,-1 + 946 0 l 1,53,-1 + 768 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D87 +Encoding: 7559 7559 1447 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 36 + 4 + 4 + 30 + 30 + 2 + 32 + 22 + 13 + 13 + 17 + 14 + 32 + 14 + 40 + 39 + 34 + 0 + 80 + 89 + 34 + 27 + 22 + 26 + 14 + 26 + 9 + 80 + 89 + 26 + 16 + 17 + 15 + 14 + 21 + 4 + 30 + 80 + 89 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 870 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 560 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +802 -267 m 0,0,1 + 927 -267 927 -267 927 -119 c 2,2,-1 + 927 0 l 1,3,-1 + 825 0 l 1,4,-1 + 825 686 l 2,5,6 + 825 793 825 793 804 852 c 128,-1,7 + 783 911 783 911 737 937 c 128,-1,8 + 691 963 691 963 602 963 c 0,9,10 + 472 963 472 963 397 874 c 128,-1,11 + 322 785 322 785 322 627 c 2,12,-1 + 322 0 l 1,13,-1 + 142 0 l 1,14,-1 + 142 851 l 2,15,16 + 142 1040 142 1040 136 1082 c 1,17,-1 + 306 1082 l 1,18,19 + 307 1077 307 1077 308 1055 c 128,-1,20 + 309 1033 309 1033 310.5 1004.5 c 128,-1,21 + 312 976 312 976 314 897 c 1,22,-1 + 317 897 l 1,23,24 + 379 1009 379 1009 460.5 1055.5 c 128,-1,25 + 542 1102 542 1102 663 1102 c 0,26,27 + 841 1102 841 1102 923.5 1013.5 c 128,-1,28 + 1006 925 1006 925 1006 721 c 2,29,-1 + 1006 155 l 1,30,-1 + 1096 155 l 1,31,-1 + 1096 -129 l 2,32,33 + 1096 -425 1096 -425 815 -425 c 0,34,35 + 756 -425 756 -425 683 -409 c 1,36,-1 + 683 -249 l 1,37,38 + 733 -267 733 -267 802 -267 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D88 +Encoding: 7560 7560 1448 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 38 + 45 + 31 + 21 + 22 + 22 + 23 + 3 + 13 + 7 + 13 + 0 + 26 + 23 + 0 + 23 + 52 + 51 + 2 + 18 + 31 + 3 + 35 + 16 + 35 + 41 + 80 + 89 + 35 + 16 + 26 + 15 + 23 + 27 + 16 + 48 + 80 + 89 + 16 + 22 + 5 + 10 + 80 + 89 + 5 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1053 546 m 0,0,1 + 1053 229 1053 229 929 90 c 1,2,-1 + 929 -129 l 2,3,4 + 929 -425 929 -425 652 -425 c 0,5,6 + 593 -425 593 -425 520 -409 c 1,7,-1 + 520 -249 l 1,8,9 + 570 -267 570 -267 639 -267 c 0,10,11 + 700 -267 700 -267 732 -233.5 c 128,-1,12 + 764 -200 764 -200 764 -119 c 2,13,-1 + 764 -7 l 1,14,15 + 710 -20 710 -20 655 -20 c 0,16,17 + 405 -20 405 -20 319 168 c 1,18,-1 + 314 168 l 1,19,20 + 318 160 318 160 318 -2 c 2,21,-1 + 318 -425 l 1,22,-1 + 138 -425 l 1,23,-1 + 138 861 l 2,24,25 + 138 1028 138 1028 132 1082 c 1,26,-1 + 306 1082 l 1,27,28 + 307 1078 307 1078 309 1053.5 c 128,-1,29 + 311 1029 311 1029 313.5 978 c 128,-1,30 + 316 927 316 927 316 908 c 1,31,-1 + 320 908 l 1,32,33 + 368 1008 368 1008 447 1054.5 c 128,-1,34 + 526 1101 526 1101 655 1101 c 0,35,36 + 855 1101 855 1101 954 967 c 128,-1,37 + 1053 833 1053 833 1053 546 c 0,0,1 +864 542 m 0,38,39 + 864 768 864 768 803 865 c 128,-1,40 + 742 962 742 962 609 962 c 0,41,42 + 502 962 502 962 441.5 917 c 128,-1,43 + 381 872 381 872 349.5 776.5 c 128,-1,44 + 318 681 318 681 318 528 c 0,45,46 + 318 315 318 315 386 214 c 128,-1,47 + 454 113 454 113 607 113 c 0,48,49 + 741 113 741 113 802.5 211.5 c 128,-1,50 + 864 310 864 310 864 542 c 0,38,39 +EndSplineSet +EndChar + +StartChar: uni1D89 +Encoding: 7561 7561 1449 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 10 + 23 + 23 + 4 + 25 + 2 + 2 + 16 + 29 + 5 + 4 + 16 + 4 + 33 + 32 + 27 + 0 + 80 + 89 + 27 + 27 + 10 + 14 + 4 + 14 + 19 + 83 + 89 + 14 + 16 + 7 + 15 + 4 + 23 + 80 + 89 + 4 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 190 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 380 1200 basechar 0 +AnchorPoint: "Anchor-15" 600 1260 basechar 0 +AnchorPoint: "Anchor-14" 237 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +111 -267 m 0,0,1 + 236 -267 236 -267 236 -119 c 2,2,-1 + 236 0 l 1,3,-1 + 142 0 l 1,4,-1 + 142 830 l 2,5,6 + 142 944 142 944 136 1082 c 1,7,-1 + 306 1082 l 1,8,9 + 314 898 314 898 314 861 c 1,10,-1 + 318 861 l 1,11,12 + 361 1000 361 1000 417 1051 c 128,-1,13 + 473 1102 473 1102 575 1102 c 0,14,15 + 611 1102 611 1102 648 1092 c 1,16,-1 + 648 927 l 1,17,18 + 612 937 612 937 552 937 c 0,19,20 + 440 937 440 937 381 840.5 c 128,-1,21 + 322 744 322 744 322 564 c 2,22,-1 + 322 155 l 1,23,-1 + 405 155 l 1,24,-1 + 405 -129 l 2,25,26 + 405 -425 405 -425 124 -425 c 0,27,28 + 73 -425 73 -425 0 -409 c 1,29,-1 + 0 -249 l 1,30,31 + 49 -267 49 -267 111 -267 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D8A +Encoding: 7562 7562 1450 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 37 + 36 + 36 + 22 + 9 + 9 + 16 + 15 + 15 + 4 + 0 + 43 + 30 + 0 + 30 + 54 + 53 + 22 + 43 + 12 + 33 + 33 + 40 + 80 + 89 + 37 + 33 + 16 + 12 + 19 + 80 + 89 + 16 + 12 + 22 + 2 + 7 + 80 + 89 + 2 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 730 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +950 -129 m 2,0,1 + 950 -425 950 -425 669 -425 c 0,2,3 + 610 -425 610 -425 537 -409 c 1,4,-1 + 537 -249 l 1,5,6 + 587 -267 587 -267 656 -267 c 0,7,8 + 781 -267 781 -267 781 -119 c 2,9,-1 + 781 31 l 1,10,11 + 673 -20 673 -20 511 -20 c 0,12,13 + 309 -20 309 -20 199.5 46.5 c 128,-1,14 + 90 113 90 113 57 254 c 1,15,-1 + 216 285 l 1,16,17 + 239 198 239 198 311 157.5 c 128,-1,18 + 383 117 383 117 511 117 c 0,19,20 + 648 117 648 117 711.5 159 c 128,-1,21 + 775 201 775 201 775 285 c 0,22,23 + 775 349 775 349 731 389 c 128,-1,24 + 687 429 687 429 589 455 c 2,25,-1 + 460 489 l 2,26,27 + 305 529 305 529 239.5 567.5 c 128,-1,28 + 174 606 174 606 137 661 c 128,-1,29 + 100 716 100 716 100 796 c 0,30,31 + 100 944 100 944 205.5 1021.5 c 128,-1,32 + 311 1099 311 1099 513 1099 c 0,33,34 + 692 1099 692 1099 797.5 1036 c 128,-1,35 + 903 973 903 973 931 834 c 1,36,-1 + 769 814 l 1,37,38 + 754 886 754 886 688.5 924.5 c 128,-1,39 + 623 963 623 963 513 963 c 0,40,41 + 391 963 391 963 333 926 c 128,-1,42 + 275 889 275 889 275 814 c 0,43,44 + 275 768 275 768 299 738 c 128,-1,45 + 323 708 323 708 370 687 c 128,-1,46 + 417 666 417 666 568 629 c 0,47,48 + 711 593 711 593 774 562.5 c 128,-1,49 + 837 532 837 532 873.5 495 c 128,-1,50 + 910 458 910 458 930 409.5 c 128,-1,51 + 950 361 950 361 950 299 c 2,52,-1 + 950 -129 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1D8B +Encoding: 7563 7563 1451 +Width: 792 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 29 + 20 + 24 + 18 + 32 + 32 + 6 + 6 + 12 + 20 + 3 + 39 + 0 + 38 + 27 + 22 + 80 + 89 + 18 + 31 + 80 + 89 + 27 + 18 + 12 + 12 + 18 + 27 + 3 + 35 + 9 + 35 + 2 + 80 + 89 + 35 + 27 + 9 + 14 + 80 + 89 + 9 + 0 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +CALL +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 60 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 792 1540 basechar 0 +AnchorPoint: "Anchor-20" 792 -380 basechar 0 +AnchorPoint: "Anchor-16" 349 1540 basechar 0 +AnchorPoint: "Anchor-15" 560 1540 basechar 0 +AnchorPoint: "Anchor-14" 105 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +-89 -256 m 1,0,1 + -36 -270 -36 -270 -3 -270 c 0,2,3 + 51 -270 51 -270 80.5 -248.5 c 128,-1,4 + 110 -227 110 -227 123 -186.5 c 128,-1,5 + 136 -146 136 -146 136 -37 c 2,6,-1 + 136 1130 l 2,7,8 + 136 1484 136 1484 452 1484 c 0,9,10 + 539 1484 539 1484 583 1466 c 1,11,-1 + 583 1303 l 1,12,13 + 534 1330 534 1330 468 1330 c 0,14,15 + 391 1330 391 1330 353.5 1277.5 c 128,-1,16 + 316 1225 316 1225 316 1097 c 2,17,-1 + 316 275 l 1,18,-1 + 762 275 l 1,19,-1 + 762 -16 l 2,20,21 + 762 -312 762 -312 487 -312 c 0,22,23 + 446 -312 446 -312 400 -304 c 1,24,-1 + 400 -147 l 1,25,26 + 445 -157 445 -157 485 -157 c 0,27,28 + 603 -157 603 -157 603 -6 c 2,29,-1 + 603 133 l 1,30,-1 + 316 133 l 1,31,-1 + 316 -70 l 2,32,33 + 316 -250 316 -250 242 -337.5 c 128,-1,34 + 168 -425 168 -425 14 -425 c 0,35,36 + -38 -425 -38 -425 -89 -414 c 1,37,-1 + -89 -256 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D8C +Encoding: 7564 7564 1452 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 11 + 2 + 2 + 22 + 13 + 0 + 18 + 14 + 18 + 6 + 22 + 4 + 24 + 23 + 18 + 13 + 21 + 14 + 15 + 4 + 9 + 80 + 89 + 4 + 7 + 83 + 89 + 4 + 13 + 13 + 0 + 80 + 89 + 13 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 513 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1260 basechar 0 +AnchorPoint: "Anchor-14" 520 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +665 139 m 1,0,-1 + 903 139 l 1,1,-1 + 903 -130 l 2,2,3 + 903 -426 903 -426 628 -426 c 0,4,5 + 587 -426 587 -426 541 -418 c 1,6,-1 + 541 -261 l 1,7,8 + 586 -271 586 -271 626 -271 c 0,9,10 + 744 -271 744 -271 744 -120 c 2,11,-1 + 744 0 l 1,12,-1 + 400 0 l 1,13,-1 + 7 1082 l 1,14,-1 + 199 1082 l 1,15,-1 + 437 378 l 2,16,17 + 450 338 450 338 506 141 c 1,18,-1 + 541 258 l 1,19,-1 + 580 376 l 1,20,-1 + 826 1082 l 1,21,-1 + 1017 1082 l 1,22,-1 + 665 139 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D8D +Encoding: 7565 7565 1453 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 1 + 2 + 2 + 5 + 4 + 23 + 21 + 11 + 11 + 7 + 8 + 8 + 0 + 6 + 4 + 4 + 24 + 25 + 23 + 11 + 80 + 89 + 23 + 21 + 14 + 19 + 80 + 89 + 14 + 27 + 7 + 15 + 0 + 3 + 9 + 6 + 4 + 1 + 5 + 15 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 514 1540 basechar 0 +AnchorPoint: "Anchor-15" 960 1540 basechar 0 +AnchorPoint: "Anchor-14" 512 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +510 444 m 1,0,-1 + 217 0 l 1,1,-1 + 23 0 l 1,2,-1 + 408 556 l 1,3,-1 + 41 1082 l 1,4,-1 + 240 1082 l 1,5,-1 + 510 661 l 1,6,-1 + 778 1082 l 1,7,-1 + 979 1082 l 1,8,-1 + 612 558 l 1,9,-1 + 905 139 l 1,10,-1 + 1018 139 l 1,11,-1 + 1018 -130 l 2,12,13 + 1018 -426 1018 -426 743 -426 c 0,14,15 + 702 -426 702 -426 656 -418 c 1,16,-1 + 656 -261 l 1,17,18 + 701 -271 701 -271 741 -271 c 0,19,20 + 859 -271 859 -271 859 -120 c 2,21,-1 + 859 0 l 1,22,-1 + 801 0 l 1,23,-1 + 510 444 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D8E +Encoding: 7566 7566 1454 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 6 + 2 + 19 + 1 + 5 + 5 + 17 + 8 + 8 + 13 + 19 + 3 + 20 + 21 + 10 + 15 + 80 + 89 + 10 + 19 + 0 + 6 + 19 + 6 + 80 + 89 + 19 + 21 + 5 + 2 + 3 + 2 + 80 + 89 + 3 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 715 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 460 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +49 137 m 1,0,-1 + 710 943 l 1,1,-1 + 89 943 l 1,2,-1 + 89 1082 l 1,3,-1 + 913 1082 l 1,4,-1 + 913 945 l 1,5,-1 + 251 139 l 1,6,-1 + 950 139 l 1,7,-1 + 950 -130 l 2,8,9 + 950 -426 950 -426 675 -426 c 0,10,11 + 634 -426 634 -426 588 -418 c 1,12,-1 + 588 -261 l 1,13,14 + 633 -271 633 -271 673 -271 c 0,15,16 + 791 -271 791 -271 791 -120 c 2,17,-1 + 791 0 l 1,18,-1 + 49 0 l 1,19,-1 + 49 137 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D8F +Encoding: 7567 7567 1455 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 65 + 38 + 7 + 46 + 46 + 21 + 21 + 35 + 35 + 30 + 26 + 14 + 15 + 15 + 52 + 3 + 26 + 3 + 56 + 55 + 36 + 23 + 81 + 89 + 36 + 21 + 33 + 28 + 80 + 89 + 33 + 27 + 6 + 48 + 81 + 89 + 38 + 6 + 6 + 0 + 17 + 63 + 14 + 1 + 15 + 14 + 111 + 14 + 2 + 11 + 3 + 14 + 14 + 17 + 17 + 11 + 80 + 89 + 17 + 16 + 0 + 42 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +SRP1 +SRP2 +IP +MDAP[rnd] +IP +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1166 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +414 -20 m 0,0,1 + 251 -20 251 -20 169 66 c 128,-1,2 + 87 152 87 152 87 302 c 0,3,4 + 87 470 87 470 197.5 560 c 128,-1,5 + 308 650 308 650 554 656 c 2,6,-1 + 797 660 l 1,7,-1 + 797 719 l 2,8,9 + 797 851 797 851 741 908 c 128,-1,10 + 685 965 685 965 565 965 c 0,11,12 + 444 965 444 965 389 924 c 128,-1,13 + 334 883 334 883 323 793 c 1,14,-1 + 135 810 l 1,15,16 + 181 1102 181 1102 569 1102 c 0,17,18 + 773 1102 773 1102 876 1008.5 c 128,-1,19 + 979 915 979 915 979 738 c 2,20,-1 + 979 272 l 2,21,22 + 979 111 979 111 1072 111 c 0,23,24 + 1098 111 1098 111 1131 118 c 1,25,-1 + 1131 -120 l 2,26,27 + 1131 -271 1131 -271 1249 -271 c 0,28,29 + 1289 -271 1289 -271 1334 -261 c 1,30,-1 + 1334 -418 l 1,31,32 + 1288 -426 1288 -426 1247 -426 c 0,33,34 + 972 -426 972 -426 972 -130 c 2,35,-1 + 972 -9 l 1,36,37 + 812 2 812 2 803 207 c 1,38,-1 + 797 207 l 1,39,40 + 728 83 728 83 636.5 31.5 c 128,-1,41 + 545 -20 545 -20 414 -20 c 0,0,1 +455 115 m 0,42,43 + 554 115 554 115 631 160 c 128,-1,44 + 708 205 708 205 752.5 283.5 c 128,-1,45 + 797 362 797 362 797 445 c 2,46,-1 + 797 534 l 1,47,-1 + 600 530 l 2,48,49 + 473 528 473 528 407.5 504 c 128,-1,50 + 342 480 342 480 307 430 c 128,-1,51 + 272 380 272 380 272 299 c 0,52,53 + 272 211 272 211 319.5 163 c 128,-1,54 + 367 115 367 115 455 115 c 0,42,43 +EndSplineSet +EndChar + +StartChar: uni1D90 +Encoding: 7568 7568 1456 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 25 + 12 + 35 + 35 + 33 + 33 + 9 + 9 + 4 + 0 + 41 + 20 + 0 + 20 + 48 + 47 + 29 + 16 + 25 + 13 + 22 + 17 + 22 + 38 + 80 + 89 + 22 + 16 + 7 + 4 + 80 + 89 + 7 + 2 + 83 + 89 + 7 + 17 + 17 + 44 + 80 + 89 + 17 + 22 + 11 + 33 + 80 + 89 + 11 + 21 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1100 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1069 -120 m 2,0,1 + 1069 -271 1069 -271 1187 -271 c 0,2,3 + 1227 -271 1227 -271 1272 -261 c 1,4,-1 + 1272 -418 l 1,5,6 + 1226 -426 1226 -426 1185 -426 c 0,7,8 + 910 -426 910 -426 910 -130 c 2,9,-1 + 910 0 l 1,10,-1 + 829 0 l 1,11,-1 + 827 119 l 1,12,-1 + 827 178 l 1,13,-1 + 823 178 l 1,14,15 + 769 71 769 71 690 25.5 c 128,-1,16 + 611 -20 611 -20 484 -20 c 0,17,18 + 278 -20 278 -20 182 119 c 128,-1,19 + 86 258 86 258 86 536 c 0,20,21 + 86 1102 86 1102 484 1102 c 0,22,23 + 607 1102 607 1102 687 1058.5 c 128,-1,24 + 767 1015 767 1015 821 914 c 1,25,-1 + 823 914 l 1,26,27 + 823 944 823 944 827 1017.5 c 128,-1,28 + 831 1091 831 1091 835 1096 c 1,29,-1 + 1008 1096 l 1,30,31 + 1001 1037 1001 1037 1001 801 c 2,32,-1 + 1001 139 l 1,33,-1 + 1069 139 l 1,34,-1 + 1069 -120 l 2,0,1 +821 554 m 0,35,36 + 821 765 821 765 752 867 c 128,-1,37 + 683 969 683 969 532 969 c 0,38,39 + 395 969 395 969 335 867 c 128,-1,40 + 275 765 275 765 275 542 c 0,41,42 + 275 315 275 315 335.5 217 c 128,-1,43 + 396 119 396 119 530 119 c 0,44,45 + 683 119 683 119 752 228 c 128,-1,46 + 821 337 821 337 821 554 c 0,35,36 +EndSplineSet +EndChar + +StartChar: uni1D91 +Encoding: 7569 7569 1457 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 41 + 14 + 34 + 34 + 25 + 20 + 29 + 29 + 25 + 35 + 7 + 25 + 7 + 48 + 47 + 32 + 27 + 80 + 89 + 32 + 27 + 17 + 22 + 80 + 89 + 17 + 0 + 12 + 0 + 9 + 4 + 9 + 44 + 80 + 89 + 9 + 16 + 4 + 38 + 80 + 89 + 4 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1030 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +825 174 m 1,0,-1 + 821 174 l 1,1,2 + 771 70 771 70 688.5 25 c 128,-1,3 + 606 -20 606 -20 484 -20 c 0,4,5 + 279 -20 279 -20 182.5 118 c 128,-1,6 + 86 256 86 256 86 536 c 0,7,8 + 86 1102 86 1102 484 1102 c 0,9,10 + 607 1102 607 1102 689 1057 c 128,-1,11 + 771 1012 771 1012 821 914 c 1,12,-1 + 823 914 l 1,13,-1 + 821 1035 l 1,14,-1 + 821 1202 l 2,15,16 + 821 1498 821 1498 1104 1498 c 0,17,18 + 1169 1498 1169 1498 1239 1483 c 1,19,-1 + 1239 1315 l 1,20,21 + 1181 1336 1181 1336 1122 1336 c 0,22,23 + 1001 1336 1001 1336 1001 1188 c 2,24,-1 + 1001 -123 l 2,25,26 + 1001 -271 1001 -271 1123 -271 c 0,27,28 + 1187 -271 1187 -271 1229 -256 c 1,29,-1 + 1229 -410 l 1,30,31 + 1166 -425 1166 -425 1105 -425 c 0,32,33 + 825 -425 825 -425 825 -129 c 2,34,-1 + 825 174 l 1,0,-1 +275 542 m 0,35,36 + 275 315 275 315 335 217 c 128,-1,37 + 395 119 395 119 530 119 c 0,38,39 + 683 119 683 119 752 225 c 128,-1,40 + 821 331 821 331 821 554 c 0,41,42 + 821 769 821 769 752 869 c 128,-1,43 + 683 969 683 969 532 969 c 0,44,45 + 396 969 396 969 335.5 868.5 c 128,-1,46 + 275 768 275 768 275 542 c 0,35,36 +EndSplineSet +EndChar + +StartChar: uni1D92 +Encoding: 7570 7570 1458 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 6 + 17 + 17 + 12 + 8 + 8 + 30 + 28 + 0 + 36 + 36 + 23 + 28 + 23 + 38 + 37 + 6 + 6 + 0 + 3 + 36 + 0 + 80 + 89 + 36 + 36 + 20 + 26 + 26 + 33 + 80 + 89 + 26 + 16 + 20 + 3 + 80 + 89 + 20 + 22 + 15 + 10 + 80 + 89 + 15 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1110 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +276 503 m 1,0,1 + 276 317 276 317 353 216 c 128,-1,2 + 430 115 430 115 578 115 c 0,3,4 + 695 115 695 115 765.5 162 c 128,-1,5 + 836 209 836 209 861 281 c 1,6,-1 + 1019 236 l 1,7,-1 + 1019 -123 l 2,8,9 + 1019 -271 1019 -271 1141 -271 c 0,10,11 + 1205 -271 1205 -271 1247 -256 c 1,12,-1 + 1247 -410 l 1,13,14 + 1184 -425 1184 -425 1123 -425 c 0,15,16 + 843 -425 843 -425 843 -129 c 2,17,-1 + 843 48 l 1,18,19 + 739 -20 739 -20 578 -20 c 0,20,21 + 338 -20 338 -20 212.5 123 c 128,-1,22 + 87 266 87 266 87 548 c 0,23,24 + 87 816 87 816 212.5 959 c 128,-1,25 + 338 1102 338 1102 571 1102 c 0,26,27 + 1048 1102 1048 1102 1048 527 c 2,28,-1 + 1048 503 l 1,29,-1 + 276 503 l 1,0,1 +862 641 m 1,30,31 + 847 812 847 812 775 890.5 c 128,-1,32 + 703 969 703 969 568 969 c 0,33,34 + 437 969 437 969 360.5 881.5 c 128,-1,35 + 284 794 284 794 278 641 c 1,36,-1 + 862 641 l 1,30,31 +EndSplineSet +EndChar + +StartChar: uni1D93 +Encoding: 7571 7571 1459 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 59 + 34 + 45 + 45 + 36 + 7 + 6 + 6 + 26 + 10 + 16 + 15 + 15 + 40 + 36 + 22 + 10 + 10 + 29 + 3 + 36 + 3 + 49 + 48 + 43 + 38 + 80 + 89 + 43 + 27 + 6 + 25 + 26 + 25 + 26 + 80 + 89 + 25 + 25 + 0 + 13 + 13 + 19 + 80 + 89 + 16 + 16 + 13 + 16 + 46 + 0 + 34 + 34 + 0 + 0 + 32 + 80 + 89 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +IP +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 979 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 939 1540 basechar 0 +AnchorPoint: "Anchor-20" 939 -380 basechar 0 +AnchorPoint: "Anchor-16" 480 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1260 basechar 0 +AnchorPoint: "Anchor-14" 480 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +477 -20 m 0,0,1 + 286 -20 286 -20 179.5 65.5 c 128,-1,2 + 73 151 73 151 73 301 c 0,3,4 + 73 409 73 409 148 482.5 c 128,-1,5 + 223 556 223 556 347 569 c 1,6,-1 + 347 571 l 1,7,8 + 240 580 240 580 169.5 646.5 c 128,-1,9 + 99 713 99 713 99 812 c 0,10,11 + 99 941 99 941 203.5 1021.5 c 128,-1,12 + 308 1102 308 1102 473 1102 c 0,13,14 + 804 1102 804 1102 850 844 c 1,15,-1 + 688 824 l 1,16,17 + 676 894 676 894 620 931 c 128,-1,18 + 564 968 564 968 474 968 c 0,19,20 + 381 968 381 968 331.5 925 c 128,-1,21 + 282 882 282 882 282 808 c 0,22,23 + 282 721 282 721 357 678.5 c 128,-1,24 + 432 636 432 636 595 636 c 1,25,-1 + 595 499 l 1,26,27 + 428 499 428 499 344.5 448 c 128,-1,28 + 261 397 261 397 261 300 c 0,29,30 + 261 216 261 216 316.5 165 c 128,-1,31 + 372 114 372 114 473 114 c 0,32,33 + 674 114 674 114 727 278 c 1,34,-1 + 886 234 l 1,35,-1 + 886 -123 l 2,36,37 + 886 -271 886 -271 1008 -271 c 0,38,39 + 1072 -271 1072 -271 1114 -256 c 1,40,-1 + 1114 -410 l 1,41,42 + 1051 -425 1051 -425 990 -425 c 0,43,44 + 710 -425 710 -425 710 -129 c 2,45,-1 + 710 40 l 1,46,47 + 611 -20 611 -20 477 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D94 +Encoding: 7572 7572 1460 +Width: 939 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 19 + 38 + 30 + 23 + 35 + 35 + 16 + 42 + 29 + 30 + 30 + 0 + 9 + 9 + 5 + 42 + 3 + 49 + 48 + 38 + 20 + 19 + 20 + 19 + 80 + 89 + 20 + 20 + 32 + 47 + 45 + 11 + 11 + 45 + 45 + 13 + 80 + 89 + 45 + 22 + 29 + 29 + 32 + 32 + 26 + 80 + 89 + 32 + 16 + 7 + 2 + 80 + 89 + 7 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +IP +SRP1 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 330 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 939 1540 basechar 0 +AnchorPoint: "Anchor-20" 939 -380 basechar 0 +AnchorPoint: "Anchor-16" 480 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1260 basechar 0 +AnchorPoint: "Anchor-14" 480 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +229 -123 m 2,0,1 + 229 -271 229 -271 351 -271 c 0,2,3 + 415 -271 415 -271 457 -256 c 1,4,-1 + 457 -410 l 1,5,6 + 394 -425 394 -425 333 -425 c 0,7,8 + 53 -425 53 -425 53 -129 c 2,9,-1 + 53 234 l 1,10,-1 + 212 278 l 1,11,12 + 265 114 265 114 466 114 c 0,13,14 + 567 114 567 114 622.5 164.5 c 128,-1,15 + 678 215 678 215 678 300 c 0,16,17 + 678 397 678 397 594.5 448 c 128,-1,18 + 511 499 511 499 344 499 c 1,19,-1 + 344 636 l 1,20,21 + 505 636 505 636 581 678 c 128,-1,22 + 657 720 657 720 657 808 c 0,23,24 + 657 882 657 882 607.5 925 c 128,-1,25 + 558 968 558 968 465 968 c 0,26,27 + 376 968 376 968 319.5 931 c 128,-1,28 + 263 894 263 894 251 824 c 1,29,-1 + 89 844 l 1,30,31 + 135 1102 135 1102 466 1102 c 0,32,33 + 630 1102 630 1102 735 1022 c 128,-1,34 + 840 942 840 942 840 812 c 0,35,36 + 840 713 840 713 769 646.5 c 128,-1,37 + 698 580 698 580 592 571 c 1,38,-1 + 592 569 l 1,39,40 + 715 556 715 556 790.5 483 c 128,-1,41 + 866 410 866 410 866 301 c 0,42,43 + 866 151 866 151 760 65.5 c 128,-1,44 + 654 -20 654 -20 462 -20 c 0,45,46 + 328 -20 328 -20 229 40 c 1,47,-1 + 229 -123 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1D95 +Encoding: 7573 7573 1461 +Width: 1332 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 49 + 0 + 37 + 37 + 24 + 24 + 12 + 23 + 23 + 18 + 14 + 31 + 7 + 29 + 14 + 29 + 39 + 38 + 24 + 31 + 30 + 31 + 80 + 89 + 12 + 30 + 30 + 27 + 9 + 27 + 34 + 80 + 89 + 27 + 22 + 21 + 16 + 80 + 89 + 21 + 27 + 6 + 6 + 9 + 9 + 3 + 80 + 89 + 9 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1331 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1332 1540 basechar 0 +AnchorPoint: "Anchor-20" 1332 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +860 579 m 1,0,1 + 860 765 860 765 783 866 c 128,-1,2 + 706 967 706 967 558 967 c 0,3,4 + 441 967 441 967 370.5 920 c 128,-1,5 + 300 873 300 873 275 801 c 1,6,-1 + 117 846 l 1,7,8 + 214 1102 214 1102 558 1102 c 0,9,10 + 790 1102 790 1102 914 970.5 c 128,-1,11 + 1038 839 1038 839 1048 577 c 1,12,-1 + 1221 577 l 1,13,-1 + 1221 -123 l 2,14,15 + 1221 -271 1221 -271 1343 -271 c 0,16,17 + 1407 -271 1407 -271 1449 -256 c 1,18,-1 + 1449 -410 l 1,19,20 + 1386 -425 1386 -425 1325 -425 c 0,21,22 + 1045 -425 1045 -425 1045 -129 c 2,23,-1 + 1045 442 l 1,24,25 + 1023 216 1023 216 900 98 c 128,-1,26 + 777 -20 777 -20 565 -20 c 0,27,28 + 88 -20 88 -20 88 555 c 2,29,-1 + 88 579 l 1,30,-1 + 860 579 l 1,0,1 +274 441 m 1,31,32 + 289 270 289 270 361 191.5 c 128,-1,33 + 433 113 433 113 568 113 c 0,34,35 + 699 113 699 113 775.5 200.5 c 128,-1,36 + 852 288 852 288 858 441 c 1,37,-1 + 274 441 l 1,31,32 +EndSplineSet +EndChar + +StartChar: uni1D96 +Encoding: 7574 7574 1462 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 13 + 9 + 9 + 2 + 2 + 19 + 7 + 7 + 16 + 4 + 4 + 21 + 20 + 17 + 16 + 83 + 89 + 17 + 0 + 5 + 15 + 4 + 7 + 83 + 89 + 4 + 21 + 0 + 11 + 80 + 89 + 0 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 500 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +512 -425 m 0,0,1 + 232 -425 232 -425 232 -129 c 2,2,-1 + 232 0 l 1,3,-1 + 137 0 l 1,4,-1 + 137 1082 l 1,5,-1 + 317 1082 l 1,6,-1 + 317 155 l 1,7,-1 + 408 155 l 1,8,-1 + 408 -123 l 2,9,10 + 408 -271 408 -271 530 -271 c 0,11,12 + 594 -271 594 -271 636 -256 c 1,13,-1 + 636 -410 l 1,14,15 + 573 -425 573 -425 512 -425 c 0,0,1 +137 1312 m 1,16,-1 + 137 1484 l 1,17,-1 + 317 1484 l 1,18,-1 + 317 1312 l 1,19,-1 + 137 1312 l 1,16,-1 +EndSplineSet +EndChar + +StartChar: uni1D97 +Encoding: 7575 7575 1463 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 6 + 19 + 25 + 13 + 34 + 34 + 30 + 19 + 3 + 37 + 36 + 32 + 27 + 80 + 89 + 32 + 27 + 24 + 22 + 0 + 0 + 22 + 22 + 3 + 80 + 89 + 22 + 22 + 12 + 12 + 16 + 16 + 9 + 80 + 89 + 16 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 320 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +243 334 m 1,0,1 + 258 226 258 226 322.5 174 c 128,-1,2 + 387 122 387 122 483 122 c 0,3,4 + 621 122 621 122 688.5 226.5 c 128,-1,5 + 756 331 756 331 756 546 c 0,6,7 + 756 772 756 772 691.5 866.5 c 128,-1,8 + 627 961 627 961 485 961 c 0,9,10 + 380 961 380 961 323 908 c 128,-1,11 + 266 855 266 855 252 765 c 1,12,-1 + 67 779 l 1,13,14 + 96 930 96 930 204.5 1016 c 128,-1,15 + 313 1102 313 1102 480 1102 c 0,16,17 + 704 1102 704 1102 824 958.5 c 128,-1,18 + 944 815 944 815 944 542 c 0,19,20 + 944 267 944 267 824.5 123.5 c 128,-1,21 + 705 -20 705 -20 478 -20 c 0,22,23 + 339 -20 339 -20 237 51 c 1,24,-1 + 237 -123 l 2,25,26 + 237 -271 237 -271 359 -271 c 0,27,28 + 423 -271 423 -271 465 -256 c 1,29,-1 + 465 -410 l 1,30,31 + 402 -425 402 -425 341 -425 c 0,32,33 + 61 -425 61 -425 61 -129 c 2,34,-1 + 61 322 l 1,35,-1 + 243 334 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D98 +Encoding: 7576 7576 1464 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 28 + 0 + 0 + 21 + 8 + 21 + 35 + 34 + 3 + 14 + 14 + 34 + 17 + 3 + 80 + 89 + 17 + 17 + 25 + 11 + 25 + 30 + 80 + 89 + 25 + 0 + 11 + 6 + 80 + 89 + 11 + 27 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 349 1540 basechar 0 +AnchorPoint: "Anchor-15" 560 1540 basechar 0 +AnchorPoint: "Anchor-14" 105 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +316 206 m 2,0,1 + 316 33 316 33 254 -51.5 c 128,-1,2 + 192 -136 192 -136 65 -147 c 1,3,4 + 67 -213 67 -213 90.5 -242 c 128,-1,5 + 114 -271 114 -271 173 -271 c 0,6,7 + 237 -271 237 -271 279 -256 c 1,8,-1 + 279 -410 l 1,9,10 + 216 -425 216 -425 155 -425 c 0,11,12 + 16 -425 16 -425 -47.5 -356 c 128,-1,13 + -111 -287 -111 -287 -111 -140 c 2,14,-1 + -111 30 l 1,15,16 + -51 6 -51 6 6 6 c 0,17,18 + 56 6 56 6 83.5 25.5 c 128,-1,19 + 111 45 111 45 122.5 84 c 128,-1,20 + 134 123 134 123 134 226 c 2,21,-1 + 134 1130 l 2,22,23 + 134 1303 134 1303 209.5 1393.5 c 128,-1,24 + 285 1484 285 1484 432 1484 c 0,25,26 + 539 1484 539 1484 583 1466 c 1,27,-1 + 583 1299 l 1,28,29 + 534 1326 534 1326 468 1326 c 0,30,31 + 391 1326 391 1326 353.5 1273.5 c 128,-1,32 + 316 1221 316 1221 316 1093 c 2,33,-1 + 316 206 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1D99 +Encoding: 7577 7577 1465 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 28 + 8 + 8 + 11 + 11 + 22 + 17 + 13 + 1 + 35 + 13 + 35 + 38 + 37 + 28 + 0 + 32 + 32 + 5 + 80 + 89 + 32 + 22 + 24 + 12 + 80 + 89 + 24 + 21 + 20 + 15 + 80 + 89 + 20 + 27 + 10 + 15 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1166 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +314 1082 m 1,0,-1 + 314 396 l 2,1,2 + 314 289 314 289 335 230 c 128,-1,3 + 356 171 356 171 402 145 c 128,-1,4 + 448 119 448 119 537 119 c 0,5,6 + 667 119 667 119 742 208 c 128,-1,7 + 817 297 817 297 817 455 c 2,8,-1 + 817 1082 l 1,9,-1 + 997 1082 l 1,10,-1 + 997 155 l 1,11,-1 + 1086 155 l 1,12,-1 + 1086 -123 l 2,13,14 + 1086 -271 1086 -271 1208 -271 c 0,15,16 + 1273 -271 1273 -271 1309 -256 c 1,17,-1 + 1309 -410 l 1,18,19 + 1246 -425 1246 -425 1190 -425 c 0,20,21 + 910 -425 910 -425 910 -129 c 2,22,-1 + 910 0 l 1,23,-1 + 833 0 l 1,24,25 + 832 5 832 5 831 27 c 128,-1,26 + 830 49 830 49 828.5 77.5 c 128,-1,27 + 827 106 827 106 825 185 c 1,28,-1 + 822 185 l 1,29,30 + 760 73 760 73 678.5 26.5 c 128,-1,31 + 597 -20 597 -20 476 -20 c 0,32,33 + 298 -20 298 -20 215.5 68.5 c 128,-1,34 + 133 157 133 157 133 361 c 2,35,-1 + 133 1082 l 1,36,-1 + 314 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1D9A +Encoding: 7578 7578 1466 +Width: 1116 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 62 + 10 + 32 + 17 + 3 + 13 + 12 + 16 + 16 + 6 + 19 + 13 + 26 + 36 + 19 + 36 + 39 + 38 + 25 + 23 + 0 + 0 + 23 + 3 + 23 + 80 + 89 + 11 + 17 + 17 + 10 + 81 + 89 + 3 + 64 + 9 + 12 + 72 + 15 + 17 + 1 + 11 + 3 + 3 + 17 + 3 + 17 + 34 + 14 + 34 + 29 + 80 + 89 + 34 + 27 + 16 + 13 + 14 + 13 + 80 + 89 + 14 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 330 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1116 1540 basechar 0 +AnchorPoint: "Anchor-20" 1116 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1540 basechar 0 +AnchorPoint: "Anchor-15" 1280 1540 basechar 0 +AnchorPoint: "Anchor-14" 560 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +246 204 m 1,0,1 + 265 73 265 73 340.5 14.5 c 128,-1,2 + 416 -44 416 -44 555 -44 c 0,3,4 + 688 -44 688 -44 771 27 c 128,-1,5 + 854 98 854 98 854 201 c 0,6,7 + 854 343 854 343 772.5 407.5 c 128,-1,8 + 691 472 691 472 507 472 c 2,9,-1 + 425 472 l 1,10,-1 + 425 600 l 1,11,-1 + 799 941 l 1,12,-1 + 116 941 l 1,13,-1 + 116 1082 l 1,14,-1 + 999 1082 l 1,15,-1 + 999 932 l 1,16,-1 + 615 600 l 1,17,18 + 1035 571 1035 571 1035 201 c 0,19,20 + 1035 98 1035 98 974.5 9 c 128,-1,21 + 914 -80 914 -80 806.5 -130.5 c 128,-1,22 + 699 -181 699 -181 561 -181 c 0,23,24 + 354 -181 354 -181 236 -73 c 1,25,-1 + 236 -123 l 2,26,27 + 236 -196 236 -196 270 -233.5 c 128,-1,28 + 304 -271 304 -271 366 -271 c 0,29,30 + 430 -271 430 -271 472 -256 c 1,31,-1 + 472 -410 l 1,32,33 + 409 -425 409 -425 348 -425 c 0,34,35 + 68 -425 68 -425 68 -129 c 2,36,-1 + 68 192 l 1,37,-1 + 246 204 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1D9B +Encoding: 7579 7579 1467 +Width: 772 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 22 + 6 + 28 + 21 + 14 + 14 + 18 + 13 + 15 + 6 + 15 + 35 + 34 + 0 + 11 + 3 + 8 + 31 + 8 + 228 + 89 + 31 + 223 + 18 + 235 + 15 + 232 + 3 + 25 + 228 + 89 + 3 + 236 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +214 1130 m 1,0,1 + 248 1204 248 1204 303.5 1235.5 c 128,-1,2 + 359 1267 359 1267 443 1267 c 0,3,4 + 583 1267 583 1267 648.5 1170 c 128,-1,5 + 714 1073 714 1073 714 875 c 0,6,7 + 714 475 714 475 443 475 c 0,8,9 + 359 475 359 475 303.5 507 c 128,-1,10 + 248 539 248 539 214 608 c 1,11,-1 + 212 608 l 1,12,-1 + 214 523 l 1,13,-1 + 214 490 l 1,14,-1 + 91 490 l 1,15,-1 + 91 1095 l 2,16,17 + 91 1227 91 1227 87 1253 c 1,18,-1 + 204 1253 l 1,19,20 + 211 1204 211 1204 211 1130 c 1,21,-1 + 214 1130 l 1,0,1 +585 870 m 0,22,23 + 585 1027 585 1027 545 1098 c 128,-1,24 + 505 1169 505 1169 412 1169 c 0,25,26 + 308 1169 308 1169 261 1093.5 c 128,-1,27 + 214 1018 214 1018 214 862 c 0,28,29 + 214 711 214 711 261 640 c 128,-1,30 + 308 569 308 569 410 569 c 0,31,32 + 500 569 500 569 542.5 638.5 c 128,-1,33 + 585 708 585 708 585 870 c 0,22,23 +EndSplineSet +EndChar + +StartChar: uni1D9C +Encoding: 7580 7580 1468 +Width: 725 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 0 + 12 + 18 + 6 + 12 + 6 + 24 + 25 + 15 + 21 + 228 + 89 + 19 + 15 + 236 + 5 + 9 + 9 + 2 + 228 + 89 + 9 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +192 876 m 0,0,1 + 192 577 192 577 378 577 c 0,2,3 + 444 577 444 577 487 613.5 c 128,-1,4 + 530 650 530 650 541 726 c 1,5,-1 + 665 718 l 1,6,7 + 651 609 651 609 575.5 542.5 c 128,-1,8 + 500 476 500 476 381 476 c 0,9,10 + 229 476 229 476 146.5 576.5 c 128,-1,11 + 64 677 64 677 64 873 c 0,12,13 + 64 1063 64 1063 144.5 1165.5 c 128,-1,14 + 225 1268 225 1268 380 1268 c 0,15,16 + 494 1268 494 1268 567.5 1208 c 128,-1,17 + 641 1148 641 1148 661 1040 c 1,18,-1 + 535 1030 l 1,19,20 + 513 1168 513 1168 376 1168 c 0,21,22 + 278 1168 278 1168 235 1100 c 128,-1,23 + 192 1032 192 1032 192 876 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1D9D +Encoding: 7581 7581 1469 +Width: 713 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 34 + 14 + 26 + 38 + 6 + 20 + 8 + 2 + 5 + 5 + 8 + 6 + 26 + 4 + 41 + 40 + 24 + 36 + 228 + 89 + 22 + 38 + 6 + 2 + 4 + 24 + 24 + 0 + 11 + 11 + 17 + 228 + 89 + 15 + 11 + 236 + 0 + 30 + 228 + 89 + 4 + 96 + 0 + 1 + 0 + 233 +SVTCA[y-axis] +MIAP[rnd] +DELTAP1 +MDRP[rnd,white] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SLOOP +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +380 477 m 0,0,1 + 272 477 272 477 195 533 c 1,2,3 + 160 478 160 478 135 426 c 1,4,-1 + 51 491 l 1,5,-1 + 125 608 l 1,6,7 + 58 710 58 710 58 873 c 0,8,9 + 58 1062 58 1062 138.5 1165 c 128,-1,10 + 219 1268 219 1268 373 1268 c 0,11,12 + 487 1268 487 1268 560.5 1208 c 128,-1,13 + 634 1148 634 1148 654 1040 c 1,14,-1 + 528 1030 l 1,15,16 + 509 1168 509 1168 370 1168 c 0,17,18 + 273 1168 273 1168 229.5 1102.5 c 128,-1,19 + 186 1037 186 1037 186 876 c 0,20,21 + 186 781 186 781 209 712 c 1,22,23 + 338 851 338 851 473 851 c 0,24,25 + 655 851 655 851 655 689 c 0,26,27 + 655 628 655 628 623.5 581 c 128,-1,28 + 592 534 592 534 531.5 505.5 c 128,-1,29 + 471 477 471 477 380 477 c 0,0,1 +380 571 m 0,30,31 + 436 571 436 571 474.5 586 c 128,-1,32 + 513 601 513 601 533.5 625 c 128,-1,33 + 554 649 554 649 554 678 c 0,34,35 + 554 753 554 753 470 753 c 0,36,37 + 358 753 358 753 259 622 c 1,38,39 + 306 571 306 571 380 571 c 0,30,31 +EndSplineSet +EndChar + +StartChar: uni1D9E +Encoding: 7582 7582 1470 +Width: 764 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 47 + 8 + 28 + 28 + 25 + 21 + 18 + 10 + 13 + 4 + 12 + 19 + 19 + 25 + 12 + 34 + 3 + 25 + 3 + 41 + 40 + 10 + 21 + 13 + 18 + 4 + 11 + 19 + 19 + 16 + 11 + 6 + 6 + 31 + 228 + 89 + 8 + 6 + 6 + 0 + 16 + 234 + 0 + 37 + 228 + 89 + 0 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +SLOOP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +377 477 m 0,0,1 + 220 477 220 477 135 567.5 c 128,-1,2 + 50 658 50 658 50 830 c 0,3,4 + 50 1001 50 1001 134 1091.5 c 128,-1,5 + 218 1182 218 1182 381 1182 c 0,6,7 + 475 1182 475 1182 539 1140 c 1,8,9 + 465 1292 465 1292 379 1372 c 1,10,-1 + 175 1279 l 1,11,-1 + 175 1359 l 1,12,-1 + 323 1425 l 1,13,14 + 260 1478 260 1478 158 1537 c 1,15,-1 + 301 1537 l 1,16,17 + 353 1513 353 1513 416 1465 c 1,18,-1 + 624 1558 l 1,19,-1 + 624 1479 l 1,20,-1 + 480 1414 l 1,21,22 + 592 1309 592 1309 653.5 1168 c 128,-1,23 + 715 1027 715 1027 715 855 c 2,24,-1 + 715 851 l 2,25,26 + 715 668 715 668 630.5 572.5 c 128,-1,27 + 546 477 546 477 377 477 c 0,0,1 +586 830 m 0,28,29 + 586 963 586 963 539.5 1025.5 c 128,-1,30 + 493 1088 493 1088 384 1088 c 0,31,32 + 274 1088 274 1088 226.5 1023.5 c 128,-1,33 + 179 959 179 959 179 830 c 0,34,35 + 179 696 179 696 228 633.5 c 128,-1,36 + 277 571 277 571 375 571 c 0,37,38 + 486 571 486 571 536 633.5 c 128,-1,39 + 586 696 586 696 586 830 c 0,28,29 +EndSplineSet +EndChar + +StartChar: uni1D9F +Encoding: 7583 7583 1471 +Width: 652 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 68 + 16 + 35 + 27 + 21 + 33 + 33 + 12 + 0 + 26 + 27 + 27 + 7 + 6 + 0 + 6 + 39 + 38 + 35 + 17 + 16 + 17 + 16 + 228 + 89 + 17 + 64 + 14 + 17 + 72 + 17 + 64 + 9 + 12 + 72 + 17 + 17 + 3 + 30 + 15 + 26 + 1 + 22 + 3 + 26 + 64 + 14 + 17 + 72 + 26 + 26 + 30 + 30 + 24 + 228 + 89 + 30 + 236 + 3 + 9 + 228 + 89 + 64 + 7 + 1 + 7 + 7 + 3 + 233 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +593 692 m 0,0,1 + 593 592 593 592 520.5 533.5 c 128,-1,2 + 448 475 448 475 318 475 c 0,3,4 + 194 475 194 475 122 534.5 c 128,-1,5 + 50 594 50 594 39 716 c 1,6,-1 + 160 726 l 1,7,8 + 172 568 172 568 318 568 c 0,9,10 + 393 568 393 568 431.5 602.5 c 128,-1,11 + 470 637 470 637 470 700 c 0,12,13 + 470 761 470 761 431.5 795 c 128,-1,14 + 393 829 393 829 315 829 c 2,15,-1 + 250 829 l 1,16,-1 + 250 929 l 1,17,-1 + 311 929 l 2,18,19 + 374 929 374 929 412.5 961.5 c 128,-1,20 + 451 994 451 994 451 1049 c 0,21,22 + 451 1103 451 1103 417.5 1137.5 c 128,-1,23 + 384 1172 384 1172 315 1172 c 0,24,25 + 198 1172 198 1172 177 1028 c 1,26,-1 + 55 1039 l 1,27,28 + 68 1145 68 1145 137 1205.5 c 128,-1,29 + 206 1266 206 1266 317 1266 c 0,30,31 + 437 1266 437 1266 505 1209 c 128,-1,32 + 573 1152 573 1152 573 1055 c 0,33,34 + 573 930 573 930 423 882 c 1,35,36 + 505 868 505 868 549 819 c 128,-1,37 + 593 770 593 770 593 692 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1DA0 +Encoding: 7584 7584 1472 +Width: 469 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 17 + 1 + 1 + 7 + 4 + 2 + 19 + 13 + 2 + 13 + 21 + 22 + 6 + 3 + 228 + 89 + 6 + 6 + 18 + 18 + 0 + 228 + 89 + 18 + 18 + 1 + 10 + 10 + 14 + 228 + 89 + 10 + 234 + 1 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +272 1161 m 1,0,-1 + 272 490 l 1,1,-1 + 149 490 l 1,2,-1 + 149 1161 l 1,3,-1 + 46 1161 l 1,4,-1 + 46 1253 l 1,5,-1 + 149 1253 l 1,6,-1 + 149 1338 l 2,7,8 + 149 1442 149 1442 193 1488 c 128,-1,9 + 237 1534 237 1534 329 1534 c 0,10,11 + 386 1534 386 1534 415 1526 c 1,12,-1 + 415 1429 l 1,13,-1 + 361 1435 l 1,14,15 + 314 1435 314 1435 293 1410.5 c 128,-1,16 + 272 1386 272 1386 272 1321 c 2,17,-1 + 272 1253 l 1,18,-1 + 415 1253 l 1,19,-1 + 415 1161 l 1,20,-1 + 272 1161 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DA1 +Encoding: 7585 7585 1473 +Width: 469 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 19 + 12 + 0 + 17 + 17 + 5 + 3 + 7 + 12 + 7 + 21 + 22 + 0 + 18 + 228 + 89 + 0 + 0 + 3 + 3 + 6 + 228 + 89 + 3 + 3 + 2 + 10 + 10 + 14 + 228 + 89 + 10 + 2 + 235 +SVTCA[y-axis] +MIAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +187 767 m 1,0,-1 + 187 1253 l 1,1,-1 + 310 1253 l 1,2,-1 + 310 767 l 1,3,-1 + 413 767 l 1,4,-1 + 413 675 l 1,5,-1 + 310 675 l 1,6,-1 + 310 405 l 2,7,8 + 310 301 310 301 266 255 c 128,-1,9 + 222 209 222 209 130 209 c 0,10,11 + 73 209 73 209 44 217 c 1,12,-1 + 44 314 l 1,13,-1 + 98 308 l 1,14,15 + 145 308 145 308 166 332.5 c 128,-1,16 + 187 357 187 357 187 422 c 2,17,-1 + 187 675 l 1,18,-1 + 44 675 l 1,19,-1 + 44 767 l 1,20,-1 + 187 767 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DA2 +Encoding: 7586 7586 1474 +Width: 772 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1389 7501 N 1 0 0 1 0 0 3 +EndChar + +StartChar: uni1DA3 +Encoding: 7587 7587 1475 +Width: 785 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 9 + 6 + 22 + 15 + 19 + 19 + 18 + 6 + 18 + 23 + 24 + 12 + 3 + 228 + 89 + 0 + 79 + 12 + 95 + 12 + 111 + 12 + 3 + 12 + 12 + 7 + 19 + 232 + 16 + 7 + 234 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +DELTAP1 +IP +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +565 904 m 1,0,1 + 524 827 524 827 468.5 793 c 128,-1,2 + 413 759 413 759 329 759 c 0,3,4 + 210 759 210 759 153 821.5 c 128,-1,5 + 96 884 96 884 96 1028 c 2,6,-1 + 96 1536 l 1,7,-1 + 219 1536 l 1,8,-1 + 219 1052 l 2,9,10 + 219 936 219 936 254.5 896.5 c 128,-1,11 + 290 857 290 857 371 857 c 0,12,13 + 459 857 459 857 510 919.5 c 128,-1,14 + 561 982 561 982 561 1086 c 2,15,-1 + 561 1536 l 1,16,-1 + 684 1536 l 1,17,-1 + 684 490 l 1,18,-1 + 561 490 l 1,19,-1 + 561 762 l 2,20,21 + 561 874 561 874 567 904 c 1,22,-1 + 565 904 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1DA4 +Encoding: 7588 7588 1476 +Width: 322 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 15 + 9 + 7 + 11 + 11 + 12 + 4 + 2 + 0 + 0 + 16 + 17 + 12 + 13 + 234 + 10 + 2 + 3 + 2 + 228 + 89 + 7 + 3 + 64 + 9 + 12 + 72 + 3 + 3 + 5 + 235 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +CALL +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 490 m 1,0,-1 + 100 852 l 1,1,-1 + 17 852 l 1,2,-1 + 17 940 l 1,3,-1 + 100 940 l 1,4,-1 + 100 1253 l 1,5,-1 + 221 1253 l 1,6,-1 + 221 940 l 1,7,-1 + 302 940 l 1,8,-1 + 302 852 l 1,9,-1 + 221 852 l 1,10,-1 + 221 490 l 1,11,-1 + 100 490 l 1,0,-1 +100 1415 m 1,12,-1 + 100 1536 l 1,13,-1 + 221 1536 l 1,14,-1 + 221 1415 l 1,15,-1 + 100 1415 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: uni1DA5 +Encoding: 7589 7589 1477 +Width: 322 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 0 + 0 + 4 + 5 + 1 + 235 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 490 m 1,0,-1 + 100 1253 l 1,1,-1 + 221 1253 l 1,2,-1 + 221 490 l 1,3,-1 + 100 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DA6 +Encoding: 7590 7590 1478 +Width: 322 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 0 + 0 + 5 + 4 + 1 + 235 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 490 m 1,0,-1 + 100 1253 l 1,1,-1 + 221 1253 l 1,2,-1 + 221 490 l 1,3,-1 + 100 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DA7 +Encoding: 7591 7591 1479 +Width: 322 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 9 + 7 + 11 + 11 + 4 + 2 + 0 + 0 + 12 + 13 + 10 + 2 + 3 + 2 + 228 + 89 + 7 + 3 + 64 + 9 + 12 + 72 + 3 + 3 + 5 + 235 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +CALL +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 490 m 1,0,-1 + 100 852 l 1,1,-1 + 17 852 l 1,2,-1 + 17 940 l 1,3,-1 + 100 940 l 1,4,-1 + 100 1253 l 1,5,-1 + 221 1253 l 1,6,-1 + 221 940 l 1,7,-1 + 302 940 l 1,8,-1 + 302 852 l 1,9,-1 + 221 852 l 1,10,-1 + 221 490 l 1,11,-1 + 100 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DA8 +Encoding: 7592 7592 1480 +Width: 554 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 28 + 7 + 21 + 21 + 31 + 12 + 10 + 14 + 14 + 32 + 33 + 25 + 3 + 3 + 32 + 29 + 28 + 229 + 89 + 29 + 234 + 13 + 22 + 6 + 22 + 228 + 89 + 10 + 15 + 6 + 1 + 13 + 3 + 6 + 6 + 0 + 8 + 235 + 0 + 17 + 228 + 89 + 0 + 238 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +232 191 m 0,0,1 + 123 191 123 191 61 239.5 c 128,-1,2 + -1 288 -1 288 -1 377 c 256,3,4 + -1 466 -1 466 48.5 511 c 128,-1,5 + 98 556 98 556 205 556 c 2,6,-1 + 334 556 l 1,7,-1 + 334 1253 l 1,8,-1 + 456 1253 l 1,9,-1 + 456 556 l 1,10,-1 + 549 556 l 1,11,-1 + 549 458 l 1,12,-1 + 456 458 l 1,13,-1 + 456 432 l 2,14,15 + 456 326 456 326 395.5 258.5 c 128,-1,16 + 335 191 335 191 232 191 c 0,0,1 +213 291 m 0,17,18 + 272 291 272 291 303 329.5 c 128,-1,19 + 334 368 334 368 334 442 c 2,20,-1 + 334 458 l 1,21,-1 + 209 458 l 2,22,23 + 157 458 157 458 135 437.5 c 128,-1,24 + 113 417 113 417 113 376 c 0,25,26 + 113 337 113 337 140.5 314 c 128,-1,27 + 168 291 168 291 213 291 c 0,17,18 +334 1415 m 1,28,-1 + 334 1536 l 1,29,-1 + 456 1536 l 1,30,-1 + 456 1415 l 1,31,-1 + 334 1415 l 1,28,-1 +EndSplineSet +EndChar + +StartChar: uni1DA9 +Encoding: 7593 7593 1481 +Width: 322 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 0 + 10 + 10 + 13 + 5 + 14 + 11 + 234 + 8 + 5 + 229 + 89 + 8 + 3 + 229 + 89 + 8 + 238 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +210 409 m 2,0,1 + 210 352 210 352 229.5 328.5 c 128,-1,2 + 249 305 249 305 286 305 c 0,3,4 + 322 305 322 305 356 315 c 1,5,-1 + 356 201 l 1,6,7 + 312 191 312 191 278 191 c 0,8,9 + 87 191 87 191 87 399 c 2,10,-1 + 87 1536 l 1,11,-1 + 210 1536 l 1,12,-1 + 210 409 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1DAA +Encoding: 7594 7594 1482 +Width: 322 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 11 + 4 + 4 + 9 + 9 + 15 + 6 + 6 + 17 + 16 + 7 + 234 + 13 + 2 + 229 + 89 + 13 + 6 + 64 + 6 + 9 + 228 + 89 + 6 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +3 310 m 1,0,1 + 35 302 35 302 69 302 c 0,2,3 + 155 302 155 302 155 406 c 2,4,-1 + 155 490 l 1,5,-1 + 87 490 l 1,6,-1 + 87 1536 l 1,7,-1 + 209 1536 l 1,8,-1 + 209 599 l 1,9,-1 + 269 599 l 1,10,-1 + 269 399 l 2,11,12 + 269 191 269 191 78 191 c 0,13,14 + 38 191 38 191 3 198 c 1,15,-1 + 3 310 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1DAB +Encoding: 7595 7595 1483 +Width: 563 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 4 + 1 + 1 + 0 + 6 + 7 + 2 + 235 + 1 + 4 + 228 + 89 + 1 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +517 490 m 1,0,-1 + 88 490 l 1,1,-1 + 88 1253 l 1,2,-1 + 208 1253 l 1,3,-1 + 208 595 l 1,4,-1 + 517 595 l 1,5,-1 + 517 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DAC +Encoding: 7596 7596 1484 +Width: 1171 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 22 + 16 + 16 + 18 + 17 + 29 + 7 + 7 + 8 + 45 + 36 + 36 + 40 + 8 + 17 + 4 + 46 + 47 + 38 + 43 + 229 + 89 + 38 + 237 + 32 + 3 + 228 + 89 + 32 + 236 + 26 + 12 + 228 + 89 + 26 + 236 + 29 + 22 + 17 + 19 + 235 + 8 + 17 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +IP +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +945 973 m 2,0,1 + 945 1081 945 1081 917 1125 c 128,-1,2 + 889 1169 889 1169 811 1169 c 256,3,4 + 733 1169 733 1169 687 1109.5 c 128,-1,5 + 641 1050 641 1050 641 932 c 2,6,-1 + 641 490 l 1,7,-1 + 520 490 l 1,8,-1 + 520 973 l 2,9,10 + 520 1081 520 1081 492 1125 c 128,-1,11 + 464 1169 464 1169 386 1169 c 256,12,13 + 308 1169 308 1169 262 1107.5 c 128,-1,14 + 216 1046 216 1046 216 932 c 2,15,-1 + 216 490 l 1,16,-1 + 95 490 l 1,17,-1 + 95 1090 l 1,18,-1 + 91 1253 l 1,19,-1 + 206 1253 l 1,20,-1 + 212 1157 l 1,21,-1 + 212 1122 l 1,22,-1 + 214 1122 l 1,23,24 + 252 1200 252 1200 302.5 1233.5 c 128,-1,25 + 353 1267 353 1267 429 1267 c 0,26,27 + 512 1267 512 1267 560.5 1232 c 128,-1,28 + 609 1197 609 1197 628 1122 c 1,29,-1 + 631 1122 l 1,30,31 + 698 1267 698 1267 854 1267 c 0,32,33 + 966 1267 966 1267 1016 1203.5 c 128,-1,34 + 1066 1140 1066 1140 1066 998 c 2,35,-1 + 1066 399 l 2,36,37 + 1066 190 1066 190 875 190 c 0,38,39 + 833 190 833 190 783 202 c 1,40,-1 + 783 317 l 1,41,42 + 820 304 820 304 864 304 c 0,43,44 + 945 304 945 304 945 409 c 2,45,-1 + 945 973 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1DAD +Encoding: 7597 7597 1485 +Width: 1171 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 7 + 11 + 11 + 10 + 18 + 1 + 34 + 28 + 25 + 25 + 34 + 10 + 3 + 37 + 36 + 18 + 19 + 12 + 19 + 22 + 35 + 8 + 26 + 235 + 15 + 4 + 228 + 89 + 15 + 15 + 22 + 22 + 31 + 228 + 89 + 22 + 233 + 11 + 237 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +637 1253 m 1,0,-1 + 637 769 l 2,1,2 + 637 660 637 660 665.5 617 c 128,-1,3 + 694 574 694 574 771 574 c 0,4,5 + 849 574 849 574 895 635 c 128,-1,6 + 941 696 941 696 941 811 c 2,7,-1 + 941 1253 l 1,8,-1 + 1062 1253 l 1,9,-1 + 1062 190 l 1,10,-1 + 942 190 l 1,11,-1 + 942 613 l 1,12,13 + 904 537 904 537 853.5 506.5 c 128,-1,14 + 803 476 803 476 728 476 c 0,15,16 + 645 476 645 476 596.5 510.5 c 128,-1,17 + 548 545 548 545 529 620 c 1,18,-1 + 527 620 l 1,19,20 + 495 554 495 554 442.5 515 c 128,-1,21 + 390 476 390 476 303 476 c 0,22,23 + 191 476 191 476 141 539 c 128,-1,24 + 91 602 91 602 91 744 c 2,25,-1 + 91 1253 l 1,26,-1 + 212 1253 l 1,27,-1 + 212 769 l 2,28,29 + 212 660 212 660 240.5 617 c 128,-1,30 + 269 574 269 574 346 574 c 0,31,32 + 424 574 424 574 470 633.5 c 128,-1,33 + 516 693 516 693 516 811 c 2,34,-1 + 516 1253 l 1,35,-1 + 637 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DAE +Encoding: 7598 7598 1486 +Width: 783 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 5 + 22 + 22 + 27 + 0 + 31 + 14 + 13 + 31 + 13 + 32 + 33 + 24 + 29 + 229 + 89 + 24 + 237 + 5 + 2 + 14 + 232 + 9 + 18 + 228 + 89 + 9 + 236 + 2 + 235 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +98 1090 m 2,0,1 + 98 1233 98 1233 94 1253 c 1,2,-1 + 210 1253 l 1,3,-1 + 215 1157 l 1,4,-1 + 215 1122 l 1,5,-1 + 217 1122 l 1,6,7 + 261 1202 261 1202 315.5 1234.5 c 128,-1,8 + 370 1267 370 1267 453 1267 c 0,9,10 + 575 1267 575 1267 630.5 1203.5 c 128,-1,11 + 686 1140 686 1140 686 998 c 2,12,-1 + 686 490 l 1,13,-1 + 563 490 l 1,14,-1 + 563 973 l 2,15,16 + 563 1085 563 1085 530 1127 c 128,-1,17 + 497 1169 497 1169 411 1169 c 0,18,19 + 324 1169 324 1169 272.5 1107.5 c 128,-1,20 + 221 1046 221 1046 221 932 c 2,21,-1 + 221 399 l 2,22,23 + 221 190 221 190 30 190 c 0,24,25 + -10 190 -10 190 -63 202 c 1,26,-1 + -63 316 l 1,27,28 + -29 304 -29 304 18 304 c 0,29,30 + 98 304 98 304 98 409 c 2,31,-1 + 98 1090 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1DAF +Encoding: 7599 7599 1487 +Width: 783 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 9 + 4 + 0 + 23 + 17 + 17 + 19 + 18 + 0 + 18 + 32 + 31 + 27 + 13 + 228 + 89 + 27 + 236 + 23 + 18 + 20 + 235 + 18 + 232 + 7 + 2 + 229 + 89 + 7 + 237 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +686 409 m 2,0,1 + 686 304 686 304 766 304 c 0,2,3 + 809 304 809 304 838 316 c 1,4,-1 + 838 200 l 1,5,6 + 796 190 796 190 754 190 c 0,7,8 + 563 190 563 190 563 399 c 2,9,-1 + 563 973 l 2,10,11 + 563 1085 563 1085 530 1127 c 128,-1,12 + 497 1169 497 1169 412 1169 c 0,13,14 + 324 1169 324 1169 272.5 1107.5 c 128,-1,15 + 221 1046 221 1046 221 932 c 2,16,-1 + 221 490 l 1,17,-1 + 99 490 l 1,18,-1 + 99 1090 l 1,19,-1 + 95 1253 l 1,20,-1 + 210 1253 l 1,21,-1 + 216 1157 l 1,22,-1 + 216 1122 l 1,23,-1 + 218 1122 l 1,24,25 + 262 1202 262 1202 316.5 1234.5 c 128,-1,26 + 371 1267 371 1267 453 1267 c 0,27,28 + 576 1267 576 1267 631 1203.5 c 128,-1,29 + 686 1140 686 1140 686 998 c 2,30,-1 + 686 409 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1DB0 +Encoding: 7600 7600 1488 +Width: 782 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 11 + 13 + 13 + 14 + 4 + 3 + 3 + 7 + 14 + 7 + 16 + 17 + 3 + 11 + 14 + 5 + 15 + 235 + 8 + 14 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +213 1252 m 1,0,-1 + 530 769 l 2,1,2 + 547 742 547 742 569 696 c 1,3,-1 + 566 784 l 1,4,-1 + 566 1252 l 1,5,-1 + 682 1252 l 1,6,-1 + 682 490 l 1,7,-1 + 568 490 l 1,8,-1 + 255 982 l 2,9,10 + 237 1009 237 1009 205 1073 c 1,11,-1 + 210 958 l 1,12,-1 + 210 490 l 1,13,-1 + 95 490 l 1,14,-1 + 95 1252 l 1,15,-1 + 213 1252 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DB1 +Encoding: 7601 7601 1489 +Width: 773 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 20 + 14 + 14 + 5 + 21 + 13 + 13 + 0 + 5 + 0 + 24 + 25 + 20 + 14 + 228 + 89 + 20 + 64 + 14 + 17 + 72 + 20 + 64 + 9 + 12 + 72 + 20 + 20 + 2 + 7 + 7 + 17 + 228 + 89 + 7 + 236 + 2 + 10 + 228 + 89 + 2 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +715 873 m 0,0,1 + 715 476 715 476 383 476 c 0,2,3 + 229 476 229 476 143.5 573.5 c 128,-1,4 + 58 671 58 671 58 873 c 0,5,6 + 58 1268 58 1268 388 1268 c 0,7,8 + 560 1268 560 1268 637.5 1169 c 128,-1,9 + 715 1070 715 1070 715 873 c 0,0,1 +382 570 m 0,10,11 + 484 570 484 570 531 631.5 c 128,-1,12 + 578 693 578 693 585 822 c 1,13,-1 + 188 822 l 1,14,15 + 195 697 195 697 242.5 633.5 c 128,-1,16 + 290 570 290 570 382 570 c 0,10,11 +390 1174 m 0,17,18 + 291 1174 291 1174 243 1112.5 c 128,-1,19 + 195 1051 195 1051 188 926 c 1,20,-1 + 585 926 l 1,21,22 + 578 1055 578 1055 532.5 1114.5 c 128,-1,23 + 487 1174 487 1174 390 1174 c 0,17,18 +EndSplineSet +EndChar + +StartChar: uni1DB2 +Encoding: 7602 7602 1490 +Width: 768 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 23 + 4 + 20 + 9 + 15 + 15 + 25 + 6 + 0 + 16 + 12 + 12 + 0 + 4 + 3 + 29 + 30 + 7 + 234 + 9 + 19 + 228 + 89 + 9 + 9 + 6 + 6 + 26 + 228 + 89 + 6 + 236 + 20 + 25 + 1 + 25 + 228 + 89 + 14 + 1 + 233 + 0 + 238 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +324 191 m 1,0,-1 + 324 480 l 1,1,2 + 195 496 195 496 125 592.5 c 128,-1,3 + 55 689 55 689 55 872 c 0,4,5 + 55 1228 55 1228 324 1264 c 1,6,-1 + 324 1536 l 1,7,-1 + 436 1536 l 1,8,-1 + 436 1264 l 1,9,10 + 580 1250 580 1250 646 1152.5 c 128,-1,11 + 712 1055 712 1055 712 872 c 0,12,13 + 712 510 712 510 436 480 c 1,14,-1 + 436 191 l 1,15,-1 + 324 191 l 1,0,-1 +584 872 m 0,16,17 + 584 1012 584 1012 548 1084 c 128,-1,18 + 512 1156 512 1156 436 1169 c 1,19,-1 + 436 575 l 1,20,21 + 511 590 511 590 547.5 662 c 128,-1,22 + 584 734 584 734 584 872 c 0,16,17 +183 872 m 0,23,24 + 183 612 183 612 324 576 c 1,25,-1 + 324 1166 l 1,26,27 + 251 1146 251 1146 217 1075 c 128,-1,28 + 183 1004 183 1004 183 872 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni1DB3 +Encoding: 7603 7603 1491 +Width: 696 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 19 + 5 + 44 + 25 + 25 + 13 + 13 + 33 + 39 + 48 + 33 + 48 + 51 + 50 + 46 + 41 + 229 + 89 + 46 + 36 + 5 + 25 + 16 + 38 + 36 + 0 + 0 + 36 + 36 + 3 + 228 + 89 + 36 + 233 + 16 + 22 + 228 + 89 + 20 + 20 + 16 + 236 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +IP +SRP1 +IP +IP +SRP0 +MDRP[rnd,grey] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +155 692 m 1,0,1 + 171 631 171 631 220 602.5 c 128,-1,2 + 269 574 269 574 356 574 c 0,3,4 + 535 574 535 574 535 692 c 0,5,6 + 535 728 535 728 518.5 750.5 c 128,-1,7 + 502 773 502 773 471.5 788.5 c 128,-1,8 + 441 804 441 804 321 836 c 0,9,10 + 218 864 218 864 172 891 c 128,-1,11 + 126 918 126 918 101 957.5 c 128,-1,12 + 76 997 76 997 76 1053 c 0,13,14 + 76 1157 76 1157 148 1211.5 c 128,-1,15 + 220 1266 220 1266 357 1266 c 0,16,17 + 479 1266 479 1266 550.5 1222 c 128,-1,18 + 622 1178 622 1178 641 1079 c 1,19,-1 + 531 1065 l 1,20,21 + 510 1170 510 1170 357 1170 c 0,22,23 + 274 1170 274 1170 234.5 1144.5 c 128,-1,24 + 195 1119 195 1119 195 1065 c 0,25,26 + 195 1025 195 1025 222 1000 c 128,-1,27 + 249 975 249 975 314 957 c 2,28,-1 + 394 935 l 2,29,30 + 515 902 515 902 558.5 875 c 128,-1,31 + 602 848 602 848 628 806 c 128,-1,32 + 654 764 654 764 654 702 c 0,33,34 + 654 594 654 594 576.5 535.5 c 128,-1,35 + 499 477 499 477 356 477 c 0,36,37 + 241 477 241 477 162 519 c 1,38,-1 + 162 407 l 2,39,40 + 162 306 162 306 245 306 c 0,41,42 + 277 306 277 306 313 314 c 1,43,-1 + 313 200 l 1,44,45 + 270 192 270 192 236 192 c 0,46,47 + 47 192 47 192 47 400 c 2,48,-1 + 47 670 l 1,49,-1 + 155 692 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1DB4 +Encoding: 7604 7604 1492 +Width: 322 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 16 + 22 + 22 + 3 + 9 + 9 + 24 + 25 + 13 + 18 + 229 + 89 + 13 + 16 + 229 + 89 + 13 + 234 + 0 + 5 + 228 + 89 + 0 + 3 + 229 + 89 + 0 + 238 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +10 191 m 0,0,1 + -39 191 -39 191 -81 204 c 1,2,-1 + -81 317 l 1,3,4 + -33 300 -33 300 -1 300 c 0,5,6 + 35 300 35 300 55.5 315 c 128,-1,7 + 76 330 76 330 85.5 359 c 128,-1,8 + 95 388 95 388 95 464 c 2,9,-1 + 95 1287 l 2,10,11 + 95 1408 95 1408 145.5 1472 c 128,-1,12 + 196 1536 196 1536 298 1536 c 0,13,14 + 371 1536 371 1536 401 1524 c 1,15,-1 + 401 1406 l 1,16,17 + 366 1425 366 1425 323 1425 c 0,18,19 + 269 1425 269 1425 244 1387.5 c 128,-1,20 + 219 1350 219 1350 219 1261 c 2,21,-1 + 219 441 l 2,22,23 + 219 191 219 191 10 191 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1DB5 +Encoding: 7605 7605 1493 +Width: 450 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 23 + 10 + 0 + 21 + 25 + 25 + 18 + 16 + 4 + 14 + 0 + 14 + 32 + 31 + 19 + 222 + 24 + 16 + 17 + 16 + 228 + 89 + 21 + 17 + 235 + 11 + 28 + 228 + 89 + 11 + 233 + 2 + 7 + 229 + 89 + 2 + 238 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +389 390 m 2,0,1 + 389 191 389 191 217 191 c 0,2,3 + 173 191 173 191 125 203 c 1,4,-1 + 125 316 l 1,5,6 + 162 303 162 303 198 303 c 0,7,8 + 233 303 233 303 254 323 c 128,-1,9 + 275 343 275 343 275 400 c 2,10,-1 + 275 479 l 1,11,-1 + 266 479 l 2,12,13 + 119 479 119 479 119 652 c 2,14,-1 + 119 1161 l 1,15,-1 + 34 1161 l 1,16,-1 + 34 1253 l 1,17,-1 + 123 1253 l 1,18,-1 + 159 1424 l 1,19,-1 + 241 1424 l 1,20,-1 + 241 1253 l 1,21,-1 + 377 1253 l 1,22,-1 + 377 1161 l 1,23,-1 + 241 1161 l 1,24,-1 + 241 680 l 2,25,26 + 241 624 241 624 258 602 c 128,-1,27 + 275 580 275 580 319 580 c 0,28,29 + 349 580 349 580 389 590 c 1,30,-1 + 389 390 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1DB6 +Encoding: 7606 7606 1494 +Width: 783 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 12 + 2 + 28 + 28 + 7 + 5 + 9 + 1 + 31 + 31 + 23 + 22 + 19 + 9 + 19 + 35 + 34 + 12 + 13 + 30 + 8 + 21 + 22 + 21 + 228 + 89 + 5 + 1 + 13 + 22 + 64 + 9 + 12 + 72 + 22 + 22 + 11 + 3 + 24 + 235 + 16 + 25 + 228 + 89 + 16 + 233 + 11 + 232 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +IP +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +214 1253 m 1,0,-1 + 214 926 l 1,1,-1 + 557 926 l 1,2,-1 + 557 1253 l 1,3,-1 + 679 1253 l 1,4,-1 + 679 926 l 1,5,-1 + 752 926 l 1,6,-1 + 752 832 l 1,7,-1 + 679 832 l 1,8,-1 + 679 653 l 1,9,-1 + 683 491 l 1,10,-1 + 567 491 l 1,11,-1 + 562 621 l 1,12,-1 + 560 621 l 1,13,14 + 516 540 516 540 461 508.5 c 128,-1,15 + 406 477 406 477 325 477 c 0,16,17 + 202 477 202 477 146.5 540 c 128,-1,18 + 91 603 91 603 91 745 c 2,19,-1 + 91 832 l 1,20,-1 + 19 832 l 1,21,-1 + 19 926 l 1,22,-1 + 91 926 l 1,23,-1 + 91 1253 l 1,24,-1 + 214 1253 l 1,0,-1 +366 575 m 0,25,26 + 454 575 454 575 505.5 638.5 c 128,-1,27 + 557 702 557 702 557 817 c 2,28,-1 + 557 832 l 1,29,-1 + 214 832 l 1,30,-1 + 214 770 l 2,31,32 + 214 660 214 660 247 617.5 c 128,-1,33 + 280 575 280 575 366 575 c 0,25,26 +EndSplineSet +EndChar + +StartChar: uni1DB7 +Encoding: 7607 7607 1495 +Width: 794 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 8 + 17 + 17 + 22 + 22 + 12 + 3 + 42 + 33 + 33 + 28 + 28 + 38 + 47 + 3 + 47 + 50 + 51 + 39 + 12 + 13 + 12 + 228 + 89 + 8 + 42 + 0 + 36 + 13 + 235 + 0 + 25 + 228 + 89 + 0 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +394 477 m 0,0,1 + 242 477 242 477 149 566.5 c 128,-1,2 + 56 656 56 656 56 806 c 0,3,4 + 56 868 56 868 74 911.5 c 128,-1,5 + 92 955 92 955 113 988.5 c 128,-1,6 + 134 1022 134 1022 152 1048.5 c 128,-1,7 + 170 1075 170 1075 170 1104 c 0,8,9 + 170 1126 170 1126 155.5 1140.5 c 128,-1,10 + 141 1155 141 1155 112 1155 c 2,11,-1 + 56 1155 l 1,12,-1 + 56 1253 l 1,13,-1 + 140 1253 l 2,14,15 + 200 1253 200 1253 237.5 1218 c 128,-1,16 + 275 1183 275 1183 275 1120 c 0,17,18 + 275 1073 275 1073 260.5 1038 c 128,-1,19 + 246 1003 246 1003 229 970.5 c 128,-1,20 + 212 938 212 938 197.5 903.5 c 128,-1,21 + 183 869 183 869 183 823 c 0,22,23 + 183 710 183 710 240 643.5 c 128,-1,24 + 297 577 297 577 394 577 c 0,25,26 + 490 577 490 577 547.5 643 c 128,-1,27 + 605 709 605 709 605 823 c 0,28,29 + 605 869 605 869 590.5 903.5 c 128,-1,30 + 576 938 576 938 559 970.5 c 128,-1,31 + 542 1003 542 1003 527.5 1038 c 128,-1,32 + 513 1073 513 1073 513 1120 c 0,33,34 + 513 1183 513 1183 550.5 1218 c 128,-1,35 + 588 1253 588 1253 648 1253 c 2,36,-1 + 732 1253 l 1,37,-1 + 732 1155 l 1,38,-1 + 676 1155 l 2,39,40 + 647 1155 647 1155 632.5 1140.5 c 128,-1,41 + 618 1126 618 1126 618 1104 c 0,42,43 + 618 1075 618 1075 636 1048.5 c 128,-1,44 + 654 1022 654 1022 675 988.5 c 128,-1,45 + 696 955 696 955 714 911.5 c 128,-1,46 + 732 868 732 868 732 806 c 0,47,48 + 732 657 732 657 639.5 567 c 128,-1,49 + 547 477 547 477 394 477 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1DB8 +Encoding: 7608 7608 1496 +Width: 774 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 3 + 10 + 13 + 3 + 13 + 16 + 17 + 11 + 4 + 235 + 0 + 8 + 228 + 89 + 0 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +385 477 m 256,0,1 + 239 477 239 477 165 548 c 128,-1,2 + 91 619 91 619 91 778 c 2,3,-1 + 91 1253 l 1,4,-1 + 214 1253 l 1,5,-1 + 214 770 l 2,6,7 + 214 575 214 575 385 575 c 256,8,9 + 556 575 556 575 556 770 c 2,10,-1 + 556 1253 l 1,11,-1 + 679 1253 l 1,12,-1 + 679 778 l 2,13,14 + 679 619 679 619 605 548 c 128,-1,15 + 531 477 531 477 385 477 c 256,0,1 +EndSplineSet +EndChar + +StartChar: uni1DB9 +Encoding: 7609 7609 1497 +Width: 724 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 9 + 6 + 17 + 14 + 14 + 0 + 6 + 0 + 21 + 22 + 17 + 7 + 235 + 3 + 12 + 228 + 89 + 3 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +675 893 m 0,0,1 + 675 694 675 694 594.5 585.5 c 128,-1,2 + 514 477 514 477 367 477 c 256,3,4 + 220 477 220 477 153.5 550.5 c 128,-1,5 + 87 624 87 624 87 786 c 2,6,-1 + 87 1253 l 1,7,-1 + 210 1253 l 1,8,-1 + 210 782 l 2,9,10 + 210 679 210 679 248 627 c 128,-1,11 + 286 575 286 575 373 575 c 0,12,13 + 549 575 549 575 549 890 c 0,14,15 + 549 983 549 983 528.5 1080 c 128,-1,16 + 508 1177 508 1177 471 1253 c 1,17,-1 + 599 1253 l 1,18,19 + 632 1181 632 1181 653.5 1081 c 128,-1,20 + 675 981 675 981 675 893 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1DBA +Encoding: 7610 7610 1498 +Width: 658 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 5 + 9 + 2 + 2 + 11 + 9 + 10 + 5 + 3 + 9 + 232 + 0 + 235 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +262 1253 m 1,0,-1 + 407 1253 l 1,1,-1 + 674 490 l 1,2,-1 + 544 490 l 1,3,-1 + 382 987 l 1,4,-1 + 334 1154 l 1,5,6 + 320 1102 320 1102 310 1068.5 c 128,-1,7 + 300 1035 300 1035 117 490 c 1,8,-1 + -13 490 l 1,9,-1 + 262 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DBB +Encoding: 7611 7611 1499 +Width: 734 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 7 + 3 + 0 + 9 + 2 + 6 + 0 + 6 + 10 + 11 + 6 + 3 + 4 + 3 + 228 + 89 + 4 + 235 + 1 + 7 + 0 + 7 + 228 + 89 + 0 + 232 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +60 490 m 1,0,-1 + 60 586 l 1,1,-1 + 510 1155 l 1,2,-1 + 87 1155 l 1,3,-1 + 87 1253 l 1,4,-1 + 648 1253 l 1,5,-1 + 648 1157 l 1,6,-1 + 198 588 l 1,7,-1 + 673 588 l 1,8,-1 + 673 490 l 1,9,-1 + 60 490 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DBC +Encoding: 7612 7612 1500 +Width: 734 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 19 + 15 + 12 + 10 + 5 + 0 + 0 + 14 + 18 + 12 + 18 + 21 + 22 + 18 + 15 + 16 + 15 + 228 + 89 + 16 + 235 + 13 + 19 + 12 + 19 + 228 + 89 + 12 + 232 + 8 + 5 + 229 + 89 + 8 + 3 + 229 + 89 + 8 + 237 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +659 409 m 2,0,1 + 659 352 659 352 673.5 328 c 128,-1,2 + 688 304 688 304 726 304 c 0,3,4 + 759 304 759 304 787 312 c 1,5,-1 + 787 199 l 1,6,7 + 738 190 738 190 702 190 c 0,8,9 + 539 190 539 190 539 399 c 2,10,-1 + 539 490 l 1,11,-1 + 46 490 l 1,12,-1 + 46 586 l 1,13,-1 + 496 1155 l 1,14,-1 + 73 1155 l 1,15,-1 + 73 1253 l 1,16,-1 + 634 1253 l 1,17,-1 + 634 1156 l 1,18,-1 + 184 588 l 1,19,-1 + 659 588 l 1,20,-1 + 659 409 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1DBD +Encoding: 7613 7613 1501 +Width: 734 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 22 + 18 + 17 + 21 + 21 + 6 + 25 + 14 + 13 + 14 + 15 + 29 + 6 + 15 + 6 + 32 + 33 + 21 + 18 + 19 + 18 + 228 + 89 + 3 + 23 + 228 + 89 + 3 + 3 + 15 + 19 + 235 + 25 + 16 + 22 + 15 + 22 + 228 + 89 + 12 + 10 + 15 + 232 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[rnd,grey] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +292 588 m 1,0,1 + 362 709 362 709 425.5 764.5 c 128,-1,2 + 489 820 489 820 555 820 c 0,3,4 + 637 820 637 820 682 776 c 128,-1,5 + 727 732 727 732 727 660 c 0,6,7 + 727 576 727 576 680 533 c 128,-1,8 + 633 490 633 490 529 490 c 2,9,-1 + 357 490 l 1,10,11 + 327 432 327 432 301 365 c 1,12,-1 + 207 408 l 1,13,-1 + 244 490 l 1,14,-1 + 37 490 l 1,15,-1 + 37 587 l 1,16,-1 + 486 1155 l 1,17,-1 + 64 1155 l 1,18,-1 + 64 1253 l 1,19,-1 + 624 1253 l 1,20,-1 + 624 1157 l 1,21,-1 + 174 588 l 1,22,-1 + 292 588 l 1,0,1 +553 717 m 0,23,24 + 487 717 487 717 406 588 c 1,25,-1 + 523 588 l 2,26,27 + 575 588 575 588 599 604 c 128,-1,28 + 623 620 623 620 623 658 c 0,29,30 + 623 686 623 686 604 701.5 c 128,-1,31 + 585 717 585 717 553 717 c 0,23,24 +EndSplineSet +EndChar + +StartChar: uni1DBE +Encoding: 7614 7614 1502 +Width: 756 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 22 + 3 + 25 + 24 + 2 + 2 + 18 + 6 + 25 + 13 + 12 + 6 + 12 + 27 + 26 + 3 + 22 + 228 + 89 + 3 + 3 + 9 + 0 + 9 + 15 + 228 + 89 + 13 + 13 + 9 + 237 + 2 + 25 + 0 + 25 + 228 + 89 + 0 + 235 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +78 1253 m 1,0,-1 + 679 1253 l 1,1,-1 + 679 1127 l 1,2,-1 + 418 873 l 1,3,4 + 553 854 553 854 628 767 c 128,-1,5 + 703 680 703 680 703 539 c 0,6,7 + 703 384 703 384 610 287 c 128,-1,8 + 517 190 517 190 361 190 c 0,9,10 + 225 190 225 190 143 258.5 c 128,-1,11 + 61 327 61 327 46 456 c 1,12,-1 + 167 465 l 1,13,14 + 197 287 197 287 365 287 c 0,15,16 + 466 287 466 287 523 356.5 c 128,-1,17 + 580 426 580 426 580 543 c 0,18,19 + 580 653 580 653 518.5 716.5 c 128,-1,20 + 457 780 457 780 345 780 c 2,21,-1 + 289 780 l 1,22,-1 + 289 881 l 1,23,-1 + 556 1153 l 1,24,-1 + 78 1153 l 1,25,-1 + 78 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DBF +Encoding: 7615 7615 1503 +Width: 746 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 21 + 15 + 15 + 6 + 22 + 14 + 14 + 0 + 6 + 0 + 25 + 26 + 21 + 15 + 228 + 89 + 15 + 21 + 1 + 12 + 3 + 21 + 21 + 8 + 3 + 8 + 18 + 228 + 89 + 8 + 234 + 3 + 11 + 228 + 89 + 3 + 233 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +691 1013 m 0,0,1 + 691 744 691 744 609 613 c 128,-1,2 + 527 482 527 482 372 482 c 0,3,4 + 225 482 225 482 142.5 612 c 128,-1,5 + 60 742 60 742 60 1013 c 0,6,7 + 60 1541 60 1541 377 1541 c 0,8,9 + 541 1541 541 1541 616 1409.5 c 128,-1,10 + 691 1278 691 1278 691 1013 c 0,0,1 +371 575 m 0,11,12 + 468 575 468 575 512.5 671.5 c 128,-1,13 + 557 768 557 768 561 970 c 1,14,-1 + 190 970 l 1,15,16 + 193 777 193 777 237 676 c 128,-1,17 + 281 575 281 575 371 575 c 0,11,12 +379 1450 m 0,18,19 + 282 1450 282 1450 238 1357 c 128,-1,20 + 194 1264 194 1264 190 1063 c 1,21,-1 + 561 1063 l 1,22,23 + 557 1264 557 1264 514.5 1357 c 128,-1,24 + 472 1450 472 1450 379 1450 c 0,18,19 +EndSplineSet +EndChar + +StartChar: uni1DC0 +Encoding: 7616 7616 1504 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 11 + 9 + 0 + 8 + 8 + 3 + 0 + 128 + 13 + 13 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +MDAP[rnd] +SMD +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +SRP1 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1220 mark 0 +LayerCount: 2 +Fore +SplineSet +44 1218 m 1,0,-1 + -166 1540 l 1,1,-1 + -166 1577 l 1,2,-1 + 24 1577 l 1,3,-1 + 119 1251 l 1,4,-1 + 119 1218 l 1,5,-1 + 44 1218 l 1,0,-1 +173 1393 m 1,6,-1 + 173 1577 l 1,7,-1 + 336 1577 l 1,8,-1 + 336 1393 l 1,9,-1 + 173 1393 l 1,6,-1 +-336 1219 m 1,10,-1 + -336 1403 l 1,11,-1 + -171 1403 l 1,12,-1 + -171 1219 l 1,13,-1 + -336 1219 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni1DC1 +Encoding: 7617 7617 1505 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 12 + 9 + 12 + 9 + 8 + 3 + 128 + 10 + 5 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +IP +MDAP[rnd] +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1220 mark 0 +LayerCount: 2 +Fore +SplineSet +-140 1218 m 1,0,-1 + -140 1251 l 1,1,-1 + -45 1577 l 1,2,-1 + 145 1577 l 1,3,-1 + 145 1540 l 1,4,-1 + -65 1218 l 1,5,-1 + -140 1218 l 1,0,-1 +218 1393 m 1,6,-1 + 218 1577 l 1,7,-1 + 381 1577 l 1,8,-1 + 381 1393 l 1,9,-1 + 218 1393 l 1,6,-1 +-380 1219 m 1,10,-1 + -380 1403 l 1,11,-1 + -215 1403 l 1,12,-1 + -215 1219 l 1,13,-1 + -380 1219 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni1DC2 +Encoding: 7618 7618 1506 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 17 + 31 + 41 + 3 + 24 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 0 -80 mark 0 +AnchorPoint: "Anchor-14" 0 -80 mark 0 +LayerCount: 2 +Fore +SplineSet +90 -434 m 1,0,1 + -89 -434 -89 -434 -89 -370 c 0,2,3 + -89 -354 -89 -354 -72.5 -344 c 128,-1,4 + -56 -334 -56 -334 -35.5 -327 c 128,-1,5 + -15 -320 -15 -320 1.5 -315 c 128,-1,6 + 18 -310 18 -310 18 -304 c 0,7,8 + 18 -295 18 -295 1.5 -291 c 128,-1,9 + -15 -287 -15 -287 -35.5 -282 c 128,-1,10 + -56 -277 -56 -277 -72.5 -269 c 128,-1,11 + -89 -261 -89 -261 -89 -243 c 0,12,13 + -89 -228 -89 -228 -71 -217.5 c 128,-1,14 + -53 -207 -53 -207 -32 -198 c 128,-1,15 + -11 -189 -11 -189 7 -181 c 128,-1,16 + 25 -173 25 -173 25 -164 c 0,17,18 + 25 -147 25 -147 -24 -147 c 0,19,20 + -67 -147 -67 -147 -114 -167 c 1,21,-1 + -123 -119 l 1,22,23 + -63 -86 -63 -86 -3 -86 c 0,24,25 + 102 -86 102 -86 102 -148 c 0,26,27 + 102 -172 102 -172 86 -186.5 c 128,-1,28 + 70 -201 70 -201 51.5 -210.5 c 128,-1,29 + 33 -220 33 -220 17 -226.5 c 128,-1,30 + 1 -233 1 -233 1 -241 c 0,31,32 + 1 -247 1 -247 15.5 -251 c 128,-1,33 + 30 -255 30 -255 48 -261 c 128,-1,34 + 66 -267 66 -267 80.5 -277 c 128,-1,35 + 95 -287 95 -287 95 -304 c 0,36,37 + 95 -320 95 -320 80.5 -329.5 c 128,-1,38 + 66 -339 66 -339 48 -345 c 128,-1,39 + 30 -351 30 -351 15.5 -355.5 c 128,-1,40 + 1 -360 1 -360 1 -367 c 256,41,42 + 1 -374 1 -374 20.5 -382 c 128,-1,43 + 40 -390 40 -390 90 -392 c 1,44,-1 + 90 -434 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni1DC3 +Encoding: 7619 7619 1507 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 18 + 18 + 10 + 128 + 13 + 6 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1240 mark 0 +LayerCount: 2 +Fore +SplineSet +349 1370 m 1,0,-1 + 315 1370 l 2,1,2 + 259 1370 259 1370 211 1351.5 c 128,-1,3 + 163 1333 163 1333 115 1310.5 c 128,-1,4 + 67 1288 67 1288 15.5 1269.5 c 128,-1,5 + -36 1251 -36 1251 -100 1251 c 0,6,7 + -209 1251 -209 1251 -276 1317.5 c 128,-1,8 + -343 1384 -343 1384 -343 1493 c 1,9,-1 + -216 1493 l 1,10,11 + -216 1436 -216 1436 -183 1400.5 c 128,-1,12 + -150 1365 -150 1365 -93 1365 c 0,13,14 + -41 1365 -41 1365 4 1385 c 128,-1,15 + 49 1405 49 1405 95.5 1429 c 128,-1,16 + 142 1453 142 1453 194.5 1473 c 128,-1,17 + 247 1493 247 1493 314 1493 c 2,18,-1 + 349 1493 l 1,19,-1 + 349 1370 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DC4 +Encoding: 7620 7620 1508 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 5 + 2 + 128 + 2 + 3 + 142 + 89 + 2 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1230 mark 0 +LayerCount: 2 +Fore +SplineSet +300 1384 m 1,0,-1 + 29 1236 l 1,1,-1 + -314 1236 l 1,2,-1 + -314 1364 l 1,3,-1 + 0 1364 l 1,4,-1 + 236 1492 l 1,5,-1 + 300 1384 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DC5 +Encoding: 7621 7621 1509 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 4 + 142 + 89 + 15 + 3 + 31 + 3 + 47 + 3 + 3 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +DELTAP1 +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1230 mark 0 +LayerCount: 2 +Fore +SplineSet +314 1236 m 1,0,-1 + -29 1236 l 1,1,-1 + -300 1384 l 1,2,-1 + -236 1492 l 1,3,-1 + 0 1364 l 1,4,-1 + 314 1364 l 1,5,-1 + 314 1236 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DC6 +Encoding: 7622 7622 1510 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 4 + 2 + 142 + 89 + 15 + 4 + 31 + 4 + 47 + 4 + 3 + 4 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +DELTAP1 +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1230 mark 0 +LayerCount: 2 +Fore +SplineSet +236 1236 m 1,0,-1 + 0 1364 l 1,1,-1 + -314 1364 l 1,2,-1 + -314 1492 l 1,3,-1 + 29 1492 l 1,4,-1 + 300 1344 l 1,5,-1 + 236 1236 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DC7 +Encoding: 7623 7623 1511 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 5 + 1 + 142 + 89 + 15 + 5 + 31 + 5 + 47 + 5 + 3 + 5 + 2 +SVTCA[y-axis] +MDAP[rnd] +MDRP[rnd,grey] +DELTAP1 +CALL +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1230 mark 0 +LayerCount: 2 +Fore +SplineSet +314 1364 m 1,0,-1 + 0 1364 l 1,1,-1 + -236 1236 l 1,2,-1 + -300 1344 l 1,3,-1 + -29 1492 l 1,4,-1 + 314 1492 l 1,5,-1 + 314 1364 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DC8 +Encoding: 7624 7624 1512 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 7 + 7 + 5 + 128 + 6 + 3 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1230 mark 0 +LayerCount: 2 +Fore +SplineSet +417 1345 m 1,0,-1 + 356 1236 l 1,1,-1 + 132 1358 l 1,2,-1 + -114 1236 l 1,3,-1 + -414 1384 l 1,4,-1 + -353 1493 l 1,5,-1 + -117 1365 l 1,6,-1 + 118 1493 l 1,7,-1 + 417 1345 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DC9 +Encoding: 7625 7625 1513 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 7 + 6 + 6 + 1 + 4 + 128 + 3 + 2 + 2 + 5 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1200 mark 0 +AnchorPoint: "Anchor-16" 0 1230 mark 0 +LayerCount: 2 +Fore +SplineSet +118 1236 m 1,0,-1 + -117 1364 l 1,1,-1 + -353 1236 l 1,2,-1 + -414 1345 l 1,3,-1 + -114 1493 l 1,4,-1 + 132 1371 l 1,5,-1 + 356 1493 l 1,6,-1 + 417 1384 l 1,7,-1 + 118 1236 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DCA +Encoding: 7626 7626 1514 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 5 + 0 + 128 + 13 + 3 + 9 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" -30 -50 mark 0 +AnchorPoint: "Anchor-14" -30 -50 mark 0 +LayerCount: 2 +Fore +SplineSet +-142 -425 m 1,0,-1 + -142 -145 l 2,1,2 + -142 -83 -142 -83 -145 -61 c 1,3,-1 + -61 -61 l 1,4,-1 + -57 -135 l 1,5,-1 + -55 -135 l 1,6,7 + -32 -87 -32 -87 -4.5 -70.5 c 128,-1,8 + 23 -54 23 -54 72 -54 c 1,9,-1 + 108 -57 l 1,10,-1 + 108 -147 l 1,11,12 + 90 -143 90 -143 61 -143 c 0,13,14 + 0 -143 0 -143 -26.5 -178.5 c 128,-1,15 + -53 -214 -53 -214 -53 -269 c 2,16,-1 + -53 -425 l 1,17,-1 + -142 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DFE +Encoding: 7678 7678 1515 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 0 + 128 + 4 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-27" 0 1680 basemark 0 +AnchorPoint: "Anchor-27" 0 1120 mark 0 +AnchorPoint: "Anchor-16" 0 1150 mark 0 +LayerCount: 2 +Fore +SplineSet +141 1569 m 1,0,-1 + 141 1455 l 1,1,-1 + -29 1359 l 1,2,-1 + 141 1263 l 1,3,-1 + 141 1149 l 1,4,-1 + -140 1318 l 1,5,-1 + -140 1400 l 1,6,-1 + 141 1569 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1DFF +Encoding: 7679 7679 1516 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 11 + 8 + 12 + 9 + 9 + 4 + 2 + 128 + 6 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,white] +IP +SHP[rp1] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-28" 0 -520 basemark 0 +AnchorPoint: "Anchor-28" 30 0 mark 0 +AnchorPoint: "Anchor-14" 30 0 mark 0 +LayerCount: 2 +Fore +SplineSet +1 -175 m 1,0,-1 + 1 -257 l 1,1,-1 + -280 -426 l 1,2,-1 + -280 -312 l 1,3,-1 + -110 -216 l 1,4,-1 + -280 -120 l 1,5,-1 + -280 -6 l 1,6,-1 + 1 -175 l 1,0,-1 +260 -353 m 1,7,-1 + 178 -353 l 1,8,-1 + 9 -72 l 1,9,-1 + 123 -72 l 1,10,-1 + 219 -242 l 1,11,-1 + 315 -72 l 1,12,-1 + 429 -72 l 1,13,-1 + 260 -353 l 1,7,-1 +EndSplineSet +EndChar + +StartChar: uni1E00 +Encoding: 7680 7680 1517 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 23 + 1 + 23 + 17 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1260 1540 basechar 0 +AnchorPoint: "Anchor-14" 690 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 743 805 N 1 0 0 1 684 0 2 +EndChar + +StartChar: uni1E01 +Encoding: 7681 7681 1518 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 3 + 2 + 55 +PUSHW_1 + -44 +PUSHB_5 + 55 + 49 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 980 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 743 805 N 1 0 0 1 569 0 2 +EndChar + +StartChar: uni1E02 +Encoding: 7682 7682 1519 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 3 + 34 + 34 + 5 + 38 + 3 + 32 +PUSHW_1 + -53 +PUSHB_5 + 32 + 34 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 760 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 37 66 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 414 293 2 +EndChar + +StartChar: uni1E03 +Encoding: 7683 7683 1520 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 2 + 39 + 39 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 69 98 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 402 0 2 +EndChar + +StartChar: uni1E04 +Encoding: 7684 7684 1521 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 3 + 32 +PUSHW_1 + -76 +PUSHB_5 + 32 + 34 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 570 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 650 1540 basechar 0 +AnchorPoint: "Anchor-15" 1080 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 37 66 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 788 0 2 +EndChar + +StartChar: uni1E05 +Encoding: 7685 7685 1522 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 37 + 10 + 37 + 39 + 10 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 530 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 650 1580 basechar 0 +AnchorPoint: "Anchor-15" 930 1540 basechar 0 +AnchorPoint: "Anchor-14" 610 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 69 98 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 754 0 2 +EndChar + +StartChar: uni1E06 +Encoding: 7686 7686 1523 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 3 + 33 +PUSHW_1 + -73 +PUSHB_5 + 33 + 34 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 650 1540 basechar 0 +AnchorPoint: "Anchor-15" 1080 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 37 66 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 640 0 2 +EndChar + +StartChar: uni1E07 +Encoding: 7687 7687 1524 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 38 +PUSHW_1 + -26 +PUSHB_5 + 38 + 39 + 10 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 594 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 69 98 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 567 0 2 +EndChar + +StartChar: uni1E08 +Encoding: 7688 7688 1525 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 0 + 5 + 5 + 5 + 38 + 32 + 52 + 1 +DELTAP1 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 770 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 2303 -1 N 1 0 0 1 535 0 2 +Refer: 38 67 N 1 0 0 1 0 0 2 +Refer: 122 184 N 1 0 0 1 510 0 2 +EndChar + +StartChar: uni1E09 +Encoding: 7689 7689 1526 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 50 + 50 + 17 + 38 + 31 + 52 + 1 +DELTAP1 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 540 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 122 184 N 1 0 0 1 274 20 2 +Refer: 70 99 N 1 0 0 1 0 0 2 +Refer: 118 180 N 1 0 0 1 359 0 2 +EndChar + +StartChar: uni1E0A +Encoding: 7690 7690 1527 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 23 + 23 + 5 + 38 + 2 + 21 +PUSHW_1 + -68 +PUSHB_5 + 21 + 23 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 670 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 460 293 2 +EndChar + +StartChar: uni1E0B +Encoding: 7691 7691 1528 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 2 + 35 + 35 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 71 100 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 260 0 2 +EndChar + +StartChar: uni1E0C +Encoding: 7692 7692 1529 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 21 +PUSHW_1 + -85 +PUSHB_5 + 21 + 23 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 630 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 710 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 690 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 840 0 2 +EndChar + +StartChar: uni1E0D +Encoding: 7693 7693 1530 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 36 +PUSHW_1 + -27 +PUSHB_5 + 36 + 38 + 6 + 18 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 870 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 1020 1260 basechar 0 +AnchorPoint: "Anchor-14" 530 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 71 100 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 670 0 2 +EndChar + +StartChar: uni1E0E +Encoding: 7694 7694 1531 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 22 +PUSHW_1 + -125 +PUSHB_5 + 22 + 23 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 671 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 650 1540 basechar 0 +AnchorPoint: "Anchor-15" 1080 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 650 0 2 +EndChar + +StartChar: uni1E0F +Encoding: 7695 7695 1532 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 37 + 6 + 37 + 38 + 6 + 18 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 583 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 560 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 71 100 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 553 0 2 +EndChar + +StartChar: uni1E10 +Encoding: 7696 7696 1533 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 24 +PUSHW_1 + -115 +PUSHB_5 + 24 + 29 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 640 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1260 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 3 +Refer: 744 806 N 1 0 0 1 662 0 2 +EndChar + +StartChar: uni1E11 +Encoding: 7697 7697 1534 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 39 +PUSHW_1 + -8 +PUSHB_5 + 39 + 44 + 6 + 18 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 870 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 71 100 N 1 0 0 1 0 0 3 +Refer: 744 806 N 1 0 0 1 541 0 2 +EndChar + +StartChar: uni1E12 +Encoding: 7698 7698 1535 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 27 +PUSHW_1 + -79 +PUSHB_5 + 27 + 21 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 710 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 39 68 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 700 0 2 +EndChar + +StartChar: uni1E13 +Encoding: 7699 7699 1536 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 42 +PUSHW_1 + -21 +PUSHB_5 + 42 + 36 + 6 + 18 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 500 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 520 1580 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 520 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 71 100 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 530 0 2 +EndChar + +StartChar: uni1E14 +Encoding: 7700 7700 1537 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 19 + 19 + 5 + 38 + 2 + 1 + 20 +PUSHW_1 + -22 +PUSHB_5 + 20 + 21 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2503 -1 N 1 0 0 1 700 0 2 +EndChar + +StartChar: uni1E15 +Encoding: 7701 7701 1538 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 3 + 31 + 30 + 1 + 48 + 30 + 160 + 30 + 176 + 30 + 208 + 30 + 224 + 30 + 240 + 30 + 6 + 30 + 2 + 26 + 26 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 250 0 2 +Refer: 67 96 N 1 0 0 1 196 275 2 +EndChar + +StartChar: uni1E16 +Encoding: 7702 7702 1539 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 1 + 21 + 5 + 38 + 2 + 1 + 21 +PUSHW_1 + -22 +PUSHB_5 + 21 + 20 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2504 -1 N 1 0 0 1 700 0 2 +EndChar + +StartChar: uni1E17 +Encoding: 7703 7703 1540 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 2 + 31 + 31 + 1 + 48 + 31 + 160 + 31 + 176 + 31 + 208 + 31 + 224 + 31 + 240 + 31 + 6 + 31 + 3 + 32 + 32 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 366 275 2 +Refer: 651 713 N 1 0 0 1 250 0 2 +EndChar + +StartChar: uni1E18 +Encoding: 7704 7704 1541 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 19 +PUSHW_1 + -15 +PUSHB_5 + 19 + 13 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1210 1540 basechar 0 +AnchorPoint: "Anchor-14" 720 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 713 0 2 +EndChar + +StartChar: uni1E19 +Encoding: 7705 7705 1542 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 33 + 12 + 33 + 27 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 585 0 2 +EndChar + +StartChar: uni1E1A +Encoding: 7706 7706 1543 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 21 +PUSHW_1 + -22 +PUSHB_5 + 21 + 33 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -350 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1210 1540 basechar 0 +AnchorPoint: "Anchor-14" 720 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 754 816 N 1 0 0 1 700 0 2 +EndChar + +StartChar: uni1E1B +Encoding: 7707 7707 1544 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 35 +PUSHW_1 + -1 +PUSHB_5 + 35 + 47 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 -350 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 754 816 N 1 0 0 1 566 0 2 +EndChar + +StartChar: uni1E1C +Encoding: 7708 7708 1545 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 12 + 12 + 5 + 38 + 1 + 15 + 0 + 15 + 21 + 1 + 2 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 730 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 2 +Refer: 666 728 N 1 0 0 1 385 362 2 +Refer: 122 184 N 1 0 0 1 442 0 2 +EndChar + +StartChar: uni1E1D +Encoding: 7709 7709 1546 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 26 + 26 + 17 + 38 + 2 + 29 + 0 + 29 + 35 + 12 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 2 +Refer: 666 728 N 1 0 0 1 272 0 2 +Refer: 122 184 N 1 0 0 1 298 0 2 +EndChar + +StartChar: uni1E1E +Encoding: 7710 7710 1547 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 13 + 13 + 5 + 38 + 1 + 11 + 37 + 11 + 13 + 7 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 190 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 41 70 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 460 293 2 +EndChar + +StartChar: uni1E1F +Encoding: 7711 7711 1548 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 25 + 25 + 2 + 38 + 1 + 23 + 75 + 23 + 25 + 5 + 21 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 73 102 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 130 293 2 +EndChar + +StartChar: uni1E20 +Encoding: 7712 7712 1549 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 32 + 32 + 5 + 38 + 1 + 33 + 29 + 33 + 34 + 0 + 24 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-16" 810 1800 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 810 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 42 71 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 475 329 2 +EndChar + +StartChar: uni1E21 +Encoding: 7713 7713 1550 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 48 + 48 + 17 + 38 + 2 + 49 + 9 + 49 + 50 + 17 + 28 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 660 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 74 103 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1E22 +Encoding: 7714 7714 1551 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 15 + 15 + 5 + 38 + 1 + 13 + 5 + 13 + 15 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1150 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 499 293 2 +EndChar + +StartChar: uni1E23 +Encoding: 7715 7715 1552 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 28 + 28 + 2 + 38 + 1 + 26 + 54 + 26 + 28 + 19 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 75 104 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 382 293 2 +EndChar + +StartChar: uni1E24 +Encoding: 7716 7716 1553 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 13 +PUSHW_1 + -16 +PUSHB_5 + 13 + 15 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1150 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 875 0 2 +EndChar + +StartChar: uni1E25 +Encoding: 7717 7717 1554 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 26 +PUSHW_1 + -12 +PUSHB_5 + 26 + 28 + 19 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 870 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 560 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 75 104 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 713 0 2 +EndChar + +StartChar: uni1E26 +Encoding: 7718 7718 1555 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 19 + 19 + 5 + 38 + 2 + 1 + 17 +PUSHW_1 + -19 +PUSHB_5 + 17 + 15 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1150 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 397 0 2 +EndChar + +StartChar: uni1E27 +Encoding: 7719 7719 1556 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 32 + 32 + 2 + 38 + 2 + 1 + 30 + 39 + 30 + 28 + 19 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 560 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 75 104 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 290 362 2 +EndChar + +StartChar: uni1E28 +Encoding: 7720 7720 1557 +Width: 1479 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 1150 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +Refer: 122 184 N 1 0 0 1 26 0 2 +EndChar + +StartChar: uni1E29 +Encoding: 7721 7721 1558 +Width: 1139 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 560 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 75 104 N 1 0 0 1 0 0 3 +Refer: 122 184 N 1 0 0 1 -11 0 2 +EndChar + +StartChar: uni1E2A +Encoding: 7722 7722 1559 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 15 +PUSHW_1 + -13 +PUSHB_5 + 15 + 23 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1190 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +Refer: 752 814 N 1 0 0 1 727 0 2 +EndChar + +StartChar: uni1E2B +Encoding: 7723 7723 1560 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 28 + 0 + 28 + 36 + 19 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 590 -350 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 75 104 N 1 0 0 1 0 0 3 +Refer: 752 814 N 1 0 0 1 574 0 2 +EndChar + +StartChar: uni1E2C +Encoding: 7724 7724 1561 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 13 +PUSHW_1 + -1 +PUSHB_5 + 13 + 25 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 280 -350 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 754 816 N 1 0 0 1 283 0 2 +EndChar + +StartChar: uni1E2D +Encoding: 7725 7725 1562 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 17 + 0 + 17 + 29 + 5 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 -350 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 76 105 N 1 0 0 1 0 0 3 +Refer: 754 816 N 1 0 0 1 226 0 2 +EndChar + +StartChar: uni1E2E +Encoding: 7726 7726 1563 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 3 + 2 + 1 + 17 + 17 + 5 + 38 + 3 + 2 + 1 + 15 + 6 + 15 + 13 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2357 -1 N 1 0 0 1 290 0 2 +EndChar + +StartChar: uni1E2F +Encoding: 7727 7727 1564 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 3 + 31 + 14 + 47 + 14 + 111 + 14 + 143 + 14 + 4 + 159 + 14 + 175 + 14 + 207 + 14 + 3 + 14 + 2 + 1 + 8 + 8 + 17 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 243 305 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -38 0 2 +Refer: 118 180 N 1 0 0 1 139 260 2 +EndChar + +StartChar: uni1E30 +Encoding: 7728 7728 1565 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 17 + 17 + 5 + 38 + 1 + 13 + 1 + 13 + 16 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 46 75 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 473 0 2 +EndChar + +StartChar: uni1E31 +Encoding: 7729 7729 1566 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 17 + 17 + 2 + 38 + 1 + 13 +PUSHW_1 + -143 +PUSHB_5 + 13 + 16 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 78 107 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 155 40 2 +EndChar + +StartChar: uni1E32 +Encoding: 7730 7730 1567 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 13 +PUSHW_1 + -73 +PUSHB_5 + 13 + 15 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1314 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 46 75 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 833 0 2 +EndChar + +StartChar: uni1E33 +Encoding: 7731 7731 1568 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 13 +PUSHW_1 + -57 +PUSHB_5 + 13 + 15 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 860 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 1020 1260 basechar 0 +AnchorPoint: "Anchor-14" 530 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 78 107 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 676 0 2 +EndChar + +StartChar: uni1E34 +Encoding: 7732 7732 1569 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 14 +PUSHW_1 + -62 +PUSHB_5 + 14 + 15 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1190 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1314 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 46 75 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 694 0 2 +EndChar + +StartChar: uni1E35 +Encoding: 7733 7733 1570 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 14 +PUSHW_1 + -33 +PUSHB_5 + 14 + 15 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 570 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 570 1580 basechar 0 +AnchorPoint: "Anchor-15" 1020 1540 basechar 0 +AnchorPoint: "Anchor-14" 540 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 78 107 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 550 0 2 +EndChar + +StartChar: uni1E36 +Encoding: 7734 7734 1571 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 7 + 9 + 7 + 9 + 1 + 5 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 780 0 2 +EndChar + +StartChar: uni1E37 +Encoding: 7735 7735 1572 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 5 +PUSHW_1 + -1 +PUSHB_5 + 5 + 7 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 170 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1540 basechar 0 +AnchorPoint: "Anchor-15" 434 1260 basechar 0 +AnchorPoint: "Anchor-14" 230 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 378 0 2 +EndChar + +StartChar: uni1E38 +Encoding: 7736 7736 1573 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 2 + 10 + 10 + 5 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 768 0 2 +Refer: 651 713 N 1 0 0 1 295 329 2 +EndChar + +StartChar: uni1E39 +Encoding: 7737 7737 1574 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 2 + 8 + 8 + 2 + 38 +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 170 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1540 basechar 0 +AnchorPoint: "Anchor-15" 434 1260 basechar 0 +AnchorPoint: "Anchor-14" 230 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 379 0 2 +Refer: 651 713 N 1 0 0 1 -99 334 2 +EndChar + +StartChar: uni1E3A +Encoding: 7738 7738 1575 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 8 +PUSHW_1 + -3 +PUSHB_5 + 8 + 9 + 1 + 5 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 620 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 617 0 2 +EndChar + +StartChar: uni1E3B +Encoding: 7739 7739 1576 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 6 + 1 + 6 + 7 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 220 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1540 basechar 0 +AnchorPoint: "Anchor-15" 434 1260 basechar 0 +AnchorPoint: "Anchor-14" 230 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1E3C +Encoding: 7740 7740 1577 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 13 +PUSHW_1 + -12 +PUSHB_5 + 13 + 7 + 1 + 5 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 47 76 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 612 0 2 +EndChar + +StartChar: uni1E3D +Encoding: 7741 7741 1578 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 11 +PUSHW_1 + -4 +PUSHB_5 + 11 + 5 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1540 basechar 0 +AnchorPoint: "Anchor-15" 434 1260 basechar 0 +AnchorPoint: "Anchor-14" 230 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 79 108 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 229 0 2 +EndChar + +StartChar: uni1E3E +Encoding: 7742 7742 1579 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 32 + 32 + 5 + 38 + 1 + 28 + 79 + 28 + 31 + 15 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 860 1540 basechar 0 +AnchorPoint: "Anchor-15" 1540 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 48 77 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 648 0 2 +EndChar + +StartChar: uni1E3F +Encoding: 7743 7743 1580 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 47 + 47 + 17 + 38 + 1 + 43 + 125 + 43 + 46 + 12 + 32 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1410 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 860 1540 basechar 0 +AnchorPoint: "Anchor-15" 1540 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 80 109 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 695 0 2 +EndChar + +StartChar: uni1E40 +Encoding: 7744 7744 1581 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 30 + 30 + 5 + 38 + 1 + 28 + 4 + 28 + 30 + 15 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 860 1540 basechar 0 +AnchorPoint: "Anchor-15" 1540 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 48 77 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 611 293 2 +EndChar + +StartChar: uni1E41 +Encoding: 7745 7745 1582 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 45 + 45 + 17 + 38 + 1 + 43 + 3 + 43 + 45 + 12 + 32 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1410 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 860 1540 basechar 0 +AnchorPoint: "Anchor-15" 1540 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 80 109 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 611 0 2 +EndChar + +StartChar: uni1E42 +Encoding: 7746 7746 1583 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 28 + 5 + 28 + 30 + 15 + 26 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 850 1540 basechar 0 +AnchorPoint: "Anchor-15" 1550 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 48 77 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 1009 0 2 +EndChar + +StartChar: uni1E43 +Encoding: 7747 7747 1584 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 43 + 1 + 43 + 45 + 12 + 32 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1410 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1706 1540 basechar 0 +AnchorPoint: "Anchor-20" 1706 -380 basechar 0 +AnchorPoint: "Anchor-16" 850 1540 basechar 0 +AnchorPoint: "Anchor-15" 1550 1540 basechar 0 +AnchorPoint: "Anchor-14" 860 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 80 109 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 1006 0 2 +EndChar + +StartChar: uni1E44 +Encoding: 7748 7748 1585 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 17 + 17 + 5 + 38 + 1 + 15 +PUSHW_1 + -1 +PUSHB_5 + 15 + 17 + 6 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 493 293 2 +EndChar + +StartChar: uni1E45 +Encoding: 7749 7749 1586 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 30 + 30 + 17 + 38 + 1 + 28 + 15 + 28 + 30 + 13 + 26 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 840 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 340 0 2 +EndChar + +StartChar: uni1E46 +Encoding: 7750 7750 1587 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 15 +PUSHW_1 + -10 +PUSHB_5 + 15 + 17 + 6 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 881 0 2 +EndChar + +StartChar: uni1E47 +Encoding: 7751 7751 1588 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 28 +PUSHW_1 + -4 +PUSHB_5 + 28 + 30 + 13 + 26 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 880 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 590 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 570 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 718 0 2 +EndChar + +StartChar: uni1E48 +Encoding: 7752 7752 1589 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 16 +PUSHW_1 + -2 +PUSHB_5 + 16 + 17 + 6 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 760 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 738 0 2 +EndChar + +StartChar: uni1E49 +Encoding: 7753 7753 1590 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 29 +PUSHW_1 + -1 +PUSHB_5 + 29 + 30 + 13 + 26 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 570 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 590 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 570 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 570 0 2 +EndChar + +StartChar: uni1E4A +Encoding: 7754 7754 1591 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 21 +PUSHW_1 + -17 +PUSHB_5 + 21 + 15 + 6 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 700 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 49 78 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 728 0 2 +EndChar + +StartChar: uni1E4B +Encoding: 7755 7755 1592 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 34 +PUSHW_1 + -6 +PUSHB_5 + 34 + 28 + 13 + 26 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 590 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 570 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 81 110 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 570 0 2 +EndChar + +StartChar: uni1E4C +Encoding: 7756 7756 1593 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 2 + 35 + 5 + 38 + 3 + 2 + 35 + 7 + 35 + 47 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2505 -1 N 1 0 0 1 803 0 2 +EndChar + +StartChar: uni1E4D +Encoding: 7757 7757 1594 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 3 + 127 + 52 + 159 + 52 + 239 + 52 + 3 + 80 + 52 + 192 + 52 + 2 + 52 + 2 + 23 + 23 + 17 + 38 + 3 + 2 + 32 + 0 + 32 + 44 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 235 0 2 +Refer: 2303 -1 N 1 0 0 1 395 10 2 +EndChar + +StartChar: uni1E4E +Encoding: 7758 7758 1595 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 4 + 3 + 2 + 43 + 5 + 38 + 4 + 3 + 2 + 43 + 4 + 43 + 55 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1539 1840 basechar 0 +AnchorPoint: "Anchor-20" 1539 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2506 -1 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1E4F +Encoding: 7759 7759 1596 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 73 + 4 + 3 + 31 + 52 + 47 + 52 + 63 + 52 + 95 + 52 + 4 + 31 + 52 + 47 + 52 + 63 + 52 + 79 + 52 + 95 + 52 + 111 + 52 + 175 + 52 + 223 + 52 + 8 + 15 + 52 + 31 + 52 + 47 + 52 + 63 + 52 + 95 + 52 + 111 + 52 + 127 + 52 + 159 + 52 + 239 + 52 + 9 + 192 + 52 + 1 + 52 + 2 + 23 + 23 + 17 + 38 + 4 + 3 + 51 + 0 + 51 + 50 + 32 + 44 + 37 + 2 + 32 + 0 + 32 + 44 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 235 0 2 +Refer: 2306 -1 N 1 0 0 1 255 10 2 +EndChar + +StartChar: uni1E50 +Encoding: 7760 7760 1597 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 34 + 34 + 5 + 38 + 3 + 2 + 35 +PUSHW_1 + -32 +PUSHB_5 + 35 + 36 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2503 -1 N 1 0 0 1 763 0 2 +EndChar + +StartChar: uni1E51 +Encoding: 7761 7761 1598 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 3 + 31 + 30 + 1 + 48 + 30 + 160 + 30 + 176 + 30 + 208 + 30 + 224 + 30 + 240 + 30 + 6 + 30 + 2 + 23 + 23 + 17 + 38 + 3 + 2 + 24 + 0 + 24 + 23 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 235 0 2 +Refer: 67 96 N 1 0 0 1 181 275 2 +EndChar + +StartChar: uni1E52 +Encoding: 7762 7762 1599 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 2 + 36 + 5 + 38 + 3 + 2 + 36 +PUSHW_1 + -29 +PUSHB_5 + 36 + 35 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2504 -1 N 1 0 0 1 766 0 2 +EndChar + +StartChar: uni1E53 +Encoding: 7763 7763 1600 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 3 + 31 + 30 + 1 + 48 + 30 + 160 + 30 + 176 + 30 + 208 + 30 + 224 + 30 + 240 + 30 + 6 + 30 + 2 + 23 + 23 + 17 + 38 + 3 + 2 + 24 + 0 + 24 + 23 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 235 0 2 +Refer: 118 180 N 1 0 0 1 351 275 2 +EndChar + +StartChar: uni1E54 +Encoding: 7764 7764 1601 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 23 + 23 + 5 + 38 + 2 + 19 +PUSHW_1 + -1 +PUSHB_5 + 19 + 22 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 51 80 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 428 0 2 +EndChar + +StartChar: uni1E55 +Encoding: 7765 7765 1602 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 42 + 42 + 17 + 38 + 2 + 38 + 56 + 38 + 41 + 12 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 83 112 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 365 0 2 +EndChar + +StartChar: uni1E56 +Encoding: 7766 7766 1603 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 21 + 21 + 5 + 38 + 2 + 19 +PUSHW_1 + -12 +PUSHB_5 + 19 + 21 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 51 80 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 455 293 2 +EndChar + +StartChar: uni1E57 +Encoding: 7767 7767 1604 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 40 + 40 + 17 + 38 + 2 + 38 + 24 + 38 + 40 + 12 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 600 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 600 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 83 112 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 371 0 2 +EndChar + +StartChar: uni1E58 +Encoding: 7768 7768 1605 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 26 + 26 + 5 + 38 + 2 + 24 +PUSHW_1 + -80 +PUSHB_5 + 24 + 26 + 5 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 450 293 2 +EndChar + +StartChar: uni1E59 +Encoding: 7769 7769 1606 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 23 + 23 + 17 + 38 + 1 + 21 + 14 + 21 + 23 + 3 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 240 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 85 114 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 160 0 2 +EndChar + +StartChar: uni1E5A +Encoding: 7770 7770 1607 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 24 +PUSHW_1 + -57 +PUSHB_5 + 24 + 26 + 5 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1210 1540 basechar 0 +AnchorPoint: "Anchor-14" 720 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 870 0 2 +EndChar + +StartChar: uni1E5B +Encoding: 7771 7771 1608 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 21 +PUSHW_1 + -2 +PUSHB_5 + 21 + 23 + 3 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 330 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 420 1200 basechar 0 +AnchorPoint: "Anchor-15" 680 1260 basechar 0 +AnchorPoint: "Anchor-14" 400 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 85 114 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 541 0 2 +EndChar + +StartChar: uni1E5C +Encoding: 7772 7772 1609 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 24 + 5 + 38 + 2 + 24 + 0 + 24 + 23 + 5 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 392 329 2 +Refer: 2323 -1 N 1 0 0 1 870 0 2 +EndChar + +StartChar: uni1E5D +Encoding: 7773 7773 1610 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 24 + 24 + 17 + 38 + 1 + 25 + 0 + 25 + 24 + 0 + 12 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 330 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 85 114 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 541 0 2 +Refer: 651 713 N 1 0 0 1 65 0 2 +EndChar + +StartChar: uni1E5E +Encoding: 7774 7774 1611 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 25 +PUSHW_1 + -2 +PUSHB_5 + 25 + 26 + 5 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 780 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 710 1540 basechar 0 +AnchorPoint: "Anchor-15" 1230 1540 basechar 0 +AnchorPoint: "Anchor-14" 750 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 774 0 2 +EndChar + +StartChar: uni1E5F +Encoding: 7775 7775 1612 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 22 +PUSHW_1 + -33 +PUSHB_5 + 22 + 23 + 3 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 360 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 682 1540 basechar 0 +AnchorPoint: "Anchor-20" 682 -380 basechar 0 +AnchorPoint: "Anchor-16" 420 1200 basechar 0 +AnchorPoint: "Anchor-15" 680 1260 basechar 0 +AnchorPoint: "Anchor-14" 350 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 85 114 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 359 0 2 +EndChar + +StartChar: uni1E60 +Encoding: 7776 7776 1613 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 49 + 49 + 5 + 38 + 1 + 47 + 23 + 47 + 49 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 460 293 2 +EndChar + +StartChar: uni1E61 +Encoding: 7777 7777 1614 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 46 + 46 + 17 + 38 + 1 + 44 + 3 + 44 + 46 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 261 0 2 +EndChar + +StartChar: uni1E62 +Encoding: 7778 7778 1615 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 47 + 2 + 47 + 49 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 640 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 710 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 836 0 2 +EndChar + +StartChar: uni1E63 +Encoding: 7779 7779 1616 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 44 + 0 + 44 + 46 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 460 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 520 1200 basechar 0 +AnchorPoint: "Anchor-15" 860 1260 basechar 0 +AnchorPoint: "Anchor-14" 500 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 655 0 2 +EndChar + +StartChar: uni1E64 +Encoding: 7780 7780 1617 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 55 + 55 + 5 + 38 + 2 + 1 + 48 + 106 + 48 + 54 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 2507 -1 N 1 0 0 1 700 0 2 +EndChar + +StartChar: uni1E65 +Encoding: 7781 7781 1618 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 52 + 52 + 17 + 38 + 2 + 1 + 45 + 55 + 45 + 51 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 2507 -1 N 1 0 0 1 470 -317 2 +EndChar + +StartChar: uni1E66 +Encoding: 7782 7782 1619 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 51 + 51 + 5 + 38 + 2 + 1 + 53 +PUSHW_1 + -7 +PUSHB_5 + 53 + 59 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 800 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1140 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 2508 -1 N 1 0 0 1 675 0 2 +EndChar + +StartChar: uni1E67 +Encoding: 7783 7783 1620 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 48 + 48 + 17 + 38 + 2 + 1 + 50 + 3 + 50 + 56 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 2508 -1 N 1 0 0 1 507 -317 2 +EndChar + +StartChar: uni1E68 +Encoding: 7784 7784 1621 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 46 + 46 + 5 + 38 + 1 + 47 + 23 + 47 + 49 + 5 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 620 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 710 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 700 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 54 83 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 436 293 2 +Refer: 2323 -1 N 1 0 0 1 835 0 2 +EndChar + +StartChar: uni1E69 +Encoding: 7785 7785 1622 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 46 + 46 + 17 + 38 + 1 + 44 + 3 + 44 + 46 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 430 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 520 1200 basechar 0 +AnchorPoint: "Anchor-15" 860 1260 basechar 0 +AnchorPoint: "Anchor-14" 500 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 86 115 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 257 0 2 +Refer: 2323 -1 N 1 0 0 1 655 0 2 +EndChar + +StartChar: uni1E6A +Encoding: 7786 7786 1623 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 11 + 11 + 5 + 38 + 1 + 9 + 0 + 9 + 11 + 5 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 55 84 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 379 293 2 +EndChar + +StartChar: uni1E6B +Encoding: 7787 7787 1624 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 24 + 24 + 5 + 38 + 1 + 22 +PUSHW_1 + -9 +PUSHB_5 + 22 + 24 + 7 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 260 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 87 116 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 37 269 2 +EndChar + +StartChar: uni1E6C +Encoding: 7788 7788 1625 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 9 + 0 + 9 + 11 + 5 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 560 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 55 84 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 776 0 2 +EndChar + +StartChar: uni1E6D +Encoding: 7789 7789 1626 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 22 + 56 + 22 + 24 + 7 + 20 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 290 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 420 1200 basechar 0 +AnchorPoint: "Anchor-15" 680 1260 basechar 0 +AnchorPoint: "Anchor-14" 350 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 87 116 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 500 0 2 +EndChar + +StartChar: uni1E6E +Encoding: 7790 7790 1627 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 10 +PUSHW_1 + -1 +PUSHB_5 + 10 + 11 + 5 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 610 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 55 84 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 624 0 2 +EndChar + +StartChar: uni1E6F +Encoding: 7791 7791 1628 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 23 + 41 + 23 + 24 + 7 + 20 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 340 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 420 1200 basechar 0 +AnchorPoint: "Anchor-15" 680 1260 basechar 0 +AnchorPoint: "Anchor-14" 350 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 87 116 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 334 0 2 +EndChar + +StartChar: uni1E70 +Encoding: 7792 7792 1629 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 15 +PUSHW_1 + -5 +PUSHB_5 + 15 + 9 + 5 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 605 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 55 84 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 625 0 2 +EndChar + +StartChar: uni1E71 +Encoding: 7793 7793 1630 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 28 + 41 + 28 + 22 + 7 + 20 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 330 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 420 1200 basechar 0 +AnchorPoint: "Anchor-15" 680 1260 basechar 0 +AnchorPoint: "Anchor-14" 350 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 87 116 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 339 0 2 +EndChar + +StartChar: uni1E72 +Encoding: 7794 7794 1631 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 1 + 25 +PUSHW_1 + -2 +PUSHB_5 + 25 + 23 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 710 -420 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 720 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 742 804 N 1 0 0 1 738 0 2 +EndChar + +StartChar: uni1E73 +Encoding: 7795 7795 1632 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 32 + 1 + 32 + 30 + 26 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 540 -440 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 742 804 N 1 0 0 1 570 0 2 +EndChar + +StartChar: uni1E74 +Encoding: 7796 7796 1633 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 29 + 0 + 29 + 41 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 715 -350 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 720 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 754 816 N 1 0 0 1 739 0 2 +EndChar + +StartChar: uni1E75 +Encoding: 7797 7797 1634 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 36 + 1 + 36 + 48 + 26 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 540 -350 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 754 816 N 1 0 0 1 569 0 2 +EndChar + +StartChar: uni1E76 +Encoding: 7798 7798 1635 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 27 +PUSHW_1 + -3 +PUSHB_5 + 27 + 21 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 720 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 741 0 2 +EndChar + +StartChar: uni1E77 +Encoding: 7799 7799 1636 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 34 +PUSHW_1 + -23 +PUSHB_5 + 34 + 28 + 26 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 530 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 570 1580 basechar 0 +AnchorPoint: "Anchor-15" 1020 1540 basechar 0 +AnchorPoint: "Anchor-14" 540 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 751 813 N 1 0 0 1 550 0 2 +EndChar + +StartChar: uni1E78 +Encoding: 7800 7800 1637 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 28 + 5 + 38 + 2 + 1 + 28 + 0 + 28 + 40 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2505 -1 N 1 0 0 1 739 0 2 +EndChar + +StartChar: uni1E79 +Encoding: 7801 7801 1638 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 2 + 127 + 53 + 159 + 53 + 239 + 53 + 3 + 80 + 53 + 192 + 53 + 2 + 53 + 1 + 27 + 27 + 17 + 38 + 2 + 1 + 36 + 0 + 36 + 48 + 26 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 220 0 2 +Refer: 2303 -1 N 1 0 0 1 355 10 2 +EndChar + +StartChar: uni1E7A +Encoding: 7802 7802 1639 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 3 + 2 + 1 + 29 + 29 + 5 + 38 + 3 + 2 + 1 + 27 +PUSHW_1 + -2 +PUSHB_5 + 27 + 21 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2509 -1 N 1 0 0 1 737 0 2 +EndChar + +StartChar: uni1E7B +Encoding: 7803 7803 1640 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 3 + 2 + 31 + 36 + 47 + 36 + 63 + 36 + 79 + 36 + 111 + 36 + 5 + 15 + 36 + 63 + 36 + 2 + 192 + 36 + 208 + 36 + 224 + 36 + 240 + 36 + 4 + 36 + 1 + 27 + 27 + 17 + 38 + 3 + 2 + 35 + 0 + 35 + 34 + 29 + 30 + 37 + 1 + 28 + 0 + 28 + 27 + 26 + 10 + 37 +CALL +SRP1 +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 244 0 2 +Refer: 106 168 N 1 0 0 1 236 250 2 +EndChar + +StartChar: uni1E7C +Encoding: 7804 7804 1641 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 18 + 5 + 38 + 1 + 18 + 5 + 18 + 30 + 2 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 620 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 57 86 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 353 0 2 +EndChar + +StartChar: uni1E7D +Encoding: 7805 7805 1642 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 20 + 17 + 38 + 1 + 20 +PUSHW_1 + -2 +PUSHB_5 + 20 + 32 + 2 + 10 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 440 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 89 118 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 174 0 2 +EndChar + +StartChar: uni1E7E +Encoding: 7806 7806 1643 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 10 +PUSHW_1 + -2 +PUSHB_5 + 10 + 12 + 2 + 8 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 620 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1314 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 57 86 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 832 0 2 +EndChar + +StartChar: uni1E7F +Encoding: 7807 7807 1644 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 12 +PUSHW_1 + -10 +PUSHB_5 + 12 + 14 + 2 + 10 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 440 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 520 1200 basechar 0 +AnchorPoint: "Anchor-15" 860 1260 basechar 0 +AnchorPoint: "Anchor-14" 500 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 89 118 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 653 0 2 +EndChar + +StartChar: Wgrave +Encoding: 7808 7808 1645 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 26 + 26 + 5 + 38 + 1 + 27 +PUSHW_1 + -72 +PUSHB_5 + 27 + 30 + 9 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1300 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1933 1540 basechar 0 +AnchorPoint: "Anchor-20" 1933 -380 basechar 0 +AnchorPoint: "Anchor-16" 950 1840 basechar 0 +AnchorPoint: "Anchor-15" 1930 1540 basechar 0 +AnchorPoint: "Anchor-14" 960 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 58 87 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 577 0 2 +EndChar + +StartChar: wgrave +Encoding: 7809 7809 1646 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 21 + 21 + 17 + 38 + 1 + 22 +PUSHW_1 + -94 +PUSHB_5 + 22 + 25 + 8 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1000 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 740 1580 basechar 0 +AnchorPoint: "Anchor-15" 1490 1260 basechar 0 +AnchorPoint: "Anchor-14" 750 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 90 119 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 328 0 2 +EndChar + +StartChar: Wacute +Encoding: 7810 7810 1647 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 26 + 5 + 38 + 1 + 26 + 75 + 26 + 29 + 9 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1300 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1933 1540 basechar 0 +AnchorPoint: "Anchor-20" 1933 -380 basechar 0 +AnchorPoint: "Anchor-16" 950 1840 basechar 0 +AnchorPoint: "Anchor-15" 1930 1540 basechar 0 +AnchorPoint: "Anchor-14" 960 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 58 87 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 759 0 2 +EndChar + +StartChar: wacute +Encoding: 7811 7811 1648 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 21 + 17 + 38 + 1 + 21 + 93 + 21 + 24 + 8 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1000 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 740 1580 basechar 0 +AnchorPoint: "Anchor-15" 1490 1260 basechar 0 +AnchorPoint: "Anchor-14" 750 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 90 119 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 550 0 2 +EndChar + +StartChar: Wdieresis +Encoding: 7812 7812 1649 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 26 + 26 + 5 + 38 + 2 + 1 + 30 + 2 + 30 + 28 + 9 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1300 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1933 1540 basechar 0 +AnchorPoint: "Anchor-20" 1933 -380 basechar 0 +AnchorPoint: "Anchor-16" 950 1840 basechar 0 +AnchorPoint: "Anchor-15" 1930 1540 basechar 0 +AnchorPoint: "Anchor-14" 960 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 58 87 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 646 0 2 +EndChar + +StartChar: wdieresis +Encoding: 7813 7813 1650 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 21 + 21 + 17 + 38 + 2 + 1 + 25 + 0 + 25 + 23 + 8 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1000 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 740 1580 basechar 0 +AnchorPoint: "Anchor-15" 1490 1260 basechar 0 +AnchorPoint: "Anchor-14" 750 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 90 119 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 417 0 2 +EndChar + +StartChar: uni1E86 +Encoding: 7814 7814 1651 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 29 + 29 + 5 + 38 + 1 + 27 + 0 + 27 + 29 + 9 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1300 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1933 1540 basechar 0 +AnchorPoint: "Anchor-20" 1933 -380 basechar 0 +AnchorPoint: "Anchor-16" 970 1540 basechar 0 +AnchorPoint: "Anchor-15" 1900 1540 basechar 0 +AnchorPoint: "Anchor-14" 970 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 58 87 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 722 293 2 +EndChar + +StartChar: uni1E87 +Encoding: 7815 7815 1652 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 24 + 24 + 17 + 38 + 1 + 22 + 0 + 22 + 24 + 8 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1000 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 90 119 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 494 0 2 +EndChar + +StartChar: uni1E88 +Encoding: 7816 7816 1653 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 27 + 0 + 27 + 29 + 9 + 25 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1330 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1933 1540 basechar 0 +AnchorPoint: "Anchor-20" 1933 -380 basechar 0 +AnchorPoint: "Anchor-16" 980 1540 basechar 0 +AnchorPoint: "Anchor-15" 1930 1540 basechar 0 +AnchorPoint: "Anchor-14" 980 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 58 87 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 1119 0 2 +EndChar + +StartChar: uni1E89 +Encoding: 7817 7817 1654 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 22 + 0 + 22 + 24 + 8 + 20 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1060 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 740 1200 basechar 0 +AnchorPoint: "Anchor-15" 1470 1260 basechar 0 +AnchorPoint: "Anchor-14" 740 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 90 119 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 892 0 2 +EndChar + +StartChar: uni1E8A +Encoding: 7818 7818 1655 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 15 + 15 + 5 + 38 + 1 + 13 + 8 + 13 + 15 + 3 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 59 88 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 447 293 2 +EndChar + +StartChar: uni1E8B +Encoding: 7819 7819 1656 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 15 + 15 + 17 + 38 + 1 + 13 +PUSHW_1 + -1 +PUSHB_5 + 13 + 15 + 3 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 820 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 91 120 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 265 0 2 +EndChar + +StartChar: uni1E8C +Encoding: 7820 7820 1657 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 19 + 19 + 5 + 38 + 2 + 1 + 17 + 6 + 17 + 15 + 3 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1130 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 59 88 N 1 0 0 1 0 0 3 +Refer: 2306 -1 N 1 0 0 1 367 0 2 +EndChar + +StartChar: uni1E8D +Encoding: 7821 7821 1658 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 19 + 19 + 17 + 38 + 2 + 1 + 17 +PUSHW_1 + -3 +PUSHB_5 + 17 + 15 + 3 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 820 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 91 120 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 186 0 2 +EndChar + +StartChar: uni1E8E +Encoding: 7822 7822 1659 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 12 + 12 + 5 + 38 + 1 + 10 + 3 + 10 + 12 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 440 293 2 +EndChar + +StartChar: uni1E8F +Encoding: 7823 7823 1660 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 26 + 26 + 17 + 38 + 1 + 24 + 14 + 24 + 26 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 460 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 281 0 2 +EndChar + +StartChar: uni1E90 +Encoding: 7824 7824 1661 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 16 + 16 + 5 + 38 + 1 + 17 + 26 + 17 + 11 + 2 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1030 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 61 90 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 321 0 2 +EndChar + +StartChar: uni1E91 +Encoding: 7825 7825 1662 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 16 + 16 + 17 + 38 + 1 + 17 +PUSHW_1 + -6 +PUSHB_5 + 17 + 11 + 1 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 740 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 840 1200 basechar 0 +AnchorPoint: "Anchor-14" 500 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 93 122 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 165 0 2 +EndChar + +StartChar: uni1E92 +Encoding: 7826 7826 1663 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 11 +PUSHW_1 + -1 +PUSHB_5 + 11 + 13 + 2 + 9 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1030 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 650 1540 basechar 0 +AnchorPoint: "Anchor-15" 1080 1540 basechar 0 +AnchorPoint: "Anchor-14" 640 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 61 90 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 776 0 2 +EndChar + +StartChar: uni1E93 +Encoding: 7827 7827 1664 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 11 +PUSHW_1 + -5 +PUSHB_5 + 11 + 13 + 1 + 9 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 820 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 520 1200 basechar 0 +AnchorPoint: "Anchor-15" 860 1260 basechar 0 +AnchorPoint: "Anchor-14" 500 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 93 122 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 648 0 2 +EndChar + +StartChar: uni1E94 +Encoding: 7828 7828 1665 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 12 + 0 + 12 + 13 + 2 + 9 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 630 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1251 1540 basechar 0 +AnchorPoint: "Anchor-20" 1251 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 61 90 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 626 0 2 +EndChar + +StartChar: uni1E95 +Encoding: 7829 7829 1666 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 12 +PUSHW_1 + -3 +PUSHB_5 + 12 + 13 + 1 + 9 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 500 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 520 1200 basechar 0 +AnchorPoint: "Anchor-15" 860 1260 basechar 0 +AnchorPoint: "Anchor-14" 500 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 93 122 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 500 0 2 +EndChar + +StartChar: uni1E96 +Encoding: 7830 7830 1667 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 27 +PUSHW_1 + -2 +PUSHB_5 + 27 + 28 + 19 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 550 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 75 104 N 1 0 0 1 0 0 3 +Refer: 755 817 N 1 0 0 1 572 0 2 +EndChar + +StartChar: uni1E97 +Encoding: 7831 7831 1668 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 28 + 28 + 5 + 38 + 2 + 1 + 26 +PUSHW_1 + -3 +PUSHB_5 + 26 + 24 + 7 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 380 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 260 1480 basechar 0 +AnchorPoint: "Anchor-15" 460 1480 basechar 0 +AnchorPoint: "Anchor-14" 380 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 87 116 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -34 269 2 +EndChar + +StartChar: uni1E98 +Encoding: 7832 7832 1669 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 24 + 24 + 17 + 38 + 2 + 1 + 27 +PUSHW_1 + -3 +PUSHB_5 + 27 + 21 + 8 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1000 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 740 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 90 119 N 1 0 0 1 0 0 3 +Refer: 668 730 N 1 0 0 1 444 0 2 +EndChar + +StartChar: uni1E99 +Encoding: 7833 7833 1670 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 26 + 26 + 17 + 38 + 2 + 1 + 29 + 11 + 29 + 23 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 668 730 N 1 0 0 1 231 0 2 +EndChar + +StartChar: uni1E9A +Encoding: 7834 7834 1671 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 62 + 17 + 38 + 2 + 62 +PUSHW_1 + -17 +PUSHB_5 + 62 + 59 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 640 702 N 1 0 0 1 257 0 2 +EndChar + +StartChar: uni1E9B +Encoding: 7835 7835 1672 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 17 + 17 + 2 + 38 + 1 + 15 +PUSHW_1 + -7 +PUSHB_5 + 15 + 17 + 2 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 321 383 N 1 0 0 1 0 0 3 +Refer: 667 729 N 1 0 0 1 80 293 2 +EndChar + +StartChar: uni1E9E +Encoding: 7838 7838 1673 +Width: 1439 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 6 + 16 + 35 + 3 + 34 + 27 + 27 + 28 + 18 + 34 + 34 + 12 + 0 + 28 + 0 + 38 + 39 + 17 + 35 + 35 + 15 + 96 + 89 + 18 + 35 + 35 + 32 + 4 + 32 + 21 + 95 + 89 + 32 + 4 + 28 + 18 + 4 + 9 + 95 + 89 + 4 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1347 400 m 0,0,1 + 1347 272 1347 272 1287.5 177 c 128,-1,2 + 1228 82 1228 82 1117.5 31 c 128,-1,3 + 1007 -20 1007 -20 865 -20 c 0,4,5 + 707 -20 707 -20 577 12 c 1,6,-1 + 604 170 l 1,7,8 + 711 131 711 131 853 131 c 0,9,10 + 1007 131 1007 131 1081 202 c 128,-1,11 + 1155 273 1155 273 1155 400 c 0,12,13 + 1155 540 1155 540 1071 601.5 c 128,-1,14 + 987 663 987 663 777 663 c 2,15,-1 + 708 663 l 1,16,-1 + 708 803 l 1,17,-1 + 1017 1154 l 1,18,19 + 967 1209 967 1209 881 1241.5 c 128,-1,20 + 795 1274 795 1274 709 1274 c 0,21,22 + 610 1274 610 1274 543 1251 c 128,-1,23 + 476 1228 476 1228 436 1181 c 128,-1,24 + 396 1134 396 1134 377.5 1055 c 128,-1,25 + 359 976 359 976 359 826 c 2,26,-1 + 359 0 l 1,27,-1 + 168 0 l 1,28,-1 + 168 808 l 2,29,30 + 168 1137 168 1137 297.5 1283.5 c 128,-1,31 + 427 1430 427 1430 711 1430 c 0,32,33 + 1067 1430 1067 1430 1257 1161 c 1,34,-1 + 926 806 l 1,35,36 + 1126 792 1126 792 1236.5 686 c 128,-1,37 + 1347 580 1347 580 1347 400 c 0,0,1 +EndSplineSet +EndChar + +StartChar: Adotbelow +Encoding: 7840 7840 1674 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 18 +PUSHW_1 + -14 +PUSHB_5 + 18 + 20 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1260 1540 basechar 0 +AnchorPoint: "Anchor-14" 668 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 820 0 2 +EndChar + +StartChar: adotbelow +Encoding: 7841 7841 1675 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 50 +PUSHW_1 + -52 +PUSHB_5 + 50 + 52 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 560 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 712 0 2 +EndChar + +StartChar: Ahookabove +Encoding: 7842 7842 1676 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 32 + 32 + 5 + 38 + 2 + 23 + 24 + 23 + 27 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 980 0 2 +EndChar + +StartChar: ahookabove +Encoding: 7843 7843 1677 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 64 + 64 + 17 + 38 + 2 + 55 +PUSHW_1 + -65 +PUSHB_5 + 55 + 59 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 540 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 820 -309 2 +EndChar + +StartChar: Acircumflexacute +Encoding: 7844 7844 1678 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 29 + 29 + 5 + 38 + 3 + 2 + 30 + 102 + 30 + 19 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2557 -1 N 1 0 0 1 685 0 2 +EndChar + +StartChar: acircumflexacute +Encoding: 7845 7845 1679 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 61 + 61 + 17 + 38 + 3 + 2 + 62 + 68 + 62 + 51 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 2565 -1 N 1 0 0 1 581 0 2 +EndChar + +StartChar: Acircumflexgrave +Encoding: 7846 7846 1680 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 29 + 29 + 5 + 38 + 3 + 2 + 21 +PUSHW_1 + -102 +PUSHB_5 + 21 + 24 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2558 -1 N 1 0 0 1 685 0 2 +EndChar + +StartChar: acircumflexgrave +Encoding: 7847 7847 1681 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 63 + 63 + 17 + 38 + 3 + 2 + 53 +PUSHW_1 + -135 +PUSHB_5 + 53 + 58 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 2566 -1 N 1 0 0 1 581 0 2 +EndChar + +StartChar: Acircumflexhookabove +Encoding: 7848 7848 1682 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 40 + 40 + 5 + 38 + 3 + 2 + 41 + 61 + 41 + 26 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2559 -1 N 1 0 0 1 685 0 2 +EndChar + +StartChar: acircumflexhookabove +Encoding: 7849 7849 1683 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 73 + 73 + 17 + 38 + 3 + 2 + 74 + 23 + 74 + 58 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 2567 -1 N 1 0 0 1 561 0 2 +EndChar + +StartChar: Acircumflextilde +Encoding: 7850 7850 1684 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 49 + 49 + 5 + 38 + 3 + 2 + 25 + 1 + 25 + 37 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2560 -1 N 1 0 0 1 684 0 2 +EndChar + +StartChar: acircumflextilde +Encoding: 7851 7851 1685 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 57 + 57 + 17 + 38 + 3 + 2 + 67 +PUSHW_1 + -54 +PUSHB_5 + 67 + 52 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 2568 -1 N 1 0 0 1 561 0 2 +EndChar + +StartChar: Acircumflexdotbelow +Encoding: 7852 7852 1686 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 19 + 19 + 5 + 38 + 2 + 23 + 0 + 23 + 18 + 5 + 6 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 352 0 2 +Refer: 2323 -1 N 1 0 0 1 835 0 2 +EndChar + +StartChar: acircumflexdotbelow +Encoding: 7853 7853 1687 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 54 + 54 + 17 + 38 + 2 + 55 + 0 + 55 + 50 + 3 + 20 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 222 0 2 +Refer: 2323 -1 N 1 0 0 1 727 0 2 +EndChar + +StartChar: Abreveacute +Encoding: 7854 7854 1688 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 23 + 23 + 5 + 38 + 3 + 2 + 26 + 3 + 26 + 34 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2561 -1 N 1 0 0 1 686 0 2 +EndChar + +StartChar: abreveacute +Encoding: 7855 7855 1689 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 49 + 49 + 17 + 38 + 3 + 2 + 52 +PUSHW_1 + -52 +PUSHB_5 + 52 + 58 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 2569 -1 N 1 0 0 1 561 0 2 +EndChar + +StartChar: Abrevegrave +Encoding: 7856 7856 1690 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 23 + 23 + 5 + 38 + 3 + 2 + 26 + 3 + 26 + 34 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2562 -1 N 1 0 0 1 686 0 2 +EndChar + +StartChar: abrevegrave +Encoding: 7857 7857 1691 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 49 + 49 + 17 + 38 + 3 + 2 + 52 +PUSHW_1 + -52 +PUSHB_5 + 52 + 58 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 2570 -1 N 1 0 0 1 561 0 2 +EndChar + +StartChar: Abrevehookabove +Encoding: 7858 7858 1692 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 17 + 17 + 5 + 38 + 3 + 2 + 20 + 3 + 20 + 28 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2563 -1 N 1 0 0 1 686 0 2 +EndChar + +StartChar: abrevehookabove +Encoding: 7859 7859 1693 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 49 + 49 + 17 + 38 + 3 + 2 + 52 +PUSHW_1 + -52 +PUSHB_5 + 52 + 58 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 2571 -1 N 1 0 0 1 561 0 2 +EndChar + +StartChar: Abrevetilde +Encoding: 7860 7860 1694 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 17 + 17 + 5 + 38 + 3 + 2 + 37 + 1 + 37 + 50 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2564 -1 N 1 0 0 1 684 0 2 +EndChar + +StartChar: abrevetilde +Encoding: 7861 7861 1695 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 49 + 49 + 17 + 38 + 3 + 2 + 52 +PUSHW_1 + -52 +PUSHB_5 + 52 + 58 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 2572 -1 N 1 0 0 1 561 0 2 +EndChar + +StartChar: Abrevedotbelow +Encoding: 7862 7862 1696 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 17 + 17 + 5 + 38 + 2 + 20 + 0 + 20 + 28 + 5 + 6 + 37 + 3 + 32 +PUSHW_1 + -14 +PUSHB_5 + 32 + 33 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 374 0 2 +Refer: 2323 -1 N 1 0 0 1 820 0 2 +EndChar + +StartChar: abrevedotbelow +Encoding: 7863 7863 1697 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 49 + 49 + 17 + 38 + 2 + 52 + 0 + 52 + 58 + 3 + 21 + 37 + 3 + 62 +PUSHW_1 + -52 +PUSHB_5 + 62 + 64 + 3 + 27 + 37 +CALL +SRP1 +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 68 97 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 260 0 2 +Refer: 2323 -1 N 1 0 0 1 712 0 2 +EndChar + +StartChar: Edotbelow +Encoding: 7864 7864 1698 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 13 +PUSHW_1 + -14 +PUSHB_5 + 13 + 15 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1540 basechar 0 +AnchorPoint: "Anchor-15" 1210 1540 basechar 0 +AnchorPoint: "Anchor-14" 720 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 860 0 2 +EndChar + +StartChar: edotbelow +Encoding: 7865 7865 1699 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 27 + 11 + 27 + 29 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 100 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 730 0 2 +EndChar + +StartChar: Ehookabove +Encoding: 7866 7866 1700 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 27 + 27 + 5 + 38 + 1 + 18 +PUSHW_1 + -8 +PUSHB_5 + 18 + 22 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1880 basechar 0 +AnchorPoint: "Anchor-15" 1210 1540 basechar 0 +AnchorPoint: "Anchor-14" 720 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 987 0 2 +EndChar + +StartChar: ehookabove +Encoding: 7867 7867 1701 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 41 + 41 + 17 + 38 + 2 + 32 + 10 + 32 + 36 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 850 -309 2 +EndChar + +StartChar: Etilde +Encoding: 7868 7868 1702 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 21 + 5 + 38 + 1 + 21 + 2 + 21 + 33 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 700 1880 basechar 0 +AnchorPoint: "Anchor-15" 1210 1540 basechar 0 +AnchorPoint: "Anchor-14" 720 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 390 0 2 +EndChar + +StartChar: etilde +Encoding: 7869 7869 1703 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 2 + 35 + 17 + 38 + 2 + 35 + 8 + 35 + 47 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 240 0 2 +EndChar + +StartChar: Ecircumflexacute +Encoding: 7870 7870 1704 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 24 + 24 + 5 + 38 + 2 + 1 + 25 + 102 + 25 + 14 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2557 -1 N 1 0 0 1 725 0 2 +EndChar + +StartChar: ecircumflexacute +Encoding: 7871 7871 1705 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 38 + 38 + 17 + 38 + 3 + 2 + 39 + 113 + 39 + 28 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 2565 -1 N 1 0 0 1 581 0 2 +EndChar + +StartChar: Ecircumflexgrave +Encoding: 7872 7872 1706 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 24 + 24 + 5 + 38 + 2 + 1 + 16 +PUSHW_1 + -106 +PUSHB_5 + 16 + 19 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2558 -1 N 1 0 0 1 721 0 2 +EndChar + +StartChar: ecircumflexgrave +Encoding: 7873 7873 1707 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 40 + 40 + 17 + 38 + 3 + 2 + 30 +PUSHW_1 + -89 +PUSHB_5 + 30 + 35 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 2566 -1 N 1 0 0 1 581 0 2 +EndChar + +StartChar: Ecircumflexhookabove +Encoding: 7874 7874 1708 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 35 + 35 + 5 + 38 + 2 + 1 + 36 + 41 + 36 + 21 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2559 -1 N 1 0 0 1 705 0 2 +EndChar + +StartChar: ecircumflexhookabove +Encoding: 7875 7875 1709 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 50 + 50 + 17 + 38 + 3 + 2 + 51 + 79 + 51 + 35 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 2567 -1 N 1 0 0 1 571 0 2 +EndChar + +StartChar: Ecircumflextilde +Encoding: 7876 7876 1710 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 44 + 44 + 5 + 38 + 2 + 1 + 20 +PUSHW_1 + -2 +PUSHB_5 + 20 + 32 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2560 -1 N 1 0 0 1 720 0 2 +EndChar + +StartChar: ecircumflextilde +Encoding: 7877 7877 1711 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 2 + 34 + 17 + 38 + 3 + 2 + 44 +PUSHW_1 + -9 +PUSHB_5 + 44 + 29 + 12 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 2568 -1 N 1 0 0 1 561 0 2 +EndChar + +StartChar: Ecircumflexdotbelow +Encoding: 7878 7878 1712 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 1 + 17 + 17 + 5 + 38 + 1 + 18 + 0 + 18 + 13 + 1 + 2 + 37 + 2 + 23 +PUSHW_1 + -14 +PUSHB_5 + 23 + 24 + 1 + 11 + 37 +CALL +SRP1 +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 1120 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 375 0 2 +Refer: 2323 -1 N 1 0 0 1 860 0 2 +EndChar + +StartChar: ecircumflexdotbelow +Encoding: 7879 7879 1713 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 32 + 17 + 38 +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 860 100 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 72 101 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 233 0 2 +Refer: 2323 -1 N 1 0 0 1 730 0 2 +EndChar + +StartChar: Ihookabove +Encoding: 7880 7880 1714 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 78 + 1 + 19 + 19 + 5 + 38 + 1 + 10 + 13 + 10 + 14 + 1 + 3 + 37 + 15 + 24 + 1 + 19 + 0 + 24 + 16 + 24 + 32 + 24 + 48 + 24 + 64 + 24 + 5 + 57 + 0 + 24 + 64 + 24 + 80 + 24 + 96 + 24 + 112 + 24 + 160 + 24 + 176 + 24 + 240 + 24 + 8 + 0 + 24 + 16 + 24 + 64 + 24 + 80 + 24 + 160 + 24 + 176 + 24 + 192 + 24 + 240 + 24 + 8 + 32 + 24 + 64 + 24 + 80 + 24 + 96 + 24 + 112 + 24 + 144 + 24 + 240 + 24 + 7 +DELTAP1 +DELTAP2 +DELTAP3 +SDB +DELTAP1 +SDB +DELTAP1 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 400 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 2 +Refer: 715 777 N 1 0 0 1 570 0 2 +EndChar + +StartChar: ihookabove +Encoding: 7881 7881 1715 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 54 + 1 + 19 + 19 + 17 + 38 + 1 + 10 + 0 + 10 + 14 + 1 + 3 + 37 + 31 + 24 + 159 + 24 + 223 + 24 + 255 + 24 + 4 + 79 + 24 + 223 + 24 + 2 + 31 + 24 + 1 + 0 + 24 + 112 + 24 + 128 + 24 + 176 + 24 + 192 + 24 + 224 + 24 + 6 + 144 + 24 + 160 + 24 + 176 + 24 + 192 + 24 + 240 + 24 + 5 +DELTAP2 +DELTAP3 +DELTAP1 +DELTAP2 +DELTAP3 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 2355 -1 N 1 0 0 1 0 0 2 +Refer: 715 777 N 1 0 0 1 499 -288 2 +EndChar + +StartChar: Idotbelow +Encoding: 7882 7882 1716 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 5 +PUSHW_1 + -6 +PUSHB_5 + 5 + 7 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 230 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 280 1540 basechar 0 +AnchorPoint: "Anchor-15" 401 1540 basechar 0 +AnchorPoint: "Anchor-14" 280 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 429 0 2 +EndChar + +StartChar: idotbelow +Encoding: 7883 7883 1717 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 9 + 0 + 9 + 11 + 5 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 240 1540 basechar 0 +AnchorPoint: "Anchor-15" 434 1260 basechar 0 +AnchorPoint: "Anchor-14" 230 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 76 105 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 378 0 2 +EndChar + +StartChar: Odotbelow +Encoding: 7884 7884 1718 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 28 +PUSHW_1 + -7 +PUSHB_5 + 28 + 30 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 730 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-19" 1100 1300 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 790 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 940 0 2 +EndChar + +StartChar: odotbelow +Encoding: 7885 7885 1719 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 24 +PUSHW_1 + -10 +PUSHB_5 + 24 + 26 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 500 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 800 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 960 1260 basechar 0 +AnchorPoint: "Anchor-14" 560 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 710 0 2 +EndChar + +StartChar: Ohookabove +Encoding: 7886 7886 1720 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 42 + 42 + 5 + 38 + 2 + 33 + 11 + 33 + 37 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +AnchorPoint: "Anchor-19" 1100 1300 basechar 0 +AnchorPoint: "Anchor-16" 800 1880 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 790 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 1080 0 2 +EndChar + +StartChar: ohookabove +Encoding: 7887 7887 1721 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 38 + 38 + 17 + 38 + 2 + 29 +PUSHW_1 + -3 +PUSHB_5 + 29 + 33 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 800 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 839 -288 2 +EndChar + +StartChar: Ocircumflexacute +Encoding: 7888 7888 1722 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 39 + 39 + 5 + 38 + 3 + 2 + 40 + 100 + 40 + 29 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2557 -1 N 1 0 0 1 796 0 2 +EndChar + +StartChar: ocircumflexacute +Encoding: 7889 7889 1723 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 35 + 35 + 17 + 38 + 3 + 2 + 36 + 99 + 36 + 25 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 2565 -1 N 1 0 0 1 569 0 2 +EndChar + +StartChar: Ocircumflexgrave +Encoding: 7890 7890 1724 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 39 + 39 + 5 + 38 + 3 + 2 + 31 +PUSHW_1 + -104 +PUSHB_5 + 31 + 34 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2558 -1 N 1 0 0 1 796 0 2 +EndChar + +StartChar: ocircumflexgrave +Encoding: 7891 7891 1725 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 37 + 37 + 17 + 38 + 3 + 2 + 27 +PUSHW_1 + -103 +PUSHB_5 + 27 + 32 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 2566 -1 N 1 0 0 1 569 0 2 +EndChar + +StartChar: Ocircumflexhookabove +Encoding: 7892 7892 1726 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 50 + 50 + 5 + 38 + 3 + 2 + 51 + 59 + 51 + 36 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2559 -1 N 1 0 0 1 796 0 2 +EndChar + +StartChar: ocircumflexhookabove +Encoding: 7893 7893 1727 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 47 + 47 + 17 + 38 + 3 + 2 + 48 + 67 + 48 + 32 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 2567 -1 N 1 0 0 1 561 0 2 +EndChar + +StartChar: Ocircumflextilde +Encoding: 7894 7894 1728 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 59 + 59 + 5 + 38 + 3 + 2 + 35 + 0 + 35 + 47 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2560 -1 N 1 0 0 1 796 0 2 +EndChar + +StartChar: ocircumflextilde +Encoding: 7895 7895 1729 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 31 + 31 + 17 + 38 + 3 + 2 + 41 +PUSHW_1 + -11 +PUSHB_5 + 41 + 26 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 2568 -1 N 1 0 0 1 561 0 2 +EndChar + +StartChar: Ocircumflexdotbelow +Encoding: 7896 7896 1730 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 32 + 32 + 5 + 38 + 2 + 34 + 0 + 34 + 28 + 8 + 0 + 37 + 3 + 38 +PUSHW_1 + -7 +PUSHB_5 + 38 + 39 + 8 + 0 + 37 +CALL +SRP1 +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 730 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1593 1540 basechar 0 +AnchorPoint: "Anchor-20" 1593 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 0 0 3 +Refer: 2304 -1 N 1 0 0 1 456 5 2 +Refer: 2323 -1 N 1 0 0 1 940 0 2 +EndChar + +StartChar: ocircumflexdotbelow +Encoding: 7897 7897 1731 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 28 + 28 + 17 + 38 + 2 + 29 + 0 + 29 + 24 + 6 + 0 + 37 + 3 + 34 +PUSHW_1 + -10 +PUSHB_5 + 34 + 35 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 500 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 648 710 N 1 0 0 1 224 0 2 +Refer: 2323 -1 N 1 0 0 1 710 0 2 +EndChar + +StartChar: Ohornacute +Encoding: 7898 7898 1732 +Width: 1756 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 43 + 43 + 5 + 38 + 2 + 39 +PUSHW_1 + -50 +PUSHB_5 + 39 + 42 + 8 + 21 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1756 1540 basechar 0 +AnchorPoint: "Anchor-20" 1756 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 354 416 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 569 0 2 +EndChar + +StartChar: ohornacute +Encoding: 7899 7899 1733 +Width: 1343 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 38 + 38 + 17 + 38 + 2 + 34 +PUSHW_1 + -43 +PUSHB_5 + 34 + 37 + 6 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1343 1540 basechar 0 +AnchorPoint: "Anchor-20" 1343 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 355 417 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 357 0 2 +EndChar + +StartChar: Ohorngrave +Encoding: 7900 7900 1734 +Width: 1756 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 43 + 43 + 5 + 38 + 2 + 40 +PUSHW_1 + -157 +PUSHB_5 + 40 + 43 + 8 + 21 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1756 1540 basechar 0 +AnchorPoint: "Anchor-20" 1756 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 354 416 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 428 0 2 +EndChar + +StartChar: ohorngrave +Encoding: 7901 7901 1735 +Width: 1343 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 38 + 38 + 17 + 38 + 2 + 35 +PUSHW_1 + -197 +PUSHB_5 + 35 + 38 + 6 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1343 1540 basechar 0 +AnchorPoint: "Anchor-20" 1343 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 355 417 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 169 0 2 +EndChar + +StartChar: Ohornhookabove +Encoding: 7902 7902 1736 +Width: 1756 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 53 + 53 + 5 + 38 + 2 + 44 +PUSHW_1 + -95 +PUSHB_5 + 44 + 48 + 8 + 21 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1756 1540 basechar 0 +AnchorPoint: "Anchor-20" 1756 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 354 416 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 1080 0 2 +EndChar + +StartChar: ohornhookabove +Encoding: 7903 7903 1737 +Width: 1343 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 48 + 48 + 17 + 38 + 2 + 39 +PUSHW_1 + -118 +PUSHB_5 + 39 + 43 + 6 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1343 1540 basechar 0 +AnchorPoint: "Anchor-20" 1343 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 355 417 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 839 -288 2 +EndChar + +StartChar: Ohorntilde +Encoding: 7904 7904 1738 +Width: 1756 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 47 + 5 + 38 + 2 + 47 +PUSHW_1 + -108 +PUSHB_5 + 47 + 59 + 8 + 21 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 920 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1756 1540 basechar 0 +AnchorPoint: "Anchor-20" 1756 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 354 416 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 459 0 2 +EndChar + +StartChar: ohorntilde +Encoding: 7905 7905 1739 +Width: 1343 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 42 + 17 + 38 + 2 + 42 +PUSHW_1 + -105 +PUSHB_5 + 42 + 54 + 6 + 17 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1343 1540 basechar 0 +AnchorPoint: "Anchor-20" 1343 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 355 417 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 244 0 2 +EndChar + +StartChar: Ohorndotbelow +Encoding: 7906 7906 1740 +Width: 1756 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 39 +PUSHW_1 + -114 +PUSHB_5 + 39 + 41 + 8 + 21 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 730 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1756 1540 basechar 0 +AnchorPoint: "Anchor-20" 1756 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 354 416 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 940 0 2 +EndChar + +StartChar: ohorndotbelow +Encoding: 7907 7907 1741 +Width: 1343 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 34 +PUSHW_1 + -122 +PUSHB_5 + 34 + 36 + 6 + 17 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 500 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1343 1540 basechar 0 +AnchorPoint: "Anchor-20" 1343 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 355 417 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 713 0 2 +EndChar + +StartChar: Udotbelow +Encoding: 7908 7908 1742 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 21 +PUSHW_1 + -12 +PUSHB_5 + 21 + 23 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1260 1300 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1330 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 878 0 2 +EndChar + +StartChar: udotbelow +Encoding: 7909 7909 1743 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 28 +PUSHW_1 + -39 +PUSHB_5 + 28 + 30 + 26 + 13 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 860 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 1000 basechar 0 +AnchorPoint: "Anchor-16" 560 1200 basechar 0 +AnchorPoint: "Anchor-15" 1020 1260 basechar 0 +AnchorPoint: "Anchor-14" 530 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 680 0 2 +EndChar + +StartChar: Uhookabove +Encoding: 7910 7910 1744 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 35 + 35 + 5 + 38 + 1 + 26 +PUSHW_1 + -12 +PUSHB_5 + 26 + 30 + 5 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-19" 1260 1300 basechar 0 +AnchorPoint: "Anchor-16" 730 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 56 85 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 1000 0 2 +EndChar + +StartChar: uhookabove +Encoding: 7911 7911 1745 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 42 + 42 + 17 + 38 + 1 + 33 +PUSHW_1 + -1 +PUSHB_5 + 33 + 37 + 26 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-19" 910 1000 basechar 0 +AnchorPoint: "Anchor-16" 560 1580 basechar 0 +AnchorPoint: "Anchor-15" 1020 1260 basechar 0 +AnchorPoint: "Anchor-14" 530 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 88 117 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 839 -288 2 +EndChar + +StartChar: Uhornacute +Encoding: 7912 7912 1746 +Width: 1749 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 36 + 36 + 5 + 38 + 1 + 32 +PUSHW_1 + -92 +PUSHB_5 + 32 + 35 + 5 + 23 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1749 1540 basechar 0 +AnchorPoint: "Anchor-20" 1749 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 369 431 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 535 0 2 +EndChar + +StartChar: uhornacute +Encoding: 7913 7913 1747 +Width: 1371 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 43 + 43 + 17 + 38 + 1 + 39 +PUSHW_1 + -43 +PUSHB_5 + 39 + 42 + 37 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1371 1540 basechar 0 +AnchorPoint: "Anchor-20" 1371 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 370 432 N 1 0 0 1 0 0 3 +Refer: 118 180 N 1 0 0 1 393 0 2 +EndChar + +StartChar: Uhorngrave +Encoding: 7914 7914 1748 +Width: 1749 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 36 + 36 + 5 + 38 + 1 + 33 +PUSHW_1 + -247 +PUSHB_5 + 33 + 36 + 5 + 23 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1749 1540 basechar 0 +AnchorPoint: "Anchor-20" 1749 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 369 431 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 346 0 2 +EndChar + +StartChar: uhorngrave +Encoding: 7915 7915 1749 +Width: 1371 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 43 + 43 + 17 + 38 + 1 + 40 +PUSHW_1 + -266 +PUSHB_5 + 40 + 43 + 37 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1371 1540 basechar 0 +AnchorPoint: "Anchor-20" 1371 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 370 432 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 136 0 2 +EndChar + +StartChar: Uhornhookabove +Encoding: 7916 7916 1750 +Width: 1749 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 46 + 46 + 5 + 38 + 1 + 37 +PUSHW_1 + -163 +PUSHB_5 + 37 + 41 + 5 + 23 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1749 1540 basechar 0 +AnchorPoint: "Anchor-20" 1749 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 369 431 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 1020 0 2 +EndChar + +StartChar: uhornhookabove +Encoding: 7917 7917 1751 +Width: 1371 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 53 + 53 + 17 + 38 + 1 + 44 +PUSHW_1 + -154 +PUSHB_5 + 44 + 48 + 37 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1371 1540 basechar 0 +AnchorPoint: "Anchor-20" 1371 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 370 432 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 839 -288 2 +EndChar + +StartChar: Uhorntilde +Encoding: 7918 7918 1752 +Width: 1749 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 40 + 5 + 38 + 1 + 40 +PUSHW_1 + -151 +PUSHB_5 + 40 + 52 + 5 + 23 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 830 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1749 1540 basechar 0 +AnchorPoint: "Anchor-20" 1749 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 369 431 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 424 0 2 +EndChar + +StartChar: uhorntilde +Encoding: 7919 7919 1753 +Width: 1371 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 47 + 17 + 38 + 1 + 47 +PUSHW_1 + -145 +PUSHB_5 + 47 + 59 + 37 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 850 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1371 1540 basechar 0 +AnchorPoint: "Anchor-20" 1371 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 370 432 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 240 0 2 +EndChar + +StartChar: Uhorndotbelow +Encoding: 7920 7920 1754 +Width: 1749 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 32 +PUSHW_1 + -188 +PUSHB_5 + 32 + 34 + 5 + 23 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 680 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1749 1540 basechar 0 +AnchorPoint: "Anchor-20" 1749 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 369 431 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 874 0 2 +EndChar + +StartChar: uhorndotbelow +Encoding: 7921 7921 1755 +Width: 1371 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 1 + 39 +PUSHW_1 + -186 +PUSHB_5 + 39 + 41 + 37 + 18 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 860 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1371 1540 basechar 0 +AnchorPoint: "Anchor-20" 1371 -380 basechar 0 +LayerCount: 2 +Fore +Refer: 370 432 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 685 0 2 +EndChar + +StartChar: Ygrave +Encoding: 7922 7922 1756 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 9 + 9 + 5 + 38 + 1 + 10 +PUSHW_1 + -75 +PUSHB_5 + 10 + 13 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 652 1840 basechar 0 +AnchorPoint: "Anchor-15" 1314 1540 basechar 0 +AnchorPoint: "Anchor-14" 679 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 2302 -1 N 1 0 0 1 290 0 2 +EndChar + +StartChar: ygrave +Encoding: 7923 7923 1757 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 23 + 23 + 17 + 38 + 1 + 24 +PUSHW_1 + -89 +PUSHB_5 + 24 + 27 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 980 1200 basechar 0 +AnchorPoint: "Anchor-14" 540 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 67 96 N 1 0 0 1 105 0 2 +EndChar + +StartChar: Ydotbelow +Encoding: 7924 7924 1758 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 10 + 0 + 10 + 12 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 620 -310 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1314 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 834 0 2 +EndChar + +StartChar: ydotbelow +Encoding: 7925 7925 1759 +Width: 1024 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 1050 1260 basechar 0 +AnchorPoint: "Anchor-14" 810 -440 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 2323 -1 N 1 0 0 1 960 0 2 +EndChar + +StartChar: Yhookabove +Encoding: 7926 7926 1760 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 24 + 24 + 5 + 38 + 1 + 15 + 5 + 15 + 19 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 961 0 2 +EndChar + +StartChar: yhookabove +Encoding: 7927 7927 1761 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 38 + 38 + 17 + 38 + 1 + 29 + 4 + 29 + 33 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 640 1540 basechar 0 +AnchorPoint: "Anchor-15" 1200 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 715 777 N 1 0 0 1 789 -288 2 +EndChar + +StartChar: Ytilde +Encoding: 7928 7928 1762 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 18 + 5 + 38 + 1 + 18 + 12 + 18 + 30 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 600 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1540 basechar 0 +AnchorPoint: "Anchor-15" 1000 1540 basechar 0 +AnchorPoint: "Anchor-14" 680 -130 basechar 0 +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 2307 -1 N 1 0 0 1 360 0 2 +EndChar + +StartChar: ytilde +Encoding: 7929 7929 1763 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 32 + 17 + 38 + 1 + 32 + 19 + 32 + 44 + 9 + 18 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-25" 200 -400 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 580 -540 basechar 0 +LayerCount: 2 +Fore +Refer: 92 121 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 196 0 2 +EndChar + +StartChar: uni1F00 +Encoding: 7936 7936 1764 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 44 + 17 + 38 + 2 + 44 +PUSHW_1 + -41 +PUSHB_5 + 44 + 40 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 220 100 2 +EndChar + +StartChar: uni1F01 +Encoding: 7937 7937 1765 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 45 + 45 + 17 + 38 + 2 + 49 +PUSHW_1 + -62 +PUSHB_5 + 49 + 44 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 206 100 2 +EndChar + +StartChar: uni1F02 +Encoding: 7938 7938 1766 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 2 + 50 + 17 + 38 + 3 + 2 + 50 +PUSHW_1 + -53 +PUSHB_5 + 50 + 40 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 220 100 2 +EndChar + +StartChar: uni1F03 +Encoding: 7939 7939 1767 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 51 + 51 + 17 + 38 + 3 + 2 + 55 +PUSHW_1 + -73 +PUSHB_5 + 55 + 40 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 200 100 2 +EndChar + +StartChar: uni1F04 +Encoding: 7940 7940 1768 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 2 + 50 + 17 + 38 + 3 + 2 + 50 + 11 + 50 + 41 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 280 100 2 +EndChar + +StartChar: uni1F05 +Encoding: 7941 7941 1769 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 51 + 51 + 17 + 38 + 3 + 2 + 55 + 11 + 55 + 41 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 280 100 2 +EndChar + +StartChar: uni1F06 +Encoding: 7942 7942 1770 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 69 + 69 + 17 + 38 + 3 + 2 + 48 +PUSHW_1 + -54 +PUSHB_5 + 48 + 61 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1955 8143 N 1 0 0 1 210 70 2 +EndChar + +StartChar: uni1F07 +Encoding: 7943 7943 1771 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 70 + 70 + 17 + 38 + 3 + 2 + 48 +PUSHW_1 + -54 +PUSHB_5 + 48 + 61 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1968 8159 N 1 0 0 1 210 60 2 +EndChar + +StartChar: uni1F08 +Encoding: 7944 7944 1772 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 -119 0 2 +EndChar + +StartChar: uni1F09 +Encoding: 7945 7945 1773 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 -109 0 2 +EndChar + +StartChar: uni1F0A +Encoding: 7946 7946 1774 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 22 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1953 8141 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1F0B +Encoding: 7947 7947 1775 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 22 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1966 8157 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1F0C +Encoding: 7948 7948 1776 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1954 8142 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1F0D +Encoding: 7949 7949 1777 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1967 8158 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1F0E +Encoding: 7950 7950 1778 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1955 8143 N 1 0 0 1 80 0 2 +EndChar + +StartChar: uni1F0F +Encoding: 7951 7951 1779 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1968 8159 N 1 0 0 1 80 0 2 +EndChar + +StartChar: uni1F10 +Encoding: 7952 7952 1780 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 44 + 17 + 38 + 1 + 44 + 6 + 44 + 40 + 10 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 871 949 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 134 100 2 +EndChar + +StartChar: uni1F11 +Encoding: 7953 7953 1781 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 45 + 45 + 17 + 38 + 1 + 49 + 12 + 49 + 44 + 10 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 871 949 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 147 100 2 +EndChar + +StartChar: uni1F12 +Encoding: 7954 7954 1782 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 1 + 50 + 17 + 38 + 2 + 1 + 50 +PUSHW_1 + -40 +PUSHB_5 + 50 + 40 + 10 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 871 949 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 100 100 2 +EndChar + +StartChar: uni1F13 +Encoding: 7955 7955 1783 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 51 + 51 + 17 + 38 + 2 + 1 + 55 +PUSHW_1 + -40 +PUSHB_5 + 55 + 40 + 10 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 871 949 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 100 100 2 +EndChar + +StartChar: uni1F14 +Encoding: 7956 7956 1784 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 50 + 17 + 38 + 2 + 1 + 50 + 5 + 50 + 41 + 10 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 871 949 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 140 100 2 +EndChar + +StartChar: uni1F15 +Encoding: 7957 7957 1785 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 51 + 51 + 17 + 38 + 2 + 1 + 55 + 5 + 55 + 41 + 10 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 871 949 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 140 100 2 +EndChar + +StartChar: uni1F18 +Encoding: 7960 7960 1786 +Width: 1566 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 200 0 2 +Refer: 1938 8125 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F19 +Encoding: 7961 7961 1787 +Width: 1566 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 200 0 2 +Refer: 1996 8190 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F1A +Encoding: 7962 7962 1788 +Width: 1900 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 600 0 2 +Refer: 1953 8141 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F1B +Encoding: 7963 7963 1789 +Width: 1900 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 600 0 2 +Refer: 1966 8157 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F1C +Encoding: 7964 7964 1790 +Width: 1900 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 600 0 2 +Refer: 1954 8142 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F1D +Encoding: 7965 7965 1791 +Width: 1900 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 600 0 2 +Refer: 1967 8158 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F20 +Encoding: 7968 7968 1792 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 31 + 17 + 38 + 1 + 31 + 14 + 31 + 27 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 226 100 2 +EndChar + +StartChar: uni1F21 +Encoding: 7969 7969 1793 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 32 + 32 + 17 + 38 + 1 + 36 + 18 + 36 + 31 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 237 100 2 +EndChar + +StartChar: uni1F22 +Encoding: 7970 7970 1794 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 1 + 37 + 17 + 38 + 2 + 1 + 37 +PUSHW_1 + -24 +PUSHB_5 + 37 + 27 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 200 100 2 +EndChar + +StartChar: uni1F23 +Encoding: 7971 7971 1795 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 38 + 38 + 17 + 38 + 2 + 1 + 42 +PUSHW_1 + -24 +PUSHB_5 + 42 + 27 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 200 100 2 +EndChar + +StartChar: uni1F24 +Encoding: 7972 7972 1796 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 37 + 17 + 38 + 2 + 1 + 37 + 91 + 37 + 28 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 310 100 2 +EndChar + +StartChar: uni1F25 +Encoding: 7973 7973 1797 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 38 + 38 + 17 + 38 + 2 + 1 + 42 + 47 + 42 + 28 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 266 100 2 +EndChar + +StartChar: uni1F26 +Encoding: 7974 7974 1798 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 56 + 56 + 17 + 38 + 2 + 1 + 35 + 11 + 35 + 48 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1955 8143 N 1 0 0 1 226 60 2 +EndChar + +StartChar: uni1F27 +Encoding: 7975 7975 1799 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 57 + 57 + 17 + 38 + 2 + 1 + 35 + 22 + 35 + 48 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1968 8159 N 1 0 0 1 237 60 2 +EndChar + +StartChar: uni1F28 +Encoding: 7976 7976 1800 +Width: 1679 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 200 0 2 +Refer: 1938 8125 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F29 +Encoding: 7977 7977 1801 +Width: 1679 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 200 0 2 +Refer: 1996 8190 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F2A +Encoding: 7978 7978 1802 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1953 8141 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F2B +Encoding: 7979 7979 1803 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1966 8157 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1F2C +Encoding: 7980 7980 1804 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1954 8142 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F2D +Encoding: 7981 7981 1805 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1967 8158 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F2E +Encoding: 7982 7982 1806 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 47 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1955 8143 N 1 0 0 1 11 0 2 +EndChar + +StartChar: uni1F2F +Encoding: 7983 7983 1807 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 47 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1968 8159 N 1 0 0 1 11 0 2 +EndChar + +StartChar: uni1F30 +Encoding: 7984 7984 1808 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 15 + 17 + 38 + 1 + 15 +PUSHW_1 + -21 +PUSHB_5 + 15 + 11 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 -99 100 2 +EndChar + +StartChar: uni1F31 +Encoding: 7985 7985 1809 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 16 + 16 + 17 + 38 + 1 + 20 +PUSHW_1 + -28 +PUSHB_5 + 20 + 15 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 -99 100 2 +EndChar + +StartChar: uni1F32 +Encoding: 7986 7986 1810 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 1 + 21 + 17 + 38 + 2 + 1 + 21 +PUSHW_1 + -54 +PUSHB_5 + 21 + 11 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 -119 100 2 +EndChar + +StartChar: uni1F33 +Encoding: 7987 7987 1811 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 22 + 22 + 17 + 38 + 2 + 1 + 26 +PUSHW_1 + -54 +PUSHB_5 + 26 + 11 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 -119 100 2 +EndChar + +StartChar: uni1F34 +Encoding: 7988 7988 1812 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 21 + 17 + 38 + 2 + 1 + 21 + 31 + 21 + 12 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 -39 100 2 +EndChar + +StartChar: uni1F35 +Encoding: 7989 7989 1813 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 22 + 22 + 17 + 38 + 2 + 1 + 26 + 31 + 26 + 12 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 -39 100 2 +EndChar + +StartChar: uni1F36 +Encoding: 7990 7990 1814 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 40 + 40 + 17 + 38 + 2 + 1 + 19 +PUSHW_1 + -24 +PUSHB_5 + 19 + 32 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1955 8143 N 1 0 0 1 -99 100 2 +EndChar + +StartChar: uni1F37 +Encoding: 7991 7991 1815 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 41 + 41 + 17 + 38 + 2 + 1 + 19 +PUSHW_1 + -24 +PUSHB_5 + 19 + 32 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1968 8159 N 1 0 0 1 -99 100 2 +EndChar + +StartChar: uni1F38 +Encoding: 7992 7992 1816 +Width: 769 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 4 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 200 0 2 +Refer: 1938 8125 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F39 +Encoding: 7993 7993 1817 +Width: 769 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 4 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 200 0 2 +Refer: 1996 8190 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F3A +Encoding: 7994 7994 1818 +Width: 1169 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 9 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 600 0 2 +Refer: 1953 8141 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F3B +Encoding: 7995 7995 1819 +Width: 1169 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 9 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 600 0 2 +Refer: 1966 8157 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F3C +Encoding: 7996 7996 1820 +Width: 1169 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 4 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 600 0 2 +Refer: 1954 8142 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F3D +Encoding: 7997 7997 1821 +Width: 1169 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 4 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 600 0 2 +Refer: 1967 8158 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F3E +Encoding: 7998 7998 1822 +Width: 1169 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 39 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 600 0 2 +Refer: 1955 8143 N 1 0 0 1 11 0 2 +EndChar + +StartChar: uni1F3F +Encoding: 7999 7999 1823 +Width: 1169 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 39 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 600 0 2 +Refer: 1968 8159 N 1 0 0 1 11 0 2 +EndChar + +StartChar: uni1F40 +Encoding: 8000 8000 1824 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 28 + 17 + 38 + 2 + 28 +PUSHW_1 + -3 +PUSHB_5 + 28 + 24 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 222 100 2 +EndChar + +StartChar: uni1F41 +Encoding: 8001 8001 1825 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 29 + 29 + 17 + 38 + 2 + 33 +PUSHW_1 + -10 +PUSHB_5 + 33 + 28 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 222 100 2 +EndChar + +StartChar: uni1F42 +Encoding: 8002 8002 1826 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 2 + 34 + 17 + 38 + 3 + 2 + 34 +PUSHW_1 + -37 +PUSHB_5 + 34 + 24 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 200 100 2 +EndChar + +StartChar: uni1F43 +Encoding: 8003 8003 1827 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 35 + 35 + 17 + 38 + 3 + 2 + 39 +PUSHW_1 + -37 +PUSHB_5 + 39 + 24 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 200 100 2 +EndChar + +StartChar: uni1F44 +Encoding: 8004 8004 1828 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 2 + 34 + 17 + 38 + 3 + 2 + 34 + 47 + 34 + 25 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 280 100 2 +EndChar + +StartChar: uni1F45 +Encoding: 8005 8005 1829 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 35 + 35 + 17 + 38 + 3 + 2 + 39 + 47 + 39 + 25 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 280 100 2 +EndChar + +StartChar: uni1F48 +Encoding: 8008 8008 1830 +Width: 1693 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 27 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 100 0 2 +Refer: 1938 8125 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F49 +Encoding: 8009 8009 1831 +Width: 1693 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 37 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 100 0 2 +Refer: 1996 8190 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F4A +Encoding: 8010 8010 1832 +Width: 2093 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 43 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 500 0 2 +Refer: 1953 8141 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F4B +Encoding: 8011 8011 1833 +Width: 2093 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 43 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 500 0 2 +Refer: 1966 8157 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F4C +Encoding: 8012 8012 1834 +Width: 1993 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 43 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 400 0 2 +Refer: 1954 8142 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F4D +Encoding: 8013 8013 1835 +Width: 1993 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 43 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 50 79 N 1 0 0 1 400 0 2 +Refer: 1967 8158 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F50 +Encoding: 8016 8016 1836 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 27 + 17 + 38 + 1 + 27 +PUSHW_1 + -18 +PUSHB_5 + 27 + 23 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 215 100 2 +EndChar + +StartChar: uni1F51 +Encoding: 8017 8017 1837 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 28 + 28 + 17 + 38 + 1 + 32 +PUSHW_1 + -30 +PUSHB_5 + 32 + 27 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 210 100 2 +EndChar + +StartChar: uni1F52 +Encoding: 8018 8018 1838 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 1 + 33 + 17 + 38 + 2 + 1 + 33 +PUSHW_1 + -45 +PUSHB_5 + 33 + 23 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 200 100 2 +EndChar + +StartChar: uni1F53 +Encoding: 8019 8019 1839 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 34 + 34 + 17 + 38 + 2 + 1 + 38 +PUSHW_1 + -45 +PUSHB_5 + 38 + 23 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 200 100 2 +EndChar + +StartChar: uni1F54 +Encoding: 8020 8020 1840 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 33 + 17 + 38 + 2 + 1 + 33 + 59 + 33 + 24 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 300 100 2 +EndChar + +StartChar: uni1F55 +Encoding: 8021 8021 1841 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 34 + 34 + 17 + 38 + 2 + 1 + 38 + 59 + 38 + 24 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 300 100 2 +EndChar + +StartChar: uni1F56 +Encoding: 8022 8022 1842 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 52 + 52 + 17 + 38 + 2 + 1 + 31 +PUSHW_1 + -21 +PUSHB_5 + 31 + 44 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1955 8143 N 1 0 0 1 215 60 2 +EndChar + +StartChar: uni1F57 +Encoding: 8023 8023 1843 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 53 + 53 + 17 + 38 + 2 + 1 + 31 +PUSHW_1 + -26 +PUSHB_5 + 31 + 44 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1968 8159 N 1 0 0 1 210 60 2 +EndChar + +StartChar: uni1F59 +Encoding: 8025 8025 1844 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 19 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 300 0 2 +Refer: 1996 8190 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F5B +Encoding: 8027 8027 1845 +Width: 1966 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 25 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 600 0 2 +Refer: 1966 8157 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F5D +Encoding: 8029 8029 1846 +Width: 2066 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 25 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 700 0 2 +Refer: 1967 8158 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F5F +Encoding: 8031 8031 1847 +Width: 1966 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 34 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 600 0 2 +Refer: 1968 8159 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1F60 +Encoding: 8032 8032 1848 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 48 + 17 + 38 + 1 + 48 +PUSHW_1 + -4 +PUSHB_5 + 48 + 44 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 450 100 2 +EndChar + +StartChar: uni1F61 +Encoding: 8033 8033 1849 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 49 + 49 + 17 + 38 + 1 + 53 +PUSHW_1 + -31 +PUSHB_5 + 53 + 48 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 430 100 2 +EndChar + +StartChar: uni1F62 +Encoding: 8034 8034 1850 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 1 + 54 + 17 + 38 + 2 + 1 + 54 +PUSHW_1 + -17 +PUSHB_5 + 54 + 44 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 450 100 2 +EndChar + +StartChar: uni1F63 +Encoding: 8035 8035 1851 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 55 + 55 + 17 + 38 + 2 + 1 + 59 +PUSHW_1 + -17 +PUSHB_5 + 59 + 44 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 450 100 2 +EndChar + +StartChar: uni1F64 +Encoding: 8036 8036 1852 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 54 + 17 + 38 + 2 + 1 + 54 + 38 + 54 + 45 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 500 100 2 +EndChar + +StartChar: uni1F65 +Encoding: 8037 8037 1853 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 55 + 55 + 17 + 38 + 2 + 1 + 59 + 38 + 59 + 45 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 500 100 2 +EndChar + +StartChar: uni1F66 +Encoding: 8038 8038 1854 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 73 + 73 + 17 + 38 + 2 + 1 + 52 +PUSHW_1 + -7 +PUSHB_5 + 52 + 65 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1955 8143 N 1 0 0 1 450 100 2 +EndChar + +StartChar: uni1F67 +Encoding: 8039 8039 1855 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 74 + 74 + 17 + 38 + 2 + 1 + 52 +PUSHW_1 + -27 +PUSHB_5 + 52 + 65 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1968 8159 N 1 0 0 1 430 100 2 +EndChar + +StartChar: uni1F68 +Encoding: 8040 8040 1856 +Width: 1631 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 46 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 100 0 2 +Refer: 1938 8125 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F69 +Encoding: 8041 8041 1857 +Width: 1631 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 46 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 100 0 2 +Refer: 1996 8190 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1F6A +Encoding: 8042 8042 1858 +Width: 2031 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 500 0 2 +Refer: 1953 8141 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F6B +Encoding: 8043 8043 1859 +Width: 2031 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 500 0 2 +Refer: 1966 8157 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F6C +Encoding: 8044 8044 1860 +Width: 1931 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 400 0 2 +Refer: 1954 8142 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F6D +Encoding: 8045 8045 1861 +Width: 1931 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 400 0 2 +Refer: 1967 8158 N 1 0 0 1 -18 0 2 +EndChar + +StartChar: uni1F6E +Encoding: 8046 8046 1862 +Width: 1931 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 71 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 400 0 2 +Refer: 1955 8143 N 1 0 0 1 -6 0 2 +EndChar + +StartChar: uni1F6F +Encoding: 8047 8047 1863 +Width: 1931 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 71 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 400 0 2 +Refer: 1968 8159 N 1 0 0 1 -6 0 2 +EndChar + +StartChar: uni1F70 +Encoding: 8048 8048 1864 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 44 + 44 + 17 + 38 + 2 + 41 +PUSHW_1 + -128 +PUSHB_5 + 41 + 44 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 136 0 2 +EndChar + +StartChar: uni1F71 +Encoding: 8049 8049 1865 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 44 + 44 + 17 + 38 + 2 + 40 +PUSHW_1 + -1 +PUSHB_5 + 40 + 43 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 261 0 2 +EndChar + +StartChar: uni1F72 +Encoding: 8050 8050 1866 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 44 + 44 + 17 + 38 + 1 + 41 +PUSHW_1 + -82 +PUSHB_5 + 41 + 44 + 10 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 871 949 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 49 0 2 +EndChar + +StartChar: uni1F73 +Encoding: 8051 8051 1867 +Width: 913 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 44 + 44 + 17 + 38 + 1 + 40 + 34 + 40 + 43 + 10 + 4 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 871 949 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 163 0 2 +EndChar + +StartChar: uni1F74 +Encoding: 8052 8052 1868 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 31 + 31 + 17 + 38 + 1 + 28 +PUSHW_1 + -48 +PUSHB_5 + 28 + 31 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 167 0 2 +EndChar + +StartChar: uni1F75 +Encoding: 8053 8053 1869 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 31 + 31 + 17 + 38 + 1 + 27 + 78 + 27 + 30 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 291 0 2 +EndChar + +StartChar: uni1F76 +Encoding: 8054 8054 1870 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 15 + 15 + 17 + 38 + 1 + 12 +PUSHW_1 + -113 +PUSHB_5 + 12 + 15 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 -187 0 2 +EndChar + +StartChar: uni1F77 +Encoding: 8055 8055 1871 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 15 + 15 + 17 + 38 + 1 + 11 + 12 + 11 + 14 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 -64 0 2 +EndChar + +StartChar: uni1F78 +Encoding: 8056 8056 1872 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 28 + 28 + 17 + 38 + 2 + 25 +PUSHW_1 + -69 +PUSHB_5 + 25 + 28 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 159 0 2 +EndChar + +StartChar: uni1F79 +Encoding: 8057 8057 1873 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 28 + 28 + 17 + 38 + 2 + 24 + 40 + 24 + 27 + 6 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 82 111 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 267 0 2 +EndChar + +StartChar: uni1F7A +Encoding: 8058 8058 1874 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 27 + 27 + 17 + 38 + 1 + 24 +PUSHW_1 + -109 +PUSHB_5 + 24 + 27 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 127 0 2 +EndChar + +StartChar: uni1F7B +Encoding: 8059 8059 1875 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 27 + 27 + 17 + 38 + 1 + 23 + 18 + 23 + 26 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 253 0 2 +EndChar + +StartChar: uni1F7C +Encoding: 8060 8060 1876 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 48 + 48 + 17 + 38 + 1 + 45 +PUSHW_1 + -91 +PUSHB_5 + 45 + 48 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 367 0 2 +EndChar + +StartChar: uni1F7D +Encoding: 8061 8061 1877 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 48 + 48 + 17 + 38 + 1 + 44 + 75 + 44 + 47 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 531 0 2 +EndChar + +StartChar: uni1F80 +Encoding: 8064 8064 1878 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 44 + 17 + 38 + 2 + 44 +PUSHW_1 + -41 +PUSHB_5 + 44 + 40 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 200 100 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1F81 +Encoding: 8065 8065 1879 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 45 + 45 + 17 + 38 + 2 + 49 +PUSHW_1 + -62 +PUSHB_5 + 49 + 44 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 186 100 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1F82 +Encoding: 8066 8066 1880 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 2 + 50 + 17 + 38 + 3 + 2 + 50 +PUSHW_1 + -53 +PUSHB_5 + 50 + 40 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 200 100 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1F83 +Encoding: 8067 8067 1881 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 51 + 51 + 17 + 38 + 3 + 2 + 55 +PUSHW_1 + -73 +PUSHB_5 + 55 + 40 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 200 100 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1F84 +Encoding: 8068 8068 1882 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 2 + 50 + 17 + 38 + 3 + 2 + 50 + 11 + 50 + 41 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 275 100 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1F85 +Encoding: 8069 8069 1883 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 3 + 2 + 51 + 51 + 17 + 38 + 3 + 2 + 55 + 11 + 55 + 41 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 275 100 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1F86 +Encoding: 8070 8070 1884 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 69 + 69 + 17 + 38 + 3 + 2 + 48 +PUSHW_1 + -54 +PUSHB_5 + 48 + 61 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1955 8143 N 1 0 0 1 200 60 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1F87 +Encoding: 8071 8071 1885 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 70 + 70 + 17 + 38 + 3 + 2 + 48 +PUSHW_1 + -54 +PUSHB_5 + 48 + 61 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1968 8159 N 1 0 0 1 200 60 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1F88 +Encoding: 8072 8072 1886 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 -99 0 2 +Refer: 775 837 N 1 0 0 1 685 0 2 +EndChar + +StartChar: uni1F89 +Encoding: 8073 8073 1887 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 -99 0 2 +Refer: 775 837 N 1 0 0 1 685 0 2 +EndChar + +StartChar: uni1F8A +Encoding: 8074 8074 1888 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 22 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1953 8141 N 1 0 0 1 0 0 2 +Refer: 775 837 N 1 0 0 1 985 0 2 +EndChar + +StartChar: uni1F8B +Encoding: 8075 8075 1889 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 22 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1966 8157 N 1 0 0 1 0 0 2 +Refer: 775 837 N 1 0 0 1 985 0 2 +EndChar + +StartChar: uni1F8C +Encoding: 8076 8076 1890 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1954 8142 N 1 0 0 1 0 0 2 +Refer: 775 837 N 1 0 0 1 985 0 2 +EndChar + +StartChar: uni1F8D +Encoding: 8077 8077 1891 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1967 8158 N 1 0 0 1 0 0 2 +Refer: 775 837 N 1 0 0 1 985 0 2 +EndChar + +StartChar: uni1F8E +Encoding: 8078 8078 1892 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1955 8143 N 1 0 0 1 80 0 2 +Refer: 775 837 N 1 0 0 1 985 0 2 +EndChar + +StartChar: uni1F8F +Encoding: 8079 8079 1893 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 2 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 300 0 2 +Refer: 1968 8159 N 1 0 0 1 80 0 2 +Refer: 775 837 N 1 0 0 1 985 0 2 +EndChar + +StartChar: uni1F90 +Encoding: 8080 8080 1894 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 31 + 17 + 38 + 1 + 31 + 14 + 31 + 27 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 226 100 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1F91 +Encoding: 8081 8081 1895 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 32 + 32 + 17 + 38 + 1 + 36 + 18 + 36 + 31 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 237 100 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1F92 +Encoding: 8082 8082 1896 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 1 + 37 + 17 + 38 + 2 + 1 + 37 +PUSHW_1 + -24 +PUSHB_5 + 37 + 27 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 200 100 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1F93 +Encoding: 8083 8083 1897 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 38 + 38 + 17 + 38 + 2 + 1 + 42 +PUSHW_1 + -24 +PUSHB_5 + 42 + 27 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 200 100 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1F94 +Encoding: 8084 8084 1898 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 37 + 17 + 38 + 2 + 1 + 37 + 91 + 37 + 28 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 310 100 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1F95 +Encoding: 8085 8085 1899 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 38 + 38 + 17 + 38 + 2 + 1 + 42 + 47 + 42 + 28 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 310 100 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1F96 +Encoding: 8086 8086 1900 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 56 + 56 + 17 + 38 + 2 + 1 + 35 + 11 + 35 + 48 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1955 8143 N 1 0 0 1 226 100 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1F97 +Encoding: 8087 8087 1901 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 57 + 57 + 17 + 38 + 2 + 1 + 35 + 22 + 35 + 48 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1968 8159 N 1 0 0 1 237 100 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1F98 +Encoding: 8088 8088 1902 +Width: 1679 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 200 0 2 +Refer: 1938 8125 N 1 0 0 1 -228 0 2 +Refer: 775 837 N 1 0 0 1 940 0 2 +EndChar + +StartChar: uni1F99 +Encoding: 8089 8089 1903 +Width: 1679 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 200 0 2 +Refer: 1996 8190 N 1 0 0 1 -228 0 2 +Refer: 775 837 N 1 0 0 1 940 0 2 +EndChar + +StartChar: uni1F9A +Encoding: 8090 8090 1904 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1953 8141 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1340 0 2 +EndChar + +StartChar: uni1F9B +Encoding: 8091 8091 1905 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 17 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1966 8157 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1340 0 2 +EndChar + +StartChar: uni1F9C +Encoding: 8092 8092 1906 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1954 8142 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1340 0 2 +EndChar + +StartChar: uni1F9D +Encoding: 8093 8093 1907 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1967 8158 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1340 0 2 +EndChar + +StartChar: uni1F9E +Encoding: 8094 8094 1908 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 37 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1955 8143 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1340 0 2 +EndChar + +StartChar: uni1F9F +Encoding: 8095 8095 1909 +Width: 2079 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 37 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 600 0 2 +Refer: 1968 8159 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1340 0 2 +EndChar + +StartChar: uni1FA0 +Encoding: 8096 8096 1910 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 48 + 17 + 38 + 1 + 48 +PUSHW_1 + -4 +PUSHB_5 + 48 + 44 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 450 100 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FA1 +Encoding: 8097 8097 1911 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 48 + 17 + 38 + 1 + 48 +PUSHW_1 + -4 +PUSHB_5 + 48 + 44 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 430 100 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FA2 +Encoding: 8098 8098 1912 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 1 + 54 + 17 + 38 + 2 + 1 + 54 +PUSHW_1 + -17 +PUSHB_5 + 54 + 44 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 450 100 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FA3 +Encoding: 8099 8099 1913 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 55 + 55 + 17 + 38 + 2 + 1 + 59 +PUSHW_1 + -17 +PUSHB_5 + 59 + 44 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 450 100 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FA4 +Encoding: 8100 8100 1914 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 1 + 54 + 17 + 38 + 2 + 1 + 54 + 38 + 54 + 45 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 500 100 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FA5 +Encoding: 8101 8101 1915 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 2 + 1 + 55 + 55 + 17 + 38 + 2 + 1 + 59 + 38 + 59 + 45 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 500 100 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FA6 +Encoding: 8102 8102 1916 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 73 + 73 + 17 + 38 + 2 + 1 + 52 +PUSHW_1 + -7 +PUSHB_5 + 52 + 65 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1955 8143 N 1 0 0 1 450 60 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FA7 +Encoding: 8103 8103 1917 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 74 + 74 + 17 + 38 + 2 + 1 + 52 +PUSHW_1 + -27 +PUSHB_5 + 52 + 65 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1968 8159 N 1 0 0 1 430 60 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FA8 +Encoding: 8104 8104 1918 +Width: 1631 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 46 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 100 0 2 +Refer: 1938 8125 N 1 0 0 1 -228 0 2 +Refer: 775 837 N 1 0 0 1 864 0 2 +EndChar + +StartChar: uni1FA9 +Encoding: 8105 8105 1919 +Width: 1631 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 46 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 100 0 2 +Refer: 1996 8190 N 1 0 0 1 -228 0 2 +Refer: 775 837 N 1 0 0 1 864 0 2 +EndChar + +StartChar: uni1FAA +Encoding: 8106 8106 1920 +Width: 2031 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 500 0 2 +Refer: 1953 8141 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1264 0 2 +EndChar + +StartChar: uni1FAB +Encoding: 8107 8107 1921 +Width: 2031 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 500 0 2 +Refer: 1966 8157 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1264 0 2 +EndChar + +StartChar: uni1FAC +Encoding: 8108 8108 1922 +Width: 1931 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 400 0 2 +Refer: 1954 8142 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1164 0 2 +EndChar + +StartChar: uni1FAD +Encoding: 8109 8109 1923 +Width: 1931 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 52 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 400 0 2 +Refer: 1967 8158 N 1 0 0 1 -18 0 2 +Refer: 775 837 N 1 0 0 1 1164 0 2 +EndChar + +StartChar: uni1FAE +Encoding: 8110 8110 1924 +Width: 1931 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 71 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 400 0 2 +Refer: 1955 8143 N 1 0 0 1 -6 0 2 +Refer: 775 837 N 1 0 0 1 1164 0 2 +EndChar + +StartChar: uni1FAF +Encoding: 8111 8111 1925 +Width: 1931 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 1 + 71 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 400 0 2 +Refer: 1968 8159 N 1 0 0 1 -6 0 2 +Refer: 775 837 N 1 0 0 1 1164 0 2 +EndChar + +StartChar: uni1FB0 +Encoding: 8112 8112 1926 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 39 + 39 + 17 + 38 + 2 + 42 +PUSHW_1 + -67 +PUSHB_5 + 42 + 48 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 240 0 2 +EndChar + +StartChar: uni1FB1 +Encoding: 8113 8113 1927 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 40 + 40 + 17 + 38 + 2 + 41 +PUSHW_1 + -60 +PUSHB_5 + 41 + 42 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 220 0 2 +EndChar + +StartChar: uni1FB2 +Encoding: 8114 8114 1928 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 44 + 44 + 17 + 38 + 2 + 41 +PUSHW_1 + -128 +PUSHB_5 + 41 + 44 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 126 0 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1FB3 +Encoding: 8115 8115 1929 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 2 + 50 +PUSHW_1 + -23 +PUSHB_5 + 50 + 45 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1FB4 +Encoding: 8116 8116 1930 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 44 + 44 + 17 + 38 + 2 + 40 +PUSHW_1 + -1 +PUSHB_5 + 40 + 43 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 271 0 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1FB6 +Encoding: 8118 8118 1931 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 48 + 17 + 38 + 2 + 48 +PUSHW_1 + -60 +PUSHB_5 + 48 + 60 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 210 0 2 +EndChar + +StartChar: uni1FB7 +Encoding: 8119 8119 1932 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 48 + 17 + 38 + 2 + 48 +PUSHW_1 + -60 +PUSHB_5 + 48 + 60 + 6 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 210 0 2 +Refer: 775 837 N 1 0 0 1 540 0 2 +EndChar + +StartChar: uni1FB8 +Encoding: 8120 8120 1933 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 17 + 17 + 5 + 38 + 2 + 20 + 0 + 20 + 28 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 374 0 2 +EndChar + +StartChar: uni1FB9 +Encoding: 8121 8121 1934 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 18 + 18 + 5 + 38 + 2 + 19 + 2 + 19 + 20 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 360 329 2 +EndChar + +StartChar: uni1FBA +Encoding: 8122 8122 1935 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 20 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 -151 0 2 +EndChar + +StartChar: uni1FBB +Encoding: 8123 8123 1936 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 20 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 -118 0 2 +EndChar + +StartChar: uni1FBC +Encoding: 8124 8124 1937 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 28 + 46 + 28 + 23 + 4 + 7 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 36 65 N 1 0 0 1 0 0 3 +Refer: 775 837 N 1 0 0 1 687 0 2 +EndChar + +StartChar: uni1FBD +Encoding: 8125 8125 1938 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 8 + 0 + 0 + 5 + 9 + 9 + 12 + 11 + 9 + 9 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +446 1484 m 1,0,-1 + 446 1407 l 2,1,2 + 446 1320 446 1320 430.5 1265 c 128,-1,3 + 415 1210 415 1210 370 1157 c 1,4,-1 + 243 1157 l 1,5,6 + 288 1208 288 1208 311 1246 c 128,-1,7 + 334 1284 334 1284 334 1319 c 1,8,-1 + 247 1319 l 1,9,-1 + 247 1484 l 1,10,-1 + 446 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1FBE +Encoding: 8126 8126 1939 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 12 + 11 + 11 + 5 + 13 + 14 + 3 + 11 + 128 + 8 + 27 +SVTCA[y-axis] +MIAP[rnd] +SMD +MDRP[min,rnd,black] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +408 -252 m 2,0,1 + 408 -285 408 -285 418.5 -296.5 c 128,-1,2 + 429 -308 429 -308 453 -308 c 0,3,4 + 467 -308 467 -308 500 -302 c 1,5,-1 + 500 -414 l 1,6,7 + 456 -425 456 -425 418 -425 c 0,8,9 + 276 -425 276 -425 276 -273 c 2,10,-1 + 276 -127 l 1,11,-1 + 408 -127 l 1,12,-1 + 408 -252 l 2,0,1 +EndSplineSet +EndChar + +StartChar: uni1FBF +Encoding: 8127 8127 1940 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 8 + 0 + 0 + 5 + 10 + 10 + 11 + 12 + 9 + 9 + 0 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +446 1484 m 1,0,-1 + 446 1407 l 2,1,2 + 446 1320 446 1320 430.5 1265 c 128,-1,3 + 415 1210 415 1210 370 1157 c 1,4,-1 + 243 1157 l 1,5,6 + 288 1208 288 1208 311 1246 c 128,-1,7 + 334 1284 334 1284 334 1319 c 1,8,-1 + 247 1319 l 1,9,-1 + 247 1484 l 1,10,-1 + 446 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1FC0 +Encoding: 8128 8128 1941 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 20 + 21 + 21 + 25 + 8 + 9 + 9 + 24 + 5 + 18 + 20 + 13 + 128 + 8 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +492 1201 m 0,0,1 + 450 1201 450 1201 408 1219.5 c 128,-1,2 + 366 1238 366 1238 327 1260.5 c 128,-1,3 + 288 1283 288 1283 252.5 1301.5 c 128,-1,4 + 217 1320 217 1320 186 1320 c 0,5,6 + 131 1320 131 1320 104 1289 c 128,-1,7 + 77 1258 77 1258 68 1201 c 1,8,-1 + -23 1201 l 1,9,10 + -12 1303 -12 1303 12 1355.5 c 128,-1,11 + 36 1408 36 1408 76.5 1438.5 c 128,-1,12 + 117 1469 117 1469 180 1469 c 0,13,14 + 224 1469 224 1469 266 1450.5 c 128,-1,15 + 308 1432 308 1432 347 1409.5 c 128,-1,16 + 386 1387 386 1387 420.5 1368.5 c 128,-1,17 + 455 1350 455 1350 485 1350 c 0,18,19 + 585 1350 585 1350 602 1469 c 1,20,-1 + 694 1469 l 1,21,22 + 677 1321 677 1321 627 1261 c 128,-1,23 + 577 1201 577 1201 492 1201 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni1FC1 +Encoding: 8129 8129 1942 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 16 + 6 + 5 + 1 + 2 + 5 + 2 + 17 + 27 + 28 + 17 + 28 + 32 + 33 + 25 + 13 + 27 + 20 + 128 + 16 + 8 + 8 + 1 + 5 + 0 + 4 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp2] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +447 1220 m 1,0,-1 + 447 1404 l 1,1,-1 + 610 1404 l 1,2,-1 + 610 1220 l 1,3,-1 + 447 1220 l 1,0,-1 +72 1219 m 1,4,-1 + 72 1403 l 1,5,-1 + 237 1403 l 1,6,-1 + 237 1219 l 1,7,-1 + 72 1219 l 1,4,-1 +484 1485 m 0,8,9 + 446 1485 446 1485 408 1502 c 128,-1,10 + 370 1519 370 1519 335 1539 c 128,-1,11 + 300 1559 300 1559 267.5 1576 c 128,-1,12 + 235 1593 235 1593 207 1593 c 0,13,14 + 156 1593 156 1593 132 1565 c 128,-1,15 + 108 1537 108 1537 100 1485 c 1,16,-1 + 17 1485 l 1,17,18 + 30 1614 30 1614 76.5 1671 c 128,-1,19 + 123 1728 123 1728 201 1728 c 0,20,21 + 241 1728 241 1728 279 1711 c 128,-1,22 + 317 1694 317 1694 352 1674 c 128,-1,23 + 387 1654 387 1654 419 1637 c 128,-1,24 + 451 1620 451 1620 478 1620 c 0,25,26 + 569 1620 569 1620 584 1728 c 1,27,-1 + 667 1728 l 1,28,29 + 655 1633 655 1633 634 1586 c 128,-1,30 + 613 1539 613 1539 577 1512 c 128,-1,31 + 541 1485 541 1485 484 1485 c 0,8,9 +EndSplineSet +EndChar + +StartChar: uni1FC2 +Encoding: 8130 8130 1943 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 31 + 31 + 17 + 38 + 1 + 27 +PUSHW_1 + -23 +PUSHB_5 + 27 + 31 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 167 0 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1FC3 +Encoding: 8131 8131 1944 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1FC4 +Encoding: 8132 8132 1945 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 31 + 31 + 17 + 38 + 1 + 27 +PUSHW_1 + -23 +PUSHB_5 + 27 + 30 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 291 0 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1FC6 +Encoding: 8134 8134 1946 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 35 + 17 + 38 + 1 + 35 + 7 + 35 + 47 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 228 0 2 +EndChar + +StartChar: uni1FC7 +Encoding: 8135 8135 1947 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 35 + 17 + 38 + 1 + 35 + 7 + 35 + 47 + 13 + 25 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 873 951 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 228 0 2 +Refer: 775 837 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni1FC8 +Encoding: 8136 8136 1948 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 15 + 0 + 1 + 17 +PUSHW_1 + -142 +PUSHB_5 + 17 + 17 + 1 + 1 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 300 0 2 +Refer: 1984 8175 N 1 0 0 1 -169 0 2 +EndChar + +StartChar: uni1FC9 +Encoding: 8137 8137 1949 +Width: 1666 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 15 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 40 69 N 1 0 0 1 300 0 2 +Refer: 825 900 N 1 0 0 1 -139 0 2 +EndChar + +StartChar: uni1FCA +Encoding: 8138 8138 1950 +Width: 1779 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 15 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 300 0 2 +Refer: 1984 8175 N 1 0 0 1 -169 0 2 +EndChar + +StartChar: uni1FCB +Encoding: 8139 8139 1951 +Width: 1779 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 15 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 300 0 2 +Refer: 825 900 N 1 0 0 1 -139 0 2 +EndChar + +StartChar: uni1FCC +Encoding: 8140 8140 1952 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 23 + 42 + 23 + 18 + 5 + 11 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 43 72 N 1 0 0 1 0 0 3 +Refer: 775 837 N 1 0 0 1 740 0 2 +EndChar + +StartChar: uni1FCD +Encoding: 8141 8141 1953 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 14 + 6 + 6 + 11 + 15 + 3 + 0 + 15 + 0 + 17 + 18 + 15 + 15 + 10 + 4 + 4 + 16 + 10 + 128 + 2 + 2 + 10 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SMD +SRP0 +MDRP[min,rnd,grey] +SHP[rp2] +MDAP[rnd] +SRP1 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +622 1196 m 1,0,-1 + 622 1184 l 1,1,-1 + 508 1184 l 1,2,-1 + 319 1470 l 1,3,-1 + 319 1484 l 1,4,-1 + 549 1484 l 1,5,-1 + 622 1196 l 1,0,-1 +245 1484 m 1,6,-1 + 245 1407 l 2,7,8 + 245 1320 245 1320 229.5 1265 c 128,-1,9 + 214 1210 214 1210 169 1157 c 1,10,-1 + 42 1157 l 1,11,12 + 87 1208 87 1208 110 1246 c 128,-1,13 + 133 1284 133 1284 133 1319 c 1,14,-1 + 46 1319 l 1,15,-1 + 46 1484 l 1,16,-1 + 245 1484 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni1FCE +Encoding: 8142 8142 1954 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 4 + 2 + 14 + 6 + 6 + 11 + 15 + 2 + 15 + 18 + 17 + 15 + 15 + 11 + 0 + 0 + 6 + 11 + 128 + 4 + 4 + 11 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SMD +SRP0 +MDRP[min,rnd,grey] +SHP[rp2] +MDAP[rnd] +SRP1 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +402 1484 m 1,0,-1 + 632 1484 l 1,1,-1 + 632 1470 l 1,2,-1 + 443 1184 l 1,3,-1 + 329 1184 l 1,4,-1 + 329 1196 l 1,5,-1 + 402 1484 l 1,0,-1 +245 1484 m 1,6,-1 + 245 1407 l 2,7,8 + 245 1320 245 1320 229.5 1265 c 128,-1,9 + 214 1210 214 1210 169 1157 c 1,10,-1 + 42 1157 l 1,11,12 + 87 1208 87 1208 110 1246 c 128,-1,13 + 133 1284 133 1284 133 1319 c 1,14,-1 + 46 1319 l 1,15,-1 + 46 1484 l 1,16,-1 + 245 1484 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni1FCF +Encoding: 8143 8143 1955 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 33 + 26 + 26 + 30 + 35 + 35 + 36 + 37 + 21 + 22 + 22 + 37 + 8 + 9 + 9 + 36 + 33 + 29 + 21 + 21 + 5 + 13 + 64 + 9 + 12 + 72 + 13 + 13 + 18 + 0 + 8 + 8 + 0 + 0 + 15 + 35 + 1 + 35 + 29 +SVTCA[y-axis] +MDAP[rnd] +MDRP[rnd,grey] +DELTAP1 +SHP[rp2] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +MDAP[rnd] +CALL +SHP[rp1] +SHP[rp1] +MDAP[rnd] +SRP1 +IP +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +498 1518 m 0,0,1 + 456 1518 456 1518 414 1532.5 c 128,-1,2 + 372 1547 372 1547 333 1565 c 128,-1,3 + 294 1583 294 1583 258.5 1597.5 c 128,-1,4 + 223 1612 223 1612 192 1612 c 0,5,6 + 137 1612 137 1612 110 1586 c 128,-1,7 + 83 1560 83 1560 74 1503 c 1,8,-1 + -17 1503 l 1,9,10 + -6 1600 -6 1600 17.5 1649.5 c 128,-1,11 + 41 1699 41 1699 82 1727.5 c 128,-1,12 + 123 1756 123 1756 186 1756 c 0,13,14 + 230 1756 230 1756 272.5 1740.5 c 128,-1,15 + 315 1725 315 1725 355 1706.5 c 128,-1,16 + 395 1688 395 1688 430.5 1672.5 c 128,-1,17 + 466 1657 466 1657 496 1657 c 0,18,19 + 550 1657 550 1657 575 1683.5 c 128,-1,20 + 600 1710 600 1710 608 1766 c 1,21,-1 + 700 1766 l 1,22,23 + 684 1628 684 1628 634.5 1573 c 128,-1,24 + 585 1518 585 1518 498 1518 c 0,0,1 +437 1474 m 1,25,-1 + 437 1397 l 2,26,27 + 437 1310 437 1310 421.5 1255 c 128,-1,28 + 406 1200 406 1200 361 1147 c 1,29,-1 + 234 1147 l 1,30,31 + 279 1198 279 1198 302 1236 c 128,-1,32 + 325 1274 325 1274 325 1309 c 1,33,-1 + 238 1309 l 1,34,-1 + 238 1474 l 1,35,-1 + 437 1474 l 1,25,-1 +EndSplineSet +EndChar + +StartChar: uni1FD0 +Encoding: 8144 8144 1956 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 10 + 10 + 17 + 38 + 1 + 13 +PUSHW_1 + -40 +PUSHB_5 + 13 + 19 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 -71 0 2 +EndChar + +StartChar: uni1FD1 +Encoding: 8145 8145 1957 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 11 + 11 + 17 + 38 + 1 + 12 +PUSHW_1 + -41 +PUSHB_5 + 12 + 13 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 -100 0 2 +EndChar + +StartChar: uni1FD2 +Encoding: 8146 8146 1958 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 51 + 3 + 207 + 20 + 1 + 2 + 31 + 20 + 47 + 20 + 79 + 20 + 111 + 20 + 4 + 15 + 20 + 63 + 20 + 175 + 20 + 191 + 20 + 4 + 64 + 20 + 80 + 20 + 96 + 20 + 112 + 20 + 128 + 20 + 5 + 20 + 2 + 1 + 17 + 17 + 17 + 38 + 3 + 2 + 1 + 14 + 0 + 14 + 13 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SDS +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -100 0 2 +Refer: 1984 8175 N 1 0 0 1 -218 240 2 +EndChar + +StartChar: uni1FD3 +Encoding: 8147 8147 1959 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 51 + 3 + 207 + 20 + 1 + 2 + 31 + 20 + 47 + 20 + 79 + 20 + 111 + 20 + 4 + 15 + 20 + 63 + 20 + 175 + 20 + 191 + 20 + 4 + 64 + 20 + 80 + 20 + 96 + 20 + 112 + 20 + 128 + 20 + 5 + 20 + 2 + 1 + 17 + 17 + 17 + 38 + 3 + 2 + 1 + 14 + 0 + 14 + 13 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SDS +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -101 0 2 +Refer: 825 900 N 1 0 0 1 -30 240 2 +EndChar + +StartChar: uni1FD6 +Encoding: 8150 8150 1960 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 19 + 17 + 38 + 1 + 19 +PUSHW_1 + -45 +PUSHB_5 + 19 + 31 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 -114 0 2 +EndChar + +StartChar: uni1FD7 +Encoding: 8151 8151 1961 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 3 + 2 + 1 + 17 + 17 + 17 + 38 + 3 + 2 + 1 + 27 +PUSHW_1 + -36 +PUSHB_5 + 27 + 38 + 4 + 9 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1942 8129 N 1 0 0 1 -111 0 2 +EndChar + +StartChar: uni1FD8 +Encoding: 8152 8152 1962 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 4 + 4 + 5 + 38 + 1 + 7 +PUSHW_1 + -5 +PUSHB_5 + 7 + 13 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 -19 362 2 +EndChar + +StartChar: uni1FD9 +Encoding: 8153 8153 1963 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 5 + 5 + 5 + 38 + 1 + 6 + 2 + 6 + 7 + 1 + 3 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 -39 334 2 +EndChar + +StartChar: uni1FDA +Encoding: 8154 8154 1964 +Width: 869 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 7 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 300 0 2 +Refer: 1984 8175 N 1 0 0 1 -171 0 2 +EndChar + +StartChar: uni1FDB +Encoding: 8155 8155 1965 +Width: 869 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 7 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 44 73 N 1 0 0 1 300 0 2 +Refer: 825 900 N 1 0 0 1 -118 0 2 +EndChar + +StartChar: uni1FDD +Encoding: 8157 8157 1966 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 4 + 1 + 8 + 6 + 6 + 16 + 1 + 16 + 18 + 17 + 7 + 7 + 12 + 5 + 5 + 6 + 12 + 128 + 2 + 2 + 12 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SMD +SRP0 +MDRP[min,rnd,grey] +SHP[rp2] +MDAP[rnd] +SRP1 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +622 1196 m 1,0,-1 + 622 1184 l 1,1,-1 + 508 1184 l 1,2,-1 + 319 1470 l 1,3,-1 + 319 1484 l 1,4,-1 + 549 1484 l 1,5,-1 + 622 1196 l 1,0,-1 +241 1484 m 1,6,-1 + 241 1319 l 1,7,-1 + 154 1319 l 1,8,9 + 154 1284 154 1284 177 1246 c 128,-1,10 + 200 1208 200 1208 245 1157 c 1,11,-1 + 118 1157 l 1,12,13 + 73 1211 73 1211 57.5 1266 c 128,-1,14 + 42 1321 42 1321 42 1407 c 2,15,-1 + 42 1484 l 1,16,-1 + 241 1484 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni1FDE +Encoding: 8158 8158 1967 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 4 + 2 + 8 + 6 + 6 + 16 + 2 + 16 + 18 + 17 + 7 + 7 + 12 + 0 + 0 + 6 + 12 + 128 + 3 + 3 + 12 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SMD +SRP0 +MDRP[min,rnd,grey] +SHP[rp2] +MDAP[rnd] +SRP1 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +402 1484 m 1,0,-1 + 632 1484 l 1,1,-1 + 632 1470 l 1,2,-1 + 443 1184 l 1,3,-1 + 329 1184 l 1,4,-1 + 329 1196 l 1,5,-1 + 402 1484 l 1,0,-1 +241 1484 m 1,6,-1 + 241 1319 l 1,7,-1 + 154 1319 l 1,8,9 + 154 1284 154 1284 177 1246 c 128,-1,10 + 200 1208 200 1208 245 1157 c 1,11,-1 + 118 1157 l 1,12,13 + 73 1211 73 1211 57.5 1266 c 128,-1,14 + 42 1321 42 1321 42 1407 c 2,15,-1 + 42 1484 l 1,16,-1 + 241 1484 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni1FDF +Encoding: 8159 8159 1968 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 21 + 21 + 5 + 13 + 64 + 9 + 12 + 72 + 13 + 13 + 18 + 0 + 8 + 8 + 0 + 0 + 15 + 35 + 1 + 35 + 31 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SHP[rp1] +SHP[rp1] +MDAP[rnd] +CALL +SHP[rp1] +SHP[rp1] +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +498 1518 m 0,0,1 + 456 1518 456 1518 414 1532.5 c 128,-1,2 + 372 1547 372 1547 333 1565 c 128,-1,3 + 294 1583 294 1583 258.5 1597.5 c 128,-1,4 + 223 1612 223 1612 192 1612 c 0,5,6 + 137 1612 137 1612 110 1586 c 128,-1,7 + 83 1560 83 1560 74 1503 c 1,8,-1 + -17 1503 l 1,9,10 + -6 1600 -6 1600 17.5 1649.5 c 128,-1,11 + 41 1699 41 1699 82 1727.5 c 128,-1,12 + 123 1756 123 1756 186 1756 c 0,13,14 + 230 1756 230 1756 272.5 1740.5 c 128,-1,15 + 315 1725 315 1725 355 1706.5 c 128,-1,16 + 395 1688 395 1688 430.5 1672.5 c 128,-1,17 + 466 1657 466 1657 496 1657 c 0,18,19 + 550 1657 550 1657 575 1683.5 c 128,-1,20 + 600 1710 600 1710 608 1766 c 1,21,-1 + 700 1766 l 1,22,23 + 684 1628 684 1628 634.5 1573 c 128,-1,24 + 585 1518 585 1518 498 1518 c 0,0,1 +433 1474 m 1,25,-1 + 433 1309 l 1,26,-1 + 346 1309 l 1,27,28 + 346 1274 346 1274 369 1236 c 128,-1,29 + 392 1198 392 1198 437 1147 c 1,30,-1 + 310 1147 l 1,31,32 + 265 1201 265 1201 249.5 1256 c 128,-1,33 + 234 1311 234 1311 234 1397 c 2,34,-1 + 234 1474 l 1,35,-1 + 433 1474 l 1,25,-1 +EndSplineSet +EndChar + +StartChar: uni1FE0 +Encoding: 8160 8160 1969 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 22 + 22 + 17 + 38 + 1 + 25 +PUSHW_1 + -35 +PUSHB_5 + 25 + 31 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 666 728 N 1 0 0 1 244 0 2 +EndChar + +StartChar: uni1FE1 +Encoding: 8161 8161 1970 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 23 + 23 + 17 + 38 + 1 + 24 +PUSHW_1 + -29 +PUSHB_5 + 24 + 25 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 223 0 2 +EndChar + +StartChar: uni1FE2 +Encoding: 8162 8162 1971 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 51 + 3 + 207 + 33 + 1 + 2 + 31 + 33 + 47 + 33 + 79 + 33 + 111 + 33 + 4 + 15 + 33 + 63 + 33 + 175 + 33 + 191 + 33 + 4 + 64 + 33 + 80 + 33 + 96 + 33 + 112 + 33 + 128 + 33 + 5 + 33 + 2 + 1 + 22 + 22 + 17 + 38 + 3 + 2 + 1 + 26 + 0 + 26 + 25 + 6 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SDS +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 200 0 2 +Refer: 1984 8175 N 1 0 0 1 92 240 2 +EndChar + +StartChar: uni1FE3 +Encoding: 8163 8163 1972 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 51 + 3 + 207 + 33 + 1 + 2 + 31 + 33 + 47 + 33 + 79 + 33 + 111 + 33 + 4 + 15 + 33 + 63 + 33 + 175 + 33 + 191 + 33 + 4 + 64 + 33 + 80 + 33 + 96 + 33 + 112 + 33 + 128 + 33 + 5 + 33 + 2 + 1 + 22 + 22 + 17 + 38 + 3 + 2 + 1 + 26 + 0 + 26 + 25 + 6 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SDS +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 200 0 2 +Refer: 825 900 N 1 0 0 1 260 240 2 +EndChar + +StartChar: uni1FE4 +Encoding: 8164 8164 1973 +Width: 1165 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 36 + 17 + 38 + 2 + 36 +PUSHW_1 + -3 +PUSHB_5 + 36 + 32 + 12 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 883 961 N 1 0 0 1 0 0 3 +Refer: 1938 8125 N 1 0 0 1 260 100 2 +EndChar + +StartChar: uni1FE5 +Encoding: 8165 8165 1974 +Width: 1165 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 37 + 37 + 17 + 38 + 2 + 41 +PUSHW_1 + -20 +PUSHB_5 + 41 + 36 + 12 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 883 961 N 1 0 0 1 0 0 3 +Refer: 1996 8190 N 1 0 0 1 250 100 2 +EndChar + +StartChar: uni1FE6 +Encoding: 8166 8166 1975 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 31 + 17 + 38 + 1 + 31 +PUSHW_1 + -22 +PUSHB_5 + 31 + 43 + 7 + 0 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 220 0 2 +EndChar + +StartChar: uni1FE7 +Encoding: 8167 8167 1976 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 3 + 2 + 1 + 29 + 29 + 17 + 38 + 3 + 2 + 1 + 39 + 0 + 39 + 50 + 7 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1942 8129 N 1 0 0 1 186 0 2 +EndChar + +StartChar: uni1FE8 +Encoding: 8168 8168 1977 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 9 + 9 + 5 + 38 + 1 + 12 +PUSHW_1 + -4 +PUSHB_5 + 12 + 20 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 2309 -1 N 1 0 0 1 370 0 2 +EndChar + +StartChar: uni1FE9 +Encoding: 8169 8169 1978 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 10 + 10 + 5 + 38 + 1 + 11 + 6 + 11 + 12 + 4 + 8 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 364 329 2 +EndChar + +StartChar: uni1FEA +Encoding: 8170 8170 1979 +Width: 1766 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 400 0 2 +Refer: 1984 8175 N 1 0 0 1 -128 0 2 +EndChar + +StartChar: uni1FEB +Encoding: 8171 8171 1980 +Width: 1816 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 12 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 60 89 N 1 0 0 1 450 0 2 +Refer: 825 900 N 1 0 0 1 -83 0 2 +EndChar + +StartChar: uni1FEC +Encoding: 8172 8172 1981 +Width: 1566 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 28 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 51 80 N 1 0 0 1 200 0 2 +Refer: 1996 8190 N 1 0 0 1 -228 0 2 +EndChar + +StartChar: uni1FED +Encoding: 8173 8173 1982 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 1 + 0 + 0 + 15 + 10 + 8 + 11 + 11 + 14 + 2 + 12 + 12 + 9 + 128 + 11 + 6 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SMD +MDRP[min,rnd,white] +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +705 1232 m 1,0,-1 + 532 1232 l 1,1,-1 + 532 1418 l 1,2,-1 + 705 1418 l 1,3,-1 + 705 1232 l 1,0,-1 +471 1245 m 1,4,-1 + 471 1232 l 1,5,-1 + 354 1232 l 1,6,-1 + 162 1495 l 1,7,-1 + 162 1507 l 1,8,-1 + 340 1507 l 1,9,-1 + 471 1245 l 1,4,-1 +151 1232 m 1,10,-1 + -22 1232 l 1,11,-1 + -22 1418 l 1,12,-1 + 151 1418 l 1,13,-1 + 151 1232 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni1FEE +Encoding: 8174 8174 1983 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 6 + 1 + 0 + 0 + 15 + 10 + 9 + 11 + 11 + 14 + 2 + 12 + 12 + 5 + 128 + 11 + 8 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SMD +MDRP[min,rnd,white] +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +705 1232 m 1,0,-1 + 532 1232 l 1,1,-1 + 532 1418 l 1,2,-1 + 705 1418 l 1,3,-1 + 705 1232 l 1,0,-1 +342 1507 m 1,4,-1 + 520 1507 l 1,5,-1 + 520 1495 l 1,6,-1 + 328 1232 l 1,7,-1 + 211 1232 l 1,8,-1 + 211 1245 l 1,9,-1 + 342 1507 l 1,4,-1 +151 1232 m 1,10,-1 + -22 1232 l 1,11,-1 + -22 1418 l 1,12,-1 + 151 1418 l 1,13,-1 + 151 1232 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni1FEF +Encoding: 8175 8175 1984 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 4 + 6 + 7 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +404 1218 m 1,0,-1 + 203 1506 l 1,1,-1 + 203 1543 l 1,2,-1 + 410 1543 l 1,3,-1 + 479 1251 l 1,4,-1 + 479 1218 l 1,5,-1 + 404 1218 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1FF2 +Encoding: 8178 8178 1985 +Width: 1599 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 1984 8175 N 1 0 0 1 367 0 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FF3 +Encoding: 8179 8179 1986 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 54 + 43 + 54 + 49 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FF4 +Encoding: 8180 8180 1987 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 43 + 17 + 38 + 1 + 43 + 55 + 43 + 46 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 825 900 N 1 0 0 1 491 0 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FF6 +Encoding: 8182 8182 1988 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 52 + 17 + 38 + 1 + 52 +PUSHW_1 + -5 +PUSHB_5 + 52 + 64 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 458 0 2 +EndChar + +StartChar: uni1FF7 +Encoding: 8183 8183 1989 +Width: 1599 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 52 + 17 + 38 + 1 + 52 +PUSHW_1 + -5 +PUSHB_5 + 52 + 64 + 27 + 14 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 891 969 N 1 0 0 1 0 0 3 +Refer: 670 732 N 1 0 0 1 458 0 2 +Refer: 775 837 N 1 0 0 1 800 0 2 +EndChar + +StartChar: uni1FF8 +Encoding: 8184 8184 1990 +Width: 1893 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 0 + 3 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1984 8175 N 1 0 0 1 -111 0 2 +Refer: 50 79 N 1 0 0 1 300 0 2 +EndChar + +StartChar: uni1FF9 +Encoding: 8185 8185 1991 +Width: 1693 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 0 + 3 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 825 900 N 1 0 0 1 -228 0 2 +Refer: 50 79 N 1 0 0 1 100 0 2 +EndChar + +StartChar: uni1FFA +Encoding: 8186 8186 1992 +Width: 1831 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 0 + 3 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1984 8175 N 1 0 0 1 -111 0 2 +Refer: 859 937 N 1 0 0 1 300 0 2 +EndChar + +StartChar: uni1FFB +Encoding: 8187 8187 1993 +Width: 1631 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 0 + 3 + 0 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 825 900 N 1 0 0 1 -158 0 2 +Refer: 859 937 N 1 0 0 1 100 0 2 +EndChar + +StartChar: uni1FFC +Encoding: 8188 8188 1994 +Width: 1531 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 47 + 43 + 47 + 42 + 27 + 10 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 859 937 N 1 0 0 1 0 0 3 +Refer: 775 837 N 1 0 0 1 766 0 2 +EndChar + +StartChar: uni1FFD +Encoding: 8189 8189 1995 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 3 + 0 + 7 + 6 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +243 1195 m 1,0,-1 + 243 1215 l 1,1,-1 + 373 1474 l 1,2,-1 + 580 1474 l 1,3,-1 + 580 1445 l 1,4,-1 + 337 1195 l 1,5,-1 + 243 1195 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni1FFE +Encoding: 8190 8190 1996 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 2 + 9 + 5 + 1 + 1 + 9 + 9 + 11 + 12 + 2 + 2 + 0 + 128 + 6 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +435 1484 m 1,0,-1 + 435 1319 l 1,1,-1 + 348 1319 l 1,2,3 + 348 1284 348 1284 371 1246 c 128,-1,4 + 394 1208 394 1208 439 1157 c 1,5,-1 + 312 1157 l 1,6,7 + 267 1211 267 1211 251.5 1266 c 128,-1,8 + 236 1321 236 1321 236 1407 c 2,9,-1 + 236 1484 l 1,10,-1 + 435 1484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2000 +Encoding: 8192 8192 1997 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni2001 +Encoding: 8193 8193 1998 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni2002 +Encoding: 8194 8194 1999 +Width: 1024 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni2003 +Encoding: 8195 8195 2000 +Width: 2048 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni2004 +Encoding: 8196 8196 2001 +Width: 683 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni2005 +Encoding: 8197 8197 2002 +Width: 512 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni2006 +Encoding: 8198 8198 2003 +Width: 341 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni2007 +Encoding: 8199 8199 2004 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni2008 +Encoding: 8200 8200 2005 +Width: 569 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni2009 +Encoding: 8201 8201 2006 +Width: 410 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni200A +Encoding: 8202 8202 2007 +Width: 171 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni200B +Encoding: 8203 8203 2008 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +EndChar + +StartChar: uni200C +Encoding: 8204 8204 2009 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 3 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +42 1287 m 1,0,-1 + 42 -273 l 1,1,-1 + -42 -273 l 1,2,-1 + -42 1287 l 1,3,-1 + 42 1287 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni200D +Encoding: 8205 8205 2010 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 14 + 2 + 11 + 5 + 8 + 5 + 9 + 13 + 9 + 7 + 13 + 3 + 3 + 1 + 7 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +42 -273 m 1,0,-1 + -42 -273 l 1,1,-1 + -42 1096 l 1,2,-1 + -169 968 l 1,3,-1 + -224 1023 l 1,4,-1 + -55 1191 l 1,5,-1 + -224 1358 l 1,6,-1 + -169 1414 l 1,7,-1 + 0 1244 l 1,8,-1 + 169 1414 l 1,9,-1 + 224 1358 l 1,10,-1 + 55 1191 l 1,11,-1 + 224 1023 l 1,12,-1 + 169 968 l 1,13,-1 + 42 1096 l 1,14,-1 + 42 -273 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni200E +Encoding: 8206 8206 2011 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 1 + 4 + 4 + 7 + 7 + 6 + 10 + 3 + 6 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +435 1193 m 1,0,-1 + 212 974 l 1,1,-1 + 157 1029 l 1,2,-1 + 289 1154 l 1,3,-1 + 41 1154 l 1,4,-1 + 41 -273 l 1,5,-1 + -41 -273 l 1,6,-1 + -41 1233 l 1,7,-1 + 289 1233 l 1,8,-1 + 157 1358 l 1,9,-1 + 212 1414 l 1,10,-1 + 435 1193 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni200F +Encoding: 8207 8207 2012 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 15 + 12 + 31 + 12 + 2 + 5 + 2 + 2 + 10 + 10 + 1 + 7 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +SVTCA[x-axis] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +40 -273 m 1,0,-1 + -42 -273 l 1,1,-1 + -42 1154 l 1,2,-1 + -290 1154 l 1,3,-1 + -158 1029 l 1,4,-1 + -213 974 l 1,5,-1 + -436 1193 l 1,6,-1 + -213 1414 l 1,7,-1 + -158 1358 l 1,8,-1 + -290 1233 l 1,9,-1 + 40 1233 l 1,10,-1 + 40 -273 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2010 +Encoding: 8208 8208 2013 +Width: 682 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 16 45 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni2012 +Encoding: 8210 8210 2014 +Width: 1139 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2015 8211 N 1 0 0 1 0 0 3 +EndChar + +StartChar: endash +Encoding: 8211 8211 2015 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 0 + 2 + 4 + 5 + 1 + 0 + 186 + 89 + 15 + 1 + 31 + 1 + 63 + 1 + 79 + 1 + 4 + 47 + 1 + 63 + 1 + 111 + 1 + 175 + 1 + 223 + 1 + 5 + 1 + 64 + 38 + 43 + 72 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +0 451 m 1,0,-1 + 0 588 l 1,1,-1 + 1138 588 l 1,2,-1 + 1138 451 l 1,3,-1 + 0 451 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: emdash +Encoding: 8212 8212 2016 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 2 + 0 + 5 + 4 + 1 + 0 + 186 + 89 + 15 + 1 + 31 + 1 + 63 + 1 + 79 + 1 + 4 + 47 + 1 + 63 + 1 + 111 + 1 + 175 + 1 + 223 + 1 + 5 + 1 + 64 + 38 + 43 + 72 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +0 451 m 1,0,-1 + 0 588 l 1,1,-1 + 2048 588 l 1,2,-1 + 2048 451 l 1,3,-1 + 0 451 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2015 +Encoding: 8213 8213 2017 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 2 + 5 + 0 + 4 + 1 + 0 + 186 + 89 + 15 + 1 + 31 + 1 + 63 + 1 + 79 + 1 + 4 + 47 + 1 + 63 + 1 + 111 + 1 + 175 + 1 + 223 + 1 + 5 + 1 + 64 + 38 + 43 + 72 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +DELTAP1 +DELTAP2 +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +0 451 m 1,0,-1 + 0 588 l 1,1,-1 + 2048 588 l 1,2,-1 + 2048 451 l 1,3,-1 + 0 451 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2016 +Encoding: 8214 8214 2018 +Width: 846 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 387 449 N 1 0 0 1 0 0 2 +EndChar + +StartChar: underscoredbl +Encoding: 8215 8215 2019 +Width: 1131 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 0 + 0 + 1 + 1 + 16 + 1 + 32 + 1 + 144 + 1 + 224 + 1 + 240 + 1 + 5 + 1 + 1 + 31 + 5 + 1 + 63 + 5 + 79 + 5 + 95 + 5 + 111 + 5 + 127 + 5 + 5 + 0 + 5 + 144 + 5 + 2 + 5 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 66 95 N 1 0 0 1 0 -27 2 +Refer: 66 95 N 1 0 0 1 0 190 2 +EndChar + +StartChar: quoteleft +Encoding: 8216 8216 2020 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 9 + 9 + 7 + 0 + 0 + 11 + 10 + 0 + 7 + 156 + 91 + 5 + 0 + 169 + 91 + 5 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +127 952 m 1,0,-1 + 127 1098 l 2,1,2 + 127 1195 127 1195 145.5 1268.5 c 128,-1,3 + 164 1342 164 1342 207 1409 c 1,4,-1 + 328 1409 l 1,5,6 + 233 1272 233 1272 233 1147 c 1,7,-1 + 322 1147 l 1,8,-1 + 322 952 l 1,9,-1 + 127 952 l 1,0,-1 +EndSplineSet +Kerns2: 2020 -37 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: quoteright +Encoding: 8217 8217 2021 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 6 + 0 + 0 + 4 + 8 + 8 + 11 + 10 + 8 + 7 + 156 + 91 + 8 + 3 + 169 + 91 + 8 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +328 1264 m 2,0,1 + 328 1159 328 1159 309 1087.5 c 128,-1,2 + 290 1016 290 1016 250 952 c 1,3,-1 + 127 952 l 1,4,5 + 221 1088 221 1088 221 1212 c 1,6,-1 + 133 1212 l 1,7,-1 + 133 1409 l 1,8,-1 + 328 1409 l 1,9,-1 + 328 1264 l 2,0,1 +EndSplineSet +Kerns2: 2021 -37 "'kern' Horizontal Kerning lookup 17 subtable" 86 -37 "'kern' Horizontal Kerning lookup 17 subtable" 3 -76 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: quotesinglbase +Encoding: 8218 8218 2022 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 0 + 0 + 4 + 8 + 8 + 11 + 10 + 8 + 3 + 169 + 91 + 7 + 8 + 156 + 91 + 7 +SVTCA[y-axis] +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +328 51 m 2,0,1 + 328 -55 328 -55 309 -126 c 128,-1,2 + 290 -197 290 -197 250 -262 c 1,3,-1 + 127 -262 l 1,4,5 + 221 -126 221 -126 221 0 c 1,6,-1 + 133 0 l 1,7,-1 + 133 195 l 1,8,-1 + 328 195 l 1,9,-1 + 328 51 l 2,0,1 +EndSplineSet +EndChar + +StartChar: quotereversed +Encoding: 8219 8219 2023 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 4 + 1 + 2 + 8 + 1 + 8 + 11 + 10 + 9 + 4 + 169 + 91 + 9 + 2 + 156 + 89 + 9 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +321 1409 m 1,0,-1 + 321 1212 l 1,1,-1 + 233 1212 l 1,2,3 + 233 1088 233 1088 327 952 c 1,4,-1 + 204 952 l 1,5,6 + 164 1016 164 1016 145 1088.5 c 128,-1,7 + 126 1161 126 1161 126 1264 c 2,8,-1 + 126 1409 l 1,9,-1 + 321 1409 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: quotedblleft +Encoding: 8220 8220 2024 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 15 + 19 + 19 + 10 + 5 + 9 + 7 + 0 + 0 + 9 + 17 + 10 + 9 + 10 + 21 + 20 + 7 + 17 + 10 + 17 + 156 + 91 + 0 + 0 + 10 + 15 + 10 + 169 + 91 + 4 + 15 + 3 + 175 + 21 + 1 + 159 + 21 + 1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +407 952 m 1,0,-1 + 407 1098 l 2,1,2 + 407 1193 407 1193 425 1267.5 c 128,-1,3 + 443 1342 443 1342 485 1409 c 1,4,-1 + 607 1409 l 1,5,6 + 513 1273 513 1273 513 1147 c 1,7,-1 + 601 1147 l 1,8,-1 + 601 952 l 1,9,-1 + 407 952 l 1,0,-1 +75 952 m 1,10,-1 + 75 1098 l 2,11,12 + 75 1195 75 1195 93.5 1268.5 c 128,-1,13 + 112 1342 112 1342 155 1409 c 1,14,-1 + 276 1409 l 1,15,16 + 181 1272 181 1272 181 1147 c 1,17,-1 + 270 1147 l 1,18,-1 + 270 952 l 1,19,-1 + 75 952 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: quotedblright +Encoding: 8221 8221 2025 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 16 + 10 + 10 + 18 + 6 + 9 + 4 + 8 + 8 + 9 + 14 + 18 + 9 + 18 + 21 + 20 + 7 + 17 + 18 + 17 + 156 + 91 + 3 + 3 + 13 + 18 + 13 + 169 + 91 + 8 + 18 + 3 + 175 + 21 + 1 + 159 + 21 + 1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +607 1264 m 2,0,1 + 607 1171 607 1171 590 1098 c 128,-1,2 + 573 1025 573 1025 528 952 c 1,3,-1 + 407 952 l 1,4,5 + 501 1088 501 1088 501 1214 c 1,6,-1 + 413 1214 l 1,7,-1 + 413 1409 l 1,8,-1 + 607 1409 l 1,9,-1 + 607 1264 l 2,0,1 +276 1264 m 2,10,11 + 276 1159 276 1159 257 1087.5 c 128,-1,12 + 238 1016 238 1016 198 952 c 1,13,-1 + 75 952 l 1,14,15 + 169 1088 169 1088 169 1214 c 1,16,-1 + 81 1214 l 1,17,-1 + 81 1409 l 1,18,-1 + 276 1409 l 1,19,-1 + 276 1264 l 2,10,11 +EndSplineSet +EndChar + +StartChar: quotedblbase +Encoding: 8222 8222 2026 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 16 + 10 + 10 + 18 + 6 + 0 + 0 + 4 + 8 + 8 + 14 + 18 + 18 + 21 + 20 + 3 + 3 + 13 + 18 + 13 + 169 + 91 + 8 + 8 + 18 + 17 + 18 + 156 + 91 + 7 + 17 + 175 + 21 + 1 + 159 + 21 + 1 +DELTAP1 +DELTAP1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +607 51 m 2,0,1 + 607 -44 607 -44 589.5 -117.5 c 128,-1,2 + 572 -191 572 -191 528 -262 c 1,3,-1 + 407 -262 l 1,4,5 + 501 -126 501 -126 501 0 c 1,6,-1 + 413 0 l 1,7,-1 + 413 195 l 1,8,-1 + 607 195 l 1,9,-1 + 607 51 l 2,0,1 +276 51 m 2,10,11 + 276 -55 276 -55 257 -126 c 128,-1,12 + 238 -197 238 -197 198 -262 c 1,13,-1 + 75 -262 l 1,14,15 + 169 -126 169 -126 169 0 c 1,16,-1 + 81 0 l 1,17,-1 + 81 195 l 1,18,-1 + 276 195 l 1,19,-1 + 276 51 l 2,10,11 +EndSplineSet +Kerns2: 987 -68 "'kern' Horizontal Kerning lookup 17 subtable" 984 -68 "'kern' Horizontal Kerning lookup 17 subtable" 979 -160 "'kern' Horizontal Kerning lookup 17 subtable" 956 -160 "'kern' Horizontal Kerning lookup 17 subtable" 947 -160 "'kern' Horizontal Kerning lookup 17 subtable" +EndChar + +StartChar: uni201F +Encoding: 8223 8223 2027 +Width: 682 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2023 8219 N 1 0 0 1 -54 0 2 +Refer: 2023 8219 N 1 0 0 1 255 0 2 +EndChar + +StartChar: dagger +Encoding: 8224 8224 2028 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 11 + 9 + 8 + 0 + 0 + 7 + 6 + 4 + 3 + 3 + 13 + 12 + 10 + 11 + 193 + 89 + 7 + 10 + 194 + 89 + 5 + 4 + 193 + 89 + 7 + 5 + 194 + 89 + 7 + 0 + 1 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +CALL +CALL +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +649 1000 m 1,0,-1 + 627 -138 l 1,1,-1 + 512 -138 l 1,2,-1 + 490 1000 l 1,3,-1 + 138 973 l 1,4,-1 + 138 1137 l 1,5,-1 + 490 1108 l 1,6,-1 + 462 1484 l 1,7,-1 + 677 1484 l 1,8,-1 + 649 1108 l 1,9,-1 + 1002 1137 l 1,10,-1 + 1002 973 l 1,11,-1 + 649 1000 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: daggerdbl +Encoding: 8225 8225 2029 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 60 + 12 + 8 + 8 + 5 + 6 + 11 + 14 + 15 + 5 + 9 + 9 + 0 + 19 + 1 + 1 + 20 + 17 + 3 + 4 + 16 + 3 + 0 + 0 + 23 + 22 + 18 + 19 + 193 + 89 + 15 + 18 + 194 + 91 + 13 + 12 + 193 + 89 + 15 + 13 + 194 + 91 + 15 + 7 + 8 + 193 + 89 + 4 + 7 + 194 + 91 + 2 + 1 + 193 + 89 + 4 + 2 + 194 + 91 + 4 + 0 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +CALL +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +CALL +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SLOOP +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SLOOP +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +497 1000 m 1,0,-1 + 137 973 l 1,1,-1 + 137 1137 l 1,2,-1 + 497 1108 l 1,3,-1 + 481 1484 l 1,4,-1 + 656 1484 l 1,5,-1 + 640 1108 l 1,6,-1 + 1001 1137 l 1,7,-1 + 1001 973 l 1,8,-1 + 640 1000 l 1,9,-1 + 614 670 l 1,10,-1 + 640 343 l 1,11,-1 + 1000 370 l 1,12,-1 + 1000 206 l 1,13,-1 + 640 235 l 1,14,-1 + 656 -141 l 1,15,-1 + 481 -141 l 1,16,-1 + 497 235 l 1,17,-1 + 136 206 l 1,18,-1 + 136 370 l 1,19,-1 + 497 343 l 1,20,-1 + 523 670 l 1,21,-1 + 497 1000 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: bullet +Encoding: 8226 8226 2030 +Width: 717 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 0 + 12 + 13 + 143 + 3 + 1 + 0 + 3 + 48 + 3 + 2 + 3 + 15 + 9 + 1 + 9 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +MDRP[min,rnd,black] +DELTAP1 +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +636 682 m 256,0,1 + 636 569 636 569 554.5 485 c 128,-1,2 + 473 401 473 401 355 401 c 0,3,4 + 242 401 242 401 161.5 484 c 128,-1,5 + 81 567 81 567 81 682 c 256,6,7 + 81 797 81 797 162 876.5 c 128,-1,8 + 243 956 243 956 355 956 c 0,9,10 + 471 956 471 956 553.5 875.5 c 128,-1,11 + 636 795 636 795 636 682 c 256,0,1 +EndSplineSet +EndChar + +StartChar: ellipsis +Encoding: 8230 8230 2031 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 11 + 8 + 7 + 4 + 3 + 0 + 0 + 4 + 8 + 3 + 12 + 13 + 5 + 1 + 9 + 8 + 9 + 155 + 91 + 4 + 0 + 8 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1576 0 m 1,0,-1 + 1576 219 l 1,1,-1 + 1770 219 l 1,2,-1 + 1770 0 l 1,3,-1 + 1576 0 l 1,0,-1 +929 0 m 1,4,-1 + 929 219 l 1,5,-1 + 1121 219 l 1,6,-1 + 1121 0 l 1,7,-1 + 929 0 l 1,4,-1 +278 0 m 1,8,-1 + 278 219 l 1,9,-1 + 473 219 l 1,10,-1 + 473 0 l 1,11,-1 + 278 0 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: uni202A +Encoding: 8234 8234 2032 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 0 + 3 + 2 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +42 1154 m 1,0,-1 + 42 -273 l 1,1,-1 + -41 -273 l 1,2,-1 + -41 1233 l 1,3,-1 + 435 1233 l 1,4,-1 + 435 1154 l 1,5,-1 + 42 1154 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni202B +Encoding: 8235 8235 2033 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 4 + 0 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-435 1154 m 1,0,-1 + -435 1233 l 1,1,-1 + 41 1233 l 1,2,-1 + 41 -273 l 1,3,-1 + -42 -273 l 1,4,-1 + -42 1154 l 1,5,-1 + -435 1154 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni202C +Encoding: 8236 8236 2034 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 5 + 5 + 3 + 6 + 3 + 3 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +238 977 m 1,0,-1 + 42 977 l 1,1,-1 + 42 -273 l 1,2,-1 + -42 -273 l 1,3,-1 + -42 977 l 1,4,-1 + -238 977 l 1,5,-1 + -238 1411 l 1,6,-1 + 238 1411 l 1,7,-1 + 238 977 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni202D +Encoding: 8237 8237 2035 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 10 + 1 + 5 + 5 + 3 + 9 + 6 + 3 + 3 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +238 977 m 1,0,-1 + 42 977 l 1,1,-1 + 42 -273 l 1,2,-1 + -42 -273 l 1,3,-1 + -42 977 l 1,4,-1 + -238 977 l 1,5,-1 + -238 1411 l 1,6,-1 + 238 1411 l 1,7,-1 + 238 1332 l 1,8,-1 + -157 1332 l 1,9,-1 + -157 1055 l 1,10,-1 + 238 1055 l 1,11,-1 + 238 977 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni202E +Encoding: 8238 8238 2036 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 7 + 0 + 11 + 11 + 4 + 9 + 3 + 4 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-238 1055 m 1,0,-1 + 157 1055 l 1,1,-1 + 157 1332 l 1,2,-1 + -238 1332 l 1,3,-1 + -238 1411 l 1,4,-1 + 238 1411 l 1,5,-1 + 238 977 l 1,6,-1 + 42 977 l 1,7,-1 + 42 -273 l 1,8,-1 + -42 -273 l 1,9,-1 + -42 977 l 1,10,-1 + -238 977 l 1,11,-1 + -238 1055 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni202F +Encoding: 8239 8239 2037 +Width: 410 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2006 8201 N 1 0 0 1 0 0 2 +EndChar + +StartChar: perthousand +Encoding: 8240 8240 2038 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 46 + 37 + 31 + 37 + 181 + 91 + 0 + 1 + 2 + 3 + 1 + 3 + 31 + 31 + 40 + 40 + 13 + 70 + 61 + 55 + 61 + 181 + 91 + 64 + 55 + 16 + 7 + 13 + 7 + 181 + 91 + 22 + 13 + 55 + 13 + 77 + 76 + 52 + 67 + 182 + 89 + 58 + 52 + 183 + 91 + 58 + 73 + 182 + 89 + 58 + 19 + 28 + 43 + 182 + 89 + 34 + 28 + 183 + 91 + 34 + 49 + 182 + 89 + 34 + 19 + 10 + 25 + 182 + 89 + 4 + 10 + 183 + 91 + 4 + 19 + 182 + 89 + 4 + 4 + 2 + 3 + 0 + 18 + 121 + 77 + 1 + 105 + 77 + 1 + 93 + 77 + 1 + 73 + 77 + 1 + 57 + 77 + 1 + 43 + 77 + 1 + 22 + 77 + 1 + 249 + 77 + 1 + 237 + 77 + 1 + 201 + 77 + 1 + 187 + 77 + 1 + 153 + 77 + 1 + 123 + 77 + 1 + 102 + 77 + 1 + 73 + 77 + 1 + 54 + 77 + 1 + 25 + 77 + 1 + 9 + 77 + 1 + 105 + 249 + 77 + 1 + 235 + 77 + 1 + 221 + 77 + 1 + 169 + 77 + 1 + 150 + 77 + 1 + 121 + 77 + 1 + 107 + 77 + 1 + 73 + 77 + 1 + 59 + 77 + 1 + 25 + 77 + 1 + 11 + 77 + 1 + 253 + 77 + 1 + 217 + 77 + 1 + 203 + 77 + 1 + 169 + 77 + 1 + 155 + 77 + 1 + 141 + 77 + 1 + 121 + 77 + 1 + 107 + 77 + 1 + 91 + 77 + 1 + 57 + 77 + 1 + 43 + 77 + 1 + 27 + 77 + 1 + 249 + 77 + 1 + 235 + 77 + 1 + 201 + 77 + 1 + 169 + 77 + 1 + 150 + 77 + 1 + 121 + 77 + 1 + 107 + 77 + 1 + 57 + 77 + 1 + 38 + 77 + 1 + 9 + 77 + 1 + 56 + 249 + 77 + 1 + 230 + 77 + 1 + 201 + 77 + 1 + 182 + 77 + 1 + 153 + 77 + 1 + 139 + 77 +NPUSHB + 82 + 1 + 89 + 77 + 1 + 70 + 77 + 1 + 41 + 77 + 1 + 27 + 77 + 1 + 249 + 77 + 1 + 235 + 77 + 1 + 201 + 77 + 1 + 187 + 77 + 1 + 173 + 77 + 1 + 1 + 148 + 77 + 1 + 123 + 77 + 1 + 100 + 77 + 1 + 75 + 77 + 1 + 63 + 77 + 1 + 27 + 77 + 1 + 15 + 77 + 1 + 228 + 77 + 1 + 203 + 77 + 1 + 176 + 77 + 1 + 2 + 160 + 77 + 1 + 143 + 77 + 1 + 112 + 77 + 1 + 95 + 77 + 1 + 64 + 77 + 1 + 31 + 77 + 1 + 0 + 77 + 1 + 8 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SDS +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +304 0 m 1,0,-1 + 149 0 l 1,1,-1 + 1071 1409 l 1,2,-1 + 1228 1409 l 1,3,-1 + 304 0 l 1,0,-1 +356 1421 m 0,4,5 + 506 1421 506 1421 577.5 1329.5 c 128,-1,6 + 649 1238 649 1238 649 1060 c 0,7,8 + 649 880 649 880 573 787 c 128,-1,9 + 497 694 497 694 352 694 c 0,10,11 + 204 694 204 694 129.5 788 c 128,-1,12 + 55 882 55 882 55 1060 c 0,13,14 + 55 1241 55 1241 127.5 1331 c 128,-1,15 + 200 1421 200 1421 356 1421 c 0,4,5 +502 1060 m 0,16,17 + 502 1193 502 1193 468.5 1253 c 128,-1,18 + 435 1313 435 1313 356 1313 c 0,19,20 + 272 1313 272 1313 237 1253.5 c 128,-1,21 + 202 1194 202 1194 202 1060 c 0,22,23 + 202 928 202 928 238.5 867.5 c 128,-1,24 + 275 807 275 807 354 807 c 0,25,26 + 429 807 429 807 465.5 869 c 128,-1,27 + 502 931 502 931 502 1060 c 0,16,17 +1044 716 m 0,28,29 + 1194 716 1194 716 1265.5 624.5 c 128,-1,30 + 1337 533 1337 533 1337 355 c 0,31,32 + 1337 175 1337 175 1261 82 c 128,-1,33 + 1185 -11 1185 -11 1040 -11 c 0,34,35 + 892 -11 892 -11 817.5 83 c 128,-1,36 + 743 177 743 177 743 355 c 0,37,38 + 743 536 743 536 815.5 626 c 128,-1,39 + 888 716 888 716 1044 716 c 0,28,29 +1190 355 m 0,40,41 + 1190 488 1190 488 1156.5 548 c 128,-1,42 + 1123 608 1123 608 1044 608 c 0,43,44 + 960 608 960 608 925 548.5 c 128,-1,45 + 890 489 890 489 890 355 c 0,46,47 + 890 223 890 223 926.5 162.5 c 128,-1,48 + 963 102 963 102 1042 102 c 0,49,50 + 1117 102 1117 102 1153.5 164 c 128,-1,51 + 1190 226 1190 226 1190 355 c 0,40,41 +1699 716 m 0,52,53 + 1849 716 1849 716 1920.5 624.5 c 128,-1,54 + 1992 533 1992 533 1992 355 c 0,55,56 + 1992 175 1992 175 1916 82 c 128,-1,57 + 1840 -11 1840 -11 1695 -11 c 0,58,59 + 1547 -11 1547 -11 1472.5 83 c 128,-1,60 + 1398 177 1398 177 1398 355 c 0,61,62 + 1398 536 1398 536 1470.5 626 c 128,-1,63 + 1543 716 1543 716 1699 716 c 0,52,53 +1845 355 m 0,64,65 + 1845 488 1845 488 1811.5 548 c 128,-1,66 + 1778 608 1778 608 1699 608 c 0,67,68 + 1615 608 1615 608 1580 548.5 c 128,-1,69 + 1545 489 1545 489 1545 355 c 0,70,71 + 1545 223 1545 223 1581.5 162.5 c 128,-1,72 + 1618 102 1618 102 1697 102 c 0,73,74 + 1772 102 1772 102 1808.5 164 c 128,-1,75 + 1845 226 1845 226 1845 355 c 0,64,65 +EndSplineSet +EndChar + +StartChar: minute +Encoding: 8242 8242 2039 +Width: 384 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 1 + 2 + 3 + 0 + 2 + 0 + 5 + 4 + 0 + 1 + 3 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +85 890 m 1,0,-1 + 149 1409 l 1,1,-1 + 345 1409 l 1,2,-1 + 187 890 l 1,3,-1 + 85 890 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: second +Encoding: 8243 8243 2040 +Width: 725 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 4 + 96 + 4 + 1 +DELTAP1 +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 2039 8242 N 1 0 0 1 0 0 2 +Refer: 2039 8242 N 1 0 0 1 342 0 2 +EndChar + +StartChar: uni2034 +Encoding: 8244 8244 2041 +Width: 725 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2039 8242 N 1 0 0 1 -177 0 2 +Refer: 2039 8242 N 1 0 0 1 100 0 2 +Refer: 2039 8242 N 1 0 0 1 378 0 2 +EndChar + +StartChar: guilsinglleft +Encoding: 8249 8249 2042 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 6 + 1 + 1 + 8 + 5 + 3 + 10 + 9 + 3 + 0 + 239 + 91 + 15 + 3 + 47 + 3 + 111 + 3 + 127 + 3 + 4 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +424 141 m 1,0,-1 + 88 506 l 1,1,-1 + 88 569 l 1,2,-1 + 424 940 l 1,3,-1 + 591 940 l 1,4,-1 + 591 909 l 1,5,-1 + 256 537 l 1,6,-1 + 593 170 l 1,7,-1 + 593 141 l 1,8,-1 + 424 141 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: guilsinglright +Encoding: 8250 8250 2043 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 3 + 8 + 1 + 4 + 8 + 3 + 10 + 9 + 6 + 0 + 239 + 91 + 15 + 6 + 47 + 6 + 111 + 6 + 127 + 6 + 4 + 6 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +257 141 m 1,0,-1 + 89 141 l 1,1,-1 + 89 170 l 1,2,-1 + 427 537 l 1,3,-1 + 91 909 l 1,4,-1 + 91 940 l 1,5,-1 + 257 940 l 1,6,-1 + 594 569 l 1,7,-1 + 594 506 l 1,8,-1 + 257 141 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: exclamdbl +Encoding: 8252 8252 2044 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 3 + 2 + 8 + 47 + 8 + 1 + 1 + 0 + 47 + 0 + 1 +DELTAP1 +SHC[rp1] +SHC[rp1] +DELTAP1 +SRP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 4 33 N 1 0 0 1 0 0 2 +Refer: 4 33 N 1 0 0 1 456 0 2 +EndChar + +StartChar: radicalex +Encoding: 8254 8254 2045 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 0 + 5 + 1 + 4 + 2 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +747 1503 m 1,0,-1 + -64 1503 l 1,1,-1 + -64 1620 l 1,2,-1 + 747 1620 l 1,3,-1 + 747 1503 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: fraction +Encoding: 8260 8260 2046 +Width: 342 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 5 + 1 + 4 + 2 + 3 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-268 0 m 1,0,-1 + -416 0 l 1,1,-1 + 465 1409 l 1,2,-1 + 610 1409 l 1,3,-1 + -268 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni205E +Encoding: 8286 8286 2047 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 12 + 8 + 4 + 0 + 0 + 15 + 11 + 7 + 3 + 3 + 16 + 17 + 13 + 12 + 155 + 89 + 9 + 8 + 155 + 89 + 13 + 9 + 13 + 9 + 0 + 5 + 5 + 4 + 155 + 89 + 5 + 0 + 0 + 1 + 155 + 89 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +187 0 m 1,0,-1 + 187 219 l 1,1,-1 + 382 219 l 1,2,-1 + 382 0 l 1,3,-1 + 187 0 l 1,0,-1 +187 1265 m 1,4,-1 + 187 1484 l 1,5,-1 + 382 1484 l 1,6,-1 + 382 1265 l 1,7,-1 + 187 1265 l 1,4,-1 +187 844 m 1,8,-1 + 187 1063 l 1,9,-1 + 382 1063 l 1,10,-1 + 382 844 l 1,11,-1 + 187 844 l 1,8,-1 +187 421 m 1,12,-1 + 187 640 l 1,13,-1 + 382 640 l 1,14,-1 + 382 421 l 1,15,-1 + 187 421 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: uni206A +Encoding: 8298 8298 2048 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 0 + 8 + 11 + 3 + 15 + 15 + 4 + 13 + 7 + 3 + 3 + 4 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +SLOOP +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-238 1055 m 1,0,-1 + -42 1055 l 1,1,-1 + -42 1332 l 1,2,-1 + -238 1332 l 1,3,-1 + -238 1411 l 1,4,-1 + 238 1411 l 1,5,-1 + 238 1332 l 1,6,-1 + 42 1332 l 1,7,-1 + 42 1055 l 1,8,-1 + 238 1055 l 1,9,-1 + 238 977 l 1,10,-1 + 42 977 l 1,11,-1 + 42 -273 l 1,12,-1 + -42 -273 l 1,13,-1 + -42 977 l 1,14,-1 + -238 977 l 1,15,-1 + -238 1055 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni206B +Encoding: 8299 8299 2049 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 8 + 0 + 4 + 4 + 5 + 10 + 3 + 5 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-157 1055 m 1,0,-1 + 157 1055 l 1,1,-1 + 157 1332 l 1,2,-1 + -157 1332 l 1,3,-1 + -157 1055 l 1,0,-1 +-238 977 m 1,4,-1 + -238 1411 l 1,5,-1 + 238 1411 l 1,6,-1 + 238 977 l 1,7,-1 + 42 977 l 1,8,-1 + 42 -273 l 1,9,-1 + -42 -273 l 1,10,-1 + -42 977 l 1,11,-1 + -238 977 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni206C +Encoding: 8300 8300 2050 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 5 + 2 + 2 + 3 + 3 + 0 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +42 -273 m 1,0,-1 + -42 -273 l 1,1,-1 + -42 1045 l 1,2,-1 + -240 1411 l 1,3,-1 + 240 1411 l 1,4,-1 + 42 1045 l 1,5,-1 + 42 -273 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni206D +Encoding: 8301 8301 2051 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 4 + 4 + 2 + 5 + 3 + 2 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +42 977 m 1,0,-1 + 42 -273 l 1,1,-1 + -42 -273 l 1,2,-1 + -42 977 l 1,3,-1 + -240 977 l 1,4,-1 + 0 1418 l 1,5,-1 + 240 977 l 1,6,-1 + 42 977 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni206E +Encoding: 8302 8302 2052 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 6 + 2 + 10 + 5 + 7 + 3 + 9 + 9 + 7 + 10 + 3 + 1 + 8 + 4 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +42 -273 m 1,0,-1 + -42 -273 l 1,1,-1 + -42 1012 l 1,2,-1 + -239 1193 l 1,3,-1 + 0 1414 l 1,4,-1 + 239 1193 l 1,5,-1 + 42 1012 l 1,6,-1 + 42 -273 l 1,0,-1 +126 1193 m 1,7,-1 + 0 1306 l 1,8,-1 + -126 1193 l 1,9,-1 + 0 1081 l 1,10,-1 + 126 1193 l 1,7,-1 +EndSplineSet +EndChar + +StartChar: uni206F +Encoding: 8303 8303 2053 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 0 + 6 + 9 + 3 + 13 + 13 + 4 + 11 + 3 + 4 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +SLOOP +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-238 1055 m 1,0,-1 + -42 1055 l 1,1,-1 + -42 1332 l 1,2,-1 + -238 1332 l 1,3,-1 + -238 1411 l 1,4,-1 + 42 1411 l 1,5,-1 + 42 1055 l 1,6,-1 + 238 1055 l 1,7,-1 + 238 977 l 1,8,-1 + 42 977 l 1,9,-1 + 42 -273 l 1,10,-1 + -42 -273 l 1,11,-1 + -42 977 l 1,12,-1 + -238 977 l 1,13,-1 + -238 1055 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: foursuperior +Encoding: 8308 8308 2054 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 15 + 6 + 2 + 2 + 8 + 1 + 14 + 5 + 1 + 5 + 18 + 17 + 0 + 4 + 14 + 4 + 229 + 89 + 8 + 5 + 95 + 14 + 111 + 14 + 127 + 14 + 3 + 15 + 14 + 31 + 14 + 127 + 14 + 143 + 14 + 159 + 14 + 5 + 14 + 14 + 1 + 11 + 6 + 220 + 1 + 223 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +DELTAP1 +DELTAP2 +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +551 741 m 1,0,-1 + 551 563 l 1,1,-1 + 420 563 l 1,2,-1 + 420 741 l 1,3,-1 + 14 741 l 1,4,-1 + 14 852 l 1,5,-1 + 400 1409 l 1,6,-1 + 551 1409 l 1,7,-1 + 551 854 l 1,8,-1 + 662 854 l 1,9,-1 + 662 741 l 1,10,-1 + 551 741 l 1,0,-1 +422 1276 m 1,11,12 + 401 1236 401 1236 340 1141 c 1,13,-1 + 141 854 l 1,14,-1 + 420 854 l 1,15,-1 + 420 1214 l 1,16,-1 + 422 1276 l 1,11,12 +EndSplineSet +EndChar + +StartChar: fivesuperior +Encoding: 8309 8309 2055 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 67 + 19 + 27 + 1 + 3 + 0 + 27 + 1 + 9 + 4 + 22 + 13 + 0 + 23 + 20 + 20 + 19 + 24 + 18 + 18 + 6 + 19 + 0 + 19 + 31 + 30 + 27 + 16 + 228 + 89 + 68 + 7 + 84 + 7 + 100 + 7 + 3 + 53 + 7 + 1 + 3 + 0 + 7 + 16 + 7 + 32 + 7 + 3 + 9 + 5 + 7 + 18 + 27 + 27 + 3 + 20 + 20 + 23 + 229 + 89 + 20 + 220 + 3 + 10 + 228 + 89 + 3 + 221 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +IP +IP +SDS +SDB +DELTAP1 +SDS +DELTAP1 +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SVTCA[y-axis] +SDS +SDB +DELTAP1 +SDS +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +636 835 m 0,0,1 + 636 703 636 703 560.5 627.5 c 128,-1,2 + 485 552 485 552 347 552 c 0,3,4 + 228 552 228 552 150.5 609 c 128,-1,5 + 73 666 73 666 53 773 c 1,6,-1 + 186 788 l 1,7,8 + 197 728 197 728 238.5 692.5 c 128,-1,9 + 280 657 280 657 344 657 c 0,10,11 + 415 657 415 657 458 699.5 c 128,-1,12 + 501 742 501 742 501 835 c 0,13,14 + 501 916 501 916 460.5 958.5 c 128,-1,15 + 420 1001 420 1001 345 1001 c 0,16,17 + 254 1001 254 1001 194 941 c 1,18,-1 + 65 941 l 1,19,-1 + 98 1409 l 1,20,-1 + 604 1409 l 1,21,-1 + 604 1296 l 1,22,-1 + 206 1296 l 1,23,-1 + 187 1051 l 1,24,25 + 216 1077 216 1077 261.5 1093.5 c 128,-1,26 + 307 1110 307 1110 361 1110 c 0,27,28 + 491 1110 491 1110 563.5 1037.5 c 128,-1,29 + 636 965 636 965 636 835 c 0,0,1 +EndSplineSet +EndChar + +StartChar: sevensuperior +Encoding: 8311 8311 2056 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 8 + 4 + 5 + 5 + 0 + 9 + 0 + 9 + 13 + 12 + 0 + 9 + 10 + 9 + 229 + 89 + 10 + 220 + 4 + 223 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +632 1308 m 1,0,1 + 503 1112 503 1112 449 1001.5 c 128,-1,2 + 395 891 395 891 368.5 785 c 128,-1,3 + 342 679 342 679 342 564 c 1,4,-1 + 209 564 l 1,5,6 + 209 719 209 719 271 882.5 c 128,-1,7 + 333 1046 333 1046 503 1296 c 1,8,-1 + 43 1296 l 1,9,-1 + 43 1409 l 1,10,-1 + 632 1409 l 1,11,-1 + 632 1308 l 1,0,1 +EndSplineSet +EndChar + +StartChar: eightsuperior +Encoding: 8312 8312 2057 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 45 + 32 + 42 + 6 + 36 + 36 + 17 + 29 + 0 + 42 + 42 + 12 + 23 + 29 + 23 + 49 + 50 + 45 + 33 + 9 + 14 + 9 + 14 + 228 + 89 + 15 + 9 + 31 + 9 + 2 + 9 + 3 + 9 + 9 + 26 + 39 + 39 + 3 + 228 + 89 + 39 + 222 + 26 + 20 + 228 + 89 + 26 + 221 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +479 1193 m 0,0,1 + 479 1263 479 1263 445 1292.5 c 128,-1,2 + 411 1322 411 1322 342 1322 c 256,3,4 + 273 1322 273 1322 239.5 1291 c 128,-1,5 + 206 1260 206 1260 206 1193 c 0,6,7 + 206 1123 206 1123 241 1091 c 128,-1,8 + 276 1059 276 1059 343 1059 c 0,9,10 + 411 1059 411 1059 445 1088.5 c 128,-1,11 + 479 1118 479 1118 479 1193 c 0,0,1 +500 814 m 0,12,13 + 500 958 500 958 342 958 c 0,14,15 + 266 958 266 958 226.5 920 c 128,-1,16 + 187 882 187 882 187 812 c 0,17,18 + 187 729 187 729 226 691 c 128,-1,19 + 265 653 265 653 345 653 c 0,20,21 + 426 653 426 653 463 690.5 c 128,-1,22 + 500 728 500 728 500 814 c 0,12,13 +642 800 m 0,23,24 + 642 682 642 682 565 617 c 128,-1,25 + 488 552 488 552 344 552 c 0,26,27 + 202 552 202 552 123.5 617 c 128,-1,28 + 45 682 45 682 45 799 c 0,29,30 + 45 880 45 880 92.5 937 c 128,-1,31 + 140 994 140 994 214 1006 c 1,32,-1 + 214 1009 l 1,33,34 + 146 1024 146 1024 105.5 1078 c 128,-1,35 + 65 1132 65 1132 65 1205 c 0,36,37 + 65 1303 65 1303 140 1362.5 c 128,-1,38 + 215 1422 215 1422 342 1422 c 0,39,40 + 472 1422 472 1422 546.5 1363 c 128,-1,41 + 621 1304 621 1304 621 1204 c 0,42,43 + 621 1131 621 1131 580 1077 c 128,-1,44 + 539 1023 539 1023 471 1010 c 1,45,-1 + 471 1007 l 1,46,47 + 553 993 553 993 597.5 938.5 c 128,-1,48 + 642 884 642 884 642 800 c 0,23,24 +EndSplineSet +EndChar + +StartChar: nsuperior +Encoding: 8319 8319 2058 +Width: 747 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 13 + 8 + 8 + 9 + 0 + 21 + 9 + 21 + 22 + 23 + 13 + 4 + 17 + 4 + 228 + 89 + 9 + 139 + 0 + 251 + 0 + 2 + 0 +PUSHW_1 + -64 +NPUSHB + 35 + 9 + 13 + 72 + 0 + 17 + 11 + 11 + 75 + 17 + 91 + 17 + 2 + 17 + 64 + 21 + 25 + 72 + 17 + 64 + 16 + 19 + 72 + 47 + 17 + 63 + 17 + 2 + 27 + 17 + 1 + 15 + 17 + 1 + 2 + 17 +SVTCA[y-axis] +MDAP[rnd] +SDS +DELTAP1 +DELTAP1 +DELTAP1 +CALL +CALL +DELTAP1 +SHP[rp1] +MDAP[rnd] +SRP0 +MDRP[min,rnd,grey] +CALL +DELTAP1 +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +514 519 m 1,0,-1 + 514 917 l 2,1,2 + 514 1007 514 1007 487 1042 c 128,-1,3 + 460 1077 460 1077 390 1077 c 0,4,5 + 318 1077 318 1077 275.5 1027 c 128,-1,6 + 233 977 233 977 233 883 c 2,7,-1 + 233 519 l 1,8,-1 + 105 519 l 1,9,-1 + 105 1030 l 1,10,-1 + 101 1169 l 1,11,-1 + 220 1169 l 1,12,-1 + 226 1058 l 1,13,-1 + 228 1058 l 1,14,15 + 263 1123 263 1123 312.5 1152 c 128,-1,16 + 362 1181 362 1181 436 1181 c 0,17,18 + 546 1181 546 1181 594.5 1127 c 128,-1,19 + 643 1073 643 1073 643 952 c 2,20,-1 + 643 519 l 1,21,-1 + 514 519 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2090 +Encoding: 8336 8336 2059 +Width: 762 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1379 7491 N 1 0 0 1 2 -629 2 +EndChar + +StartChar: uni2091 +Encoding: 8337 8337 2060 +Width: 761 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1385 7497 N 1 0 0 1 -5 -626 2 +EndChar + +StartChar: uni2092 +Encoding: 8338 8338 2061 +Width: 773 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1394 7506 N 1 0 0 1 0 -627 2 +EndChar + +StartChar: uni2093 +Encoding: 8339 8339 2062 +Width: 672 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 817 879 N 1 0 0 1 334 -626 2 +EndChar + +StartChar: uni2094 +Encoding: 8340 8340 2063 +Width: 761 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1386 7498 N 1 0 0 1 -5 -627 2 +EndChar + +StartChar: uni20A0 +Encoding: 8352 8352 2064 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 62 + 5 + 24 + 13 + 17 + 17 + 8 + 20 + 0 + 30 + 11 + 18 + 18 + 19 + 15 + 30 + 20 + 24 + 6 + 31 + 32 + 9 + 12 + 96 + 89 + 16 + 21 + 8 + 21 + 96 + 89 + 13 + 8 + 15 + 8 + 79 + 8 + 207 + 8 + 255 + 8 + 4 + 11 + 3 + 9 + 8 + 9 + 8 + 27 + 20 + 27 + 2 + 96 + 89 + 0 + 27 + 4 + 20 + 17 + 96 + 89 + 20 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +720 1196 m 1,0,1 + 675 1351 675 1351 496 1351 c 0,2,3 + 339 1351 339 1351 270.5 1262.5 c 128,-1,4 + 202 1174 202 1174 202 986 c 0,5,6 + 202 790 202 790 272 698 c 128,-1,7 + 342 606 342 606 495 605 c 1,8,-1 + 495 1042 l 1,9,-1 + 1102 1042 l 1,10,-1 + 1102 903 l 1,11,-1 + 675 903 l 1,12,-1 + 675 604 l 1,13,-1 + 1063 604 l 1,14,-1 + 1063 466 l 1,15,-1 + 675 466 l 1,16,-1 + 675 139 l 1,17,-1 + 1127 139 l 1,18,-1 + 1127 0 l 1,19,-1 + 495 0 l 1,20,-1 + 495 463 l 1,21,22 + 253 465 253 465 133.5 593 c 128,-1,23 + 14 721 14 721 14 982 c 0,24,25 + 14 1231 14 1231 141 1361.5 c 128,-1,26 + 268 1492 268 1492 501 1492 c 0,27,28 + 657 1492 657 1492 761 1419.5 c 128,-1,29 + 865 1347 865 1347 901 1216 c 1,30,-1 + 720 1196 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni20A1 +Encoding: 8353 8353 2065 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 60 + 35 + 9 + 8 + 8 + 34 + 0 + 14 + 13 + 13 + 29 + 30 + 0 + 30 + 4 + 18 + 17 + 17 + 23 + 24 + 4 + 24 + 47 + 48 + 34 + 29 + 27 + 64 + 37 + 44 + 46 + 3 + 1 + 23 + 23 + 1 + 31 + 27 + 27 + 21 + 95 + 89 + 27 + 19 + 41 + 20 + 10 + 18 + 18 + 13 + 9 + 10 + 64 + 10 + 43 + 95 + 89 + 15 + 7 + 10 + 4 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp1] +MDAP[rnd] +SRP2 +IP +IP +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +SLOOP +IP +SMD +SRP0 +MDRP[min,rnd,white] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +304 -113 m 1,0,-1 + 365 105 l 1,1,2 + 234 202 234 202 169 358 c 128,-1,3 + 104 514 104 514 104 711 c 0,4,5 + 104 1033 104 1033 270 1222.5 c 128,-1,6 + 436 1412 436 1412 740 1428 c 1,7,-1 + 773 1544 l 1,8,-1 + 915 1544 l 1,9,-1 + 881 1426 l 1,10,11 + 966 1418 966 1418 1038 1396 c 1,12,-1 + 1080 1544 l 1,13,-1 + 1222 1544 l 1,14,-1 + 1165 1342 l 1,15,16 + 1317 1253 1317 1253 1388 1081 c 1,17,-1 + 1207 1021 l 1,18,19 + 1176 1099 1176 1099 1113 1160 c 1,20,-1 + 824 137 l 1,21,22 + 1099 148 1099 148 1245 430 c 1,23,-1 + 1401 352 l 1,24,25 + 1314 170 1314 170 1156.5 75 c 128,-1,26 + 999 -20 999 -20 791 -20 c 2,27,-1 + 779 -20 l 1,28,-1 + 753 -113 l 1,29,-1 + 611 -113 l 1,30,-1 + 641 -7 l 1,31,32 + 558 6 558 6 488 36 c 1,33,-1 + 446 -113 l 1,34,-1 + 304 -113 l 1,0,-1 +298 711 m 0,35,36 + 298 462 298 462 423 308 c 1,37,-1 + 694 1266 l 1,38,39 + 505 1237 505 1237 401.5 1091 c 128,-1,40 + 298 945 298 945 298 711 c 0,35,36 +993 1237 m 1,41,42 + 924 1266 924 1266 838 1272 c 1,43,-1 + 536 207 l 1,44,45 + 600 166 600 166 685 148 c 1,46,-1 + 993 1237 l 1,41,42 +EndSplineSet +EndChar + +StartChar: uni20A2 +Encoding: 8354 8354 2066 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 69 + 42 + 41 + 41 + 12 + 25 + 25 + 7 + 6 + 6 + 19 + 28 + 3 + 35 + 28 + 35 + 46 + 45 + 16 + 21 + 95 + 89 + 9 + 9 + 16 + 16 + 31 + 38 + 15 + 42 + 1 + 13 + 3 + 42 + 42 + 38 + 38 + 0 + 95 + 89 + 38 + 4 + 6 + 25 + 31 + 25 + 95 + 89 + 0 + 27 + 16 + 27 + 2 + 48 + 27 + 64 + 27 + 112 + 27 + 128 + 27 + 192 + 27 + 208 + 27 + 6 + 27 + 27 + 31 + 19 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +792 1274 m 0,0,1 + 558 1274 558 1274 428 1123.5 c 128,-1,2 + 298 973 298 973 298 711 c 0,3,4 + 298 500 298 500 391 352.5 c 128,-1,5 + 484 205 484 205 652 157 c 1,6,-1 + 652 589 l 2,7,8 + 652 703 652 703 646 841 c 1,9,-1 + 816 841 l 1,10,11 + 824 657 824 657 824 620 c 1,12,-1 + 828 620 l 1,13,14 + 871 759 871 759 927 810 c 128,-1,15 + 983 861 983 861 1085 861 c 0,16,17 + 1121 861 1121 861 1158 851 c 1,18,-1 + 1158 686 l 1,19,20 + 1122 696 1122 696 1062 696 c 0,21,22 + 950 696 950 696 891 599.5 c 128,-1,23 + 832 503 832 503 832 323 c 2,24,-1 + 832 138 l 1,25,26 + 1102 152 1102 152 1245 430 c 1,27,-1 + 1401 352 l 1,28,29 + 1314 170 1314 170 1156.5 75 c 128,-1,30 + 999 -20 999 -20 791 -20 c 0,31,32 + 578 -20 578 -20 422.5 68.5 c 128,-1,33 + 267 157 267 157 185.5 321.5 c 128,-1,34 + 104 486 104 486 104 711 c 0,35,36 + 104 1048 104 1048 286 1239 c 128,-1,37 + 468 1430 468 1430 790 1430 c 0,38,39 + 1015 1430 1015 1430 1166 1342 c 128,-1,40 + 1317 1254 1317 1254 1388 1081 c 1,41,-1 + 1207 1021 l 1,42,43 + 1158 1144 1158 1144 1049.5 1209 c 128,-1,44 + 941 1274 941 1274 792 1274 c 0,0,1 +EndSplineSet +EndChar + +StartChar: franc +Encoding: 8355 8355 2067 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 64 + 5 + 1 + 9 + 9 + 14 + 12 + 7 + 3 + 10 + 16 + 10 + 16 + 18 + 19 + 8 + 12 + 13 + 12 + 81 + 89 + 5 + 31 + 13 + 1 + 0 + 13 + 1 + 8 + 3 + 13 + 1 + 64 + 1 + 4 + 95 + 89 + 15 + 1 + 31 + 1 + 63 + 1 + 79 + 1 + 4 + 15 + 1 + 63 + 1 + 2 + 8 + 3 + 1 + 1 + 9 + 15 + 15 + 0 + 95 + 89 + 15 + 3 + 9 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +SDS +SDB +DELTAP1 +DELTAP2 +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +IP +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +359 1254 m 1,0,-1 + 359 778 l 1,1,-1 + 1046 778 l 1,2,-1 + 1046 621 l 1,3,-1 + 359 621 l 1,4,-1 + 359 408 l 1,5,-1 + 761 408 l 1,6,-1 + 761 279 l 1,7,-1 + 359 279 l 1,8,-1 + 359 0 l 1,9,-1 + 179 0 l 1,10,-1 + 179 279 l 1,11,-1 + 4 279 l 1,12,-1 + 4 408 l 1,13,-1 + 179 408 l 1,14,-1 + 179 1409 l 1,15,-1 + 1070 1409 l 1,16,-1 + 1070 1254 l 1,17,-1 + 359 1254 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: lira +Encoding: 8356 8356 2068 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 86 + 45 + 36 + 32 + 0 + 35 + 31 + 38 + 38 + 16 + 12 + 8 + 24 + 23 + 23 + 42 + 0 + 42 + 15 + 11 + 4 + 4 + 8 + 0 + 3 + 47 + 46 + 34 + 14 + 15 + 14 + 81 + 89 + 38 + 10 + 11 + 10 + 81 + 89 + 35 + 175 + 11 + 1 + 0 + 11 + 16 + 11 + 32 + 11 + 3 + 11 + 64 + 31 + 15 + 15 + 31 + 15 + 47 + 15 + 3 + 9 + 3 + 15 + 15 + 4 + 20 + 20 + 27 + 115 + 89 + 15 + 24 + 1 + 11 + 5 + 24 + 20 + 7 + 5 + 42 + 4 + 42 + 116 + 89 + 45 + 4 + 24 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +SMD +MDRP[min,rnd,white] +DELTAP1 +DELTAP1 +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1104 311 m 1,0,1 + 1087 161 1087 161 999 80.5 c 128,-1,2 + 911 0 911 0 767 0 c 2,3,-1 + 69 0 l 1,4,-1 + 69 154 l 1,5,6 + 158 200 158 200 201 280 c 128,-1,7 + 244 360 244 360 244 481 c 2,8,-1 + 244 506 l 1,9,-1 + 58 506 l 1,10,-1 + 58 635 l 1,11,-1 + 244 635 l 1,12,-1 + 244 775 l 1,13,-1 + 58 775 l 1,14,-1 + 58 904 l 1,15,-1 + 244 904 l 1,16,-1 + 244 1034 l 2,17,18 + 244 1229 244 1229 347 1329.5 c 128,-1,19 + 450 1430 450 1430 646 1430 c 0,20,21 + 793 1430 793 1430 893 1369.5 c 128,-1,22 + 993 1309 993 1309 1027 1200 c 1,23,-1 + 853 1143 l 1,24,25 + 832 1207 832 1207 776.5 1244.5 c 128,-1,26 + 721 1282 721 1282 650 1282 c 0,27,28 + 536 1282 536 1282 480 1224.5 c 128,-1,29 + 424 1167 424 1167 424 1042 c 2,30,-1 + 424 904 l 1,31,-1 + 832 904 l 1,32,-1 + 832 775 l 1,33,-1 + 424 775 l 1,34,-1 + 424 635 l 1,35,-1 + 832 635 l 1,36,-1 + 832 506 l 1,37,-1 + 424 506 l 1,38,-1 + 424 499 l 2,39,40 + 424 380 424 380 378 287 c 128,-1,41 + 332 194 332 194 255 153 c 1,42,-1 + 738 153 l 2,43,44 + 912 153 912 153 941 329 c 1,45,-1 + 1104 311 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni20A5 +Encoding: 8357 8357 2069 +Width: 1706 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 53 + 46 + 0 + 0 + 18 + 9 + 9 + 13 + 10 + 25 + 43 + 43 + 1 + 44 + 26 + 27 + 27 + 35 + 35 + 34 + 34 + 28 + 44 + 10 + 4 + 47 + 48 + 30 + 39 + 80 + 89 + 27 + 64 + 30 + 16 + 45 + 18 + 25 + 3 + 22 + 10 + 22 + 5 + 80 + 89 + 22 + 16 + 14 + 15 + 43 + 35 + 0 + 10 + 21 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,white] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,white] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +381 -200 m 1,0,-1 + 768 575 l 1,1,-1 + 768 686 l 2,2,3 + 768 843 768 843 725 903 c 128,-1,4 + 682 963 682 963 570 963 c 0,5,6 + 455 963 455 963 388 875 c 128,-1,7 + 321 787 321 787 321 627 c 2,8,-1 + 321 0 l 1,9,-1 + 142 0 l 1,10,-1 + 142 851 l 2,11,12 + 142 1040 142 1040 136 1082 c 1,13,-1 + 306 1082 l 1,14,15 + 307 1077 307 1077 308 1055 c 128,-1,16 + 309 1033 309 1033 310.5 1004.5 c 128,-1,17 + 312 976 312 976 314 897 c 1,18,-1 + 317 897 l 1,19,20 + 375 1012 375 1012 450 1057 c 128,-1,21 + 525 1102 525 1102 633 1102 c 0,22,23 + 756 1102 756 1102 828 1053 c 128,-1,24 + 900 1004 900 1004 929 897 c 1,25,-1 + 1152 1344 l 1,26,-1 + 1310 1344 l 1,27,-1 + 1187 1097 l 1,28,29 + 1229 1102 1229 1102 1258 1102 c 0,30,31 + 1422 1102 1422 1102 1496.5 1013 c 128,-1,32 + 1571 924 1571 924 1571 721 c 2,33,-1 + 1571 0 l 1,34,-1 + 1393 0 l 1,35,-1 + 1393 686 l 2,36,37 + 1393 843 1393 843 1350 903 c 128,-1,38 + 1307 963 1307 963 1195 963 c 0,39,40 + 1150 963 1150 963 1114 950 c 1,41,-1 + 946 611 l 1,42,-1 + 946 0 l 1,43,-1 + 768 0 l 1,44,-1 + 768 253 l 1,45,-1 + 543 -200 l 1,46,-1 + 381 -200 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni20A6 +Encoding: 8358 8358 2070 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 75 + 27 + 23 + 23 + 41 + 40 + 39 + 32 + 20 + 20 + 25 + 1 + 37 + 29 + 5 + 36 + 36 + 31 + 33 + 3 + 21 + 16 + 10 + 14 + 14 + 38 + 12 + 8 + 16 + 21 + 16 + 42 + 43 + 37 + 19 + 15 + 23 + 24 + 23 + 95 + 89 + 32 + 28 + 12 + 24 + 35 + 31 + 11 + 27 + 0 + 27 + 95 + 89 + 39 + 8 + 4 + 0 + 38 + 21 + 24 + 41 + 40 + 24 + 0 + 40 + 40 + 0 + 24 + 3 + 2 + 17 + 21 + 18 + 6 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +25 1010 m 1,0,-1 + 168 1010 l 1,1,-1 + 168 1409 l 1,2,-1 + 390 1409 l 1,3,-1 + 641 1010 l 1,4,-1 + 1140 1010 l 1,5,-1 + 1140 1409 l 1,6,-1 + 1312 1409 l 1,7,-1 + 1312 1010 l 1,8,-1 + 1454 1010 l 1,9,-1 + 1454 855 l 1,10,-1 + 1312 855 l 1,11,-1 + 1312 624 l 1,12,-1 + 1454 624 l 1,13,-1 + 1454 469 l 1,14,-1 + 1312 469 l 1,15,-1 + 1312 0 l 1,16,-1 + 1082 0 l 1,17,-1 + 787 469 l 1,18,-1 + 338 469 l 1,19,-1 + 338 0 l 1,20,-1 + 168 0 l 1,21,-1 + 168 469 l 1,22,-1 + 25 469 l 1,23,-1 + 25 624 l 1,24,-1 + 168 624 l 1,25,-1 + 168 855 l 1,26,-1 + 25 855 l 1,27,-1 + 25 1010 l 1,0,-1 +885 624 m 1,28,-1 + 1140 624 l 1,29,-1 + 1140 855 l 1,30,-1 + 739 855 l 1,31,-1 + 885 624 l 1,28,-1 +338 624 m 1,32,-1 + 690 624 l 1,33,-1 + 545 855 l 1,34,-1 + 338 855 l 1,35,-1 + 338 624 l 1,32,-1 +1140 469 m 1,36,-1 + 983 469 l 1,37,-1 + 1152 201 l 1,38,-1 + 1140 469 l 1,36,-1 +336 1010 m 1,39,-1 + 447 1010 l 1,40,-1 + 328 1200 l 1,41,-1 + 336 1010 l 1,39,-1 +EndSplineSet +EndChar + +StartChar: peseta +Encoding: 8359 8359 2071 +Width: 2240 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 15 + 5 + 5 + 6 + 67 + 66 + 66 + 40 + 0 + 11 + 32 + 18 + 60 + 30 + 34 + 34 + 27 + 25 + 23 + 47 + 46 + 46 + 72 + 60 + 60 + 23 + 11 + 3 + 6 + 52 + 52 + 40 + 40 + 6 + 6 + 80 + 79 + 72 +PUSHW_1 + -8 +NPUSHB + 215 + 19 + 22 + 72 + 52 + 8 + 19 + 22 + 72 + 72 + 52 + 63 + 43 + 43 + 50 + 80 + 89 + 47 + 43 + 22 + 20 + 37 + 80 + 89 + 20 + 22 + 15 + 4 + 95 + 89 + 63 + 70 + 80 + 89 + 57 + 67 + 1 + 3 + 15 + 67 + 31 + 67 + 47 + 67 + 3 + 13 + 6 + 67 + 63 + 63 + 26 + 33 + 25 + 26 + 25 + 80 + 89 + 30 + 26 + 28 + 28 + 26 + 63 + 15 + 1 + 15 + 64 + 9 + 17 + 72 + 15 + 26 + 31 + 26 + 2 + 16 + 3 + 15 + 26 + 15 + 26 + 6 + 7 + 7 + 14 + 95 + 89 + 7 + 3 + 6 + 18 + 64 + 80 + 1 + 48 + 80 + 1 + 32 + 80 + 1 + 16 + 80 + 1 + 0 + 80 + 1 + 208 + 80 + 1 + 192 + 80 + 1 + 176 + 80 + 1 + 160 + 80 + 1 + 144 + 80 + 1 + 128 + 80 + 1 + 112 + 80 + 1 + 96 + 80 + 1 + 80 + 80 + 1 + 240 + 80 + 1 + 224 + 80 + 1 + 208 + 80 + 1 + 192 + 80 + 1 + 176 + 80 + 1 + 48 + 80 + 1 + 32 + 80 + 1 + 16 + 80 + 1 + 0 + 80 + 1 + 59 + 224 + 80 + 1 + 208 + 80 + 1 + 192 + 80 + 1 + 176 + 80 + 1 + 160 + 80 + 1 + 144 + 80 + 1 + 128 + 80 + 1 + 112 + 80 + 1 + 96 + 80 + 1 + 80 + 80 + 1 + 64 + 80 + 1 + 143 + 80 + 1 + 127 + 80 + 1 + 111 + 80 + 1 + 48 + 80 + 1 + 32 + 80 + 1 + 16 + 80 + 1 + 0 + 80 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +DELTAP1 +SRP1 +SHP[rp1] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +RTG +MDAP[rnd] +SHP[rp1] +SDS +SDB +DELTAP1 +SDS +DELTAP1 +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +954 985 m 0,0,1 + 954 785 954 785 823.5 667 c 128,-1,2 + 693 549 693 549 469 549 c 2,3,-1 + 339 549 l 1,4,-1 + 339 0 l 1,5,-1 + 158 0 l 1,6,-1 + 158 1409 l 1,7,-1 + 457 1409 l 2,8,9 + 694 1409 694 1409 824 1298 c 128,-1,10 + 954 1187 954 1187 954 985 c 0,0,1 +772 983 m 0,11,12 + 772 1256 772 1256 444 1256 c 2,13,-1 + 339 1256 l 1,14,-1 + 339 700 l 1,15,-1 + 452 700 l 2,16,17 + 772 700 772 700 772 983 c 0,11,12 +1407 8 m 1,18,19 + 1331 -16 1331 -16 1250 -16 c 0,20,21 + 1145 -16 1145 -16 1098.5 45.5 c 128,-1,22 + 1052 107 1052 107 1052 229 c 2,23,-1 + 1052 682 l 1,24,-1 + 948 682 l 1,25,-1 + 948 813 l 1,26,-1 + 1059 813 l 1,27,-1 + 1112 1055 l 1,28,-1 + 1222 1055 l 1,29,-1 + 1222 813 l 1,30,-1 + 1379 813 l 1,31,-1 + 1379 682 l 1,32,-1 + 1222 682 l 1,33,-1 + 1222 268 l 2,34,35 + 1222 190 1222 190 1242.5 153.5 c 128,-1,36 + 1263 117 1263 117 1318 117 c 0,37,38 + 1346 117 1346 117 1407 131 c 1,39,-1 + 1407 8 l 1,18,19 +2151 229 m 0,40,41 + 2151 109 2151 109 2059.5 44.5 c 128,-1,42 + 1968 -20 1968 -20 1798 -20 c 0,43,44 + 1637 -20 1637 -20 1549.5 35 c 128,-1,45 + 1462 90 1462 90 1434 210 c 1,46,-1 + 1593 236 l 1,47,48 + 1610 175 1610 175 1659.5 146 c 128,-1,49 + 1709 117 1709 117 1797 117 c 0,50,51 + 1981 117 1981 117 1981 222 c 0,52,53 + 1981 253 1981 253 1963 274 c 128,-1,54 + 1945 295 1945 295 1909.5 310.5 c 128,-1,55 + 1874 326 1874 326 1746 358 c 0,56,57 + 1637 385 1637 385 1585 414.5 c 128,-1,58 + 1533 444 1533 444 1505 487.5 c 128,-1,59 + 1477 531 1477 531 1477 593 c 0,60,61 + 1477 705 1477 705 1561 764.5 c 128,-1,62 + 1645 824 1645 824 1806 824 c 0,63,64 + 1947 824 1947 824 2029.5 771.5 c 128,-1,65 + 2112 719 2112 719 2134 603 c 1,66,-1 + 1973 586 l 1,67,68 + 1963 634 1963 634 1920 660 c 128,-1,69 + 1877 686 1877 686 1807 686 c 0,70,71 + 1652 686 1652 686 1652 601 c 0,72,73 + 1652 563 1652 563 1695.5 535.5 c 128,-1,74 + 1739 508 1739 508 1869 479 c 0,75,76 + 1983 453 1983 453 2037 423 c 128,-1,77 + 2091 393 2091 393 2121 346.5 c 128,-1,78 + 2151 300 2151 300 2151 229 c 0,40,41 +EndSplineSet +EndChar + +StartChar: uni20A8 +Encoding: 8360 8360 2072 +Width: 2384 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 53 82 N 1 0 0 1 0 0 2 +Refer: 86 115 N 1 0 0 1 1361 0 2 +EndChar + +StartChar: uni20A9 +Encoding: 8361 8361 2073 +Width: 1933 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 65 + 46 + 50 + 49 + 3 + 22 + 30 + 31 + 31 + 1 + 6 + 23 + 22 + 22 + 20 + 16 + 6 + 16 + 54 + 53 + 43 + 39 + 35 + 3 + 19 + 20 + 19 + 95 + 89 + 52 + 29 + 24 + 1 + 20 + 48 + 44 + 10 + 7 + 15 + 16 + 15 + 95 + 89 + 40 + 36 + 32 + 5 + 16 + 50 + 23 + 20 + 49 + 46 + 16 + 20 + 16 + 20 + 16 + 13 + 30 + 27 + 23 + 3 + 9 + 13 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1801 1010 m 1,0,-1 + 1910 1010 l 1,1,-1 + 1910 855 l 1,2,-1 + 1756 855 l 1,3,-1 + 1690 625 l 1,4,-1 + 1910 625 l 1,5,-1 + 1910 470 l 1,6,-1 + 1646 470 l 1,7,-1 + 1511 0 l 1,8,-1 + 1283 0 l 1,9,-1 + 1155 470 l 1,10,-1 + 781 470 l 1,11,-1 + 652 0 l 1,12,-1 + 424 0 l 1,13,-1 + 289 470 l 1,14,-1 + 25 470 l 1,15,-1 + 25 625 l 1,16,-1 + 244 625 l 1,17,-1 + 178 855 l 1,18,-1 + 25 855 l 1,19,-1 + 25 1010 l 1,20,-1 + 134 1010 l 1,21,-1 + 19 1409 l 1,22,-1 + 218 1409 l 1,23,-1 + 326 1010 l 1,24,-1 + 765 1010 l 1,25,-1 + 877 1409 l 1,26,-1 + 1060 1409 l 1,27,-1 + 1171 1010 l 1,28,-1 + 1610 1010 l 1,29,-1 + 1717 1409 l 1,30,-1 + 1916 1409 l 1,31,-1 + 1801 1010 l 1,0,-1 +1279 625 m 1,32,-1 + 1507 625 l 1,33,-1 + 1569 855 l 1,34,-1 + 1215 855 l 1,35,-1 + 1279 625 l 1,32,-1 +431 625 m 1,36,-1 + 658 625 l 1,37,-1 + 722 855 l 1,38,-1 + 368 855 l 1,39,-1 + 431 625 l 1,36,-1 +823 625 m 1,40,-1 + 1112 625 l 1,41,-1 + 1050 855 l 1,42,-1 + 887 855 l 1,43,-1 + 823 625 l 1,40,-1 +1466 470 m 1,44,-1 + 1322 470 l 1,45,-1 + 1393 168 l 1,46,-1 + 1466 470 l 1,44,-1 +615 470 m 1,47,-1 + 473 470 l 1,48,-1 + 544 168 l 1,49,-1 + 615 470 l 1,47,-1 +969 1205 m 1,50,-1 + 922 1010 l 1,51,-1 + 1015 1010 l 1,52,-1 + 969 1205 l 1,50,-1 +EndSplineSet +EndChar + +StartChar: sheqel +Encoding: 8362 8362 2074 +Width: 1739 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 19 + 16 + 5 + 6 + 16 + 6 + 27 + 13 + 14 + 14 + 32 + 24 + 27 + 27 + 33 + 17 + 17 + 15 + 6 + 6 + 16 + 15 + 25 +NPUSHW + 15 + 313 + 14 + 314 + 15 + 12 + 320 + 89 + 15 + 313 + 16 + 19 + 320 + 89 + 16 + 314 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +SRP1 +IP +MDAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +705 1227 m 2,0,1 + 878 1227 878 1227 974 1174 c 128,-1,2 + 1070 1121 1070 1121 1114.5 1004.5 c 128,-1,3 + 1159 888 1159 888 1159 686 c 2,4,-1 + 1159 422 l 1,5,-1 + 975 422 l 1,6,-1 + 975 674 l 2,7,8 + 975 827 975 827 950.5 906.5 c 128,-1,9 + 926 986 926 986 869 1021.5 c 128,-1,10 + 812 1057 812 1057 700 1057 c 2,11,-1 + 365 1057 l 1,12,-1 + 365 0 l 1,13,-1 + 180 0 l 1,14,-1 + 180 1227 l 1,15,-1 + 705 1227 l 2,0,1 +578 0 m 1,16,-1 + 578 729 l 1,17,-1 + 762 729 l 1,18,-1 + 762 170 l 1,19,-1 + 1102 170 l 2,20,21 + 1213 170 1213 170 1269.5 205.5 c 128,-1,22 + 1326 241 1326 241 1350 322.5 c 128,-1,23 + 1374 404 1374 404 1374 553 c 2,24,-1 + 1374 1227 l 1,25,-1 + 1559 1227 l 1,26,-1 + 1559 541 l 2,27,28 + 1559 338 1559 338 1513.5 221 c 128,-1,29 + 1468 104 1468 104 1371.5 52 c 128,-1,30 + 1275 0 1275 0 1104 0 c 2,31,-1 + 578 0 l 1,16,-1 +EndSplineSet +EndChar + +StartChar: dong +Encoding: 8363 8363 2075 +Width: 1051 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 30 + 5 + 5 + 45 + 17 + 14 + 36 + 36 + 20 + 24 + 24 + 44 + 45 + 44 + 46 + 47 + 39 + 8 + 23 + 15 + 15 + 20 + 16 + 0 + 13 + 8 +PUSHW_1 + -64 +NPUSHB + 26 + 11 + 18 + 72 + 32 + 16 + 1 + 8 + 16 + 8 + 16 + 18 + 33 + 26 + 3 + 64 + 9 + 15 + 72 + 3 + 42 + 80 + 45 + 1 + 45 + 18 + 0 +SVTCA[y-axis] +MIAP[rnd] +MDAP[rnd] +DELTAP1 +SHP[rp1] +MDRP[min,rnd,grey] +CALL +SHP[rp2] +SHP[rp2] +SRP1 +IP +IP +MDAP[rnd] +MDAP[rnd] +DELTAP1 +CALL +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +676 567 m 1,0,1 + 641 494 641 494 587 462.5 c 128,-1,2 + 533 431 533 431 447 431 c 0,3,4 + 161 431 161 431 161 810 c 0,5,6 + 161 1003 161 1003 235.5 1100 c 128,-1,7 + 310 1197 310 1197 450 1197 c 0,8,9 + 536 1197 536 1197 588.5 1165.5 c 128,-1,10 + 641 1134 641 1134 676 1065 c 1,11,-1 + 677 1065 l 1,12,-1 + 676 1119 l 1,13,-1 + 676 1289 l 1,14,-1 + 556 1289 l 1,15,-1 + 556 1381 l 1,16,-1 + 676 1381 l 1,17,-1 + 676 1484 l 1,18,-1 + 802 1484 l 1,19,-1 + 802 1381 l 1,20,-1 + 894 1381 l 1,21,-1 + 894 1289 l 1,22,-1 + 802 1289 l 1,23,-1 + 802 601 l 2,24,25 + 802 501 802 501 806 445 c 1,26,-1 + 686 445 l 1,27,28 + 679 470 679 470 679 567 c 1,29,-1 + 676 567 l 1,0,1 +294 814 m 0,30,31 + 294 661 294 661 334 594.5 c 128,-1,32 + 374 528 374 528 472 528 c 0,33,34 + 583 528 583 528 629.5 600 c 128,-1,35 + 676 672 676 672 676 823 c 0,36,37 + 676 968 676 968 630 1035.5 c 128,-1,38 + 584 1103 584 1103 473 1103 c 0,39,40 + 375 1103 375 1103 334.5 1034.5 c 128,-1,41 + 294 966 294 966 294 814 c 0,30,31 +164 326 m 1,42,-1 + 882 326 l 1,43,-1 + 882 233 l 1,44,-1 + 164 233 l 1,45,-1 + 164 326 l 1,42,-1 +EndSplineSet +EndChar + +StartChar: Euro +Encoding: 8364 8364 2076 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 105 + 32 + 39 + 39 + 4 + 41 + 31 + 36 + 36 + 14 + 16 + 11 + 11 + 18 + 10 + 14 + 25 + 24 + 24 + 3 + 4 + 14 + 4 + 44 + 45 + 34 + 16 + 17 + 16 + 81 + 89 + 41 + 11 + 12 + 11 + 81 + 89 + 38 + 15 + 12 + 31 + 12 + 127 + 12 + 143 + 12 + 159 + 12 + 5 + 12 + 64 + 39 + 47 + 72 + 0 + 12 + 16 + 12 + 128 + 12 + 3 + 9 + 12 + 64 + 31 + 15 + 17 + 31 + 17 + 95 + 17 + 3 + 15 + 17 + 31 + 17 + 143 + 17 + 175 + 17 + 4 + 15 + 17 + 143 + 17 + 2 + 11 + 3 + 17 + 17 + 0 + 21 + 21 + 28 + 115 + 89 + 25 + 21 + 7 + 7 + 0 + 115 + 89 + 3 + 7 + 25 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +DELTAP3 +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SDB +DELTAP1 +CALL +DELTAP2 +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +691 126 m 0,0,1 + 791 126 791 126 851 176 c 128,-1,2 + 911 226 911 226 925 317 c 1,3,-1 + 1110 303 l 1,4,5 + 1080 148 1080 148 970.5 64 c 128,-1,6 + 861 -20 861 -20 687 -20 c 0,7,8 + 470 -20 470 -20 343.5 111 c 128,-1,9 + 217 242 217 242 187 502 c 1,10,-1 + 16 502 l 1,11,-1 + 56 631 l 1,12,-1 + 176 631 l 1,13,-1 + 173 709 l 1,14,-1 + 176 795 l 1,15,-1 + 16 795 l 1,16,-1 + 56 922 l 1,17,-1 + 185 922 l 1,18,19 + 217 1179 217 1179 341 1304.5 c 128,-1,20 + 465 1430 465 1430 684 1430 c 0,21,22 + 859 1430 859 1430 968.5 1345.5 c 128,-1,23 + 1078 1261 1078 1261 1107 1107 c 1,24,-1 + 922 1093 l 1,25,26 + 908 1184 908 1184 847.5 1234 c 128,-1,27 + 787 1284 787 1284 681 1284 c 0,28,29 + 539 1284 539 1284 463.5 1197 c 128,-1,30 + 388 1110 388 1110 367 922 c 1,31,-1 + 813 922 l 1,32,-1 + 773 795 l 1,33,-1 + 360 795 l 1,34,35 + 357 771 357 771 357 709 c 0,36,37 + 357 669 357 669 361 631 c 1,38,-1 + 813 631 l 1,39,-1 + 773 502 l 1,40,-1 + 369 502 l 1,41,42 + 391 307 391 307 472 216.5 c 128,-1,43 + 553 126 553 126 691 126 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni20AD +Encoding: 8365 8365 2077 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 14 + 8 + 11 + 3 + 3 + 6 + 7 + 7 + 13 + 9 + 12 + 3 + 2 + 2 + 17 + 0 + 18 + 12 + 18 + 22 + 21 + 15 + 11 + 20 + 0 + 20 + 95 + 89 + 8 + 4 + 16 + 18 + 0 + 0 + 2 + 13 + 18 + 18 + 6 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +31 813 m 1,0,-1 + 168 813 l 1,1,-1 + 168 1409 l 1,2,-1 + 359 1409 l 1,3,-1 + 359 813 l 1,4,-1 + 465 813 l 1,5,-1 + 1038 1409 l 1,6,-1 + 1263 1409 l 1,7,-1 + 678 813 l 1,8,-1 + 1334 813 l 1,9,-1 + 1334 653 l 1,10,-1 + 763 653 l 1,11,-1 + 1343 0 l 1,12,-1 + 1106 0 l 1,13,-1 + 542 653 l 1,14,-1 + 507 653 l 1,15,-1 + 359 540 l 1,16,-1 + 359 0 l 1,17,-1 + 168 0 l 1,18,-1 + 168 653 l 1,19,-1 + 31 653 l 1,20,-1 + 31 813 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni20AE +Encoding: 8366 8366 2078 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 0 + 19 + 19 + 10 + 5 + 14 + 14 + 10 + 17 + 13 + 13 + 10 + 3 + 7 + 7 + 9 + 9 + 10 + 21 + 10 + 22 + 3 + 25 + 24 + 0 + 19 + 21 + 19 + 95 + 89 + 12 + 16 + 6 + 2 + 4 + 9 + 21 + 3 + 9 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +720 1253 m 1,0,-1 + 720 898 l 1,1,-1 + 1047 1070 l 1,2,-1 + 1047 911 l 1,3,-1 + 720 741 l 1,4,-1 + 720 576 l 1,5,-1 + 1047 748 l 1,6,-1 + 1047 589 l 1,7,-1 + 720 419 l 1,8,-1 + 720 0 l 1,9,-1 + 530 0 l 1,10,-1 + 530 320 l 1,11,-1 + 203 151 l 1,12,-1 + 203 305 l 1,13,-1 + 530 476 l 1,14,-1 + 530 642 l 1,15,-1 + 203 473 l 1,16,-1 + 203 627 l 1,17,-1 + 530 798 l 1,18,-1 + 530 1253 l 1,19,-1 + 46 1253 l 1,20,-1 + 46 1409 l 1,21,-1 + 1204 1409 l 1,22,-1 + 1204 1253 l 1,23,-1 + 720 1253 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni20AF +Encoding: 8367 8367 2079 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 83 + 91 + 29 + 42 + 23 + 86 + 77 + 35 + 49 + 51 + 51 + 39 + 55 + 83 + 59 + 0 + 0 + 65 + 83 + 9 + 39 + 35 + 86 + 29 + 8 + 96 + 97 + 39 + 71 + 51 + 71 + 97 + 89 + 23 + 77 + 86 + 35 + 4 + 32 + 19 + 32 + 88 + 97 + 89 + 5 + 16 + 3 + 16 + 62 + 96 + 89 + 32 + 16 + 32 + 16 + 26 + 48 + 51 + 64 + 45 + 51 + 42 + 42 + 51 + 4 + 26 + 94 + 97 + 89 + 9 + 26 + 18 + 19 + 79 + 96 + 89 + 19 + 18 + 3 + 68 + 96 + 89 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MDRP[rnd,white] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SHP[rp1] +SMD +SRP0 +MDRP[min,rnd,black] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +2030 310 m 0,0,1 + 2030 168 2030 168 1942.5 82 c 128,-1,2 + 1855 -4 1855 -4 1713 -4 c 0,3,4 + 1605 -4 1605 -4 1519 73 c 1,5,-1 + 1463 -185 l 2,6,7 + 1425 -346 1425 -346 1395 -407 c 1,8,-1 + 1216 -407 l 1,9,10 + 1243 -350 1243 -350 1268 -271 c 128,-1,11 + 1293 -192 1293 -192 1302 -154 c 2,12,-1 + 1415 298 l 2,13,14 + 1451 447 1451 447 1528.5 516 c 128,-1,15 + 1606 585 1606 585 1732 585 c 0,16,17 + 1862 585 1862 585 1946 508 c 128,-1,18 + 2030 431 2030 431 2030 310 c 0,0,1 +802 0 m 0,19,20 + 734 0 734 0 684.5 14.5 c 128,-1,21 + 635 29 635 29 580 60.5 c 128,-1,22 + 525 92 525 92 463 147 c 1,23,24 + 425 78 425 78 360.5 39 c 128,-1,25 + 296 0 296 0 222 0 c 0,26,27 + 134 0 134 0 87.5 41.5 c 128,-1,28 + 41 83 41 83 41 164 c 0,29,30 + 41 234 41 234 91 278 c 128,-1,31 + 141 322 141 322 222 322 c 0,32,33 + 260 322 260 322 303 310 c 128,-1,34 + 346 298 346 298 375 280 c 1,35,-1 + 407 455 l 1,36,37 + 466 821 466 821 533 1036 c 128,-1,38 + 600 1251 600 1251 691 1367 c 1,39,40 + 565 1360 565 1360 447 1335 c 128,-1,41 + 329 1310 329 1310 263 1274 c 1,42,-1 + 263 1339 l 1,43,44 + 449 1431 449 1431 755 1433 c 1,45,-1 + 793 1474 l 2,46,47 + 872 1563 872 1563 999 1651 c 1,48,-1 + 1047 1624 l 1,49,50 + 971 1548 971 1548 893 1433 c 1,51,52 + 1047 1429 1047 1429 1161.5 1345 c 128,-1,53 + 1276 1261 1276 1261 1336.5 1116.5 c 128,-1,54 + 1397 972 1397 972 1397 788 c 0,55,56 + 1397 573 1397 573 1315.5 385.5 c 128,-1,57 + 1234 198 1234 198 1100 99 c 128,-1,58 + 966 0 966 0 802 0 c 0,19,20 +1881 286 m 0,59,60 + 1881 383 1881 383 1838.5 439.5 c 128,-1,61 + 1796 496 1796 496 1724 496 c 0,62,63 + 1648 496 1648 496 1602 438 c 128,-1,64 + 1556 380 1556 380 1556 286 c 0,65,66 + 1556 189 1556 189 1600 131 c 128,-1,67 + 1644 73 1644 73 1715 73 c 0,68,69 + 1788 73 1788 73 1834.5 133 c 128,-1,70 + 1881 193 1881 193 1881 286 c 0,59,60 +856 1367 m 1,71,72 + 812 1293 812 1293 776 1199 c 128,-1,73 + 740 1105 740 1105 709.5 1001 c 128,-1,74 + 679 897 679 897 627 661 c 0,75,76 + 557 329 557 329 507 208 c 1,77,78 + 643 87 643 87 782 87 c 0,79,80 + 901 87 901 87 1000.5 184 c 128,-1,81 + 1100 281 1100 281 1159 456.5 c 128,-1,82 + 1218 632 1218 632 1218 821 c 0,83,84 + 1218 1069 1218 1069 1121 1218 c 128,-1,85 + 1024 1367 1024 1367 856 1367 c 1,71,72 +359 210 m 1,86,87 + 295 252 295 252 222 252 c 0,88,89 + 179 252 179 252 148.5 231.5 c 128,-1,90 + 118 211 118 211 118 162 c 256,91,92 + 118 113 118 113 146.5 90.5 c 128,-1,93 + 175 68 175 68 220 68 c 0,94,95 + 332 68 332 68 359 210 c 1,86,87 +EndSplineSet +EndChar + +StartChar: uni20B0 +Encoding: 8368 8368 2080 +Width: 1067 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 34 + 16 + 5 + 26 + 19 + 43 + 2 + 4 + 0 + 40 + 28 + 23 + 24 + 25 + 28 + 5 + 0 + 6 + 47 + 46 + 19 + 43 + 21 + 24 + 43 + 24 + 31 + 22 + 31 + 37 + 96 + 89 + 31 + 5 + 20 + 22 + 18 + 8 + 13 + 96 + 89 + 8 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1032 1206 m 0,0,1 + 1032 1018 1032 1018 800 598 c 1,2,-1 + 979 -20 l 2,3,4 + 1002 -98 1002 -98 1002 -162 c 0,5,6 + 1002 -288 1002 -288 925 -356.5 c 128,-1,7 + 848 -425 848 -425 708 -425 c 0,8,9 + 636 -425 636 -425 556 -406 c 1,10,-1 + 556 -251 l 1,11,12 + 639 -285 639 -285 708 -285 c 0,13,14 + 770 -285 770 -285 802 -255 c 128,-1,15 + 834 -225 834 -225 834 -170 c 0,16,17 + 834 -119 834 -119 816 -53 c 2,18,-1 + 694 396 l 1,19,-1 + 469 -25 l 1,20,-1 + 300 250 l 1,21,-1 + 173 0 l 1,22,-1 + 5 0 l 1,23,-1 + 299 542 l 1,24,-1 + 462 244 l 1,25,-1 + 635 568 l 1,26,27 + 471 1060 471 1060 471 1204 c 0,28,29 + 471 1332 471 1332 549.5 1408 c 128,-1,30 + 628 1484 628 1484 756 1484 c 0,31,32 + 882 1484 882 1484 957 1409 c 128,-1,33 + 1032 1334 1032 1334 1032 1206 c 0,0,1 +866 1220 m 0,34,35 + 866 1273 866 1273 835 1308 c 128,-1,36 + 804 1343 804 1343 753 1343 c 0,37,38 + 705 1343 705 1343 673 1309.5 c 128,-1,39 + 641 1276 641 1276 641 1220 c 0,40,41 + 641 1142 641 1142 667.5 1015 c 128,-1,42 + 694 888 694 888 735 762 c 1,43,44 + 790 891 790 891 828 1007 c 128,-1,45 + 866 1123 866 1123 866 1220 c 0,34,35 +EndSplineSet +EndChar + +StartChar: uni20B1 +Encoding: 8369 8369 2081 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 102 + 26 + 1 + 1 + 27 + 27 + 0 + 25 + 3 + 3 + 0 + 39 + 35 + 35 + 28 + 31 + 31 + 10 + 0 + 16 + 12 + 12 + 10 + 38 + 37 + 30 + 9 + 9 + 18 + 14 + 10 + 0 + 10 + 44 + 43 + 37 + 8 + 96 + 89 + 36 + 4 + 239 + 12 + 1 + 12 + 13 + 30 + 1 + 13 + 29 + 26 + 239 + 16 + 1 + 16 + 17 + 64 + 38 + 23 + 17 + 48 + 37 + 64 + 37 + 80 + 37 + 3 + 48 + 13 + 64 + 13 + 80 + 13 + 3 + 47 + 13 + 1 + 0 + 17 + 16 + 17 + 32 + 17 + 3 + 9 + 3 + 37 + 13 + 17 + 17 + 13 + 37 + 3 + 10 + 19 + 19 + 42 + 95 + 89 + 19 + 3 + 10 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +SHP[rp1] +SMD +SRP0 +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +SRP0 +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SHP[rp2] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1258 985 m 1,0,-1 + 1255 929 l 1,1,-1 + 1345 929 l 1,2,-1 + 1345 796 l 1,3,-1 + 1220 796 l 1,4,5 + 1169 679 1169 679 1054 614 c 128,-1,6 + 939 549 939 549 773 549 c 2,7,-1 + 359 549 l 1,8,-1 + 359 0 l 1,9,-1 + 168 0 l 1,10,-1 + 168 796 l 1,11,-1 + 25 796 l 1,12,-1 + 25 929 l 1,13,-1 + 168 929 l 1,14,-1 + 168 1027 l 1,15,-1 + 25 1027 l 1,16,-1 + 25 1160 l 1,17,-1 + 168 1160 l 1,18,-1 + 168 1409 l 1,19,-1 + 761 1409 l 2,20,21 + 937 1409 937 1409 1057 1346 c 128,-1,22 + 1177 1283 1177 1283 1226 1160 c 1,23,-1 + 1345 1160 l 1,24,-1 + 1345 1027 l 1,25,-1 + 1256 1027 l 1,26,-1 + 1258 985 l 1,0,-1 +1066 983 m 2,27,-1 + 1063 1027 l 1,28,-1 + 359 1027 l 1,29,-1 + 359 929 l 1,30,-1 + 1062 929 l 1,31,32 + 1066 955 1066 955 1066 983 c 2,27,-1 +746 696 m 2,33,34 + 933 696 933 696 1011 796 c 1,35,-1 + 359 796 l 1,36,-1 + 359 696 l 1,37,-1 + 746 696 l 2,33,34 +359 1160 m 1,38,-1 + 1010 1160 l 1,39,40 + 928 1259 928 1259 738 1259 c 2,41,-1 + 359 1259 l 1,42,-1 + 359 1160 l 1,38,-1 +EndSplineSet +EndChar + +StartChar: uni20B2 +Encoding: 8370 8370 2082 +Width: 1593 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 56 + 10 + 9 + 9 + 17 + 22 + 14 + 6 + 26 + 26 + 34 + 3 + 27 + 31 + 0 + 0 + 27 + 19 + 22 + 4 + 39 + 38 + 14 + 34 + 28 + 34 + 95 + 89 + 20 + 19 + 95 + 89 + 22 + 28 + 20 + 20 + 3 + 27 + 64 + 25 + 28 + 19 + 6 + 13 + 95 + 89 + 10 + 10 + 6 + 4 + 3 + 35 + 95 + 89 + 4 + 3 + 4 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +103 711 m 0,0,1 + 103 1039 103 1039 271.5 1226 c 128,-1,2 + 440 1413 440 1413 750 1428 c 1,3,-1 + 750 1571 l 1,4,-1 + 874 1571 l 1,5,-1 + 874 1428 l 1,6,7 + 1073 1417 1073 1417 1203.5 1338.5 c 128,-1,8 + 1334 1260 1334 1260 1409 1098 c 1,9,-1 + 1227 1044 l 1,10,11 + 1174 1150 1174 1150 1087.5 1204 c 128,-1,12 + 1001 1258 1001 1258 874 1271 c 1,13,-1 + 874 137 l 1,14,15 + 986 145 986 145 1088.5 184 c 128,-1,16 + 1191 223 1191 223 1264 291 c 1,17,-1 + 1264 545 l 1,18,-1 + 1023 545 l 1,19,-1 + 1023 705 l 1,20,-1 + 1440 705 l 1,21,-1 + 1440 219 l 1,22,23 + 1340 117 1340 117 1194.5 55 c 128,-1,24 + 1049 -7 1049 -7 874 -18 c 1,25,-1 + 874 -212 l 1,26,-1 + 750 -212 l 1,27,-1 + 750 -18 l 1,28,29 + 442 1 442 1 272.5 195 c 128,-1,30 + 103 389 103 389 103 711 c 0,0,1 +297 711 m 0,31,32 + 297 462 297 462 417 309.5 c 128,-1,33 + 537 157 537 157 750 138 c 1,34,-1 + 750 1272 l 1,35,36 + 530 1257 530 1257 413.5 1112 c 128,-1,37 + 297 967 297 967 297 711 c 0,31,32 +EndSplineSet +EndChar + +StartChar: uni20B3 +Encoding: 8371 8371 2083 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 59 + 3 + 2 + 32 + 11 + 8 + 4 + 32 + 1 + 21 + 18 + 7 + 0 + 5 + 0 + 20 + 20 + 16 + 17 + 5 + 9 + 9 + 13 + 12 + 17 + 12 + 35 + 36 + 16 + 18 + 25 + 7 + 23 + 0 + 23 + 95 + 89 + 28 + 4 + 0 + 15 + 11 + 19 + 20 + 19 + 95 + 89 + 26 + 8 + 20 + 32 + 0 + 20 + 0 + 20 + 3 + 13 + 18 + 3 + 3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +IP +SRP1 +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +0 935 m 1,0,-1 + 385 935 l 1,1,-1 + 579 1409 l 1,2,-1 + 796 1409 l 1,3,-1 + 986 935 l 1,4,-1 + 1367 935 l 1,5,-1 + 1367 786 l 1,6,-1 + 1046 786 l 1,7,-1 + 1137 561 l 1,8,-1 + 1367 561 l 1,9,-1 + 1367 412 l 1,10,-1 + 1197 412 l 1,11,-1 + 1362 0 l 1,12,-1 + 1167 0 l 1,13,-1 + 1006 412 l 1,14,-1 + 364 412 l 1,15,-1 + 202 0 l 1,16,-1 + 4 0 l 1,17,-1 + 172 412 l 1,18,-1 + 0 412 l 1,19,-1 + 0 561 l 1,20,-1 + 233 561 l 1,21,-1 + 325 786 l 1,22,-1 + 0 786 l 1,23,-1 + 0 935 l 1,0,-1 +861 786 m 1,24,-1 + 509 786 l 1,25,-1 + 422 561 l 1,26,-1 + 949 561 l 1,27,-1 + 861 786 l 1,24,-1 +567 935 m 1,28,-1 + 803 935 l 1,29,30 + 734 1114 734 1114 712 1182 c 2,31,-1 + 685 1265 l 1,32,-1 + 676 1237 l 2,33,34 + 643 1127 643 1127 567 935 c 1,28,-1 +EndSplineSet +EndChar + +StartChar: uni20B4 +Encoding: 8372 8372 2084 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 67 + 46 + 53 + 53 + 9 + 10 + 29 + 20 + 52 + 24 + 47 + 4 + 42 + 35 + 36 + 25 + 19 + 19 + 3 + 15 + 15 + 36 + 42 + 10 + 4 + 55 + 54 + 35 + 35 + 44 + 39 + 44 + 26 + 47 + 25 + 26 + 25 + 95 + 89 + 9 + 9 + 1 + 12 + 1 + 18 + 19 + 18 + 95 + 89 + 52 + 19 + 26 + 19 + 26 + 19 + 39 + 12 + 39 + 32 + 96 + 89 + 39 + 12 + 6 + 96 + 89 + 12 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +RTG +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1113 484 m 1,0,-1 + 269 484 l 1,1,2 + 255 444 255 444 255 376 c 0,3,4 + 255 255 255 255 336.5 185.5 c 128,-1,5 + 418 116 418 116 552 116 c 0,6,7 + 685 116 685 116 766 182.5 c 128,-1,8 + 847 249 847 249 870 375 c 1,9,-1 + 1041 338 l 1,10,11 + 973 -20 973 -20 550 -20 c 0,12,13 + 328 -20 328 -20 200 91.5 c 128,-1,14 + 72 203 72 203 72 396 c 0,15,16 + 72 443 72 443 78 484 c 1,17,-1 + 15 484 l 1,18,-1 + 15 633 l 1,19,-1 + 132 633 l 1,20,21 + 171 696 171 696 246 742 c 128,-1,22 + 321 788 321 788 485 837 c 2,23,-1 + 554 858 l 1,24,-1 + 15 858 l 1,25,-1 + 15 1007 l 1,26,-1 + 793 1007 l 1,27,28 + 811 1050 811 1050 811 1115 c 0,29,30 + 811 1227 811 1227 742.5 1290 c 128,-1,31 + 674 1353 674 1353 552 1353 c 0,32,33 + 441 1353 441 1353 373.5 1293 c 128,-1,34 + 306 1233 306 1233 287 1124 c 1,35,-1 + 105 1157 l 1,36,37 + 145 1336 145 1336 249.5 1415 c 128,-1,38 + 354 1494 354 1494 547 1494 c 0,39,40 + 758 1494 758 1494 877.5 1391.5 c 128,-1,41 + 997 1289 997 1289 997 1097 c 0,42,43 + 997 1052 997 1052 988 1007 c 1,44,-1 + 1125 1007 l 1,45,-1 + 1125 858 l 1,46,-1 + 919 858 l 1,47,48 + 879 811 879 811 813 775.5 c 128,-1,49 + 747 740 747 740 594 698 c 0,50,51 + 482 667 482 667 411 633 c 1,52,-1 + 1113 633 l 1,53,-1 + 1113 484 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni20B5 +Encoding: 8373 8373 2085 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 48 + 11 + 19 + 16 + 9 + 23 + 23 + 28 + 6 + 24 + 25 + 3 + 3 + 24 + 19 + 3 + 33 + 32 + 15 + 29 + 6 + 29 + 95 + 89 + 12 + 12 + 9 + 7 + 64 + 6 + 4 + 0 + 28 + 95 + 89 + 24 + 0 + 64 + 22 + 0 + 18 + 18 + 0 + 0 + 16 + 95 + 89 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SHP[rp1] +SMD +SRP0 +MDRP[min,rnd,black] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +718 -17 m 1,0,1 + 427 6 427 6 265.5 199 c 128,-1,2 + 104 392 104 392 104 711 c 0,3,4 + 104 1029 104 1029 267 1217.5 c 128,-1,5 + 430 1406 430 1406 718 1427 c 1,6,-1 + 718 1568 l 1,7,-1 + 842 1568 l 1,8,-1 + 842 1428 l 1,9,10 + 1253 1408 1253 1408 1388 1081 c 1,11,-1 + 1207 1021 l 1,12,13 + 1164 1131 1164 1131 1069 1196.5 c 128,-1,14 + 974 1262 974 1262 842 1272 c 1,15,-1 + 842 138 l 1,16,17 + 1105 160 1105 160 1245 430 c 1,18,-1 + 1401 352 l 1,19,20 + 1319 181 1319 181 1176 87 c 128,-1,21 + 1033 -7 1033 -7 842 -18 c 1,22,-1 + 842 -212 l 1,23,-1 + 718 -212 l 1,24,-1 + 718 -17 l 1,0,1 +298 711 m 0,25,26 + 298 476 298 476 411.5 323 c 128,-1,27 + 525 170 525 170 718 143 c 1,28,-1 + 718 1270 l 1,29,30 + 519 1247 519 1247 408.5 1100.5 c 128,-1,31 + 298 954 298 954 298 711 c 0,25,26 +EndSplineSet +EndChar + +StartChar: uni20F0 +Encoding: 8432 8432 2086 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 13 42 N 1 0 0 1 -390 287 2 +EndChar + +StartChar: uni2105 +Encoding: 8453 8453 2087 +Width: 1813 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 72 + 14 + 15 + 12 + 13 + 47 + 46 + 46 + 33 + 34 + 40 + 34 + 178 + 91 + 28 + 40 + 22 + 6 + 0 + 6 + 178 + 91 + 16 + 0 + 0 + 15 + 13 + 34 + 6 + 40 + 6 + 54 + 53 + 0 + 33 + 1 + 11 + 5 + 33 + 37 + 37 + 30 + 182 + 89 + 43 + 37 + 184 + 91 + 43 + 50 + 182 + 89 + 47 + 43 + 4 + 15 + 3 + 12 + 18 + 9 + 19 + 182 + 89 + 3 + 9 + 184 + 91 + 3 + 25 + 182 + 89 + 3 + 19 +SVTCA[y-axis] +MIAP[rnd] +CALL +CALL +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +CALL +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1744 434 m 0,0,1 + 1744 219 1744 219 1663 103.5 c 128,-1,2 + 1582 -12 1582 -12 1424 -12 c 0,3,4 + 1268 -12 1268 -12 1188.5 100.5 c 128,-1,5 + 1109 213 1109 213 1109 434 c 0,6,7 + 1109 662 1109 662 1185.5 773.5 c 128,-1,8 + 1262 885 1262 885 1428 885 c 0,9,10 + 1592 885 1592 885 1668 770.5 c 128,-1,11 + 1744 656 1744 656 1744 434 c 0,0,1 +523 0 m 1,12,-1 + 368 0 l 1,13,-1 + 1290 1409 l 1,14,-1 + 1447 1409 l 1,15,-1 + 523 0 l 1,12,-1 +1596 434 m 0,16,17 + 1596 613 1596 613 1557.5 693.5 c 128,-1,18 + 1519 774 1519 774 1428 774 c 256,19,20 + 1337 774 1337 774 1296.5 695 c 128,-1,21 + 1256 616 1256 616 1256 434 c 0,22,23 + 1256 263 1256 263 1295.5 180.5 c 128,-1,24 + 1335 98 1335 98 1426 98 c 0,25,26 + 1514 98 1514 98 1555 181.5 c 128,-1,27 + 1596 265 1596 265 1596 434 c 0,16,17 +215 975 m 0,28,29 + 215 636 215 636 411 636 c 0,30,31 + 480 636 480 636 527 677 c 128,-1,32 + 574 718 574 718 585 805 c 1,33,-1 + 726 796 l 1,34,35 + 712 674 712 674 629 598 c 128,-1,36 + 546 522 546 522 415 522 c 0,37,38 + 246 522 246 522 157.5 638 c 128,-1,39 + 69 754 69 754 69 972 c 0,40,41 + 69 1187 69 1187 157 1303.5 c 128,-1,42 + 245 1420 245 1420 414 1420 c 0,43,44 + 540 1420 540 1420 621 1349.5 c 128,-1,45 + 702 1279 702 1279 721 1161 c 1,46,-1 + 578 1150 l 1,47,48 + 568 1222 568 1222 526.5 1264.5 c 128,-1,49 + 485 1307 485 1307 410 1307 c 0,50,51 + 302 1307 302 1307 258.5 1225 c 128,-1,52 + 215 1143 215 1143 215 975 c 0,28,29 +EndSplineSet +EndChar + +StartChar: uni2113 +Encoding: 8467 8467 2088 +Width: 662 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 36 + 26 + 26 + 15 + 12 + 9 + 29 + 22 + 22 + 2 + 3 + 9 + 3 + 39 + 40 + 79 + 40 + 1 + 10 + 25 + 36 + 15 + 36 + 15 + 36 + 31 + 36 + 2 + 2 + 36 + 2 + 36 + 6 + 32 + 19 + 7 + 0 + 6 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +MIAP[rnd] +MDRP[min,rnd,black] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +DELTAP1 +SRP1 +SHP[rp1] +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +SVTCA[x-axis] +DELTAP1 +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +433 78 m 0,0,1 + 536 78 536 78 569 291 c 1,2,-1 + 638 291 l 1,3,4 + 618 137 618 137 558 58.5 c 128,-1,5 + 498 -20 498 -20 389 -20 c 0,6,7 + 278 -20 278 -20 214.5 59.5 c 128,-1,8 + 151 139 151 139 151 294 c 2,9,-1 + 151 469 l 1,10,11 + 100 442 100 442 19 411 c 1,12,-1 + 19 484 l 1,13,14 + 98 515 98 515 151 543 c 1,15,-1 + 151 1130 l 2,16,17 + 151 1276 151 1276 216.5 1352.5 c 128,-1,18 + 282 1429 282 1429 405 1429 c 0,19,20 + 506 1429 506 1429 561 1351 c 128,-1,21 + 616 1273 616 1273 616 1129 c 0,22,23 + 616 939 616 939 535.5 780 c 128,-1,24 + 455 621 455 621 317 542 c 1,25,-1 + 317 298 l 2,26,27 + 317 196 317 196 349 137 c 128,-1,28 + 381 78 381 78 433 78 c 0,0,1 +525 1122 m 0,29,30 + 525 1228 525 1228 497 1290.5 c 128,-1,31 + 469 1353 469 1353 418 1353 c 256,32,33 + 367 1353 367 1353 342 1300.5 c 128,-1,34 + 317 1248 317 1248 317 1129 c 2,35,-1 + 317 622 l 1,36,37 + 412 686 412 686 468.5 821.5 c 128,-1,38 + 525 957 525 957 525 1122 c 0,29,30 +EndSplineSet +EndChar + +StartChar: uni2116 +Encoding: 8470 8470 2089 +Width: 2197 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 46 + 38 + 24 + 13 + 37 + 30 + 19 + 12 + 0 + 9 + 6 + 1 + 3 + 3 + 4 + 4 + 9 + 19 + 13 + 4 + 41 + 40 + 47 + 41 + 1 + 27 + 22 + 15 + 10 + 1 + 5 + 3 + 33 + 15 + 16 + 31 + 16 + 2 + 16 + 16 + 37 + 36 + 36 + 7 + 0 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +DELTAP1 +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SVTCA[x-axis] +DELTAP1 +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1062 0 m 1,0,-1 + 342 1190 l 1,1,-1 + 348 936 l 1,2,-1 + 348 0 l 1,3,-1 + 188 0 l 1,4,-1 + 188 1409 l 1,5,-1 + 390 1409 l 1,6,-1 + 1118 211 l 1,7,8 + 1110 371 1110 371 1110 485 c 2,9,-1 + 1110 1409 l 1,10,-1 + 1272 1409 l 1,11,-1 + 1272 0 l 1,12,-1 + 1062 0 l 1,0,-1 +2094 690 m 0,13,14 + 2094 502 2094 502 2006 400.5 c 128,-1,15 + 1918 299 1918 299 1743 299 c 0,16,17 + 1575 299 1575 299 1486.5 399.5 c 128,-1,18 + 1398 500 1398 500 1398 690 c 0,19,20 + 1398 879 1398 879 1487 979.5 c 128,-1,21 + 1576 1080 1576 1080 1747 1080 c 0,22,23 + 2094 1080 2094 1080 2094 690 c 0,13,14 +1935 690 m 0,24,25 + 1935 837 1935 837 1893 902.5 c 128,-1,26 + 1851 968 1851 968 1750 968 c 0,27,28 + 1648 968 1648 968 1604 901.5 c 128,-1,29 + 1560 835 1560 835 1560 690 c 256,30,31 + 1560 545 1560 545 1603.5 478 c 128,-1,32 + 1647 411 1647 411 1742 411 c 0,33,34 + 1845 411 1845 411 1890 474.5 c 128,-1,35 + 1935 538 1935 538 1935 690 c 0,24,25 +1439 0 m 1,36,-1 + 1439 146 l 1,37,-1 + 2074 146 l 1,38,-1 + 2074 0 l 1,39,-1 + 1439 0 l 1,36,-1 +EndSplineSet +EndChar + +StartChar: uni2117 +Encoding: 8471 8471 2090 +Width: 1509 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 36 + 12 + 0 + 0 + 1 + 6 + 16 + 1 + 16 + 20 + 44 + 28 + 20 + 28 + 53 + 52 + 32 + 40 + 200 + 89 + 32 + 4 + 12 + 10 + 201 + 89 + 1 + 12 + 1 + 12 + 24 + 2 + 24 + 48 + 200 + 89 + 24 + 19 + 2 + 11 + 201 + 89 + 2 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +RTG +MDAP[rnd] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +623 295 m 1,0,-1 + 488 295 l 1,1,-1 + 488 1106 l 1,2,-1 + 834 1106 l 2,3,4 + 966 1106 966 1106 1050.5 1040 c 128,-1,5 + 1135 974 1135 974 1135 861 c 0,6,7 + 1135 744 1135 744 1054 676.5 c 128,-1,8 + 973 609 973 609 834 609 c 2,9,-1 + 623 609 l 1,10,-1 + 623 295 l 1,0,-1 +623 1003 m 1,11,-1 + 623 711 l 1,12,-1 + 825 711 l 2,13,14 + 905 711 905 711 949 749 c 128,-1,15 + 993 787 993 787 993 859 c 0,16,17 + 993 929 993 929 949.5 966 c 128,-1,18 + 906 1003 906 1003 825 1003 c 2,19,-1 + 623 1003 l 1,11,-1 +1477 707 m 0,20,21 + 1477 514 1477 514 1380.5 345.5 c 128,-1,22 + 1284 177 1284 177 1115.5 80.5 c 128,-1,23 + 947 -16 947 -16 754 -16 c 0,24,25 + 557 -16 557 -16 387.5 84.5 c 128,-1,26 + 218 185 218 185 124.5 351.5 c 128,-1,27 + 31 518 31 518 31 707 c 0,28,29 + 31 900 31 900 128 1068 c 128,-1,30 + 225 1236 225 1236 393 1333 c 128,-1,31 + 561 1430 561 1430 754 1430 c 0,32,33 + 948 1430 948 1430 1116.5 1332.5 c 128,-1,34 + 1285 1235 1285 1235 1381 1068 c 128,-1,35 + 1477 901 1477 901 1477 707 c 0,20,21 +1385 707 m 256,36,37 + 1385 876 1385 876 1301 1020.5 c 128,-1,38 + 1217 1165 1217 1165 1070.5 1250 c 128,-1,39 + 924 1335 924 1335 754 1335 c 0,40,41 + 586 1335 586 1335 440 1250.5 c 128,-1,42 + 294 1166 294 1166 210 1020 c 128,-1,43 + 126 874 126 874 126 707 c 0,44,45 + 126 538 126 538 210.5 392 c 128,-1,46 + 295 246 295 246 440 162 c 128,-1,47 + 585 78 585 78 754 78 c 256,48,49 + 923 78 923 78 1070 162 c 128,-1,50 + 1217 246 1217 246 1301 392 c 128,-1,51 + 1385 538 1385 538 1385 707 c 256,36,37 +EndSplineSet +EndChar + +StartChar: trademark +Encoding: 8482 8482 2091 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 21 + 22 + 13 + 10 + 10 + 11 + 17 + 0 + 0 + 19 + 19 + 11 + 22 + 3 + 28 + 29 + 20 + 24 + 25 + 24 + 202 + 89 + 15 + 11 + 5 + 0 + 0 + 22 + 32 + 22 + 80 + 22 + 128 + 22 + 4 + 22 + 1 + 7 + 7 + 17 + 12 + 25 + 3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +SHP[rp2] +SHP[rp2] +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1691 634 m 1,0,-1 + 1691 1253 l 1,1,-1 + 1682 1231 l 1,2,-1 + 1671 1199 l 1,3,-1 + 1441 634 l 1,4,-1 + 1333 634 l 1,5,-1 + 1170 1047 l 1,6,-1 + 1093 1253 l 1,7,-1 + 1092 1233 l 1,8,-1 + 1091 1216 l 1,9,-1 + 1091 634 l 1,10,-1 + 963 634 l 1,11,-1 + 963 1409 l 1,12,-1 + 1153 1409 l 1,13,-1 + 1376 846 l 1,14,-1 + 1391 804 l 1,15,-1 + 1465 996 l 1,16,-1 + 1633 1409 l 1,17,-1 + 1817 1409 l 1,18,-1 + 1817 634 l 1,19,-1 + 1691 634 l 1,0,-1 +577 1298 m 1,20,-1 + 577 634 l 1,21,-1 + 443 634 l 1,22,-1 + 443 1298 l 1,23,-1 + 188 1298 l 1,24,-1 + 188 1409 l 1,25,-1 + 838 1409 l 1,26,-1 + 838 1298 l 1,27,-1 + 577 1298 l 1,20,-1 +EndSplineSet +EndChar + +StartChar: Ohm +Encoding: 8486 8486 2092 +Width: 1573 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 30 + 25 + 6 + 11 + 25 + 11 + 21 + 15 + 15 + 10 + 3 + 21 + 26 + 33 + 3 + 33 + 37 + 36 + 30 + 24 + 12 + 8 + 6 + 27 + 26 + 27 + 95 + 89 + 11 + 26 + 18 + 0 + 18 + 95 + 89 + 0 + 4 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +786 1430 m 256,0,1 + 1089 1430 1089 1430 1262.5 1262.5 c 128,-1,2 + 1436 1095 1436 1095 1436 801 c 0,3,4 + 1436 600 1436 600 1328.5 430 c 128,-1,5 + 1221 260 1221 260 1012 145 c 1,6,-1 + 1093 150 l 1,7,-1 + 1220 156 l 1,8,-1 + 1464 156 l 1,9,-1 + 1464 0 l 1,10,-1 + 875 0 l 1,11,-1 + 875 224 l 1,12,13 + 1054 319 1054 319 1147.5 461.5 c 128,-1,14 + 1241 604 1241 604 1241 788 c 0,15,16 + 1241 1020 1241 1020 1122 1147 c 128,-1,17 + 1003 1274 1003 1274 787 1274 c 0,18,19 + 569 1274 569 1274 450 1147 c 128,-1,20 + 331 1020 331 1020 331 788 c 0,21,22 + 331 605 331 605 424 462.5 c 128,-1,23 + 517 320 517 320 697 224 c 1,24,-1 + 697 0 l 1,25,-1 + 108 0 l 1,26,-1 + 108 156 l 1,27,-1 + 352 156 l 1,28,-1 + 479 150 l 1,29,-1 + 560 145 l 1,30,31 + 352 258 352 258 244 428.5 c 128,-1,32 + 136 599 136 599 136 801 c 0,33,34 + 136 1095 136 1095 309.5 1262.5 c 128,-1,35 + 483 1430 483 1430 786 1430 c 256,0,1 +EndSplineSet +EndChar + +StartChar: estimated +Encoding: 8494 8494 2093 +Width: 1229 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 31 + 14 + 14 + 4 + 24 + 21 + 12 + 32 + 33 + 1 + 12 + 4 + 33 + 32 + 13 + 47 + 31 + 1 + 31 + 31 + 0 + 28 + 8 + 16 + 17 + 6 + 20 + 1 + 21 + 20 + 1 + 20 + 0 + 22 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +DELTAP1 +DELTAP1 +MDRP[min,rnd,black] +MIAP[rnd] +MDRP[min,rnd,black] +SRP2 +IP +MDAP[rnd] +DELTAP1 +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +DELTAP1 +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +619 -34 m 0,0,1 + 461 -34 461 -34 341 38.5 c 128,-1,2 + 221 111 221 111 154.5 242.5 c 128,-1,3 + 88 374 88 374 88 531 c 0,4,5 + 88 702 88 702 158 830 c 128,-1,6 + 228 958 228 958 350 1027 c 128,-1,7 + 472 1096 472 1096 619 1096 c 0,8,9 + 770 1096 770 1096 892 1025.5 c 128,-1,10 + 1014 955 1014 955 1081 826 c 128,-1,11 + 1148 697 1148 697 1148 531 c 1,12,-1 + 321 531 l 1,13,-1 + 321 175 l 1,14,15 + 371 121 371 121 452.5 86 c 128,-1,16 + 534 51 534 51 619 51 c 0,17,18 + 751 51 751 51 841.5 103 c 128,-1,19 + 932 155 932 155 1014 285 c 1,20,-1 + 1086 243 l 1,21,22 + 990 90 990 90 880.5 28 c 128,-1,23 + 771 -34 771 -34 619 -34 c 0,0,1 +917 616 m 1,24,-1 + 917 893 l 1,25,26 + 866 946 866 946 784.5 978.5 c 128,-1,27 + 703 1011 703 1011 617 1011 c 0,28,29 + 438 1011 438 1011 321 894 c 1,30,-1 + 321 616 l 1,31,-1 + 917 616 l 1,24,-1 +EndSplineSet +EndChar + +StartChar: uni214D +Encoding: 8525 8525 2094 +Width: 1931 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 67 + 40 + 27 + 15 + 3 + 0 + 22 + 21 + 21 + 46 + 34 + 4 + 11 + 1 + 2 + 7 + 8 + 8 + 6 + 12 + 2 + 5 + 11 + 34 + 0 + 15 + 9 + 55 + 54 + 46 + 27 + 37 + 18 + 37 + 43 + 182 + 89 + 41 + 37 + 13 + 6 + 182 + 89 + 12 + 9 + 13 + 13 + 4 + 9 + 4 + 8 + 37 + 8 + 37 + 8 + 3 + 2 + 18 + 18 + 24 + 182 + 89 + 22 + 18 + 19 + 3 + 9 + 0 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,white] +MIAP[rnd] +SHP[rp1] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +SRP1 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +MDAP[rnd] +SRP2 +IP +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1651 1513 m 1,0,-1 + 550 -57 l 1,1,-1 + 408 -57 l 1,2,-1 + 1509 1513 l 1,3,-1 + 1651 1513 l 1,0,-1 +652 606 m 1,4,-1 + 563 861 l 1,5,-1 + 242 861 l 1,6,-1 + 149 606 l 1,7,-1 + 8 606 l 1,8,-1 + 334 1484 l 1,9,-1 + 472 1484 l 1,10,-1 + 793 606 l 1,11,-1 + 652 606 l 1,4,-1 +402 1348 m 1,12,-1 + 279 972 l 1,13,-1 + 527 972 l 1,14,-1 + 402 1348 l 1,12,-1 +1890 233 m 0,15,16 + 1890 112 1890 112 1799 46 c 128,-1,17 + 1708 -20 1708 -20 1542 -20 c 0,18,19 + 1393 -20 1393 -20 1304 35 c 128,-1,20 + 1215 90 1215 90 1186 211 c 1,21,-1 + 1312 236 l 1,22,23 + 1352 92 1352 92 1542 92 c 0,24,25 + 1651 92 1651 92 1701 124 c 128,-1,26 + 1751 156 1751 156 1751 222 c 0,27,28 + 1751 274 1751 274 1716 304.5 c 128,-1,29 + 1681 335 1681 335 1604 354 c 0,30,31 + 1399 405 1399 405 1339.5 436 c 128,-1,32 + 1280 467 1280 467 1248 513 c 128,-1,33 + 1216 559 1216 559 1216 625 c 0,34,35 + 1216 742 1216 742 1299.5 804.5 c 128,-1,36 + 1383 867 1383 867 1544 867 c 0,37,38 + 1687 867 1687 867 1770 816 c 128,-1,39 + 1853 765 1853 765 1875 654 c 1,40,-1 + 1747 638 l 1,41,42 + 1722 756 1722 756 1544 756 c 0,43,44 + 1447 756 1447 756 1401 728.5 c 128,-1,45 + 1355 701 1355 701 1355 641 c 0,46,47 + 1355 607 1355 607 1373 585 c 128,-1,48 + 1391 563 1391 563 1424.5 547.5 c 128,-1,49 + 1458 532 1458 532 1587 499 c 0,50,51 + 1713 467 1713 467 1769.5 434.5 c 128,-1,52 + 1826 402 1826 402 1858 353.5 c 128,-1,53 + 1890 305 1890 305 1890 233 c 0,15,16 +EndSplineSet +EndChar + +StartChar: uni214E +Encoding: 8526 8526 2095 +Width: 1003 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 7 + 3 + 2 + 9 + 5 + 5 + 2 + 3 + 2 + 10 + 11 + 8 + 7 + 80 + 89 + 8 + 8 + 3 + 0 + 3 + 4 + 80 + 89 + 3 + 21 + 0 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 671 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1003 1540 basechar 0 +AnchorPoint: "Anchor-20" 1003 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1200 basechar 0 +AnchorPoint: "Anchor-15" 900 1260 basechar 0 +AnchorPoint: "Anchor-14" 480 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +683 1082 m 1,0,-1 + 863 1082 l 1,1,-1 + 863 0 l 1,2,-1 + 96 0 l 1,3,-1 + 96 139 l 1,4,-1 + 683 139 l 1,5,-1 + 683 458 l 1,6,-1 + 135 458 l 1,7,-1 + 135 596 l 1,8,-1 + 683 596 l 1,9,-1 + 683 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: onethird +Encoding: 8531 8531 2096 +Width: 1708 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 18 + 25 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 123 185 N 1 0 0 1 0 0 2 +Refer: 2046 8260 N 1 0 0 1 761 0 2 +Refer: 117 179 N 1 0 0 1 1017 -563 2 +EndChar + +StartChar: twothirds +Encoding: 8532 8532 2097 +Width: 1708 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 2 + 35 + 25 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 116 178 N 1 0 0 1 -7 0 2 +Refer: 2046 8260 N 1 0 0 1 771 0 2 +Refer: 117 179 N 1 0 0 1 1027 -563 2 +EndChar + +StartChar: oneeighth +Encoding: 8539 8539 2098 +Width: 1708 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 4 + 3 + 2 + 15 + 47 + 15 + 111 + 15 + 2 + 1 + 12 + 191 + 12 + 1 + 16 + 12 + 64 + 12 + 96 + 12 + 112 + 12 + 128 + 12 + 5 + 47 + 65 + 1 + 4 + 3 + 2 + 41 + 24 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +DELTAP1 +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 123 185 N 1 0 0 1 0 0 2 +Refer: 2046 8260 N 1 0 0 1 761 0 2 +Refer: 2057 8312 N 1 0 0 1 972 -562 2 +EndChar + +StartChar: threeeighths +Encoding: 8540 8540 2099 +Width: 1708 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 1 + 3 + 2 + 30 + 47 + 30 + 111 + 30 + 2 + 0 + 1 + 191 + 1 + 1 + 16 + 1 + 64 + 1 + 96 + 1 + 112 + 1 + 128 + 1 + 5 + 47 + 92 + 1 + 1 + 3 + 2 + 30 + 24 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +DELTAP1 +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 2046 8260 N 1 0 0 1 761 0 2 +Refer: 2057 8312 N 1 0 0 1 972 -562 2 +Refer: 117 179 N 1 0 0 1 34 0 2 +EndChar + +StartChar: fiveeighths +Encoding: 8541 8541 2100 +Width: 1708 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 1 + 3 + 2 + 30 + 47 + 30 + 111 + 30 + 2 + 0 + 1 + 191 + 1 + 1 + 16 + 1 + 64 + 1 + 96 + 1 + 112 + 1 + 128 + 1 + 5 + 47 + 84 + 1 + 1 + 3 + 2 + 30 + 24 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +DELTAP1 +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 2046 8260 N 1 0 0 1 761 0 2 +Refer: 2057 8312 N 1 0 0 1 972 -562 2 +Refer: 2055 8309 N 1 0 0 1 40 0 2 +EndChar + +StartChar: seveneighths +Encoding: 8542 8542 2101 +Width: 1708 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 1 + 3 + 2 + 30 + 47 + 30 + 111 + 30 + 2 + 0 + 1 + 191 + 1 + 1 + 128 + 1 + 1 + 47 + 66 + 1 + 1 + 3 + 2 + 30 + 24 +SVTCA[y-axis] +MIAP[rnd] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[x-axis] +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +DELTAP1 +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 2046 8260 N 1 0 0 1 701 0 2 +Refer: 2057 8312 N 1 0 0 1 972 -562 2 +Refer: 2056 8311 N 1 0 0 1 102 0 2 +EndChar + +StartChar: uni2184 +Encoding: 8580 8580 2102 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 65 + 6 + 7 + 7 + 19 + 0 + 13 + 19 + 13 + 26 + 27 + 16 + 23 + 80 + 89 + 32 + 20 + 112 + 20 + 128 + 20 + 208 + 20 + 224 + 20 + 5 + 0 + 20 + 16 + 20 + 96 + 20 + 112 + 20 + 128 + 20 + 192 + 20 + 208 + 20 + 7 + 9 + 20 + 20 + 16 + 22 + 15 + 6 + 111 + 6 + 127 + 6 + 207 + 6 + 4 + 10 + 3 + 6 + 6 + 10 + 10 + 3 + 80 + 89 + 10 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SDB +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +754 546 m 0,0,1 + 754 772 754 772 689.5 866.5 c 128,-1,2 + 625 961 625 961 483 961 c 0,3,4 + 378 961 378 961 321 908 c 128,-1,5 + 264 855 264 855 250 765 c 1,6,-1 + 65 779 l 1,7,8 + 94 930 94 930 202.5 1016 c 128,-1,9 + 311 1102 311 1102 478 1102 c 0,10,11 + 702 1102 702 1102 822 958.5 c 128,-1,12 + 942 815 942 815 942 542 c 0,13,14 + 942 267 942 267 822.5 123.5 c 128,-1,15 + 703 -20 703 -20 476 -20 c 0,16,17 + 305 -20 305 -20 192.5 73 c 128,-1,18 + 80 166 80 166 59 322 c 1,19,-1 + 241 334 l 1,20,21 + 256 226 256 226 320.5 174 c 128,-1,22 + 385 122 385 122 481 122 c 0,23,24 + 619 122 619 122 686.5 226.5 c 128,-1,25 + 754 331 754 331 754 546 c 0,0,1 +EndSplineSet +EndChar + +StartChar: arrowleft +Encoding: 8592 8592 2103 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 0 + 11 + 5 + 9 + 2 + 2 + 5 + 5 + 12 + 14 + 15 + 2 + 13 + 8 + 12 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +641 297 m 1,0,1 + 698 230 698 230 760 100 c 1,2,-1 + 688 100 l 1,3,4 + 561 249 561 249 418 322 c 1,5,-1 + 418 358 l 1,6,7 + 561 431 561 431 688 580 c 1,8,-1 + 760 580 l 1,9,10 + 698 450 698 450 641 383 c 1,11,-1 + 1630 383 l 1,12,-1 + 1630 297 l 1,13,-1 + 641 297 l 1,0,1 +EndSplineSet +EndChar + +StartChar: arrowup +Encoding: 8593 8593 2104 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 8 + 11 + 11 + 3 + 0 + 0 + 14 + 15 + 12 + 11 + 0 + 9 + 2 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IP +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +469 928 m 1,0,1 + 402 871 402 871 272 809 c 1,2,-1 + 272 881 l 1,3,4 + 421 1008 421 1008 494 1151 c 1,5,-1 + 530 1151 l 1,6,7 + 603 1008 603 1008 752 881 c 1,8,-1 + 752 809 l 1,9,10 + 622 871 622 871 555 928 c 1,11,-1 + 555 -61 l 1,12,-1 + 469 -61 l 1,13,-1 + 469 928 l 1,0,1 +EndSplineSet +EndChar + +StartChar: arrowright +Encoding: 8594 8594 2105 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 11 + 0 + 5 + 9 + 2 + 2 + 5 + 13 + 5 + 14 + 15 + 8 + 12 + 3 + 13 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1407 383 m 1,0,1 + 1350 450 1350 450 1288 580 c 1,2,-1 + 1360 580 l 1,3,4 + 1487 431 1487 431 1630 358 c 1,5,-1 + 1630 322 l 1,6,7 + 1487 249 1487 249 1360 100 c 1,8,-1 + 1288 100 l 1,9,10 + 1350 230 1350 230 1407 297 c 1,11,-1 + 418 297 l 1,12,-1 + 418 383 l 1,13,-1 + 1407 383 l 1,0,1 +EndSplineSet +EndChar + +StartChar: arrowdown +Encoding: 8595 8595 2106 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 3 + 13 + 13 + 8 + 12 + 12 + 14 + 15 + 0 + 11 + 2 + 9 + 128 + 6 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +555 162 m 1,0,1 + 622 219 622 219 752 281 c 1,2,-1 + 752 209 l 1,3,4 + 603 82 603 82 530 -61 c 1,5,-1 + 494 -61 l 1,6,7 + 421 82 421 82 272 209 c 1,8,-1 + 272 281 l 1,9,10 + 402 219 402 219 469 162 c 1,11,-1 + 469 1151 l 1,12,-1 + 555 1151 l 1,13,-1 + 555 162 l 1,0,1 +EndSplineSet +EndChar + +StartChar: arrowboth +Encoding: 8596 8596 2107 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 0 + 11 + 6 + 2 + 9 + 9 + 6 + 23 + 12 + 17 + 21 + 14 + 14 + 17 + 6 + 17 + 24 + 25 + 14 + 9 + 9 + 11 + 21 + 3 + 3 + 0 + 11 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +641 297 m 1,0,1 + 698 230 698 230 760 100 c 1,2,-1 + 688 100 l 1,3,4 + 561 249 561 249 418 322 c 1,5,-1 + 418 358 l 1,6,7 + 561 431 561 431 688 580 c 1,8,-1 + 760 580 l 1,9,10 + 698 450 698 450 641 383 c 1,11,-1 + 1407 383 l 1,12,13 + 1350 450 1350 450 1288 580 c 1,14,-1 + 1360 580 l 1,15,16 + 1487 431 1487 431 1630 358 c 1,17,-1 + 1630 322 l 1,18,19 + 1487 249 1487 249 1360 100 c 1,20,-1 + 1288 100 l 1,21,22 + 1350 230 1350 230 1407 297 c 1,23,-1 + 641 297 l 1,0,1 +EndSplineSet +EndChar + +StartChar: arrowupdn +Encoding: 8597 8597 2108 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 15 + 8 + 8 + 11 + 11 + 0 + 21 + 3 + 3 + 0 + 0 + 24 + 25 + 12 + 23 + 14 + 21 + 18 + 11 + 0 + 9 + 2 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +IP +IP +MDAP[rnd] +MDRP[min,rnd,grey] +SHP[rp2] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +469 928 m 1,0,1 + 402 871 402 871 272 809 c 1,2,-1 + 272 881 l 1,3,4 + 421 1008 421 1008 494 1151 c 1,5,-1 + 530 1151 l 1,6,7 + 603 1008 603 1008 752 881 c 1,8,-1 + 752 809 l 1,9,10 + 622 871 622 871 555 928 c 1,11,-1 + 555 162 l 1,12,13 + 622 219 622 219 752 281 c 1,14,-1 + 752 209 l 1,15,16 + 603 82 603 82 530 -61 c 1,17,-1 + 494 -61 l 1,18,19 + 421 82 421 82 272 209 c 1,20,-1 + 272 281 l 1,21,22 + 402 219 402 219 469 162 c 1,23,-1 + 469 928 l 1,0,1 +EndSplineSet +EndChar + +StartChar: arrowupdnbse +Encoding: 8616 8616 2109 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 19 + 12 + 12 + 1 + 15 + 15 + 4 + 25 + 7 + 7 + 0 + 4 + 4 + 29 + 28 + 16 + 27 + 18 + 25 + 22 + 3 + 0 + 22 + 15 + 4 + 13 + 6 + 9 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +SHP[rp2] +IP +IP +MDAP[rnd] +MDRP[rp0,min,rnd,white] +MDRP[min,rnd,black] +SRP0 +MDRP[min,rnd,grey] +SHP[rp2] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +272 -104 m 1,0,-1 + 752 -104 l 1,1,-1 + 752 -184 l 1,2,-1 + 272 -184 l 1,3,-1 + 272 -104 l 1,0,-1 +469 928 m 1,4,5 + 402 871 402 871 272 809 c 1,6,-1 + 272 881 l 1,7,8 + 421 1008 421 1008 494 1151 c 1,9,-1 + 530 1151 l 1,10,11 + 603 1008 603 1008 752 881 c 1,12,-1 + 752 809 l 1,13,14 + 622 871 622 871 555 928 c 1,15,-1 + 555 162 l 1,16,17 + 622 219 622 219 752 281 c 1,18,-1 + 752 209 l 1,19,20 + 603 82 603 82 530 -61 c 1,21,-1 + 494 -61 l 1,22,23 + 421 82 421 82 272 209 c 1,24,-1 + 272 281 l 1,25,26 + 402 219 402 219 469 162 c 1,27,-1 + 469 928 l 1,4,5 +EndSplineSet +EndChar + +StartChar: partialdiff +Encoding: 8706 8706 2110 +Width: 1012 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 51 + 23 + 8 + 29 + 16 + 17 + 17 + 0 + 36 + 8 + 0 + 8 + 44 + 43 + 23 + 20 + 26 + 20 + 80 + 89 + 12 + 32 + 81 + 89 + 15 + 12 + 12 + 5 + 47 + 26 + 111 + 26 + 223 + 26 + 3 + 15 + 26 + 191 + 26 + 2 + 9 + 3 + 26 + 5 + 39 + 80 + 89 + 5 + 22 + 47 + 44 + 1 +DELTAP1 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +954 938 m 0,0,1 + 954 780 954 780 918 591.5 c 128,-1,2 + 882 403 882 403 808.5 261.5 c 128,-1,3 + 735 120 735 120 628 46.5 c 128,-1,4 + 521 -27 521 -27 389 -27 c 0,5,6 + 228 -27 228 -27 142 74.5 c 128,-1,7 + 56 176 56 176 56 356 c 0,8,9 + 56 522 56 522 119.5 681 c 128,-1,10 + 183 840 183 840 286 922 c 128,-1,11 + 389 1004 389 1004 515 1004 c 0,12,13 + 599 1004 599 1004 665.5 954.5 c 128,-1,14 + 732 905 732 905 764 821 c 1,15,-1 + 768 821 l 1,16,-1 + 772 938 l 1,17,18 + 772 1134 772 1134 707 1238.5 c 128,-1,19 + 642 1343 642 1343 513 1343 c 0,20,21 + 460 1343 460 1343 398.5 1323 c 128,-1,22 + 337 1303 337 1303 291 1268 c 1,23,-1 + 327 1415 l 1,24,25 + 440 1477 440 1477 552 1477 c 0,26,27 + 747 1477 747 1477 850.5 1337 c 128,-1,28 + 954 1197 954 1197 954 938 c 0,0,1 +743 680 m 1,29,30 + 726 768 726 768 671.5 825.5 c 128,-1,31 + 617 883 617 883 548 883 c 0,32,33 + 467 883 467 883 400 817 c 128,-1,34 + 333 751 333 751 289.5 620.5 c 128,-1,35 + 246 490 246 490 246 358 c 0,36,37 + 246 243 246 243 291 176 c 128,-1,38 + 336 109 336 109 418 109 c 0,39,40 + 496 109 496 109 563.5 184.5 c 128,-1,41 + 631 260 631 260 678.5 393.5 c 128,-1,42 + 726 527 726 527 743 680 c 1,29,30 +EndSplineSet +EndChar + +StartChar: uni2206 +Encoding: 8710 8710 2111 +Width: 1253 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 124 + 1 + 0 + 10 + 10 + 2 + 14 + 5 + 2 + 5 + 16 + 15 + 6 + 5 + 2 + 14 + 4 + 14 + 95 + 89 + 4 + 18 + 10 + 32 + 19 + 22 + 72 + 9 + 10 + 1 + 18 + 10 + 0 + 3 + 127 + 16 + 1 + 47 + 16 + 1 + 15 + 16 + 1 + 255 + 16 + 1 + 223 + 16 + 1 + 191 + 16 + 1 + 175 + 16 + 1 + 144 + 16 + 1 + 112 + 16 + 1 + 32 + 16 + 1 + 143 + 16 + 1 + 63 + 16 + 1 + 15 + 16 + 1 + 58 + 255 + 16 + 1 + 223 + 16 + 1 + 207 + 16 + 1 + 175 + 16 + 1 + 144 + 16 + 1 + 96 + 16 + 1 + 64 + 16 + 1 + 95 + 16 + 1 + 15 + 16 + 1 + 223 + 16 + 1 + 191 + 16 + 1 + 159 + 16 + 1 + 143 + 16 + 1 + 112 + 16 + 1 + 80 + 16 + 1 + 32 + 16 + 1 + 0 + 16 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +SDB +DELTAP1 +CALL +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +522 1409 m 1,0,-1 + 739 1409 l 1,1,-1 + 1249 141 l 1,2,-1 + 1249 0 l 1,3,-1 + 4 0 l 1,4,-1 + 5 141 l 1,5,-1 + 522 1409 l 1,0,-1 +1049 156 m 1,6,-1 + 711 1018 l 2,7,8 + 681 1092 681 1092 655.5 1172.5 c 128,-1,9 + 630 1253 630 1253 628 1265 c 1,10,-1 + 619 1233 l 2,11,12 + 588 1122 588 1122 545 1016 c 2,13,-1 + 206 156 l 1,14,-1 + 1049 156 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: product +Encoding: 8719 8719 2112 +Width: 1686 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 3 + 4 + 0 + 7 + 4 + 7 + 8 + 9 + 5 + 2 + 95 + 89 + 5 + 3 + 4 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1268 -434 m 1,0,-1 + 1268 1247 l 1,1,-1 + 426 1247 l 1,2,-1 + 426 -434 l 1,3,-1 + 235 -434 l 1,4,-1 + 235 1409 l 1,5,-1 + 1452 1409 l 1,6,-1 + 1452 -434 l 1,7,-1 + 1268 -434 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: summation +Encoding: 8721 8721 2113 +Width: 1460 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 7 + 3 + 3 + 9 + 0 + 8 + 2 + 10 + 6 + 2 + 0 + 4 + 12 + 13 + 3 + 4 + 7 + 4 + 7 + 95 + 89 + 2 + 8 + 4 + 3 + 1 + 0 + 9 + 0 + 9 + 95 + 89 + 0 + 32 + 13 + 1 +DELTAP1 +SVTCA[y-axis] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MIAP[rnd] +IP +IP +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +154 -434 m 1,0,-1 + 154 -325 l 1,1,-1 + 789 491 l 1,2,-1 + 170 1303 l 1,3,-1 + 170 1409 l 1,4,-1 + 1260 1409 l 1,5,-1 + 1260 1257 l 1,6,-1 + 414 1257 l 1,7,-1 + 998 493 l 1,8,-1 + 398 -282 l 1,9,-1 + 1328 -282 l 1,10,-1 + 1328 -434 l 1,11,-1 + 154 -434 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: minus +Encoding: 8722 8722 2114 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 0 + 2 + 4 + 5 + 1 + 0 + 173 + 89 + 1 + 179 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +101 608 m 1,0,-1 + 101 754 l 1,1,-1 + 1096 754 l 1,2,-1 + 1096 608 l 1,3,-1 + 101 608 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2215 +Encoding: 8725 8725 2115 +Width: 342 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2046 8260 N 1 0 0 1 0 0 2 +EndChar + +StartChar: periodcentered +Encoding: 8729 8729 2116 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 3 + 0 + 0 + 4 + 5 + 1 + 0 + 155 + 89 + 15 + 1 + 31 + 1 + 2 + 1 + 64 + 15 + 38 + 72 + 1 +SVTCA[y-axis] +MDAP[rnd] +CALL +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +187 446 m 1,0,-1 + 187 666 l 1,1,-1 + 382 666 l 1,2,-1 + 382 446 l 1,3,-1 + 187 446 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: radical +Encoding: 8730 8730 2117 +Width: 1124 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 108 + 7 + 1 + 0 + 6 + 6 + 8 + 5 + 2 + 2 + 3 + 3 + 8 + 9 + 10 + 5 + 2 + 175 + 89 + 15 + 5 + 1 + 10 + 5 + 5 + 1 + 7 + 179 + 6 + 1 + 175 + 10 + 1 + 144 + 10 + 1 + 112 + 10 + 1 + 80 + 10 + 1 + 48 + 10 + 1 + 143 + 10 + 1 + 111 + 10 + 1 + 48 + 10 + 1 + 16 + 10 + 1 + 240 + 10 + 1 + 79 + 10 + 1 + 47 + 10 + 1 + 15 + 10 + 1 + 57 + 239 + 10 + 1 + 208 + 10 + 1 + 176 + 10 + 1 + 239 + 10 + 1 + 207 + 10 + 1 + 175 + 10 + 1 + 143 + 10 + 1 + 112 + 10 + 1 + 175 + 10 + 1 + 143 + 10 + 1 + 111 + 10 + 1 + 79 + 10 + 1 + 47 + 10 + 1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +622 -14 m 1,0,-1 + 516 -14 l 1,1,-1 + 233 778 l 1,2,-1 + 51 778 l 1,3,-1 + 51 895 l 1,4,-1 + 321 895 l 1,5,-1 + 563 205 l 1,6,-1 + 993 1620 l 1,7,-1 + 1122 1620 l 1,8,-1 + 622 -14 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: infinity +Encoding: 8734 8734 2118 +Width: 1460 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 49 + 31 + 25 + 16 + 5 + 34 + 4 + 0 + 40 + 11 + 0 + 11 + 47 + 46 + 22 + 224 + 37 + 1 + 37 + 14 + 28 + 239 + 43 + 1 + 43 + 5 + 25 + 34 + 16 + 4 + 3 + 63 + 8 + 1 + 8 + 64 + 18 + 21 + 72 + 0 + 8 + 80 + 8 + 2 + 8 + 19 + 15 + 14 + 1 + 14 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +MDRP[rp0,min,rnd,grey] +DELTAP1 +CALL +DELTAP2 +SHP[rp2] +SLOOP +IP +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP0 +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1373 590 m 0,0,1 + 1373 424 1373 424 1284 313.5 c 128,-1,2 + 1195 203 1195 203 1062 203 c 0,3,4 + 859 203 859 203 727 485 c 1,5,6 + 659 352 659 352 573.5 280.5 c 128,-1,7 + 488 209 488 209 400 209 c 0,8,9 + 261 209 261 209 174 314.5 c 128,-1,10 + 87 420 87 420 87 596 c 0,11,12 + 87 767 87 767 175.5 875 c 128,-1,13 + 264 983 264 983 400 983 c 0,14,15 + 601 983 601 983 729 700 c 1,16,17 + 794 830 794 830 880.5 903.5 c 128,-1,18 + 967 977 967 977 1064 977 c 0,19,20 + 1204 977 1204 977 1288.5 870 c 128,-1,21 + 1373 763 1373 763 1373 590 c 0,0,1 +1040 846 m 0,22,23 + 970 846 970 846 910.5 783 c 128,-1,24 + 851 720 851 720 795 590 c 1,25,26 + 846 462 846 462 905.5 398 c 128,-1,27 + 965 334 965 334 1042 334 c 0,28,29 + 1125 334 1125 334 1179.5 406.5 c 128,-1,30 + 1234 479 1234 479 1234 592 c 0,31,32 + 1234 699 1234 699 1179.5 772.5 c 128,-1,33 + 1125 846 1125 846 1040 846 c 0,22,23 +664 596 m 1,34,35 + 613 724 613 724 553.5 788 c 128,-1,36 + 494 852 494 852 416 852 c 0,37,38 + 332 852 332 852 279.5 778.5 c 128,-1,39 + 227 705 227 705 227 594 c 0,40,41 + 227 482 227 482 279 411 c 128,-1,42 + 331 340 331 340 418 340 c 0,43,44 + 488 340 488 340 548 403 c 128,-1,45 + 608 466 608 466 664 596 c 1,34,35 +EndSplineSet +EndChar + +StartChar: orthogonal +Encoding: 8735 8735 2119 +Width: 2005 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 5 + 5 + 3 + 6 + 7 + 2 + 5 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +408 1223 m 1,0,-1 + 502 1223 l 1,1,-1 + 502 94 l 1,2,-1 + 1632 94 l 1,3,-1 + 1632 0 l 1,4,-1 + 408 0 l 1,5,-1 + 408 1223 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: intersection +Encoding: 8745 8745 2120 +Width: 1472 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 19 + 0 + 11 + 10 + 0 + 10 + 20 + 21 + 15 + 5 + 11 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +278 -2 m 1,0,-1 + 278 510 l 2,1,2 + 278 660 278 660 336 779.5 c 128,-1,3 + 394 899 394 899 498.5 965.5 c 128,-1,4 + 603 1032 603 1032 733 1032 c 0,5,6 + 864 1032 864 1032 969.5 966 c 128,-1,7 + 1075 900 1075 900 1134.5 779 c 128,-1,8 + 1194 658 1194 658 1194 510 c 2,9,-1 + 1194 -2 l 1,10,-1 + 1091 -2 l 1,11,-1 + 1091 512 l 2,12,13 + 1091 702 1091 702 993 816 c 128,-1,14 + 895 930 895 930 735 930 c 0,15,16 + 573 930 573 930 477 817 c 128,-1,17 + 381 704 381 704 381 510 c 2,18,-1 + 381 -2 l 1,19,-1 + 278 -2 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: integral +Encoding: 8747 8747 2121 +Width: 561 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 255 + 14 + 20 + 20 + 3 + 7 + 7 + 24 + 23 + 11 + 16 + 80 + 89 + 0 + 11 + 64 + 11 + 2 + 13 + 3 + 11 + 0 + 5 + 80 + 89 + 0 + 116 + 24 + 1 + 102 + 24 + 1 + 84 + 24 + 1 + 68 + 24 + 1 + 54 + 24 + 1 + 38 + 24 + 1 + 22 + 24 + 1 + 6 + 24 + 1 + 150 + 24 + 1 + 73 + 24 + 1 + 57 + 24 + 1 + 41 + 24 + 1 + 25 + 24 + 1 + 9 + 24 + 1 + 103 + 249 + 24 + 1 + 233 + 24 + 1 + 219 + 24 + 1 + 166 + 24 + 1 + 118 + 24 + 1 + 41 + 24 + 1 + 25 + 24 + 1 + 9 + 24 + 1 + 233 + 24 + 1 + 185 + 24 + 1 + 169 + 24 + 1 + 153 + 24 + 1 + 137 + 24 + 1 + 123 + 24 + 1 + 107 + 24 + 1 + 91 + 24 + 1 + 75 + 24 + 1 + 59 + 24 + 1 + 41 + 24 + 1 + 25 + 24 + 1 + 11 + 24 + 1 + 251 + 24 + 1 + 233 + 24 + 1 + 217 + 24 + 1 + 203 + 24 + 1 + 187 + 24 + 1 + 171 + 24 + 1 + 153 + 24 + 1 + 139 + 24 + 1 + 123 + 24 + 1 + 107 + 24 + 1 + 91 + 24 + 1 + 73 + 24 + 1 + 57 + 24 + 1 + 41 + 24 + 1 + 27 + 24 + 1 + 11 + 24 + 1 + 55 + 249 + 24 + 1 + 233 + 24 + 1 + 219 + 24 + 1 + 203 + 24 + 1 + 187 + 24 + 1 + 173 + 24 + 1 + 157 + 24 + 1 + 141 + 24 + 1 + 123 + 24 + 1 + 109 + 24 + 1 + 1 + 95 + 24 + 1 + 64 + 24 + 1 + 48 + 24 + 1 + 32 + 24 + 1 + 16 + 24 + 1 + 0 + 24 + 1 + 244 + 24 + 1 + 228 + 24 + 1 + 212 + 24 + 1 + 196 + 24 + 1 + 180 + 24 + 1 + 160 + 24 + 1 + 144 + 24 + 1 + 2 + 128 + 24 + 1 + 112 +NPUSHB + 39 + 24 + 1 + 96 + 24 + 1 + 80 + 24 + 1 + 16 + 24 + 1 + 223 + 24 + 1 + 192 + 24 + 1 + 176 + 24 + 1 + 160 + 24 + 1 + 112 + 24 + 1 + 96 + 24 + 1 + 47 + 24 + 1 + 31 + 24 + 1 + 15 + 24 + 1 + 7 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SDS +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDS +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +DELTAP3 +SDB +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +36 -434 m 0,0,1 + -43 -434 -43 -434 -98 -415 c 1,2,-1 + -98 -268 l 1,3,4 + -38 -292 -38 -292 19 -292 c 0,5,6 + 191 -292 191 -292 191 -59 c 2,7,-1 + 189 1153 l 2,8,9 + 189 1325 189 1325 276 1416 c 128,-1,10 + 363 1507 363 1507 529 1507 c 0,11,12 + 616 1507 616 1507 660 1489 c 1,13,-1 + 660 1341 l 1,14,15 + 611 1368 611 1368 545 1368 c 0,16,17 + 462 1368 462 1368 417.5 1308.5 c 128,-1,18 + 373 1249 373 1249 373 1135 c 2,19,-1 + 373 -79 l 2,20,21 + 373 -251 373 -251 286 -342.5 c 128,-1,22 + 199 -434 199 -434 36 -434 c 0,0,1 +EndSplineSet +EndChar + +StartChar: approxequal +Encoding: 8776 8776 2122 +Width: 1124 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 30 + 8 + 42 + 18 + 8 + 18 + 45 + 46 + 22 + 39 + 173 + 89 + 30 +PUSHW_1 + -64 +PUSHB_5 + 35 + 60 + 72 + 30 + 22 +PUSHW_1 + -64 +PUSHB_4 + 23 + 28 + 72 + 22 +PUSHW_1 + -64 +PUSHB_4 + 16 + 20 + 72 + 22 +PUSHW_1 + -64 +NPUSHB + 34 + 9 + 12 + 72 + 22 + 64 + 41 + 64 + 41 + 60 + 72 + 41 + 33 + 33 + 27 + 173 + 89 + 111 + 33 + 1 + 0 + 33 + 16 + 33 + 2 + 11 + 3 + 33 + 11 + 64 + 0 + 16 + 173 + 89 + 8 +PUSHW_1 + -64 +PUSHB_5 + 39 + 60 + 72 + 8 + 0 +PUSHW_1 + -64 +PUSHB_4 + 23 + 28 + 72 + 0 +PUSHW_1 + -64 +PUSHB_4 + 16 + 20 + 72 + 0 +PUSHW_1 + -64 +NPUSHB + 35 + 9 + 12 + 72 + 0 + 64 + 18 + 64 + 41 + 60 + 72 + 18 + 11 + 11 + 5 + 173 + 89 + 15 + 11 + 207 + 11 + 2 + 11 + 64 + 23 + 28 + 72 + 11 + 64 + 11 + 19 + 72 + 11 + 47 + 46 + 1 +DELTAP1 +SVTCA[y-axis] +MDAP[rnd] +CALL +CALL +DELTAP1 +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SMD +MDRP[rp0,min,rnd,black] +CALL +CALL +CALL +MDRP[rnd,grey] +CALL +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,grey] +CALL +SMD +MDRP[rp0,min,rnd,black] +CALL +CALL +CALL +MDRP[rnd,grey] +CALL +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +808 758 m 0,0,1 + 739 758 739 758 666.5 779.5 c 128,-1,2 + 594 801 594 801 521 827 c 0,3,4 + 388 872 388 872 304 872 c 0,5,6 + 241 872 241 872 184 853.5 c 128,-1,7 + 127 835 127 835 56 784 c 1,8,-1 + 56 928 l 1,9,10 + 170 1012 170 1012 319 1012 c 0,11,12 + 422 1012 422 1012 554 965 c 0,13,14 + 664 925 664 925 721.5 909 c 128,-1,15 + 779 893 779 893 824 893 c 0,16,17 + 954 893 954 893 1068 987 c 1,18,-1 + 1068 838 l 1,19,20 + 1010 796 1010 796 951.5 777 c 128,-1,21 + 893 758 893 758 808 758 c 0,0,1 +808 336 m 0,22,23 + 739 336 739 336 666.5 358 c 128,-1,24 + 594 380 594 380 521 406 c 0,25,26 + 388 453 388 453 304 453 c 0,27,28 + 237 453 237 453 179 432.5 c 128,-1,29 + 121 412 121 412 56 365 c 1,30,-1 + 56 506 l 1,31,32 + 167 590 167 590 319 590 c 0,33,34 + 371 590 371 590 434.5 577 c 128,-1,35 + 498 564 498 564 628 518 c 0,36,37 + 659 506 659 506 719 489.5 c 128,-1,38 + 779 473 779 473 824 473 c 0,39,40 + 954 473 954 473 1068 565 c 1,41,-1 + 1068 418 l 1,42,43 + 1002 371 1002 371 945.5 353.5 c 128,-1,44 + 889 336 889 336 808 336 c 0,22,23 +EndSplineSet +EndChar + +StartChar: notequal +Encoding: 8800 8800 2123 +Width: 1124 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 65 + 12 + 11 + 13 + 10 + 16 + 7 + 17 + 6 + 0 + 3 + 1 + 2 + 12 + 9 + 18 + 14 + 5 + 9 + 14 + 9 + 21 + 20 + 16 + 7 + 8 + 9 + 8 + 173 + 89 + 3 + 2 + 1 + 0 + 4 + 5 + 4 + 173 + 89 + 17 + 6 + 31 + 5 + 47 + 5 + 95 + 5 + 111 + 5 + 223 + 5 + 5 + 5 + 13 + 12 + 11 + 10 + 15 + 9 + 1 + 80 + 9 + 208 + 9 + 2 + 9 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +MDRP[min,rnd,white] +DELTAP1 +SHP[rp2] +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +448 344 m 1,0,-1 + 296 55 l 1,1,-1 + 151 55 l 1,2,-1 + 302 344 l 1,3,-1 + 65 344 l 1,4,-1 + 65 492 l 1,5,-1 + 376 492 l 1,6,-1 + 566 856 l 1,7,-1 + 65 856 l 1,8,-1 + 65 1004 l 1,9,-1 + 638 1004 l 1,10,-1 + 792 1296 l 1,11,-1 + 935 1296 l 1,12,-1 + 783 1004 l 1,13,-1 + 1060 1004 l 1,14,-1 + 1060 856 l 1,15,-1 + 710 856 l 1,16,-1 + 519 492 l 1,17,-1 + 1060 492 l 1,18,-1 + 1060 344 l 1,19,-1 + 448 344 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: equivalence +Encoding: 8801 8801 2124 +Width: 1195 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 52 + 11 + 7 + 2 + 8 + 4 + 0 + 2 + 0 + 13 + 12 + 9 + 8 + 173 + 89 + 9 + 9 + 4 + 1 + 4 + 5 + 173 + 89 + 176 + 4 + 1 + 15 + 4 + 63 + 4 + 111 + 4 + 127 + 4 + 4 + 12 + 3 + 4 + 1 + 0 + 173 + 89 + 80 + 1 + 1 + 15 + 1 + 31 + 1 + 63 + 1 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 956 m 1,0,-1 + 100 1104 l 1,1,-1 + 1095 1104 l 1,2,-1 + 1095 956 l 1,3,-1 + 100 956 l 1,0,-1 +100 244 m 1,4,-1 + 100 392 l 1,5,-1 + 1095 392 l 1,6,-1 + 1095 244 l 1,7,-1 + 100 244 l 1,4,-1 +100 600 m 1,8,-1 + 100 748 l 1,9,-1 + 1095 748 l 1,10,-1 + 1095 600 l 1,11,-1 + 100 600 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: lessequal +Encoding: 8804 8804 2125 +Width: 1124 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 5 + 2 + 4 + 7 + 0 + 10 + 2 + 0 + 2 + 11 + 12 + 7 + 8 + 173 + 89 + 7 + 5 + 79 + 6 + 95 + 6 + 143 + 6 + 3 + 6 + 3 + 64 + 2 + 80 + 2 + 128 + 2 + 3 + 2 + 1 + 0 + 80 + 4 + 128 + 4 + 2 + 4 +SVTCA[y-axis] +RTHG +MDAP[rnd] +DELTAP1 +SHP[rp1] +SHP[rp1] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +65 631 m 1,0,-1 + 65 836 l 1,1,-1 + 1060 1231 l 1,2,-1 + 1060 1077 l 1,3,-1 + 202 733 l 1,4,-1 + 1060 389 l 1,5,-1 + 1060 236 l 1,6,-1 + 65 631 l 1,0,-1 +63 0 m 1,7,-1 + 63 145 l 1,8,-1 + 1058 145 l 1,9,-1 + 1058 0 l 1,10,-1 + 63 0 l 1,7,-1 +EndSplineSet +EndChar + +StartChar: greaterequal +Encoding: 8805 8805 2126 +Width: 1124 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 2 + 6 + 3 + 7 + 0 + 9 + 6 + 0 + 6 + 11 + 12 + 7 + 8 + 173 + 89 + 7 + 3 + 64 + 4 + 80 + 4 + 128 + 4 + 3 + 4 + 1 + 79 + 0 + 95 + 0 + 143 + 0 + 3 + 0 + 6 + 5 + 80 + 2 + 128 + 2 + 2 + 2 +SVTCA[y-axis] +RTHG +MDAP[rnd] +DELTAP1 +SHP[rp1] +SHP[rp1] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +RTG +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +65 236 m 1,0,-1 + 65 389 l 1,1,-1 + 923 733 l 1,2,-1 + 65 1077 l 1,3,-1 + 65 1231 l 1,4,-1 + 1060 836 l 1,5,-1 + 1060 631 l 1,6,-1 + 65 236 l 1,0,-1 +65 0 m 1,7,-1 + 65 145 l 1,8,-1 + 1060 145 l 1,9,-1 + 1060 0 l 1,10,-1 + 65 0 l 1,7,-1 +EndSplineSet +EndChar + +StartChar: house +Encoding: 8962 8962 2127 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 2 + 8 + 5 + 0 + 6 + 4 + 0 + 8 + 4 + 3 + 11 + 10 + 3 + 1 + 1 + 0 + 8 + 2 + 5 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +MDAP[rnd] +SHP[rp1] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +157 0 m 1,0,-1 + 157 635 l 1,1,-1 + 618 1153 l 1,2,-1 + 1079 635 l 1,3,-1 + 1079 0 l 1,4,-1 + 157 0 l 1,0,-1 +237 82 m 1,5,-1 + 999 82 l 1,6,-1 + 999 600 l 1,7,-1 + 618 1026 l 1,8,-1 + 237 600 l 1,9,-1 + 237 82 l 1,5,-1 +EndSplineSet +EndChar + +StartChar: revlogicalnot +Encoding: 8976 8976 2128 +Width: 1196 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 5 + 0 + 0 + 2 + 6 + 7 + 1 + 4 + 173 + 89 + 1 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 180 m 1,0,-1 + 100 754 l 1,1,-1 + 1095 754 l 1,2,-1 + 1095 608 l 1,3,-1 + 245 608 l 1,4,-1 + 245 180 l 1,5,-1 + 100 180 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: integraltp +Encoding: 8992 8992 2129 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 0 + 1 + 8 + 1 + 23 + 22 + 17 + 11 + 5 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +MDRP[min,rnd,black] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +693 -614 m 1,0,-1 + 546 -614 l 1,1,-1 + 546 1264 l 2,2,3 + 546 1460 546 1460 630 1583 c 128,-1,4 + 714 1706 714 1706 840 1706 c 0,5,6 + 903 1706 903 1706 940.5 1674.5 c 128,-1,7 + 978 1643 978 1643 978 1595 c 0,8,9 + 978 1555 978 1555 952.5 1529 c 128,-1,10 + 927 1503 927 1503 890 1503 c 0,11,12 + 860 1503 860 1503 847 1513 c 0,13,14 + 831 1521 831 1521 793 1563 c 0,15,16 + 760 1602 760 1602 744 1602 c 0,17,18 + 708 1602 708 1602 699 1563 c 0,19,20 + 693 1528 693 1528 693 1423 c 2,21,-1 + 693 -614 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: integralbt +Encoding: 8993 8993 2130 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 2 + 20 + 8 + 20 + 21 + 22 + 17 + 11 + 5 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +MDRP[min,rnd,black] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +546 1706 m 1,0,-1 + 693 1706 l 1,1,-1 + 693 -174 l 2,2,3 + 693 -369 693 -369 611.5 -491.5 c 128,-1,4 + 530 -614 530 -614 398 -614 c 0,5,6 + 339 -614 339 -614 300 -583.5 c 128,-1,7 + 261 -553 261 -553 261 -506 c 0,8,9 + 261 -467 261 -467 286 -440.5 c 128,-1,10 + 311 -414 311 -414 347 -414 c 0,11,12 + 380 -414 380 -414 406 -430 c 0,13,14 + 416 -434 416 -434 447 -475 c 0,15,16 + 478 -512 478 -512 494 -512 c 0,17,18 + 523 -512 523 -512 534.5 -486.5 c 128,-1,19 + 546 -461 546 -461 546 -334 c 2,20,-1 + 546 1706 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2500 +Encoding: 9472 9472 2131 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 3 + 5 + 0 + 4 + 1 + 0 +PUSHW_1 + 258 +PUSHB_3 + 89 + 1 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 1461 694 l 1,2,-1 + 1461 549 l 1,3,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2502 +Encoding: 9474 9474 2132 +Width: 1280 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 3 + 4 + 3 +PUSHW_1 + 262 +PUSHB_5 + 91 + 3 + 254 + 0 + 250 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +472 1864 m 1,0,-1 + 617 1864 l 1,1,-1 + 617 -621 l 1,2,-1 + 472 -621 l 1,3,-1 + 472 1864 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni250C +Encoding: 9484 9484 2133 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 0 + 6 + 0 +PUSHW_1 + 262 +PUSHB_7 + 91 + 2 + 7 + 5 + 254 + 0 + 3 +PUSHW_1 + 258 +PUSHB_3 + 89 + 0 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +653 694 m 1,0,-1 + 1461 694 l 1,1,-1 + 1461 549 l 1,2,-1 + 798 549 l 1,3,-1 + 798 -621 l 1,4,-1 + 653 -621 l 1,5,-1 + 653 694 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2510 +Encoding: 9488 9488 2134 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 5 + 6 + 5 +PUSHW_1 + 262 +PUSHB_7 + 91 + 0 + 6 + 4 + 254 + 2 + 5 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 798 694 l 1,2,-1 + 798 -621 l 1,3,-1 + 653 -621 l 1,4,-1 + 653 549 l 1,5,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2514 +Encoding: 9492 9492 2135 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 5 + 6 + 5 +PUSHW_1 + 262 +PUSHB_5 + 91 + 4 + 7 + 2 + 5 +PUSHW_1 + 258 +PUSHB_5 + 89 + 2 + 252 + 0 + 250 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +653 1864 m 1,0,-1 + 798 1864 l 1,1,-1 + 798 694 l 1,2,-1 + 1461 694 l 1,3,-1 + 1461 549 l 1,4,-1 + 653 549 l 1,5,-1 + 653 1864 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2518 +Encoding: 9496 9496 2136 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 5 + 2 + 6 + 2 +PUSHW_1 + 262 +PUSHB_7 + 91 + 0 + 6 + 3 + 250 + 2 + 5 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 653 694 l 1,2,-1 + 653 1864 l 1,3,-1 + 798 1864 l 1,4,-1 + 798 549 l 1,5,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni251C +Encoding: 9500 9500 2137 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 5 + 1 + 1 + 0 + 8 + 0 +PUSHW_1 + 262 +PUSHB_7 + 91 + 4 + 9 + 7 + 254 + 2 + 5 +PUSHW_1 + 258 +PUSHB_5 + 89 + 2 + 252 + 0 + 250 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +653 1864 m 1,0,-1 + 798 1864 l 1,1,-1 + 798 694 l 1,2,-1 + 1461 694 l 1,3,-1 + 1461 549 l 1,4,-1 + 798 549 l 1,5,-1 + 798 -621 l 1,6,-1 + 653 -621 l 1,7,-1 + 653 1864 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2524 +Encoding: 9508 9508 2138 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 7 + 4 + 2 + 8 + 2 +PUSHW_1 + 262 +NPUSHB + 9 + 91 + 0 + 8 + 6 + 254 + 3 + 250 + 2 + 7 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 653 694 l 1,2,-1 + 653 1864 l 1,3,-1 + 798 1864 l 1,4,-1 + 798 -621 l 1,5,-1 + 653 -621 l 1,6,-1 + 653 549 l 1,7,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni252C +Encoding: 9516 9516 2139 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 3 + 9 + 4 + 7 + 8 + 7 +PUSHW_1 + 262 +NPUSHB + 9 + 91 + 0 + 8 + 6 + 254 + 4 + 0 + 1 + 0 +PUSHW_1 + 258 +PUSHB_3 + 89 + 1 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 1461 694 l 1,2,-1 + 1461 549 l 1,3,-1 + 798 549 l 1,4,-1 + 798 -621 l 1,5,-1 + 653 -621 l 1,6,-1 + 653 549 l 1,7,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2534 +Encoding: 9524 9524 2140 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 7 + 9 + 5 + 2 + 8 + 2 +PUSHW_1 + 262 +NPUSHB + 9 + 91 + 0 + 8 + 3 + 250 + 5 + 1 + 1 + 0 +PUSHW_1 + 258 +PUSHB_3 + 89 + 1 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 653 694 l 1,2,-1 + 653 1864 l 1,3,-1 + 798 1864 l 1,4,-1 + 798 694 l 1,5,-1 + 1461 694 l 1,6,-1 + 1461 549 l 1,7,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni253C +Encoding: 9532 9532 2141 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 7 + 13 + 5 + 8 + 8 + 2 + 11 + 12 + 11 +PUSHW_1 + 262 +NPUSHB + 11 + 91 + 0 + 12 + 10 + 254 + 3 + 250 + 8 + 11 + 2 + 11 +PUSHW_1 + 258 +PUSHB_4 + 89 + 5 + 2 + 252 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 653 694 l 1,2,-1 + 653 1864 l 1,3,-1 + 798 1864 l 1,4,-1 + 798 694 l 1,5,-1 + 1461 694 l 1,6,-1 + 1461 549 l 1,7,-1 + 798 549 l 1,8,-1 + 798 -621 l 1,9,-1 + 653 -621 l 1,10,-1 + 653 549 l 1,11,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2550 +Encoding: 9552 9552 2142 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 3 + 7 + 7 + 9 + 0 + 4 + 4 + 8 + 5 + 4 +PUSHW_1 + 258 +PUSHB_5 + 89 + 5 + 253 + 1 + 0 +PUSHW_1 + 258 +PUSHB_3 + 89 + 1 + 251 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 729 m 1,0,-1 + -10 874 l 1,1,-1 + 1461 874 l 1,2,-1 + 1461 729 l 1,3,-1 + -10 729 l 1,0,-1 +-10 369 m 1,4,-1 + -10 514 l 1,5,-1 + 1461 514 l 1,6,-1 + 1461 369 l 1,7,-1 + -10 369 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni2551 +Encoding: 9553 9553 2143 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 5 + 4 + 8 + 4 +PUSHW_1 + 263 +PUSHB_5 + 91 + 1 + 0 + 8 + 0 +PUSHW_1 + 260 +PUSHB_7 + 91 + 7 + 3 + 254 + 4 + 0 + 250 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +473 1864 m 1,0,-1 + 618 1864 l 1,1,-1 + 618 -621 l 1,2,-1 + 473 -621 l 1,3,-1 + 473 1864 l 1,0,-1 +833 1864 m 1,4,-1 + 978 1864 l 1,5,-1 + 978 -621 l 1,6,-1 + 833 -621 l 1,7,-1 + 833 1864 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni2552 +Encoding: 9554 9554 2144 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 7 + 3 + 3 + 0 + 10 + 0 +PUSHW_1 + 262 +NPUSHB + 9 + 91 + 2 + 6 + 6 + 11 + 9 + 254 + 4 + 7 +PUSHW_1 + 258 +PUSHB_5 + 89 + 4 + 253 + 0 + 3 +PUSHW_1 + 258 +PUSHB_3 + 89 + 0 + 251 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +653 874 m 1,0,-1 + 1461 874 l 1,1,-1 + 1461 729 l 1,2,-1 + 798 729 l 1,3,-1 + 798 514 l 1,4,-1 + 1461 514 l 1,5,-1 + 1461 369 l 1,6,-1 + 798 369 l 1,7,-1 + 798 -621 l 1,8,-1 + 653 -621 l 1,9,-1 + 653 874 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2553 +Encoding: 9555 9555 2145 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 6 + 9 + 10 + 9 +PUSHW_1 + 260 +PUSHB_5 + 91 + 2 + 5 + 10 + 5 +PUSHW_1 + 263 +PUSHB_7 + 91 + 1 + 11 + 2 + 6 + 9 + 6 +PUSHW_1 + 258 +PUSHB_6 + 89 + 9 + 252 + 4 + 8 + 254 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1461 694 m 1,0,-1 + 1461 549 l 1,1,-1 + 978 549 l 1,2,-1 + 978 -621 l 1,3,-1 + 833 -621 l 1,4,-1 + 833 549 l 1,5,-1 + 618 549 l 1,6,-1 + 618 -621 l 1,7,-1 + 473 -621 l 1,8,-1 + 473 694 l 1,9,-1 + 1461 694 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2554 +Encoding: 9556 9556 2146 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 9 + 6 + 12 + 6 +PUSHW_1 + 263 +PUSHB_5 + 91 + 3 + 0 + 12 + 0 +PUSHW_1 + 260 +PUSHB_7 + 91 + 2 + 8 + 8 + 13 + 6 + 9 +PUSHW_1 + 258 +PUSHB_8 + 89 + 6 + 253 + 11 + 5 + 254 + 0 + 3 +PUSHW_1 + 258 +PUSHB_3 + 89 + 0 + 251 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +473 874 m 1,0,-1 + 1461 874 l 1,1,-1 + 1461 729 l 1,2,-1 + 618 729 l 1,3,-1 + 618 -621 l 1,4,-1 + 473 -621 l 1,5,-1 + 473 874 l 1,0,-1 +833 514 m 1,6,-1 + 1461 514 l 1,7,-1 + 1461 369 l 1,8,-1 + 978 369 l 1,9,-1 + 978 -621 l 1,10,-1 + 833 -621 l 1,11,-1 + 833 514 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni2555 +Encoding: 9557 9557 2147 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 9 + 6 + 3 + 10 + 3 +PUSHW_1 + 262 +NPUSHB + 9 + 91 + 4 + 0 + 0 + 10 + 8 + 254 + 6 + 3 +PUSHW_1 + 258 +PUSHB_5 + 89 + 6 + 251 + 2 + 9 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 253 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 369 m 1,0,-1 + -10 514 l 1,1,-1 + 653 514 l 1,2,-1 + 653 729 l 1,3,-1 + -10 729 l 1,4,-1 + -10 874 l 1,5,-1 + 798 874 l 1,6,-1 + 798 -621 l 1,7,-1 + 653 -621 l 1,8,-1 + 653 369 l 1,9,-1 + -10 369 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2556 +Encoding: 9558 9558 2148 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 6 + 9 + 10 + 9 +PUSHW_1 + 260 +PUSHB_5 + 91 + 2 + 5 + 10 + 5 +PUSHW_1 + 263 +NPUSHB + 10 + 91 + 0 + 10 + 4 + 8 + 254 + 6 + 0 + 1 + 0 +PUSHW_1 + 258 +PUSHB_3 + 89 + 1 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 978 694 l 1,2,-1 + 978 -621 l 1,3,-1 + 833 -621 l 1,4,-1 + 833 549 l 1,5,-1 + 618 549 l 1,6,-1 + 618 -621 l 1,7,-1 + 473 -621 l 1,8,-1 + 473 549 l 1,9,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2557 +Encoding: 9559 9559 2149 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 11 + 8 + 12 + 8 +PUSHW_1 + 260 +PUSHB_5 + 91 + 0 + 3 + 12 + 3 +PUSHW_1 + 263 +PUSHB_7 + 91 + 4 + 9 + 9 + 12 + 10 + 9 +PUSHW_1 + 258 +PUSHB_8 + 89 + 10 + 253 + 2 + 7 + 254 + 5 + 4 +PUSHW_1 + 258 +PUSHB_3 + 89 + 5 + 251 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +978 874 m 1,0,-1 + 978 -621 l 1,1,-1 + 833 -621 l 1,2,-1 + 833 729 l 1,3,-1 + -10 729 l 1,4,-1 + -10 874 l 1,5,-1 + 978 874 l 1,0,-1 +618 -621 m 1,6,-1 + 473 -621 l 1,7,-1 + 473 369 l 1,8,-1 + -10 369 l 1,9,-1 + -10 514 l 1,10,-1 + 618 514 l 1,11,-1 + 618 -621 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni2558 +Encoding: 9560 9560 2150 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 2 + 6 + 6 + 9 + 10 + 9 +PUSHW_1 + 262 +PUSHB_7 + 91 + 4 + 8 + 8 + 11 + 6 + 9 +PUSHW_1 + 258 +PUSHB_5 + 89 + 6 + 253 + 2 + 5 +PUSHW_1 + 258 +PUSHB_5 + 89 + 2 + 251 + 0 + 250 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +653 1864 m 1,0,-1 + 798 1864 l 1,1,-1 + 798 874 l 1,2,-1 + 1461 874 l 1,3,-1 + 1461 729 l 1,4,-1 + 798 729 l 1,5,-1 + 798 514 l 1,6,-1 + 1461 514 l 1,7,-1 + 1461 369 l 1,8,-1 + 653 369 l 1,9,-1 + 653 1864 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2559 +Encoding: 9561 9561 2151 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 2 + 9 + 10 + 9 +PUSHW_1 + 263 +PUSHB_5 + 91 + 8 + 5 + 10 + 5 +PUSHW_1 + 260 +PUSHB_5 + 91 + 4 + 11 + 8 + 5 +PUSHW_1 + 258 +PUSHB_7 + 89 + 2 + 8 + 252 + 0 + 6 + 250 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +833 1864 m 1,0,-1 + 978 1864 l 1,1,-1 + 978 694 l 1,2,-1 + 1461 694 l 1,3,-1 + 1461 549 l 1,4,-1 + 473 549 l 1,5,-1 + 473 1864 l 1,6,-1 + 618 1864 l 1,7,-1 + 618 694 l 1,8,-1 + 833 694 l 1,9,-1 + 833 1864 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni255A +Encoding: 9562 9562 2152 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 8 + 11 + 12 + 11 +PUSHW_1 + 263 +PUSHB_5 + 91 + 2 + 5 + 12 + 5 +PUSHW_1 + 260 +PUSHB_7 + 91 + 10 + 4 + 4 + 13 + 8 + 11 +PUSHW_1 + 258 +PUSHB_5 + 89 + 8 + 251 + 2 + 5 +PUSHW_1 + 258 +PUSHB_6 + 89 + 2 + 253 + 6 + 0 + 250 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +473 1864 m 1,0,-1 + 618 1864 l 1,1,-1 + 618 514 l 1,2,-1 + 1461 514 l 1,3,-1 + 1461 369 l 1,4,-1 + 473 369 l 1,5,-1 + 473 1864 l 1,0,-1 +833 1864 m 1,6,-1 + 978 1864 l 1,7,-1 + 978 874 l 1,8,-1 + 1461 874 l 1,9,-1 + 1461 729 l 1,10,-1 + 833 729 l 1,11,-1 + 833 1864 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni255B +Encoding: 9563 9563 2153 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 9 + 6 + 2 + 10 + 2 +PUSHW_1 + 262 +NPUSHB + 9 + 91 + 4 + 0 + 0 + 10 + 7 + 250 + 6 + 3 +PUSHW_1 + 258 +PUSHB_5 + 89 + 6 + 251 + 2 + 9 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 253 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 369 m 1,0,-1 + -10 514 l 1,1,-1 + 653 514 l 1,2,-1 + 653 729 l 1,3,-1 + -10 729 l 1,4,-1 + -10 874 l 1,5,-1 + 653 874 l 1,6,-1 + 653 1864 l 1,7,-1 + 798 1864 l 1,8,-1 + 798 369 l 1,9,-1 + -10 369 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni255C +Encoding: 9564 9564 2154 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 0 + 7 + 10 + 7 +PUSHW_1 + 263 +PUSHB_5 + 91 + 6 + 3 + 10 + 3 +PUSHW_1 + 260 +NPUSHB + 10 + 91 + 1 + 10 + 8 + 4 + 250 + 6 + 2 + 2 + 1 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +978 549 m 1,0,-1 + -10 549 l 1,1,-1 + -10 694 l 1,2,-1 + 473 694 l 1,3,-1 + 473 1864 l 1,4,-1 + 618 1864 l 1,5,-1 + 618 694 l 1,6,-1 + 833 694 l 1,7,-1 + 833 1864 l 1,8,-1 + 978 1864 l 1,9,-1 + 978 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni255D +Encoding: 9565 9565 2155 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 8 + 11 + 12 + 11 +PUSHW_1 + 260 +PUSHB_5 + 91 + 0 + 3 + 12 + 3 +PUSHW_1 + 263 +PUSHB_7 + 91 + 9 + 1 + 1 + 12 + 10 + 9 +PUSHW_1 + 258 +PUSHB_8 + 89 + 10 + 251 + 4 + 6 + 250 + 2 + 1 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 253 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +978 369 m 1,0,-1 + -10 369 l 1,1,-1 + -10 514 l 1,2,-1 + 833 514 l 1,3,-1 + 833 1864 l 1,4,-1 + 978 1864 l 1,5,-1 + 978 369 l 1,0,-1 +473 1864 m 1,6,-1 + 618 1864 l 1,7,-1 + 618 729 l 1,8,-1 + -10 729 l 1,9,-1 + -10 874 l 1,10,-1 + 473 874 l 1,11,-1 + 473 1864 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni255E +Encoding: 9566 9566 2156 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 6 + 2 + 10 + 10 + 11 + 12 + 11 +PUSHW_1 + 262 +NPUSHB + 9 + 91 + 4 + 8 + 8 + 13 + 11 + 254 + 6 + 9 +PUSHW_1 + 258 +PUSHB_5 + 89 + 6 + 253 + 2 + 5 +PUSHW_1 + 258 +PUSHB_5 + 89 + 2 + 251 + 0 + 250 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +653 1864 m 1,0,-1 + 798 1864 l 1,1,-1 + 798 874 l 1,2,-1 + 1461 874 l 1,3,-1 + 1461 729 l 1,4,-1 + 798 729 l 1,5,-1 + 798 514 l 1,6,-1 + 1461 514 l 1,7,-1 + 1461 369 l 1,8,-1 + 798 369 l 1,9,-1 + 798 -621 l 1,10,-1 + 653 -621 l 1,11,-1 + 653 1864 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni255F +Encoding: 9567 9567 2157 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 10 + 11 + 12 + 11 +PUSHW_1 + 260 +PUSHB_7 + 91 + 2 + 6 + 6 + 7 + 12 + 7 +PUSHW_1 + 263 +NPUSHB + 11 + 91 + 4 + 13 + 7 + 11 + 254 + 0 + 8 + 250 + 2 + 5 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +833 1864 m 1,0,-1 + 978 1864 l 1,1,-1 + 978 694 l 1,2,-1 + 1461 694 l 1,3,-1 + 1461 549 l 1,4,-1 + 978 549 l 1,5,-1 + 978 -621 l 1,6,-1 + 833 -621 l 1,7,-1 + 833 1864 l 1,0,-1 +473 1864 m 1,8,-1 + 618 1864 l 1,9,-1 + 618 -621 l 1,10,-1 + 473 -621 l 1,11,-1 + 473 1864 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: uni2560 +Encoding: 9568 9568 2158 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 12 + 8 + 8 + 15 + 9 + 16 + 9 +PUSHW_1 + 263 +PUSHB_5 + 91 + 0 + 1 + 16 + 1 +PUSHW_1 + 260 +PUSHB_7 + 91 + 14 + 6 + 6 + 17 + 12 + 15 +PUSHW_1 + 258 +PUSHB_5 + 89 + 12 + 251 + 4 + 7 +PUSHW_1 + 258 +NPUSHB + 9 + 89 + 4 + 253 + 10 + 2 + 250 + 9 + 1 + 254 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +618 -621 m 1,0,-1 + 473 -621 l 1,1,-1 + 473 1864 l 1,2,-1 + 618 1864 l 1,3,-1 + 618 -621 l 1,0,-1 +833 514 m 1,4,-1 + 1461 514 l 1,5,-1 + 1461 369 l 1,6,-1 + 978 369 l 1,7,-1 + 978 -621 l 1,8,-1 + 833 -621 l 1,9,-1 + 833 514 l 1,4,-1 +833 1864 m 1,10,-1 + 978 1864 l 1,11,-1 + 978 874 l 1,12,-1 + 1461 874 l 1,13,-1 + 1461 729 l 1,14,-1 + 833 729 l 1,15,-1 + 833 1864 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni2561 +Encoding: 9569 9569 2159 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 9 + 6 + 2 + 10 + 12 + 10 +PUSHW_1 + 262 +NPUSHB + 11 + 91 + 4 + 0 + 0 + 12 + 10 + 254 + 7 + 250 + 6 + 3 +PUSHW_1 + 258 +PUSHB_5 + 89 + 6 + 251 + 2 + 11 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 253 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 369 m 1,0,-1 + -10 514 l 1,1,-1 + 653 514 l 1,2,-1 + 653 729 l 1,3,-1 + -10 729 l 1,4,-1 + -10 874 l 1,5,-1 + 653 874 l 1,6,-1 + 653 1864 l 1,7,-1 + 798 1864 l 1,8,-1 + 798 -621 l 1,9,-1 + 653 -621 l 1,10,-1 + 653 369 l 1,11,-1 + -10 369 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2562 +Encoding: 9570 9570 2160 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 10 + 11 + 12 + 11 +PUSHW_1 + 263 +PUSHB_6 + 91 + 5 + 2 + 6 + 12 + 6 +PUSHW_1 + 260 +NPUSHB + 11 + 91 + 0 + 12 + 11 + 6 + 254 + 8 + 3 + 250 + 2 + 7 +PUSHW_1 + 258 +PUSHB_3 + 89 + 2 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 473 694 l 1,2,-1 + 473 1864 l 1,3,-1 + 618 1864 l 1,4,-1 + 618 -621 l 1,5,-1 + 473 -621 l 1,6,-1 + 473 549 l 1,7,-1 + -10 549 l 1,0,-1 +833 1864 m 1,8,-1 + 978 1864 l 1,9,-1 + 978 -621 l 1,10,-1 + 833 -621 l 1,11,-1 + 833 1864 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: uni2563 +Encoding: 9571 9571 2161 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 6 + 10 + 10 + 9 + 11 + 16 + 11 +PUSHW_1 + 260 +PUSHB_5 + 91 + 2 + 3 + 16 + 3 +PUSHW_1 + 263 +PUSHB_7 + 91 + 7 + 13 + 13 + 16 + 15 + 12 +PUSHW_1 + 258 +PUSHB_8 + 89 + 15 + 253 + 3 + 11 + 254 + 9 + 6 +PUSHW_1 + 258 +PUSHB_6 + 89 + 9 + 251 + 0 + 4 + 250 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +833 1864 m 1,0,-1 + 978 1864 l 1,1,-1 + 978 -621 l 1,2,-1 + 833 -621 l 1,3,-1 + 833 1864 l 1,0,-1 +473 1864 m 1,4,-1 + 618 1864 l 1,5,-1 + 618 729 l 1,6,-1 + -10 729 l 1,7,-1 + -10 874 l 1,8,-1 + 473 874 l 1,9,-1 + 473 1864 l 1,4,-1 +618 -621 m 1,10,-1 + 473 -621 l 1,11,-1 + 473 369 l 1,12,-1 + -10 369 l 1,13,-1 + -10 514 l 1,14,-1 + 618 514 l 1,15,-1 + 618 -621 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni2564 +Encoding: 9572 9572 2162 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 11 + 3 + 3 + 13 + 4 + 7 + 12 + 7 +PUSHW_1 + 262 +PUSHB_7 + 91 + 8 + 0 + 0 + 12 + 9 + 8 +PUSHW_1 + 258 +NPUSHB + 9 + 89 + 9 + 251 + 6 + 254 + 4 + 0 + 1 + 0 +PUSHW_1 + 258 +PUSHB_3 + 89 + 1 + 253 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 369 m 1,0,-1 + -10 514 l 1,1,-1 + 1461 514 l 1,2,-1 + 1461 369 l 1,3,-1 + 798 369 l 1,4,-1 + 798 -621 l 1,5,-1 + 653 -621 l 1,6,-1 + 653 369 l 1,7,-1 + -10 369 l 1,0,-1 +-10 729 m 1,8,-1 + -10 874 l 1,9,-1 + 1461 874 l 1,10,-1 + 1461 729 l 1,11,-1 + -10 729 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: uni2565 +Encoding: 9573 9573 2163 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 3 + 13 + 8 + 11 + 12 + 11 +PUSHW_1 + 260 +PUSHB_5 + 91 + 4 + 7 + 12 + 7 +PUSHW_1 + 263 +NPUSHB + 11 + 91 + 0 + 12 + 6 + 10 + 254 + 8 + 4 + 0 + 1 + 0 +PUSHW_1 + 258 +PUSHB_3 + 89 + 1 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 1461 694 l 1,2,-1 + 1461 549 l 1,3,-1 + 978 549 l 1,4,-1 + 978 -621 l 1,5,-1 + 833 -621 l 1,6,-1 + 833 549 l 1,7,-1 + 618 549 l 1,8,-1 + 618 -621 l 1,9,-1 + 473 -621 l 1,10,-1 + 473 549 l 1,11,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2566 +Encoding: 9574 9574 2164 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 9 + 6 + 16 + 6 +PUSHW_1 + 263 +NPUSHB + 9 + 91 + 14 + 3 + 3 + 16 + 5 + 2 + 16 + 2 +PUSHW_1 + 260 +PUSHB_7 + 91 + 13 + 8 + 8 + 17 + 15 + 14 +PUSHW_1 + 258 +PUSHB_7 + 89 + 15 + 251 + 9 + 3 + 4 + 3 +PUSHW_1 + 258 +PUSHB_7 + 89 + 6 + 4 + 253 + 11 + 1 + 254 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +618 -621 m 1,0,-1 + 473 -621 l 1,1,-1 + 473 369 l 1,2,-1 + -10 369 l 1,3,-1 + -10 514 l 1,4,-1 + 618 514 l 1,5,-1 + 618 -621 l 1,0,-1 +833 514 m 1,6,-1 + 1461 514 l 1,7,-1 + 1461 369 l 1,8,-1 + 978 369 l 1,9,-1 + 978 -621 l 1,10,-1 + 833 -621 l 1,11,-1 + 833 514 l 1,6,-1 +1461 874 m 1,12,-1 + 1461 729 l 1,13,-1 + -10 729 l 1,14,-1 + -10 874 l 1,15,-1 + 1461 874 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: uni2567 +Encoding: 9575 9575 2165 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 0 + 8 + 8 + 12 + 5 + 2 + 12 + 2 +PUSHW_1 + 262 +PUSHB_7 + 91 + 7 + 11 + 11 + 13 + 9 + 8 +PUSHW_1 + 258 +NPUSHB + 9 + 89 + 9 + 253 + 3 + 250 + 5 + 1 + 1 + 0 +PUSHW_1 + 258 +PUSHB_3 + 89 + 1 + 251 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 729 m 1,0,-1 + -10 874 l 1,1,-1 + 653 874 l 1,2,-1 + 653 1864 l 1,3,-1 + 798 1864 l 1,4,-1 + 798 874 l 1,5,-1 + 1461 874 l 1,6,-1 + 1461 729 l 1,7,-1 + -10 729 l 1,0,-1 +-10 369 m 1,8,-1 + -10 514 l 1,9,-1 + 1461 514 l 1,10,-1 + 1461 369 l 1,11,-1 + -10 369 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: uni2568 +Encoding: 9576 9576 2166 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 11 + 13 + 9 + 6 + 12 + 6 +PUSHW_1 + 263 +PUSHB_5 + 91 + 5 + 2 + 12 + 2 +PUSHW_1 + 260 +NPUSHB + 11 + 91 + 0 + 12 + 7 + 3 + 250 + 9 + 5 + 1 + 1 + 0 +PUSHW_1 + 258 +PUSHB_3 + 89 + 1 + 252 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 549 m 1,0,-1 + -10 694 l 1,1,-1 + 473 694 l 1,2,-1 + 473 1864 l 1,3,-1 + 618 1864 l 1,4,-1 + 618 694 l 1,5,-1 + 833 694 l 1,6,-1 + 833 1864 l 1,7,-1 + 978 1864 l 1,8,-1 + 978 694 l 1,9,-1 + 1461 694 l 1,10,-1 + 1461 549 l 1,11,-1 + -10 549 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2569 +Encoding: 9577 9577 2167 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 9 + 12 + 12 + 16 + 8 + 11 + 16 + 11 +PUSHW_1 + 260 +PUSHB_5 + 91 + 2 + 5 + 16 + 5 +PUSHW_1 + 263 +PUSHB_7 + 91 + 4 + 15 + 15 + 17 + 13 + 12 +PUSHW_1 + 258 +PUSHB_7 + 89 + 13 + 253 + 5 + 9 + 10 + 9 +PUSHW_1 + 258 +PUSHB_7 + 89 + 2 + 10 + 251 + 0 + 6 + 250 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +833 1864 m 1,0,-1 + 978 1864 l 1,1,-1 + 978 874 l 1,2,-1 + 1461 874 l 1,3,-1 + 1461 729 l 1,4,-1 + 833 729 l 1,5,-1 + 833 1864 l 1,0,-1 +473 1864 m 1,6,-1 + 618 1864 l 1,7,-1 + 618 729 l 1,8,-1 + -10 729 l 1,9,-1 + -10 874 l 1,10,-1 + 473 874 l 1,11,-1 + 473 1864 l 1,6,-1 +-10 369 m 1,12,-1 + -10 514 l 1,13,-1 + 1461 514 l 1,14,-1 + 1461 369 l 1,15,-1 + -10 369 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: uni256A +Encoding: 9578 9578 2168 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 11 + 15 + 15 + 21 + 13 + 9 + 16 + 16 + 6 + 2 + 19 + 20 + 19 +PUSHW_1 + 262 +NPUSHB + 13 + 91 + 4 + 0 + 0 + 20 + 18 + 254 + 7 + 250 + 12 + 4 + 5 + 4 +PUSHW_1 + 258 +PUSHB_8 + 89 + 9 + 5 + 251 + 16 + 0 + 1 + 0 +PUSHW_1 + 258 +PUSHB_4 + 89 + 13 + 1 + 253 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-10 369 m 1,0,-1 + -10 514 l 1,1,-1 + 653 514 l 1,2,-1 + 653 729 l 1,3,-1 + -10 729 l 1,4,-1 + -10 874 l 1,5,-1 + 653 874 l 1,6,-1 + 653 1864 l 1,7,-1 + 798 1864 l 1,8,-1 + 798 874 l 1,9,-1 + 1461 874 l 1,10,-1 + 1461 729 l 1,11,-1 + 798 729 l 1,12,-1 + 798 514 l 1,13,-1 + 1461 514 l 1,14,-1 + 1461 369 l 1,15,-1 + 798 369 l 1,16,-1 + 798 -621 l 1,17,-1 + 653 -621 l 1,18,-1 + 653 369 l 1,19,-1 + -10 369 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni256B +Encoding: 9579 9579 2169 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 4 + 21 + 18 + 9 + 9 + 15 + 12 + 20 + 12 +PUSHW_1 + 260 +PUSHB_8 + 91 + 2 + 5 + 5 + 19 + 8 + 20 + 8 +PUSHW_1 + 263 +NPUSHB + 11 + 91 + 13 + 20 + 0 + 16 + 250 + 9 + 5 + 13 + 14 + 13 +PUSHW_1 + 258 +PUSHB_8 + 89 + 18 + 2 + 14 + 252 + 7 + 11 + 254 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +833 1864 m 1,0,-1 + 978 1864 l 1,1,-1 + 978 694 l 1,2,-1 + 1461 694 l 1,3,-1 + 1461 549 l 1,4,-1 + 978 549 l 1,5,-1 + 978 -621 l 1,6,-1 + 833 -621 l 1,7,-1 + 833 549 l 1,8,-1 + 618 549 l 1,9,-1 + 618 -621 l 1,10,-1 + 473 -621 l 1,11,-1 + 473 549 l 1,12,-1 + -10 549 l 1,13,-1 + -10 694 l 1,14,-1 + 473 694 l 1,15,-1 + 473 1864 l 1,16,-1 + 618 1864 l 1,17,-1 + 618 694 l 1,18,-1 + 833 694 l 1,19,-1 + 833 1864 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni256C +Encoding: 9580 9580 2170 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 2 + 15 + 15 + 5 + 12 + 24 + 12 +PUSHW_1 + 263 +NPUSHB + 12 + 91 + 21 + 9 + 9 + 24 + 20 + 11 + 11 + 23 + 8 + 24 + 8 +PUSHW_1 + 260 +NPUSHB + 9 + 91 + 4 + 14 + 14 + 25 + 5 + 21 + 22 + 21 +PUSHW_1 + 258 +NPUSHB + 11 + 89 + 2 + 22 + 251 + 0 + 18 + 250 + 15 + 9 + 10 + 9 +PUSHW_1 + 258 +PUSHB_7 + 89 + 12 + 10 + 253 + 17 + 7 + 254 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +833 1864 m 1,0,-1 + 978 1864 l 1,1,-1 + 978 874 l 1,2,-1 + 1461 874 l 1,3,-1 + 1461 729 l 1,4,-1 + 833 729 l 1,5,-1 + 833 1864 l 1,0,-1 +618 -621 m 1,6,-1 + 473 -621 l 1,7,-1 + 473 369 l 1,8,-1 + -10 369 l 1,9,-1 + -10 514 l 1,10,-1 + 618 514 l 1,11,-1 + 618 -621 l 1,6,-1 +833 514 m 1,12,-1 + 1461 514 l 1,13,-1 + 1461 369 l 1,14,-1 + 978 369 l 1,15,-1 + 978 -621 l 1,16,-1 + 833 -621 l 1,17,-1 + 833 514 l 1,12,-1 +473 1864 m 1,18,-1 + 618 1864 l 1,19,-1 + 618 729 l 1,20,-1 + -10 729 l 1,21,-1 + -10 874 l 1,22,-1 + 473 874 l 1,23,-1 + 473 1864 l 1,18,-1 +EndSplineSet +EndChar + +StartChar: upblock +Encoding: 9600 9600 2171 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 5 + 1 + 4 + 2 + 250 + 1 +SVTCA[y-axis] +MDAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1451 621 m 1,0,-1 + 0 621 l 1,1,-1 + 0 1864 l 1,2,-1 + 1451 1864 l 1,3,-1 + 1451 621 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: dnblock +Encoding: 9604 9604 2172 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 5 + 1 + 4 + 2 + 1 + 254 +SVTCA[y-axis] +MIAP[rnd] +MDAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1451 -621 m 1,0,-1 + 0 -621 l 1,1,-1 + 0 621 l 1,2,-1 + 1451 621 l 1,3,-1 + 1451 -621 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: block +Encoding: 9608 9608 2173 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 0 + 5 + 1 + 4 + 2 + 250 + 1 + 254 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1451 -621 m 1,0,-1 + 0 -621 l 1,1,-1 + 0 1864 l 1,2,-1 + 1451 1864 l 1,3,-1 + 1451 -621 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: lfblock +Encoding: 9612 9612 2174 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 0 + 5 + 1 + 4 + 2 + 250 + 1 + 254 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +726 -621 m 1,0,-1 + 0 -621 l 1,1,-1 + 0 1864 l 1,2,-1 + 726 1864 l 1,3,-1 + 726 -621 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: rtblock +Encoding: 9616 9616 2175 +Width: 1451 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 4 + 0 + 5 + 2 + 250 + 1 + 254 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1451 -621 m 1,0,-1 + 725 -621 l 1,1,-1 + 725 1864 l 1,2,-1 + 1451 1864 l 1,3,-1 + 1451 -621 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: ltshade +Encoding: 9617 9617 2176 +Width: 1451 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +103 1314 m 1,0,-1 + 207 1314 l 1,1,-1 + 207 1216 l 1,2,-1 + 103 1216 l 1,3,-1 + 103 1314 l 1,0,-1 +517 1314 m 1,4,-1 + 621 1314 l 1,5,-1 + 621 1216 l 1,6,-1 + 517 1216 l 1,7,-1 + 517 1314 l 1,4,-1 +933 1314 m 1,8,-1 + 1036 1314 l 1,9,-1 + 1036 1216 l 1,10,-1 + 933 1216 l 1,11,-1 + 933 1314 l 1,8,-1 +310 1119 m 1,12,-1 + 414 1119 l 1,13,-1 + 414 1023 l 1,14,-1 + 310 1023 l 1,15,-1 + 310 1119 l 1,12,-1 +725 1119 m 1,16,-1 + 829 1119 l 1,17,-1 + 829 1023 l 1,18,-1 + 725 1023 l 1,19,-1 + 725 1119 l 1,16,-1 +1140 1119 m 1,20,-1 + 1244 1119 l 1,21,-1 + 1244 1023 l 1,22,-1 + 1140 1023 l 1,23,-1 + 1140 1119 l 1,20,-1 +933 927 m 1,24,-1 + 1036 927 l 1,25,-1 + 1036 831 l 1,26,-1 + 933 831 l 1,27,-1 + 933 927 l 1,24,-1 +517 927 m 1,28,-1 + 621 927 l 1,29,-1 + 621 831 l 1,30,-1 + 517 831 l 1,31,-1 + 517 927 l 1,28,-1 +103 927 m 1,32,-1 + 207 927 l 1,33,-1 + 207 831 l 1,34,-1 + 103 831 l 1,35,-1 + 103 927 l 1,32,-1 +1140 732 m 1,36,-1 + 1244 732 l 1,37,-1 + 1244 636 l 1,38,-1 + 1140 636 l 1,39,-1 + 1140 732 l 1,36,-1 +725 732 m 1,40,-1 + 829 732 l 1,41,-1 + 829 636 l 1,42,-1 + 725 636 l 1,43,-1 + 725 732 l 1,40,-1 +310 732 m 1,44,-1 + 414 732 l 1,45,-1 + 414 636 l 1,46,-1 + 310 636 l 1,47,-1 + 310 732 l 1,44,-1 +103 540 m 1,48,-1 + 207 540 l 1,49,-1 + 207 444 l 1,50,-1 + 103 444 l 1,51,-1 + 103 540 l 1,48,-1 +517 540 m 1,52,-1 + 621 540 l 1,53,-1 + 621 444 l 1,54,-1 + 517 444 l 1,55,-1 + 517 540 l 1,52,-1 +933 540 m 1,56,-1 + 1036 540 l 1,57,-1 + 1036 444 l 1,58,-1 + 933 444 l 1,59,-1 + 933 540 l 1,56,-1 +1140 345 m 1,60,-1 + 1244 345 l 1,61,-1 + 1244 249 l 1,62,-1 + 1140 249 l 1,63,-1 + 1140 345 l 1,60,-1 +725 345 m 1,64,-1 + 829 345 l 1,65,-1 + 829 249 l 1,66,-1 + 725 249 l 1,67,-1 + 725 345 l 1,64,-1 +310 345 m 1,68,-1 + 414 345 l 1,69,-1 + 414 249 l 1,70,-1 + 310 249 l 1,71,-1 + 310 345 l 1,68,-1 +103 153 m 1,72,-1 + 207 153 l 1,73,-1 + 207 56 l 1,74,-1 + 103 56 l 1,75,-1 + 103 153 l 1,72,-1 +517 153 m 1,76,-1 + 621 153 l 1,77,-1 + 621 56 l 1,78,-1 + 517 56 l 1,79,-1 + 517 153 l 1,76,-1 +933 153 m 1,80,-1 + 1036 153 l 1,81,-1 + 1036 56 l 1,82,-1 + 933 56 l 1,83,-1 + 933 153 l 1,80,-1 +310 -42 m 1,84,-1 + 414 -42 l 1,85,-1 + 414 -136 l 1,86,-1 + 310 -136 l 1,87,-1 + 310 -42 l 1,84,-1 +725 -42 m 1,88,-1 + 829 -42 l 1,89,-1 + 829 -136 l 1,90,-1 + 725 -136 l 1,91,-1 + 725 -42 l 1,88,-1 +1140 -42 m 1,92,-1 + 1244 -42 l 1,93,-1 + 1244 -136 l 1,94,-1 + 1140 -136 l 1,95,-1 + 1140 -42 l 1,92,-1 +933 -234 m 1,96,-1 + 1036 -234 l 1,97,-1 + 1036 -331 l 1,98,-1 + 933 -331 l 1,99,-1 + 933 -234 l 1,96,-1 +517 -234 m 1,100,-1 + 621 -234 l 1,101,-1 + 621 -331 l 1,102,-1 + 517 -331 l 1,103,-1 + 517 -234 l 1,100,-1 +103 -234 m 1,104,-1 + 207 -234 l 1,105,-1 + 207 -331 l 1,106,-1 + 103 -331 l 1,107,-1 + 103 -234 l 1,104,-1 +310 -427 m 1,108,-1 + 414 -427 l 1,109,-1 + 414 -523 l 1,110,-1 + 310 -523 l 1,111,-1 + 310 -427 l 1,108,-1 +725 -427 m 1,112,-1 + 829 -427 l 1,113,-1 + 829 -523 l 1,114,-1 + 725 -523 l 1,115,-1 + 725 -427 l 1,112,-1 +1140 -427 m 1,116,-1 + 1244 -427 l 1,117,-1 + 1244 -523 l 1,118,-1 + 1140 -523 l 1,119,-1 + 1140 -427 l 1,116,-1 +310 1506 m 1,120,-1 + 414 1506 l 1,121,-1 + 414 1408 l 1,122,-1 + 310 1408 l 1,123,-1 + 310 1506 l 1,120,-1 +725 1506 m 1,124,-1 + 829 1506 l 1,125,-1 + 829 1408 l 1,126,-1 + 725 1408 l 1,127,-1 + 725 1506 l 1,124,-1 +1140 1506 m 1,128,-1 + 1244 1506 l 1,129,-1 + 1244 1408 l 1,130,-1 + 1140 1408 l 1,131,-1 + 1140 1506 l 1,128,-1 +103 1699 m 1,132,-1 + 207 1699 l 1,133,-1 + 207 1603 l 1,134,-1 + 103 1603 l 1,135,-1 + 103 1699 l 1,132,-1 +517 1699 m 1,136,-1 + 621 1699 l 1,137,-1 + 621 1603 l 1,138,-1 + 517 1603 l 1,139,-1 + 517 1699 l 1,136,-1 +933 1699 m 1,140,-1 + 1036 1699 l 1,141,-1 + 1036 1603 l 1,142,-1 + 933 1603 l 1,143,-1 + 933 1699 l 1,140,-1 +1347 1314 m 1,144,-1 + 1451 1314 l 1,145,-1 + 1451 1216 l 1,146,-1 + 1347 1216 l 1,147,-1 + 1347 1314 l 1,144,-1 +1347 927 m 1,148,-1 + 1451 927 l 1,149,-1 + 1451 831 l 1,150,-1 + 1347 831 l 1,151,-1 + 1347 927 l 1,148,-1 +1347 540 m 1,152,-1 + 1451 540 l 1,153,-1 + 1451 444 l 1,154,-1 + 1347 444 l 1,155,-1 + 1347 540 l 1,152,-1 +1347 153 m 1,156,-1 + 1451 153 l 1,157,-1 + 1451 56 l 1,158,-1 + 1347 56 l 1,159,-1 + 1347 153 l 1,156,-1 +1347 -234 m 1,160,-1 + 1451 -234 l 1,161,-1 + 1451 -331 l 1,162,-1 + 1347 -331 l 1,163,-1 + 1347 -234 l 1,160,-1 +1347 1699 m 1,164,-1 + 1451 1699 l 1,165,-1 + 1451 1603 l 1,166,-1 + 1347 1603 l 1,167,-1 + 1347 1699 l 1,164,-1 +EndSplineSet +EndChar + +StartChar: shade +Encoding: 9618 9618 2177 +Width: 1451 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +103 1314 m 1,0,-1 + 207 1314 l 1,1,-1 + 207 1216 l 1,2,-1 + 103 1216 l 1,3,-1 + 103 1314 l 1,0,-1 +310 1314 m 1,4,-1 + 414 1314 l 1,5,-1 + 414 1216 l 1,6,-1 + 310 1216 l 1,7,-1 + 310 1314 l 1,4,-1 +517 1314 m 1,8,-1 + 621 1314 l 1,9,-1 + 621 1216 l 1,10,-1 + 517 1216 l 1,11,-1 + 517 1314 l 1,8,-1 +725 1314 m 1,12,-1 + 829 1314 l 1,13,-1 + 829 1216 l 1,14,-1 + 725 1216 l 1,15,-1 + 725 1314 l 1,12,-1 +933 1314 m 1,16,-1 + 1037 1314 l 1,17,-1 + 1037 1216 l 1,18,-1 + 933 1216 l 1,19,-1 + 933 1314 l 1,16,-1 +1140 1314 m 1,20,-1 + 1244 1314 l 1,21,-1 + 1244 1216 l 1,22,-1 + 1140 1216 l 1,23,-1 + 1140 1314 l 1,20,-1 +0 1119 m 1,24,-1 + 103 1119 l 1,25,-1 + 103 1023 l 1,26,-1 + 0 1023 l 1,27,-1 + 0 1119 l 1,24,-1 +207 1119 m 1,28,-1 + 310 1119 l 1,29,-1 + 310 1023 l 1,30,-1 + 207 1023 l 1,31,-1 + 207 1119 l 1,28,-1 +414 1119 m 1,32,-1 + 517 1119 l 1,33,-1 + 517 1023 l 1,34,-1 + 414 1023 l 1,35,-1 + 414 1119 l 1,32,-1 +621 1119 m 1,36,-1 + 725 1119 l 1,37,-1 + 725 1023 l 1,38,-1 + 621 1023 l 1,39,-1 + 621 1119 l 1,36,-1 +829 1119 m 1,40,-1 + 933 1119 l 1,41,-1 + 933 1023 l 1,42,-1 + 829 1023 l 1,43,-1 + 829 1119 l 1,40,-1 +1037 1119 m 1,44,-1 + 1140 1119 l 1,45,-1 + 1140 1023 l 1,46,-1 + 1037 1023 l 1,47,-1 + 1037 1119 l 1,44,-1 +103 927 m 1,48,-1 + 207 927 l 1,49,-1 + 207 831 l 1,50,-1 + 103 831 l 1,51,-1 + 103 927 l 1,48,-1 +310 927 m 1,52,-1 + 414 927 l 1,53,-1 + 414 831 l 1,54,-1 + 310 831 l 1,55,-1 + 310 927 l 1,52,-1 +517 927 m 1,56,-1 + 621 927 l 1,57,-1 + 621 831 l 1,58,-1 + 517 831 l 1,59,-1 + 517 927 l 1,56,-1 +725 927 m 1,60,-1 + 829 927 l 1,61,-1 + 829 831 l 1,62,-1 + 725 831 l 1,63,-1 + 725 927 l 1,60,-1 +933 927 m 1,64,-1 + 1037 927 l 1,65,-1 + 1037 831 l 1,66,-1 + 933 831 l 1,67,-1 + 933 927 l 1,64,-1 +1140 927 m 1,68,-1 + 1244 927 l 1,69,-1 + 1244 831 l 1,70,-1 + 1140 831 l 1,71,-1 + 1140 927 l 1,68,-1 +0 732 m 1,72,-1 + 103 732 l 1,73,-1 + 103 636 l 1,74,-1 + 0 636 l 1,75,-1 + 0 732 l 1,72,-1 +207 732 m 1,76,-1 + 310 732 l 1,77,-1 + 310 636 l 1,78,-1 + 207 636 l 1,79,-1 + 207 732 l 1,76,-1 +414 732 m 1,80,-1 + 517 732 l 1,81,-1 + 517 636 l 1,82,-1 + 414 636 l 1,83,-1 + 414 732 l 1,80,-1 +621 732 m 1,84,-1 + 725 732 l 1,85,-1 + 725 636 l 1,86,-1 + 621 636 l 1,87,-1 + 621 732 l 1,84,-1 +829 732 m 1,88,-1 + 933 732 l 1,89,-1 + 933 636 l 1,90,-1 + 829 636 l 1,91,-1 + 829 732 l 1,88,-1 +1037 732 m 1,92,-1 + 1140 732 l 1,93,-1 + 1140 636 l 1,94,-1 + 1037 636 l 1,95,-1 + 1037 732 l 1,92,-1 +103 540 m 1,96,-1 + 207 540 l 1,97,-1 + 207 444 l 1,98,-1 + 103 444 l 1,99,-1 + 103 540 l 1,96,-1 +310 540 m 1,100,-1 + 414 540 l 1,101,-1 + 414 444 l 1,102,-1 + 310 444 l 1,103,-1 + 310 540 l 1,100,-1 +517 540 m 1,104,-1 + 621 540 l 1,105,-1 + 621 444 l 1,106,-1 + 517 444 l 1,107,-1 + 517 540 l 1,104,-1 +725 540 m 1,108,-1 + 829 540 l 1,109,-1 + 829 444 l 1,110,-1 + 725 444 l 1,111,-1 + 725 540 l 1,108,-1 +933 540 m 1,112,-1 + 1037 540 l 1,113,-1 + 1037 444 l 1,114,-1 + 933 444 l 1,115,-1 + 933 540 l 1,112,-1 +1140 540 m 1,116,-1 + 1244 540 l 1,117,-1 + 1244 444 l 1,118,-1 + 1140 444 l 1,119,-1 + 1140 540 l 1,116,-1 +0 345 m 1,120,-1 + 103 345 l 1,121,-1 + 103 249 l 1,122,-1 + 0 249 l 1,123,-1 + 0 345 l 1,120,-1 +414 345 m 1,124,-1 + 517 345 l 1,125,-1 + 517 249 l 1,126,-1 + 414 249 l 1,127,-1 + 414 345 l 1,124,-1 +621 345 m 1,128,-1 + 725 345 l 1,129,-1 + 725 249 l 1,130,-1 + 621 249 l 1,131,-1 + 621 345 l 1,128,-1 +829 345 m 1,132,-1 + 933 345 l 1,133,-1 + 933 249 l 1,134,-1 + 829 249 l 1,135,-1 + 829 345 l 1,132,-1 +1037 345 m 1,136,-1 + 1140 345 l 1,137,-1 + 1140 249 l 1,138,-1 + 1037 249 l 1,139,-1 + 1037 345 l 1,136,-1 +207 345 m 1,140,-1 + 310 345 l 1,141,-1 + 310 249 l 1,142,-1 + 207 249 l 1,143,-1 + 207 345 l 1,140,-1 +1140 153 m 1,144,-1 + 1244 153 l 1,145,-1 + 1244 56 l 1,146,-1 + 1140 56 l 1,147,-1 + 1140 153 l 1,144,-1 +933 153 m 1,148,-1 + 1037 153 l 1,149,-1 + 1037 56 l 1,150,-1 + 933 56 l 1,151,-1 + 933 153 l 1,148,-1 +725 153 m 1,152,-1 + 829 153 l 1,153,-1 + 829 56 l 1,154,-1 + 725 56 l 1,155,-1 + 725 153 l 1,152,-1 +517 153 m 1,156,-1 + 621 153 l 1,157,-1 + 621 56 l 1,158,-1 + 517 56 l 1,159,-1 + 517 153 l 1,156,-1 +310 153 m 1,160,-1 + 414 153 l 1,161,-1 + 414 56 l 1,162,-1 + 310 56 l 1,163,-1 + 310 153 l 1,160,-1 +103 153 m 1,164,-1 + 207 153 l 1,165,-1 + 207 56 l 1,166,-1 + 103 56 l 1,167,-1 + 103 153 l 1,164,-1 +0 -42 m 1,168,-1 + 103 -42 l 1,169,-1 + 103 -136 l 1,170,-1 + 0 -136 l 1,171,-1 + 0 -42 l 1,168,-1 +207 -42 m 1,172,-1 + 310 -42 l 1,173,-1 + 310 -136 l 1,174,-1 + 207 -136 l 1,175,-1 + 207 -42 l 1,172,-1 +414 -42 m 1,176,-1 + 517 -42 l 1,177,-1 + 517 -136 l 1,178,-1 + 414 -136 l 1,179,-1 + 414 -42 l 1,176,-1 +621 -42 m 1,180,-1 + 725 -42 l 1,181,-1 + 725 -136 l 1,182,-1 + 621 -136 l 1,183,-1 + 621 -42 l 1,180,-1 +829 -42 m 1,184,-1 + 933 -42 l 1,185,-1 + 933 -136 l 1,186,-1 + 829 -136 l 1,187,-1 + 829 -42 l 1,184,-1 +1037 -42 m 1,188,-1 + 1140 -42 l 1,189,-1 + 1140 -136 l 1,190,-1 + 1037 -136 l 1,191,-1 + 1037 -42 l 1,188,-1 +1140 -234 m 1,192,-1 + 1244 -234 l 1,193,-1 + 1244 -331 l 1,194,-1 + 1140 -331 l 1,195,-1 + 1140 -234 l 1,192,-1 +933 -234 m 1,196,-1 + 1037 -234 l 1,197,-1 + 1037 -331 l 1,198,-1 + 933 -331 l 1,199,-1 + 933 -234 l 1,196,-1 +725 -234 m 1,200,-1 + 829 -234 l 1,201,-1 + 829 -331 l 1,202,-1 + 725 -331 l 1,203,-1 + 725 -234 l 1,200,-1 +517 -234 m 1,204,-1 + 621 -234 l 1,205,-1 + 621 -331 l 1,206,-1 + 517 -331 l 1,207,-1 + 517 -234 l 1,204,-1 +310 -234 m 1,208,-1 + 414 -234 l 1,209,-1 + 414 -331 l 1,210,-1 + 310 -331 l 1,211,-1 + 310 -234 l 1,208,-1 +103 -234 m 1,212,-1 + 207 -234 l 1,213,-1 + 207 -331 l 1,214,-1 + 103 -331 l 1,215,-1 + 103 -234 l 1,212,-1 +0 -427 m 1,216,-1 + 103 -427 l 1,217,-1 + 103 -523 l 1,218,-1 + 0 -523 l 1,219,-1 + 0 -427 l 1,216,-1 +207 -427 m 1,220,-1 + 310 -427 l 1,221,-1 + 310 -523 l 1,222,-1 + 207 -523 l 1,223,-1 + 207 -427 l 1,220,-1 +414 -427 m 1,224,-1 + 517 -427 l 1,225,-1 + 517 -523 l 1,226,-1 + 414 -523 l 1,227,-1 + 414 -427 l 1,224,-1 +621 -427 m 1,228,-1 + 725 -427 l 1,229,-1 + 725 -523 l 1,230,-1 + 621 -523 l 1,231,-1 + 621 -427 l 1,228,-1 +829 -427 m 1,232,-1 + 933 -427 l 1,233,-1 + 933 -523 l 1,234,-1 + 829 -523 l 1,235,-1 + 829 -427 l 1,232,-1 +1037 -427 m 1,236,-1 + 1140 -427 l 1,237,-1 + 1140 -523 l 1,238,-1 + 1037 -523 l 1,239,-1 + 1037 -427 l 1,236,-1 +0 1506 m 1,240,-1 + 103 1506 l 1,241,-1 + 103 1408 l 1,242,-1 + 0 1408 l 1,243,-1 + 0 1506 l 1,240,-1 +207 1506 m 1,244,-1 + 310 1506 l 1,245,-1 + 310 1408 l 1,246,-1 + 207 1408 l 1,247,-1 + 207 1506 l 1,244,-1 +414 1506 m 1,248,-1 + 517 1506 l 1,249,-1 + 517 1408 l 1,250,-1 + 414 1408 l 1,251,-1 + 414 1506 l 1,248,-1 +621 1506 m 1,252,-1 + 725 1506 l 1,253,-1 + 725 1408 l 1,254,-1 + 621 1408 l 1,255,-1 + 621 1506 l 1,252,-1 +829 1506 m 1,256,-1 + 933 1506 l 1,257,-1 + 933 1408 l 1,258,-1 + 829 1408 l 1,259,-1 + 829 1506 l 1,256,-1 +1037 1506 m 1,260,-1 + 1140 1506 l 1,261,-1 + 1140 1408 l 1,262,-1 + 1037 1408 l 1,263,-1 + 1037 1506 l 1,260,-1 +103 1699 m 1,264,-1 + 207 1699 l 1,265,-1 + 207 1603 l 1,266,-1 + 103 1603 l 1,267,-1 + 103 1699 l 1,264,-1 +310 1699 m 1,268,-1 + 414 1699 l 1,269,-1 + 414 1603 l 1,270,-1 + 310 1603 l 1,271,-1 + 310 1699 l 1,268,-1 +517 1699 m 1,272,-1 + 621 1699 l 1,273,-1 + 621 1603 l 1,274,-1 + 517 1603 l 1,275,-1 + 517 1699 l 1,272,-1 +725 1699 m 1,276,-1 + 829 1699 l 1,277,-1 + 829 1603 l 1,278,-1 + 725 1603 l 1,279,-1 + 725 1699 l 1,276,-1 +933 1699 m 1,280,-1 + 1037 1699 l 1,281,-1 + 1037 1603 l 1,282,-1 + 933 1603 l 1,283,-1 + 933 1699 l 1,280,-1 +1140 1699 m 1,284,-1 + 1244 1699 l 1,285,-1 + 1244 1603 l 1,286,-1 + 1140 1603 l 1,287,-1 + 1140 1699 l 1,284,-1 +1347 1314 m 1,288,-1 + 1451 1314 l 1,289,-1 + 1451 1216 l 1,290,-1 + 1347 1216 l 1,291,-1 + 1347 1314 l 1,288,-1 +1244 1119 m 1,292,-1 + 1347 1119 l 1,293,-1 + 1347 1023 l 1,294,-1 + 1244 1023 l 1,295,-1 + 1244 1119 l 1,292,-1 +1347 927 m 1,296,-1 + 1451 927 l 1,297,-1 + 1451 831 l 1,298,-1 + 1347 831 l 1,299,-1 + 1347 927 l 1,296,-1 +1244 732 m 1,300,-1 + 1347 732 l 1,301,-1 + 1347 636 l 1,302,-1 + 1244 636 l 1,303,-1 + 1244 732 l 1,300,-1 +1347 540 m 1,304,-1 + 1451 540 l 1,305,-1 + 1451 444 l 1,306,-1 + 1347 444 l 1,307,-1 + 1347 540 l 1,304,-1 +1244 345 m 1,308,-1 + 1347 345 l 1,309,-1 + 1347 249 l 1,310,-1 + 1244 249 l 1,311,-1 + 1244 345 l 1,308,-1 +1347 153 m 1,312,-1 + 1451 153 l 1,313,-1 + 1451 56 l 1,314,-1 + 1347 56 l 1,315,-1 + 1347 153 l 1,312,-1 +1244 -42 m 1,316,-1 + 1347 -42 l 1,317,-1 + 1347 -136 l 1,318,-1 + 1244 -136 l 1,319,-1 + 1244 -42 l 1,316,-1 +1347 -234 m 1,320,-1 + 1451 -234 l 1,321,-1 + 1451 -331 l 1,322,-1 + 1347 -331 l 1,323,-1 + 1347 -234 l 1,320,-1 +1244 -427 m 1,324,-1 + 1347 -427 l 1,325,-1 + 1347 -523 l 1,326,-1 + 1244 -523 l 1,327,-1 + 1244 -427 l 1,324,-1 +1244 1506 m 1,328,-1 + 1347 1506 l 1,329,-1 + 1347 1408 l 1,330,-1 + 1244 1408 l 1,331,-1 + 1244 1506 l 1,328,-1 +1347 1699 m 1,332,-1 + 1451 1699 l 1,333,-1 + 1451 1603 l 1,334,-1 + 1347 1603 l 1,335,-1 + 1347 1699 l 1,332,-1 +EndSplineSet +EndChar + +StartChar: dkshade +Encoding: 9619 9619 2178 +Width: 1493 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +1493 -621 m 1,0,-1 + 0 -621 l 1,1,-1 + 0 -331 l 1,2,-1 + 106 -331 l 1,3,-1 + 106 -234 l 1,4,-1 + 0 -234 l 1,5,-1 + 0 56 l 1,6,-1 + 106 56 l 1,7,-1 + 106 153 l 1,8,-1 + 0 153 l 1,9,-1 + 0 444 l 1,10,-1 + 106 444 l 1,11,-1 + 106 540 l 1,12,-1 + 0 540 l 1,13,-1 + 0 829 l 1,14,-1 + 106 829 l 1,15,-1 + 106 927 l 1,16,-1 + 0 927 l 1,17,-1 + 0 1216 l 1,18,-1 + 106 1216 l 1,19,-1 + 106 1314 l 1,20,-1 + 0 1314 l 1,21,-1 + 0 1603 l 1,22,-1 + 106 1603 l 1,23,-1 + 106 1699 l 1,24,-1 + 213 1699 l 1,25,-1 + 213 1603 l 1,26,-1 + 319 1603 l 1,27,-1 + 319 1699 l 1,28,-1 + 426 1699 l 1,29,-1 + 426 1603 l 1,30,-1 + 532 1603 l 1,31,-1 + 532 1699 l 1,32,-1 + 639 1699 l 1,33,-1 + 639 1603 l 1,34,-1 + 746 1603 l 1,35,-1 + 746 1699 l 1,36,-1 + 853 1699 l 1,37,-1 + 853 1603 l 1,38,-1 + 960 1603 l 1,39,-1 + 960 1699 l 1,40,-1 + 1067 1699 l 1,41,-1 + 1067 1603 l 1,42,-1 + 1173 1603 l 1,43,-1 + 1173 1699 l 1,44,-1 + 1280 1699 l 1,45,-1 + 1280 1603 l 1,46,-1 + 1386 1603 l 1,47,-1 + 1386 1699 l 1,48,-1 + 1493 1699 l 1,49,-1 + 1493 1506 l 1,50,-1 + 1386 1506 l 1,51,-1 + 1386 1408 l 1,52,-1 + 1493 1408 l 1,53,-1 + 1493 1119 l 1,54,-1 + 1386 1119 l 1,55,-1 + 1386 1023 l 1,56,-1 + 1493 1023 l 1,57,-1 + 1493 732 l 1,58,-1 + 1386 732 l 1,59,-1 + 1386 636 l 1,60,-1 + 1493 636 l 1,61,-1 + 1493 345 l 1,62,-1 + 1386 345 l 1,63,-1 + 1386 249 l 1,64,-1 + 1493 249 l 1,65,-1 + 1493 -42 l 1,66,-1 + 1386 -42 l 1,67,-1 + 1386 -136 l 1,68,-1 + 1493 -136 l 1,69,-1 + 1493 -427 l 1,70,-1 + 1386 -427 l 1,71,-1 + 1386 -523 l 1,72,-1 + 1493 -523 l 1,73,-1 + 1493 -621 l 1,0,-1 +106 1119 m 1,74,-1 + 106 1023 l 1,75,-1 + 213 1023 l 1,76,-1 + 213 1119 l 1,77,-1 + 106 1119 l 1,74,-1 +319 1119 m 1,78,-1 + 319 1023 l 1,79,-1 + 426 1023 l 1,80,-1 + 426 1119 l 1,81,-1 + 319 1119 l 1,78,-1 +532 1119 m 1,82,-1 + 532 1023 l 1,83,-1 + 639 1023 l 1,84,-1 + 639 1119 l 1,85,-1 + 532 1119 l 1,82,-1 +746 1119 m 1,86,-1 + 746 1023 l 1,87,-1 + 853 1023 l 1,88,-1 + 853 1119 l 1,89,-1 + 746 1119 l 1,86,-1 +960 927 m 1,90,-1 + 853 927 l 1,91,-1 + 853 829 l 1,92,-1 + 960 829 l 1,93,-1 + 960 927 l 1,90,-1 +746 927 m 1,94,-1 + 639 927 l 1,95,-1 + 639 829 l 1,96,-1 + 746 829 l 1,97,-1 + 746 927 l 1,94,-1 +532 927 m 1,98,-1 + 426 927 l 1,99,-1 + 426 829 l 1,100,-1 + 532 829 l 1,101,-1 + 532 927 l 1,98,-1 +319 927 m 1,102,-1 + 213 927 l 1,103,-1 + 213 829 l 1,104,-1 + 319 829 l 1,105,-1 + 319 927 l 1,102,-1 +106 732 m 1,106,-1 + 106 636 l 1,107,-1 + 213 636 l 1,108,-1 + 213 732 l 1,109,-1 + 106 732 l 1,106,-1 +319 732 m 1,110,-1 + 319 636 l 1,111,-1 + 426 636 l 1,112,-1 + 426 732 l 1,113,-1 + 319 732 l 1,110,-1 +532 732 m 1,114,-1 + 532 636 l 1,115,-1 + 639 636 l 1,116,-1 + 639 732 l 1,117,-1 + 532 732 l 1,114,-1 +746 732 m 1,118,-1 + 746 636 l 1,119,-1 + 853 636 l 1,120,-1 + 853 732 l 1,121,-1 + 746 732 l 1,118,-1 +319 540 m 1,122,-1 + 213 540 l 1,123,-1 + 213 444 l 1,124,-1 + 319 444 l 1,125,-1 + 319 540 l 1,122,-1 +426 540 m 1,126,-1 + 426 444 l 1,127,-1 + 532 444 l 1,128,-1 + 532 540 l 1,129,-1 + 426 540 l 1,126,-1 +639 540 m 1,130,-1 + 639 444 l 1,131,-1 + 746 444 l 1,132,-1 + 746 540 l 1,133,-1 + 639 540 l 1,130,-1 +853 540 m 1,134,-1 + 853 444 l 1,135,-1 + 960 444 l 1,136,-1 + 960 540 l 1,137,-1 + 853 540 l 1,134,-1 +106 345 m 1,138,-1 + 106 249 l 1,139,-1 + 213 249 l 1,140,-1 + 213 345 l 1,141,-1 + 106 345 l 1,138,-1 +532 345 m 1,142,-1 + 532 249 l 1,143,-1 + 639 249 l 1,144,-1 + 639 345 l 1,145,-1 + 532 345 l 1,142,-1 +426 249 m 1,146,-1 + 426 345 l 1,147,-1 + 319 345 l 1,148,-1 + 319 249 l 1,149,-1 + 426 249 l 1,146,-1 +746 345 m 1,150,-1 + 746 249 l 1,151,-1 + 853 249 l 1,152,-1 + 853 345 l 1,153,-1 + 746 345 l 1,150,-1 +960 56 m 1,154,-1 + 960 153 l 1,155,-1 + 853 153 l 1,156,-1 + 853 56 l 1,157,-1 + 960 56 l 1,154,-1 +746 56 m 1,158,-1 + 746 153 l 1,159,-1 + 639 153 l 1,160,-1 + 639 56 l 1,161,-1 + 746 56 l 1,158,-1 +532 56 m 1,162,-1 + 532 153 l 1,163,-1 + 426 153 l 1,164,-1 + 426 56 l 1,165,-1 + 532 56 l 1,162,-1 +319 56 m 1,166,-1 + 319 153 l 1,167,-1 + 213 153 l 1,168,-1 + 213 56 l 1,169,-1 + 319 56 l 1,166,-1 +106 -42 m 1,170,-1 + 106 -136 l 1,171,-1 + 213 -136 l 1,172,-1 + 213 -42 l 1,173,-1 + 106 -42 l 1,170,-1 +319 -42 m 1,174,-1 + 319 -136 l 1,175,-1 + 426 -136 l 1,176,-1 + 426 -42 l 1,177,-1 + 319 -42 l 1,174,-1 +532 -42 m 1,178,-1 + 532 -136 l 1,179,-1 + 639 -136 l 1,180,-1 + 639 -42 l 1,181,-1 + 532 -42 l 1,178,-1 +746 -42 m 1,182,-1 + 746 -136 l 1,183,-1 + 853 -136 l 1,184,-1 + 853 -42 l 1,185,-1 + 746 -42 l 1,182,-1 +960 -331 m 1,186,-1 + 960 -234 l 1,187,-1 + 853 -234 l 1,188,-1 + 853 -331 l 1,189,-1 + 960 -331 l 1,186,-1 +746 -331 m 1,190,-1 + 746 -234 l 1,191,-1 + 639 -234 l 1,192,-1 + 639 -331 l 1,193,-1 + 746 -331 l 1,190,-1 +532 -331 m 1,194,-1 + 532 -234 l 1,195,-1 + 426 -234 l 1,196,-1 + 426 -331 l 1,197,-1 + 532 -331 l 1,194,-1 +319 -331 m 1,198,-1 + 319 -234 l 1,199,-1 + 213 -234 l 1,200,-1 + 213 -331 l 1,201,-1 + 319 -331 l 1,198,-1 +106 -427 m 1,202,-1 + 106 -523 l 1,203,-1 + 213 -523 l 1,204,-1 + 213 -427 l 1,205,-1 + 106 -427 l 1,202,-1 +319 -427 m 1,206,-1 + 319 -523 l 1,207,-1 + 426 -523 l 1,208,-1 + 426 -427 l 1,209,-1 + 319 -427 l 1,206,-1 +532 -427 m 1,210,-1 + 532 -523 l 1,211,-1 + 639 -523 l 1,212,-1 + 639 -427 l 1,213,-1 + 532 -427 l 1,210,-1 +746 -427 m 1,214,-1 + 746 -523 l 1,215,-1 + 853 -523 l 1,216,-1 + 853 -427 l 1,217,-1 + 746 -427 l 1,214,-1 +960 1314 m 1,218,-1 + 853 1314 l 1,219,-1 + 853 1216 l 1,220,-1 + 960 1216 l 1,221,-1 + 960 1314 l 1,218,-1 +746 1314 m 1,222,-1 + 639 1314 l 1,223,-1 + 639 1216 l 1,224,-1 + 746 1216 l 1,225,-1 + 746 1314 l 1,222,-1 +532 1314 m 1,226,-1 + 426 1314 l 1,227,-1 + 426 1216 l 1,228,-1 + 532 1216 l 1,229,-1 + 532 1314 l 1,226,-1 +319 1314 m 1,230,-1 + 213 1314 l 1,231,-1 + 213 1216 l 1,232,-1 + 319 1216 l 1,233,-1 + 319 1314 l 1,230,-1 +853 1506 m 1,234,-1 + 746 1506 l 1,235,-1 + 746 1408 l 1,236,-1 + 853 1408 l 1,237,-1 + 853 1506 l 1,234,-1 +639 1506 m 1,238,-1 + 532 1506 l 1,239,-1 + 532 1408 l 1,240,-1 + 639 1408 l 1,241,-1 + 639 1506 l 1,238,-1 +426 1506 m 1,242,-1 + 319 1506 l 1,243,-1 + 319 1408 l 1,244,-1 + 426 1408 l 1,245,-1 + 426 1506 l 1,242,-1 +213 1506 m 1,246,-1 + 106 1506 l 1,247,-1 + 106 1408 l 1,248,-1 + 213 1408 l 1,249,-1 + 213 1506 l 1,246,-1 +960 1119 m 1,250,-1 + 960 1023 l 1,251,-1 + 1067 1023 l 1,252,-1 + 1067 1119 l 1,253,-1 + 960 1119 l 1,250,-1 +1173 1119 m 1,254,-1 + 1173 1023 l 1,255,-1 + 1280 1023 l 1,256,-1 + 1280 1119 l 1,257,-1 + 1173 1119 l 1,254,-1 +1386 927 m 1,258,-1 + 1280 927 l 1,259,-1 + 1280 829 l 1,260,-1 + 1386 829 l 1,261,-1 + 1386 927 l 1,258,-1 +1173 927 m 1,262,-1 + 1067 927 l 1,263,-1 + 1067 829 l 1,264,-1 + 1173 829 l 1,265,-1 + 1173 927 l 1,262,-1 +960 732 m 1,266,-1 + 960 636 l 1,267,-1 + 1067 636 l 1,268,-1 + 1067 732 l 1,269,-1 + 960 732 l 1,266,-1 +1173 732 m 1,270,-1 + 1173 636 l 1,271,-1 + 1280 636 l 1,272,-1 + 1280 732 l 1,273,-1 + 1173 732 l 1,270,-1 +1173 540 m 1,274,-1 + 1067 540 l 1,275,-1 + 1067 444 l 1,276,-1 + 1173 444 l 1,277,-1 + 1173 540 l 1,274,-1 +1280 540 m 1,278,-1 + 1280 444 l 1,279,-1 + 1386 444 l 1,280,-1 + 1386 540 l 1,281,-1 + 1280 540 l 1,278,-1 +960 345 m 1,282,-1 + 960 249 l 1,283,-1 + 1067 249 l 1,284,-1 + 1067 345 l 1,285,-1 + 960 345 l 1,282,-1 +1280 249 m 1,286,-1 + 1280 345 l 1,287,-1 + 1173 345 l 1,288,-1 + 1173 249 l 1,289,-1 + 1280 249 l 1,286,-1 +1386 56 m 1,290,-1 + 1386 153 l 1,291,-1 + 1280 153 l 1,292,-1 + 1280 56 l 1,293,-1 + 1386 56 l 1,290,-1 +1173 56 m 1,294,-1 + 1173 153 l 1,295,-1 + 1067 153 l 1,296,-1 + 1067 56 l 1,297,-1 + 1173 56 l 1,294,-1 +960 -42 m 1,298,-1 + 960 -136 l 1,299,-1 + 1067 -136 l 1,300,-1 + 1067 -42 l 1,301,-1 + 960 -42 l 1,298,-1 +1173 -42 m 1,302,-1 + 1173 -136 l 1,303,-1 + 1280 -136 l 1,304,-1 + 1280 -42 l 1,305,-1 + 1173 -42 l 1,302,-1 +1386 -331 m 1,306,-1 + 1386 -234 l 1,307,-1 + 1280 -234 l 1,308,-1 + 1280 -331 l 1,309,-1 + 1386 -331 l 1,306,-1 +1173 -331 m 1,310,-1 + 1173 -234 l 1,311,-1 + 1067 -234 l 1,312,-1 + 1067 -331 l 1,313,-1 + 1173 -331 l 1,310,-1 +960 -427 m 1,314,-1 + 960 -523 l 1,315,-1 + 1067 -523 l 1,316,-1 + 1067 -427 l 1,317,-1 + 960 -427 l 1,314,-1 +1173 -427 m 1,318,-1 + 1173 -523 l 1,319,-1 + 1280 -523 l 1,320,-1 + 1280 -427 l 1,321,-1 + 1173 -427 l 1,318,-1 +1386 1314 m 1,322,-1 + 1280 1314 l 1,323,-1 + 1280 1216 l 1,324,-1 + 1386 1216 l 1,325,-1 + 1386 1314 l 1,322,-1 +1173 1314 m 1,326,-1 + 1067 1314 l 1,327,-1 + 1067 1216 l 1,328,-1 + 1173 1216 l 1,329,-1 + 1173 1314 l 1,326,-1 +1280 1506 m 1,330,-1 + 1173 1506 l 1,331,-1 + 1173 1408 l 1,332,-1 + 1280 1408 l 1,333,-1 + 1280 1506 l 1,330,-1 +1067 1506 m 1,334,-1 + 960 1506 l 1,335,-1 + 960 1408 l 1,336,-1 + 1067 1408 l 1,337,-1 + 1067 1506 l 1,334,-1 +EndSplineSet +EndChar + +StartChar: filledbox +Encoding: 9632 9632 2179 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 1 + 0 + 5 + 4 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +123 1108 m 1,0,-1 + 1114 1108 l 1,1,-1 + 1114 117 l 1,2,-1 + 123 117 l 1,3,-1 + 123 1108 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni25A1 +Encoding: 9633 9633 2180 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 4 + 0 + 7 + 1 + 0 + 1 + 8 + 9 + 5 + 3 + 4 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +6 1225 m 1,0,-1 + 1231 1225 l 1,1,-1 + 1231 0 l 1,2,-1 + 6 0 l 1,3,-1 + 6 1225 l 1,0,-1 +82 1149 m 1,4,-1 + 82 76 l 1,5,-1 + 1155 76 l 1,6,-1 + 1155 1149 l 1,7,-1 + 82 1149 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni25AA +Encoding: 9642 9642 2181 +Width: 726 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 2 + 5 + 4 + 2 + 80 + 1 + 1 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +617 383 m 1,0,-1 + 109 383 l 1,1,-1 + 109 891 l 1,2,-1 + 617 891 l 1,3,-1 + 617 383 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni25AB +Encoding: 9643 9643 2182 +Width: 726 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 5 + 3 + 6 + 2 + 3 + 2 + 9 + 8 + 255 + 6 + 1 + 6 + 2 + 7 + 0 + 1 + 16 + 1 + 80 + 1 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +MDRP[min,rnd,black] +MDAP[rnd] +MDRP[min,rnd,black] +DELTAP2 +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +617 383 m 1,0,-1 + 109 383 l 1,1,-1 + 109 891 l 1,2,-1 + 617 891 l 1,3,-1 + 617 383 l 1,0,-1 +541 459 m 1,4,-1 + 541 813 l 1,5,-1 + 185 813 l 1,6,-1 + 185 459 l 1,7,-1 + 541 459 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: filledrect +Encoding: 9644 9644 2183 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 0 + 5 + 4 + 0 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +0 616 m 1,0,-1 + 2048 616 l 1,1,-1 + 2048 0 l 1,2,-1 + 0 0 l 1,3,-1 + 0 616 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: triagup +Encoding: 9650 9650 2184 +Width: 2027 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 0 + 3 + 3 + 4 + 1 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +414 0 m 1,0,-1 + 1014 1198 l 1,1,-1 + 1612 0 l 1,2,-1 + 414 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: triagrt +Encoding: 9658 9658 2185 +Width: 2027 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 1 + 0 + 4 + 3 + 0 + 2 + 19 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +401 1196 m 1,0,-1 + 1626 586 l 1,1,-1 + 401 -27 l 1,2,-1 + 401 1196 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: triagdn +Encoding: 9660 9660 2186 +Width: 2027 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 2 + 1 + 0 + 3 + 4 + 3 + 2 + 1 + 19 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1612 1171 m 1,0,-1 + 1014 -27 l 1,1,-1 + 414 1171 l 1,2,-1 + 1612 1171 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: triaglf +Encoding: 9668 9668 2187 +Width: 2027 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 2 + 4 + 3 + 0 + 1 + 19 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1626 1196 m 1,0,-1 + 1626 -27 l 1,1,-1 + 401 586 l 1,2,-1 + 1626 1196 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: lozenge +Encoding: 9674 9674 2188 +Width: 1012 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 0 + 1 + 8 + 3 + 4 + 8 + 3 + 6 + 6 + 5 + 7 + 2 + 9 + 5 + 2 + 5 + 10 + 11 + 6 + 3 + 4 + 8 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +SRP1 +SLOOP +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +547 0 m 1,0,-1 + 465 0 l 1,1,-1 + 8 719 l 1,2,-1 + 465 1440 l 1,3,-1 + 547 1440 l 1,4,-1 + 1006 721 l 1,5,-1 + 547 0 l 1,0,-1 +508 1286 m 1,6,-1 + 154 721 l 1,7,-1 + 508 147 l 1,8,-1 + 860 721 l 1,9,-1 + 508 1286 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: circle +Encoding: 9675 9675 2189 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 16 + 0 + 24 + 8 + 0 + 8 + 32 + 33 + 20 + 12 + 28 + 4 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +MDRP[rp0,min,rnd,grey] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +167 612 m 256,0,1 + 167 734 167 734 227 839 c 128,-1,2 + 287 944 287 944 391.5 1004.5 c 128,-1,3 + 496 1065 496 1065 617 1065 c 0,4,5 + 739 1065 739 1065 844 1004.5 c 128,-1,6 + 949 944 949 944 1009.5 838.5 c 128,-1,7 + 1070 733 1070 733 1070 612 c 256,8,9 + 1070 491 1070 491 1009.5 386.5 c 128,-1,10 + 949 282 949 282 844.5 222 c 128,-1,11 + 740 162 740 162 617 162 c 0,12,13 + 495 162 495 162 391 222 c 128,-1,14 + 287 282 287 282 227 386 c 128,-1,15 + 167 490 167 490 167 612 c 256,0,1 +253 612 m 0,16,17 + 253 514 253 514 302 429.5 c 128,-1,18 + 351 345 351 345 434.5 296.5 c 128,-1,19 + 518 248 518 248 617 248 c 0,20,21 + 715 248 715 248 799.5 296 c 128,-1,22 + 884 344 884 344 934 429 c 128,-1,23 + 984 514 984 514 984 612 c 256,24,25 + 984 710 984 710 935 795.5 c 128,-1,26 + 886 881 886 881 800.5 930 c 128,-1,27 + 715 979 715 979 617 979 c 0,28,29 + 520 979 520 979 435.5 930 c 128,-1,30 + 351 881 351 881 302 796.5 c 128,-1,31 + 253 712 253 712 253 612 c 0,16,17 +EndSplineSet +EndChar + +StartChar: uni25CC +Encoding: 9676 9676 2190 +Width: 1217 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-25" 960 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1200 1540 basechar 0 +AnchorPoint: "Anchor-20" 1200 -380 basechar 0 +AnchorPoint: "Anchor-16" 800 1540 basechar 0 +AnchorPoint: "Anchor-15" 1340 1540 basechar 0 +AnchorPoint: "Anchor-14" 600 -130 basechar 0 +AnchorPoint: "Anchor-13" 600 0 basechar 0 +AnchorPoint: "Anchor-12" 600 1350 basechar 0 +AnchorPoint: "Anchor-11" 600 0 basechar 0 +AnchorPoint: "Anchor-10" 1000 1430 basechar 0 +AnchorPoint: "Anchor-9" 1000 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 600 0 basechar 0 +AnchorPoint: "Anchor-5" 600 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-2" 600 600 basechar 0 +AnchorPoint: "Anchor-1" 600 1430 basechar 0 +AnchorPoint: "Anchor-0" 100 1441 basechar 0 +LayerCount: 2 +Fore +SplineSet +984 918 m 256,0,1 + 984 864 984 864 932 864 c 0,2,3 + 876 864 876 864 876 918 c 256,4,5 + 876 972 876 972 932 972 c 0,6,7 + 984 972 984 972 984 918 c 256,0,1 +836 1016 m 0,8,9 + 836 963 836 963 784 963 c 0,10,11 + 728 963 728 963 728 1016 c 0,12,13 + 728 1071 728 1071 784 1071 c 0,14,15 + 836 1071 836 1071 836 1016 c 0,8,9 +1083 770 m 0,16,17 + 1083 715 1083 715 1028 715 c 0,18,19 + 975 715 975 715 975 770 c 0,20,21 + 975 823 975 823 1030 823 c 0,22,23 + 1083 823 1083 823 1083 770 c 0,16,17 +1119 596 m 256,24,25 + 1119 542 1119 542 1067 542 c 0,26,27 + 1011 542 1011 542 1011 596 c 256,28,29 + 1011 650 1011 650 1067 650 c 0,30,31 + 1119 650 1119 650 1119 596 c 256,24,25 +662 1053 m 0,32,33 + 662 998 662 998 608 998 c 256,34,35 + 554 998 554 998 554 1053 c 0,36,37 + 554 1106 554 1106 608 1106 c 256,38,39 + 662 1106 662 1106 662 1053 c 0,32,33 +489 1016 m 0,40,41 + 489 963 489 963 434 963 c 0,42,43 + 381 963 381 963 381 1016 c 0,44,45 + 381 1071 381 1071 434 1071 c 0,46,47 + 489 1071 489 1071 489 1016 c 0,40,41 +1083 422 m 0,48,49 + 1083 369 1083 369 1028 369 c 0,50,51 + 975 369 975 369 975 422 c 0,52,53 + 975 477 975 477 1028 477 c 0,54,55 + 1083 477 1083 477 1083 422 c 0,48,49 +341 918 m 256,56,57 + 341 864 341 864 287 864 c 256,58,59 + 233 864 233 864 233 915 c 0,60,61 + 233 972 233 972 287 972 c 256,62,63 + 341 972 341 972 341 918 c 256,56,57 +984 272 m 0,64,65 + 984 219 984 219 932 219 c 0,66,67 + 876 219 876 219 876 272 c 0,68,69 + 876 327 876 327 932 327 c 0,70,71 + 984 327 984 327 984 272 c 0,64,65 +836 174 m 0,72,73 + 836 122 836 122 784 122 c 0,74,75 + 728 122 728 122 728 174 c 0,76,77 + 728 230 728 230 784 230 c 0,78,79 + 836 230 836 230 836 174 c 0,72,73 +242 770 m 0,80,81 + 242 715 242 715 190 715 c 0,82,83 + 134 715 134 715 134 770 c 0,84,85 + 134 823 134 823 188 823 c 256,86,87 + 242 823 242 823 242 770 c 0,80,81 +206 596 m 256,88,89 + 206 542 206 542 154 542 c 0,90,91 + 98 542 98 542 98 596 c 256,92,93 + 98 650 98 650 154 650 c 0,94,95 + 206 650 206 650 206 596 c 256,88,89 +662 141 m 0,96,97 + 662 86 662 86 608 86 c 256,98,99 + 554 86 554 86 554 141 c 0,100,101 + 554 194 554 194 608 194 c 256,102,103 + 662 194 662 194 662 141 c 0,96,97 +242 422 m 0,104,105 + 242 369 242 369 188 369 c 256,106,107 + 134 369 134 369 134 422 c 0,108,109 + 134 477 134 477 188 477 c 256,110,111 + 242 477 242 477 242 422 c 0,104,105 +489 178 m 0,112,113 + 489 122 489 122 434 122 c 0,114,115 + 381 122 381 122 381 174 c 0,116,117 + 381 230 381 230 434 230 c 0,118,119 + 489 230 489 230 489 178 c 0,112,113 +341 272 m 0,120,121 + 341 219 341 219 287 219 c 256,122,123 + 233 219 233 219 233 272 c 0,124,125 + 233 327 233 327 287 327 c 256,126,127 + 341 327 341 327 341 272 c 0,120,121 +EndSplineSet +EndChar + +StartChar: uni25CF +Encoding: 9679 9679 2191 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 4 + 10 + 15 + 14 + 7 + 15 + 0 + 1 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +618 1018 m 0,0,1 + 728 1018 728 1018 836.5 960 c 128,-1,2 + 945 902 945 902 1002 793 c 128,-1,3 + 1059 684 1059 684 1059 578 c 0,4,5 + 1059 395 1059 395 930 266 c 128,-1,6 + 801 137 801 137 618 137 c 0,7,8 + 436 137 436 137 307 266.5 c 128,-1,9 + 178 396 178 396 178 578 c 0,10,11 + 178 686 178 686 233.5 792.5 c 128,-1,12 + 289 899 289 899 396.5 958.5 c 128,-1,13 + 504 1018 504 1018 618 1018 c 0,0,1 +EndSplineSet +EndChar + +StartChar: invbullet +Encoding: 9688 9688 2192 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 12 + 2 + 4 + 1 + 2 + 1 + 21 + 20 + 16 + 1 + 8 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +41 0 m 1,0,-1 + 41 1155 l 1,1,-1 + 1196 1155 l 1,2,-1 + 1196 0 l 1,3,-1 + 41 0 l 1,0,-1 +176 577 m 256,4,5 + 176 459 176 459 235 357 c 128,-1,6 + 294 255 294 255 395.5 196 c 128,-1,7 + 497 137 497 137 616 137 c 0,8,9 + 734 137 734 137 836.5 196 c 128,-1,10 + 939 255 939 255 998 357.5 c 128,-1,11 + 1057 460 1057 460 1057 577 c 0,12,13 + 1057 695 1057 695 998 797.5 c 128,-1,14 + 939 900 939 900 837 959 c 128,-1,15 + 735 1018 735 1018 616 1018 c 0,16,17 + 498 1018 498 1018 395.5 958.5 c 128,-1,18 + 293 899 293 899 234.5 797 c 128,-1,19 + 176 695 176 695 176 577 c 256,4,5 +EndSplineSet +EndChar + +StartChar: invcircle +Encoding: 9689 9689 2193 +Width: 1237 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 12 + 28 + 28 + 2 + 4 + 20 + 20 + 1 + 2 + 1 + 37 + 36 + 8 + 32 + 1 + 16 + 24 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[rp0,min,rnd,black] +MDRP[min,rnd,white] +MDAP[rnd] +MDRP[rp0,min,rnd,black] +MDRP[min,rnd,white] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +41 0 m 1,0,-1 + 41 1155 l 1,1,-1 + 1196 1155 l 1,2,-1 + 1196 0 l 1,3,-1 + 41 0 l 1,0,-1 +253 577 m 256,4,5 + 253 674 253 674 302 759 c 128,-1,6 + 351 844 351 844 436 893 c 128,-1,7 + 521 942 521 942 618 942 c 256,8,9 + 715 942 715 942 800 893 c 128,-1,10 + 885 844 885 844 934 759 c 128,-1,11 + 983 674 983 674 983 577 c 256,12,13 + 983 480 983 480 934 395 c 128,-1,14 + 885 310 885 310 800 261 c 128,-1,15 + 715 212 715 212 618 212 c 256,16,17 + 521 212 521 212 436 261 c 128,-1,18 + 351 310 351 310 302 395 c 128,-1,19 + 253 480 253 480 253 577 c 256,4,5 +176 577 m 256,20,21 + 176 459 176 459 235 357 c 128,-1,22 + 294 255 294 255 395.5 196 c 128,-1,23 + 497 137 497 137 616 137 c 0,24,25 + 734 137 734 137 836.5 196 c 128,-1,26 + 939 255 939 255 998 357.5 c 128,-1,27 + 1057 460 1057 460 1057 577 c 0,28,29 + 1057 695 1057 695 998 797.5 c 128,-1,30 + 939 900 939 900 837 959 c 128,-1,31 + 735 1018 735 1018 616 1018 c 0,32,33 + 498 1018 498 1018 395.5 958.5 c 128,-1,34 + 293 899 293 899 234.5 797 c 128,-1,35 + 176 695 176 695 176 577 c 256,20,21 +EndSplineSet +EndChar + +StartChar: openbullet +Encoding: 9702 9702 2194 +Width: 726 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 14 + 0 + 20 + 7 + 0 + 7 + 27 + 26 + 17 + 64 + 10 + 144 + 10 + 2 + 31 + 10 + 1 + 10 + 23 + 3 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +MDAP[rnd] +DELTAP1 +DELTAP1 +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +611 637 m 0,0,1 + 611 530 611 530 535.5 459.5 c 128,-1,2 + 460 389 460 389 363 389 c 0,3,4 + 295 389 295 389 239 421.5 c 128,-1,5 + 183 454 183 454 149 511 c 128,-1,6 + 115 568 115 568 115 637 c 0,7,8 + 115 740 115 740 188.5 812.5 c 128,-1,9 + 262 885 262 885 363 885 c 0,10,11 + 466 885 466 885 537 811 c 1,12,13 + 611 740 611 740 611 637 c 0,0,1 +535 637 m 0,14,15 + 535 707 535 707 484 758 c 128,-1,16 + 433 809 433 809 363 809 c 256,17,18 + 293 809 293 809 242 758 c 128,-1,19 + 191 707 191 707 191 637 c 0,20,21 + 191 566 191 566 240 515.5 c 128,-1,22 + 289 465 289 465 363 465 c 0,23,24 + 440 465 440 465 487.5 517.5 c 128,-1,25 + 535 570 535 570 535 637 c 0,14,15 +EndSplineSet +EndChar + +StartChar: smileface +Encoding: 9786 9786 2195 +Width: 2091 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 63 + 12 + 58 + 25 + 31 + 54 + 43 + 37 + 31 + 37 + 0 + 19 + 6 + 0 + 6 + 60 + 59 + 40 + 28 + 34 + 46 + 34 + 53 + 49 + 104 + 49 + 1 + 89 + 49 + 1 + 71 + 49 + 1 + 25 + 49 + 1 + 49 + 51 + 56 + 15 + 34 + 95 + 34 + 111 + 34 + 3 + 8 + 56 + 64 + 9 + 14 + 72 + 34 + 56 + 34 + 56 + 3 + 15 + 15 + 9 + 1 + 9 + 22 + 3 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +MDRP[rp0,min,rnd,grey] +DELTAP1 +MDRP[min,rnd,black] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +CALL +SDB +DELTAP1 +SRP0 +MDRP[min,rnd,black] +SHP[rp1] +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1657 584 m 0,0,1 + 1657 330 1657 330 1477 152 c 128,-1,2 + 1297 -26 1297 -26 1045 -27 c 0,3,4 + 792 -27 792 -27 613 152 c 128,-1,5 + 434 331 434 331 433 584 c 0,6,7 + 433 834 433 834 610 1015 c 128,-1,8 + 787 1196 787 1196 1045 1196 c 256,9,10 + 1303 1196 1303 1196 1480 1014.5 c 128,-1,11 + 1657 833 1657 833 1657 584 c 0,0,1 +1567 584 m 0,12,13 + 1567 801 1567 801 1414 954 c 128,-1,14 + 1261 1107 1261 1107 1045 1108 c 0,15,16 + 827 1108 827 1108 676 954 c 0,17,18 + 523 801 523 801 523 584 c 0,19,20 + 523 368 523 368 676 215 c 128,-1,21 + 829 62 829 62 1045 61 c 0,22,23 + 1262 61 1262 61 1414 215 c 128,-1,24 + 1566 369 1566 369 1567 584 c 0,12,13 +889 711 m 256,25,26 + 889 679 889 679 866 656 c 128,-1,27 + 843 633 843 633 811 633 c 256,28,29 + 779 633 779 633 756.5 656 c 128,-1,30 + 734 679 734 679 734 711 c 256,31,32 + 734 743 734 743 756.5 765.5 c 128,-1,33 + 779 788 779 788 811 788 c 256,34,35 + 843 788 843 788 866 765.5 c 128,-1,36 + 889 743 889 743 889 711 c 256,25,26 +1356 711 m 256,37,38 + 1356 679 1356 679 1334 656 c 128,-1,39 + 1312 633 1312 633 1280 633 c 256,40,41 + 1248 633 1248 633 1224.5 656 c 128,-1,42 + 1201 679 1201 679 1201 711 c 256,43,44 + 1201 743 1201 743 1224.5 765.5 c 128,-1,45 + 1248 788 1248 788 1280 788 c 256,46,47 + 1312 788 1312 788 1334 765.5 c 128,-1,48 + 1356 743 1356 743 1356 711 c 256,37,38 +822 422 m 1,49,50 + 898 285 898 285 1045 285 c 0,51,52 + 1190 285 1190 285 1266 422 c 1,53,-1 + 1328 387 l 1,54,55 + 1230 201 1230 201 1045 201 c 256,56,57 + 860 201 860 201 762 387 c 1,58,-1 + 822 422 l 1,49,50 +EndSplineSet +EndChar + +StartChar: invsmileface +Encoding: 9787 9787 2196 +Width: 2155 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 57 + 36 + 12 + 18 + 40 + 30 + 24 + 18 + 24 + 6 + 0 + 6 + 0 + 46 + 47 + 33 + 21 + 15 + 27 + 15 + 41 + 45 + 104 + 45 + 1 + 89 + 45 + 1 + 75 + 45 + 1 + 61 + 45 + 1 + 45 + 43 + 38 + 15 + 15 + 31 + 15 + 95 + 15 + 111 + 15 + 4 + 8 + 79 + 38 + 95 + 38 + 2 + 15 + 38 + 15 + 38 + 9 + 3 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +IP +IP +MDAP[rnd] +MDAP[rnd] +DELTAP1 +SDB +DELTAP1 +SRP0 +MDRP[min,rnd,white] +SHP[rp1] +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP0 +MDRP[min,rnd,white] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1689 584 m 0,0,1 + 1689 330 1689 330 1509 152 c 128,-1,2 + 1329 -26 1329 -26 1077 -27 c 0,3,4 + 824 -27 824 -27 645 152 c 128,-1,5 + 466 331 466 331 465 584 c 0,6,7 + 465 834 465 834 642 1015 c 128,-1,8 + 819 1196 819 1196 1077 1196 c 256,9,10 + 1335 1196 1335 1196 1512 1014.5 c 128,-1,11 + 1689 833 1689 833 1689 584 c 0,0,1 +921 711 m 256,12,13 + 921 743 921 743 898 765.5 c 128,-1,14 + 875 788 875 788 843 788 c 256,15,16 + 811 788 811 788 788.5 765.5 c 128,-1,17 + 766 743 766 743 766 711 c 256,18,19 + 766 679 766 679 788.5 656 c 128,-1,20 + 811 633 811 633 843 633 c 256,21,22 + 875 633 875 633 898 656 c 128,-1,23 + 921 679 921 679 921 711 c 256,12,13 +1388 711 m 256,24,25 + 1388 743 1388 743 1366 765.5 c 128,-1,26 + 1344 788 1344 788 1312 788 c 256,27,28 + 1280 788 1280 788 1256.5 765.5 c 128,-1,29 + 1233 743 1233 743 1233 711 c 256,30,31 + 1233 679 1233 679 1256.5 656 c 128,-1,32 + 1280 633 1280 633 1312 633 c 256,33,34 + 1344 633 1344 633 1366 656 c 128,-1,35 + 1388 679 1388 679 1388 711 c 256,24,25 +794 387 m 1,36,37 + 892 201 892 201 1077 201 c 256,38,39 + 1262 201 1262 201 1360 387 c 1,40,-1 + 1298 422 l 1,41,42 + 1222 285 1222 285 1077 285 c 0,43,44 + 930 285 930 285 854 422 c 1,45,-1 + 794 387 l 1,36,37 +EndSplineSet +EndChar + +StartChar: sun +Encoding: 9788 9788 2197 +Width: 1877 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 67 + 53 + 16 + 11 + 7 + 10 + 2 + 42 + 42 + 22 + 25 + 46 + 38 + 34 + 29 + 35 + 35 + 25 + 10 + 3 + 57 + 56 + 43 + 42 + 2 + 42 + 12 + 11 + 11 + 33 + 34 + 49 + 25 + 22 + 25 + 8 + 37 + 42 + 15 + 30 + 34 + 25 + 42 + 34 + 25 + 25 + 34 + 42 + 3 + 1 + 28 + 17 + 223 + 23 + 239 + 23 + 2 + 23 + 39 + 6 + 111 + 1 + 127 + 1 + 143 + 1 + 3 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +SHP[rp1] +MDAP[rnd] +DELTAP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +IP +SRP1 +IP +IP +SRP1 +SHP[rp1] +SRP0 +MDRP[min,rnd,black] +SRP0 +MDRP[min,rnd,black] +SHP[rp1] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +SHP[rp1] +SRP0 +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +905 1083 m 1,0,-1 + 971 1083 l 1,1,-1 + 971 866 l 1,2,3 + 1037 860 1037 860 1086.5 840.5 c 128,-1,4 + 1136 821 1136 821 1196 776 c 1,5,-1 + 1382 958 l 1,6,-1 + 1427 913 l 1,7,-1 + 1243 729 l 1,8,9 + 1329 616 1329 616 1335 500 c 1,10,-1 + 1550 500 l 1,11,-1 + 1550 438 l 1,12,-1 + 1335 438 l 1,13,14 + 1318 313 1318 313 1243 217 c 1,15,-1 + 1427 29 l 1,16,-1 + 1378 -14 l 1,17,-1 + 1196 168 l 1,18,19 + 1160 142 1160 142 1123 121 c 128,-1,20 + 1086 100 1086 100 1055 92 c 128,-1,21 + 1024 84 1024 84 971 76 c 1,22,-1 + 971 -141 l 1,23,-1 + 905 -141 l 1,24,-1 + 905 76 l 1,25,26 + 784 93 784 93 684 166 c 1,27,-1 + 496 -14 l 1,28,-1 + 453 31 l 1,29,-1 + 635 215 l 1,30,31 + 557 315 557 315 541 440 c 1,32,-1 + 326 440 l 1,33,-1 + 326 502 l 1,34,-1 + 541 502 l 1,35,36 + 553 630 553 630 633 725 c 1,37,-1 + 453 909 l 1,38,-1 + 493 958 l 1,39,-1 + 682 776 l 1,40,41 + 792 853 792 853 905 866 c 1,42,-1 + 905 1083 l 1,0,-1 +936 805 m 0,43,44 + 797 805 797 805 700.5 706 c 128,-1,45 + 604 607 604 607 604 471 c 256,46,47 + 604 335 604 335 701.5 237 c 128,-1,48 + 799 139 799 139 936 139 c 0,49,50 + 1075 139 1075 139 1171 236 c 0,51,52 + 1270 333 1270 333 1270 471 c 0,53,54 + 1270 607 1270 607 1172 706 c 128,-1,55 + 1074 805 1074 805 936 805 c 0,43,44 +EndSplineSet +EndChar + +StartChar: female +Encoding: 9792 9792 2198 +Width: 1536 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 51 + 36 + 16 + 11 + 18 + 14 + 14 + 21 + 0 + 29 + 23 + 4 + 4 + 0 + 11 + 3 + 41 + 40 + 18 + 21 + 24 + 15 + 24 + 14 + 239 + 0 + 255 + 0 + 2 + 0 + 32 + 31 + 32 + 47 + 32 + 2 + 24 + 32 + 24 + 32 + 7 + 64 + 19 + 1 + 19 + 25 + 64 + 37 + 40 + 72 + 25 + 7 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +CALL +MDAP[rnd] +DELTAP1 +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +DELTAP1 +SRP0 +MDRP[min,rnd,black] +DELTAP2 +SHP[rp2] +SRP1 +SHP[rp1] +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +732 578 m 1,0,1 + 656 589 656 589 602.5 627 c 128,-1,2 + 549 665 549 665 515 726 c 128,-1,3 + 481 787 481 787 481 862 c 0,4,5 + 481 988 481 988 568 1070.5 c 128,-1,6 + 655 1153 655 1153 769 1153 c 0,7,8 + 887 1153 887 1153 970 1067 c 1,9,10 + 1056 984 1056 984 1056 862 c 0,11,12 + 1056 753 1056 753 984 672 c 128,-1,13 + 912 591 912 591 806 578 c 1,14,-1 + 806 412 l 1,15,-1 + 1062 412 l 1,16,-1 + 1062 342 l 1,17,-1 + 806 342 l 1,18,-1 + 806 80 l 1,19,-1 + 732 80 l 1,20,-1 + 732 342 l 1,21,-1 + 474 342 l 1,22,-1 + 474 412 l 1,23,-1 + 732 412 l 1,24,-1 + 732 578 l 1,0,1 +767 1069 m 0,25,26 + 711 1069 711 1069 665 1042.5 c 128,-1,27 + 619 1016 619 1016 590.5 968.5 c 128,-1,28 + 562 921 562 921 562 864 c 0,29,30 + 562 778 562 778 623.5 717.5 c 128,-1,31 + 685 657 685 657 767 657 c 0,32,33 + 854 657 854 657 913 719 c 0,34,35 + 974 780 974 780 974 864 c 0,36,37 + 974 922 974 922 945.5 969.5 c 128,-1,38 + 917 1017 917 1017 870.5 1043 c 128,-1,39 + 824 1069 824 1069 767 1069 c 0,25,26 +EndSplineSet +EndChar + +StartChar: male +Encoding: 9794 9794 2199 +Width: 1536 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 33 + 48 + 44 + 4 + 31 + 3 + 39 + 54 + 20 + 33 + 39 + 33 + 57 + 58 + 44 + 31 + 42 + 51 + 0 + 36 + 128 + 36 + 2 + 36 + 45 + 144 + 11 + 1 + 11 + 15 + 42 + 1 + 8 + 42 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +MDRP[min,rnd,grey] +DELTAP1 +MDRP[min,rnd,black] +MDRP[rp0,min,rnd,grey] +DELTAP1 +MDRP[min,rnd,black] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1023 1024 m 1,0,1 + 876 1067 876 1067 833 1110 c 0,2,3 + 825 1115 825 1115 825 1128 c 0,4,5 + 825 1136 825 1136 831 1145 c 0,6,7 + 837 1149 837 1149 845 1149 c 2,8,-1 + 878 1145 l 1,9,10 + 946 1128 946 1128 1005 1128 c 0,11,12 + 1093 1128 1093 1128 1134 1141 c 0,13,14 + 1170 1153 1170 1153 1183 1153 c 0,15,16 + 1199 1153 1199 1153 1199 1139 c 2,17,-1 + 1193 1112 l 2,18,19 + 1177 1052 1177 1052 1177 954 c 0,20,21 + 1177 876 1177 876 1189 825 c 1,22,-1 + 1193 793 l 2,23,24 + 1193 784 1193 784 1189 778 c 2,25,-1 + 1175 772 l 1,26,27 + 1156 772 1156 772 1137.5 804.5 c 128,-1,28 + 1119 837 1119 837 1101 882 c 128,-1,29 + 1083 927 1083 927 1070 977 c 1,30,-1 + 833 739 l 1,31,32 + 917 658 917 658 917 549 c 0,33,34 + 917 424 917 424 829.5 337 c 128,-1,35 + 742 250 742 250 626 250 c 256,36,37 + 510 250 510 250 423.5 331.5 c 128,-1,38 + 337 413 337 413 337 535 c 0,39,40 + 337 655 337 655 421.5 740 c 128,-1,41 + 506 825 506 825 628 825 c 0,42,43 + 699 825 699 825 782 782 c 1,44,-1 + 1023 1024 l 1,0,1 +628 750 m 0,45,46 + 539 750 539 750 477 689 c 128,-1,47 + 415 628 415 628 415 539 c 0,48,49 + 415 444 415 444 478 385 c 128,-1,50 + 541 326 541 326 628 326 c 0,51,52 + 717 326 717 326 778 388.5 c 128,-1,53 + 839 451 839 451 839 539 c 0,54,55 + 839 626 839 626 777 688 c 128,-1,56 + 715 750 715 750 628 750 c 0,45,46 +EndSplineSet +EndChar + +StartChar: spade +Encoding: 9824 9824 2200 +Width: 1088 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 18 + 28 + 11 + 23 + 15 + 6 + 6 + 23 + 28 + 3 + 34 + 35 + 9 + 15 + 25 + 31 + 25 + 47 + 25 + 3 + 8 + 25 + 25 + 17 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +IP +MDAP[rnd] +SDB +DELTAP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +544 1231 m 1,0,1 + 569 1135 569 1135 617 1050.5 c 128,-1,2 + 665 966 665 966 816 827 c 0,3,4 + 957 701 957 701 992 635 c 128,-1,5 + 1027 569 1027 569 1029 498 c 0,6,7 + 1029 402 1029 402 964 338 c 128,-1,8 + 899 274 899 274 812 274 c 0,9,10 + 655 274 655 274 556 465 c 1,11,12 + 559 306 559 306 598.5 223 c 128,-1,13 + 638 140 638 140 719.5 93 c 128,-1,14 + 801 46 801 46 933 37 c 1,15,-1 + 941 0 l 1,16,-1 + 149 0 l 1,17,-1 + 155 37 l 1,18,19 + 279 37 279 37 365 85.5 c 128,-1,20 + 451 134 451 134 494.5 220 c 128,-1,21 + 538 306 538 306 538 451 c 2,22,-1 + 538 465 l 1,23,24 + 448 274 448 274 278 274 c 0,25,26 + 189 274 189 274 124 338 c 128,-1,27 + 59 402 59 402 59 494 c 0,28,29 + 59 583 59 583 103.5 651 c 128,-1,30 + 148 719 148 719 247 801 c 0,31,32 + 386 920 386 920 452 1013 c 128,-1,33 + 518 1106 518 1106 544 1231 c 1,0,1 +EndSplineSet +EndChar + +StartChar: club +Encoding: 9827 9827 2201 +Width: 1344 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 2 + 15 + 52 + 40 + 40 + 30 + 24 + 15 + 4 + 53 + 54 + 36 + 43 + 8 + 47 + 20 + 32 + 4 + 11 + 31 + 11 + 1 + 18 + 11 + 18 + 11 + 1 + 27 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +DELTAP1 +SRP2 +SLOOP +IP +SHP[rp2] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1094 0 m 1,0,-1 + 252 0 l 1,1,-1 + 260 35 l 1,2,3 + 395 62 395 62 454.5 89 c 128,-1,4 + 514 116 514 116 561.5 176 c 128,-1,5 + 609 236 609 236 635.5 310.5 c 128,-1,6 + 662 385 662 385 662 461 c 2,7,-1 + 660 508 l 1,8,9 + 603 388 603 388 514 329 c 128,-1,10 + 425 270 425 270 336 270 c 0,11,12 + 259 270 259 270 194.5 308 c 128,-1,13 + 130 346 130 346 95 409 c 128,-1,14 + 60 472 60 472 60 549 c 0,15,16 + 60 664 60 664 133 743 c 128,-1,17 + 206 822 206 822 299 823 c 0,18,19 + 361 823 361 823 461 772 c 1,20,21 + 423 837 423 837 406 877 c 1,22,23 + 395 914 395 914 395 952 c 0,24,25 + 395 1073 395 1073 476 1148 c 128,-1,26 + 557 1223 557 1223 670 1223 c 0,27,28 + 786 1223 786 1223 866 1143 c 128,-1,29 + 946 1063 946 1063 946 956 c 0,30,31 + 946 870 946 870 877 772 c 1,32,33 + 961 812 961 812 977 815 c 0,34,35 + 999 823 999 823 1038 823 c 0,36,37 + 1143 823 1143 823 1211 745 c 1,38,39 + 1284 669 1284 669 1284 553 c 256,40,41 + 1284 437 1284 437 1206 354.5 c 128,-1,42 + 1128 272 1128 272 1012 272 c 0,43,44 + 956 272 956 272 897 296.5 c 128,-1,45 + 838 321 838 321 790.5 362 c 128,-1,46 + 743 403 743 403 682 508 c 1,47,48 + 687 382 687 382 711.5 305.5 c 128,-1,49 + 736 229 736 229 790.5 169 c 128,-1,50 + 845 109 845 109 908.5 82.5 c 128,-1,51 + 972 56 972 56 1086 35 c 1,52,-1 + 1094 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: heart +Encoding: 9829 9829 2202 +Width: 1216 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 0 + 13 + 19 + 13 + 7 + 3 + 25 + 26 + 13 + 16 + 10 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +610 -23 m 1,0,1 + 588 63 588 63 542.5 154 c 128,-1,2 + 497 245 497 245 321 481 c 2,3,-1 + 231 604 l 2,4,5 + 156 704 156 704 129 768.5 c 128,-1,6 + 102 833 102 833 102 899 c 0,7,8 + 102 1006 102 1006 171.5 1074.5 c 128,-1,9 + 241 1143 241 1143 342 1143 c 0,10,11 + 429 1143 429 1143 500.5 1086 c 128,-1,12 + 572 1029 572 1029 610 909 c 1,13,14 + 644 1028 644 1028 715 1086.5 c 128,-1,15 + 786 1145 786 1145 874 1145 c 0,16,17 + 971 1145 971 1145 1042.5 1077 c 128,-1,18 + 1114 1009 1114 1009 1114 911 c 0,19,20 + 1114 825 1114 825 1070 730 c 128,-1,21 + 1026 635 1026 635 915 498 c 0,22,23 + 775 319 775 319 710.5 212.5 c 128,-1,24 + 646 106 646 106 610 -23 c 1,0,1 +EndSplineSet +EndChar + +StartChar: diamond +Encoding: 9830 9830 2203 +Width: 1045 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 10 + 6 + 3 + 0 + 0 + 13 + 14 + 3 + 10 + 10 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +IP +RTHG +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +519 1223 m 1,0,1 + 591 1098 591 1098 723.5 917.5 c 128,-1,2 + 856 737 856 737 978 600 c 1,3,4 + 910 530 910 530 757 326.5 c 128,-1,5 + 604 123 604 123 521 -25 c 1,6,7 + 484 46 484 46 391.5 176.5 c 128,-1,8 + 299 307 299 307 225 402.5 c 128,-1,9 + 151 498 151 498 66 600 c 1,10,11 + 182 737 182 737 311.5 909.5 c 128,-1,12 + 441 1082 441 1082 519 1223 c 1,0,1 +EndSplineSet +EndChar + +StartChar: musicalnote +Encoding: 9834 9834 2204 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 10 + 5 + 2 + 14 + 14 + 25 + 20 + 25 + 5 + 3 + 27 + 26 + 13 + 2 + 2 + 8 + 8 + 0 + 23 + 17 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +MDRP[min,rnd,black] +SRP2 +IP +MDAP[rnd] +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +489 1153 m 1,0,-1 + 565 1153 l 1,1,-1 + 565 1053 l 1,2,-1 + 718 860 l 1,3,4 + 827 713 827 713 827 543 c 0,5,6 + 827 393 827 393 733 272 c 1,7,-1 + 686 272 l 1,8,9 + 743 400 743 400 743 520 c 256,10,11 + 743 640 743 640 686 719 c 128,-1,12 + 629 798 629 798 565 809 c 1,13,-1 + 565 303 l 2,14,15 + 565 180 565 180 491.5 104.5 c 128,-1,16 + 418 29 418 29 311 29 c 0,17,18 + 254 29 254 29 225 56 c 128,-1,19 + 196 83 196 83 196 129 c 0,20,21 + 196 206 196 206 258.5 264 c 128,-1,22 + 321 322 321 322 399 322 c 0,23,24 + 443 322 443 322 489 303 c 1,25,-1 + 489 1153 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: musicalnotedbl +Encoding: 9835 9835 2205 +Width: 1536 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 30 + 12 + 12 + 0 + 29 + 15 + 15 + 26 + 21 + 26 + 7 + 0 + 4 + 34 + 33 + 14 + 29 + 29 + 13 + 30 +PUSHW_1 + -32 +PUSHB_4 + 16 + 20 + 72 + 30 +PUSHW_1 + -64 +NPUSHB + 20 + 8 + 11 + 72 + 30 + 30 + 28 + 18 + 32 + 27 + 27 + 31 + 28 + 10 + 32 + 4 + 1 + 4 + 4 + 24 + 18 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SHP[rp1] +MDAP[rnd] +DELTAP1 +MDRP[min,rnd,black] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +CALL +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1263 324 m 2,0,1 + 1263 246 1263 246 1236 189.5 c 128,-1,2 + 1209 133 1209 133 1147.5 91 c 128,-1,3 + 1086 49 1086 49 1013 49 c 0,4,5 + 956 49 956 49 927.5 76 c 128,-1,6 + 899 103 899 103 899 150 c 0,7,8 + 899 231 899 231 960 286.5 c 128,-1,9 + 1021 342 1021 342 1099 342 c 0,10,11 + 1147 342 1147 342 1189 324 c 1,12,-1 + 1189 772 l 1,13,-1 + 639 623 l 1,14,-1 + 639 229 l 2,15,16 + 639 112 639 112 570.5 34.5 c 128,-1,17 + 502 -43 502 -43 387 -43 c 0,18,19 + 330 -43 330 -43 301 -16.5 c 128,-1,20 + 272 10 272 10 272 55 c 0,21,22 + 272 131 272 131 334 191 c 128,-1,23 + 396 251 396 251 475 248 c 0,24,25 + 520 248 520 248 565 229 c 1,26,-1 + 565 981 l 1,27,-1 + 1263 1159 l 1,28,-1 + 1263 324 l 2,0,1 +639 750 m 1,29,-1 + 1189 899 l 1,30,-1 + 1189 1016 l 1,31,-1 + 639 864 l 1,32,-1 + 639 750 l 1,29,-1 +EndSplineSet +EndChar + +StartChar: uni266F +Encoding: 9839 9839 2206 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 24 + 31 + 18 + 6 + 6 + 15 + 11 + 7 + 26 + 22 + 2 + 2 + 28 + 19 + 3 + 7 + 3 + 0 + 13 + 9 + 0 + 9 + 33 + 32 + 23 + 16 + 22 + 29 + 18 + 12 + 13 + 27 + 26 + 4 + 31 + 8 + 9 + 9 + 8 + 31 + 4 + 26 + 27 + 13 + 12 + 18 + 29 + 22 + 16 + 12 + 3 + 20 + 7 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,grey] +MDAP[rnd] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +974 445 m 1,0,-1 + 774 356 l 1,1,-1 + 774 0 l 1,2,-1 + 678 0 l 1,3,-1 + 678 317 l 1,4,-1 + 346 157 l 1,5,-1 + 346 -200 l 1,6,-1 + 250 -200 l 1,7,-1 + 250 118 l 1,8,-1 + 50 29 l 1,9,-1 + 50 188 l 1,10,-1 + 250 277 l 1,11,-1 + 250 778 l 1,12,-1 + 50 689 l 1,13,-1 + 50 848 l 1,14,-1 + 250 937 l 1,15,-1 + 250 1264 l 1,16,-1 + 346 1264 l 1,17,-1 + 346 976 l 1,18,-1 + 678 1136 l 1,19,-1 + 678 1484 l 1,20,-1 + 774 1484 l 1,21,-1 + 774 1175 l 1,22,-1 + 974 1264 l 1,23,-1 + 974 1105 l 1,24,-1 + 774 1016 l 1,25,-1 + 774 515 l 1,26,-1 + 974 604 l 1,27,-1 + 974 445 l 1,0,-1 +678 476 m 1,28,-1 + 678 977 l 1,29,-1 + 346 817 l 1,30,-1 + 346 316 l 1,31,-1 + 678 476 l 1,28,-1 +EndSplineSet +EndChar + +StartChar: uni2C60 +Encoding: 11360 11360 2207 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 71 + 13 + 17 + 15 + 11 + 19 + 19 + 0 + 6 + 2 + 2 + 8 + 4 + 0 + 0 + 17 + 20 + 3 + 23 + 22 + 14 + 6 + 7 + 6 + 96 + 89 + 18 + 2 + 3 + 2 + 96 + 89 + 15 + 3 + 64 + 19 + 22 + 72 + 0 + 3 + 16 + 3 + 2 + 3 + 64 + 11 + 15 + 7 + 31 + 7 + 47 + 7 + 79 + 7 + 95 + 7 + 239 + 7 + 6 + 9 + 3 + 7 + 7 + 0 + 9 + 3 + 0 + 19 + 95 + 89 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +SMD +MDRP[min,rnd,white] +DELTAP1 +CALL +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +168 0 m 1,0,-1 + 168 484 l 1,1,-1 + 25 484 l 1,2,-1 + 25 617 l 1,3,-1 + 168 617 l 1,4,-1 + 168 765 l 1,5,-1 + 25 765 l 1,6,-1 + 25 898 l 1,7,-1 + 168 898 l 1,8,-1 + 168 1409 l 1,9,-1 + 359 1409 l 1,10,-1 + 359 898 l 1,11,-1 + 747 898 l 1,12,-1 + 747 765 l 1,13,-1 + 359 765 l 1,14,-1 + 359 617 l 1,15,-1 + 747 617 l 1,16,-1 + 747 484 l 1,17,-1 + 359 484 l 1,18,-1 + 359 156 l 1,19,-1 + 1071 156 l 1,20,-1 + 1071 0 l 1,21,-1 + 168 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C61 +Encoding: 11361 11361 2208 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 55 + 13 + 17 + 17 + 19 + 6 + 2 + 2 + 8 + 4 + 0 + 0 + 15 + 11 + 19 + 19 + 21 + 20 + 14 + 6 + 7 + 6 + 80 + 89 + 18 + 2 + 3 + 2 + 80 + 89 + 15 + 3 + 64 + 19 + 22 + 72 + 0 + 3 + 16 + 3 + 2 + 3 + 11 + 15 + 7 + 31 + 7 + 47 + 7 + 3 + 7 + 7 + 9 + 0 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +IP +MDAP[rnd] +DELTAP1 +SHP[rp1] +MDRP[rnd,white] +DELTAP1 +CALL +SHP[rp2] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +138 0 m 1,0,-1 + 138 524 l 1,1,-1 + 28 524 l 1,2,-1 + 28 657 l 1,3,-1 + 138 657 l 1,4,-1 + 138 805 l 1,5,-1 + 28 805 l 1,6,-1 + 28 938 l 1,7,-1 + 138 938 l 1,8,-1 + 138 1484 l 1,9,-1 + 318 1484 l 1,10,-1 + 318 938 l 1,11,-1 + 428 938 l 1,12,-1 + 428 805 l 1,13,-1 + 318 805 l 1,14,-1 + 318 657 l 1,15,-1 + 428 657 l 1,16,-1 + 428 524 l 1,17,-1 + 318 524 l 1,18,-1 + 318 0 l 1,19,-1 + 138 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C62 +Encoding: 11362 11362 2209 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 13 + 25 + 25 + 10 + 6 + 0 + 0 + 19 + 26 + 3 + 29 + 28 + 2 + 9 + 9 + 18 + 15 + 22 + 22 + 5 + 128 + 18 + 64 + 9 + 12 + 72 + 18 + 18 + 0 + 11 + 3 + 0 + 25 + 95 + 89 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 900 1540 basechar 0 +AnchorPoint: "Anchor-14" 580 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +218 0 m 1,0,-1 + 218 697 l 1,1,-1 + 183 701 l 1,2,3 + 144 701 144 701 130.5 677 c 128,-1,4 + 117 653 117 653 117 606 c 1,5,-1 + -13 606 l 1,6,7 + -11 710 -11 710 42.5 772 c 128,-1,8 + 96 834 96 834 180 834 c 1,9,-1 + 218 831 l 1,10,-1 + 218 1409 l 1,11,-1 + 409 1409 l 1,12,-1 + 409 759 l 1,13,14 + 437 754 437 754 463 754 c 0,15,16 + 494 754 494 754 507 777.5 c 128,-1,17 + 520 801 520 801 526 849 c 1,18,-1 + 656 849 l 1,19,20 + 656 735 656 735 611 678 c 128,-1,21 + 566 621 566 621 470 621 c 0,22,23 + 437 621 437 621 409 626 c 1,24,-1 + 409 156 l 1,25,-1 + 1088 156 l 1,26,-1 + 1088 0 l 1,27,-1 + 218 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C63 +Encoding: 11363 11363 2210 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 15 + 6 + 23 + 19 + 11 + 11 + 14 + 1 + 12 + 12 + 21 + 6 + 3 + 27 + 26 + 23 + 10 + 95 + 89 + 22 + 14 + 0 + 14 + 96 + 89 + 19 + 0 + 23 + 0 + 23 + 0 + 2 + 12 + 18 + 2 + 18 + 95 + 89 + 2 + 3 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1366 1540 basechar 0 +AnchorPoint: "Anchor-20" 1366 -380 basechar 0 +AnchorPoint: "Anchor-16" 620 1540 basechar 0 +AnchorPoint: "Anchor-15" 1180 1540 basechar 0 +AnchorPoint: "Anchor-14" 620 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +26 1039 m 1,0,-1 + 168 1039 l 1,1,-1 + 168 1409 l 1,2,-1 + 761 1409 l 2,3,4 + 998 1409 998 1409 1128 1298 c 128,-1,5 + 1258 1187 1258 1187 1258 985 c 0,6,7 + 1258 785 1258 785 1127.5 667 c 128,-1,8 + 997 549 997 549 773 549 c 2,9,-1 + 359 549 l 1,10,-1 + 359 0 l 1,11,-1 + 168 0 l 1,12,-1 + 168 906 l 1,13,-1 + 26 906 l 1,14,-1 + 26 1039 l 1,0,-1 +1066 983 m 0,15,16 + 1066 1256 1066 1256 738 1256 c 2,17,-1 + 359 1256 l 1,18,-1 + 359 1039 l 1,19,-1 + 707 1039 l 1,20,-1 + 707 906 l 1,21,-1 + 359 906 l 1,22,-1 + 359 700 l 1,23,-1 + 746 700 l 2,24,25 + 1066 700 1066 700 1066 983 c 0,15,16 +EndSplineSet +EndChar + +StartChar: uni2C64 +Encoding: 11364 11364 2211 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 0 + 23 + 23 + 24 + 22 + 1 + 19 + 29 + 29 + 3 + 3 + 14 + 14 + 9 + 19 + 3 + 34 + 33 + 22 + 2 + 29 + 2 + 95 + 89 + 29 + 29 + 0 + 15 + 15 + 28 + 95 + 89 + 15 + 3 + 11 + 6 + 95 + 89 + 11 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 1180 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1479 1540 basechar 0 +AnchorPoint: "Anchor-20" 1479 -380 basechar 0 +AnchorPoint: "Anchor-16" 720 1540 basechar 0 +AnchorPoint: "Anchor-15" 1300 1540 basechar 0 +AnchorPoint: "Anchor-14" 730 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +1164 0 m 1,0,-1 + 798 585 l 1,1,-1 + 359 585 l 1,2,-1 + 359 -109 l 2,3,4 + 359 -190 359 -190 382.5 -228 c 128,-1,5 + 406 -266 406 -266 458 -266 c 0,6,7 + 518 -266 518 -266 568 -250 c 1,8,-1 + 568 -408 l 1,9,10 + 498 -425 498 -425 436 -425 c 0,11,12 + 307 -425 307 -425 237.5 -351 c 128,-1,13 + 168 -277 168 -277 168 -141 c 2,14,-1 + 168 1409 l 1,15,-1 + 831 1409 l 2,16,17 + 1069 1409 1069 1409 1198.5 1302.5 c 128,-1,18 + 1328 1196 1328 1196 1328 1006 c 0,19,20 + 1328 849 1328 849 1236.5 742 c 128,-1,21 + 1145 635 1145 635 984 607 c 1,22,-1 + 1384 0 l 1,23,-1 + 1164 0 l 1,0,-1 +1136 1004 m 0,24,25 + 1136 1127 1136 1127 1052.5 1191.5 c 128,-1,26 + 969 1256 969 1256 812 1256 c 2,27,-1 + 359 1256 l 1,28,-1 + 359 736 l 1,29,-1 + 820 736 l 2,30,31 + 971 736 971 736 1053.5 806.5 c 128,-1,32 + 1136 877 1136 877 1136 1004 c 0,24,25 +EndSplineSet +EndChar + +StartChar: uni2C65 +Encoding: 11365 11365 2212 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 80 + 55 + 35 + 46 + 46 + 24 + 21 + 18 + 52 + 51 + 1 + 5 + 0 + 19 + 20 + 20 + 29 + 24 + 13 + 14 + 14 + 3 + 41 + 0 + 0 + 49 + 3 + 24 + 3 + 61 + 60 + 51 + 42 + 39 + 42 + 80 + 89 + 52 + 48 + 58 + 48 + 81 + 89 + 7 + 35 + 39 + 58 + 58 + 16 + 41 + 64 + 1 + 39 + 22 + 32 + 27 + 81 + 89 + 32 + 22 + 57 + 10 + 16 + 10 + 80 + 89 + 21 + 19 + 16 + 95 + 13 + 1 + 47 + 13 + 143 + 13 + 2 + 13 + 13 + 16 + 16 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +SRP0 +MDRP[min,rnd,white] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,white] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 940 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1139 1540 basechar 0 +AnchorPoint: "Anchor-20" 1139 -380 basechar 0 +AnchorPoint: "Anchor-16" 500 1540 basechar 0 +AnchorPoint: "Anchor-15" 1260 1540 basechar 0 +AnchorPoint: "Anchor-14" 530 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +80 -424 m 1,0,-1 + 270 2 l 1,1,2 + 87 68 87 68 87 302 c 0,3,4 + 87 470 87 470 197.5 560 c 128,-1,5 + 308 650 308 650 554 656 c 1,6,-1 + 562 656 l 1,7,-1 + 690 943 l 1,8,9 + 642 965 642 965 565 965 c 0,10,11 + 444 965 444 965 389 924 c 128,-1,12 + 334 883 334 883 323 793 c 1,13,-1 + 135 810 l 1,14,15 + 181 1102 181 1102 569 1102 c 0,16,17 + 669 1102 669 1102 750 1077 c 1,18,-1 + 932 1484 l 1,19,-1 + 1074 1484 l 1,20,-1 + 865 1016 l 1,21,22 + 979 922 979 922 979 738 c 2,23,-1 + 979 272 l 2,24,25 + 979 192 979 192 1000 151.5 c 128,-1,26 + 1021 111 1021 111 1080 111 c 0,27,28 + 1106 111 1106 111 1139 118 c 1,29,-1 + 1139 6 l 1,30,31 + 1071 -10 1071 -10 1000 -10 c 0,32,33 + 900 -10 900 -10 854.5 42.5 c 128,-1,34 + 809 95 809 95 803 207 c 1,35,-1 + 797 207 l 1,36,37 + 728 83 728 83 636.5 31.5 c 128,-1,38 + 545 -20 545 -20 414 -20 c 2,39,-1 + 403 -20 l 1,40,-1 + 223 -424 l 1,41,-1 + 80 -424 l 1,0,-1 +463 115 m 1,42,43 + 560 116 560 116 636 163.5 c 128,-1,44 + 712 211 712 211 754.5 287.5 c 128,-1,45 + 797 364 797 364 797 445 c 2,46,-1 + 797 534 l 1,47,-1 + 649 531 l 1,48,-1 + 463 115 l 1,42,43 +272 299 m 0,49,50 + 272 196 272 196 336 149 c 1,51,-1 + 503 524 l 1,52,53 + 380 509 380 509 326 454 c 128,-1,54 + 272 399 272 399 272 299 c 0,49,50 +797 719 m 2,55,56 + 797 792 797 792 783 832 c 1,57,-1 + 706 658 l 1,58,-1 + 797 660 l 1,59,-1 + 797 719 l 2,55,56 +EndSplineSet +EndChar + +StartChar: uni2C66 +Encoding: 11366 11366 2213 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 50 + 13 + 8 + 25 + 25 + 1 + 24 + 0 + 0 + 23 + 5 + 3 + 1 + 10 + 11 + 11 + 18 + 1 + 18 + 28 + 29 + 24 + 27 + 25 + 12 + 1 + 23 + 4 + 21 + 5 + 21 + 16 + 80 + 89 + 21 + 22 + 8 + 27 + 81 + 89 + 11 + 7 + 64 + 8 + 15 + 5 + 2 + 81 + 89 + 5 + 15 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SMD +MDRP[min,rnd,black] +MDRP[min,rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +SLOOP +IP +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 396 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 569 1540 basechar 0 +AnchorPoint: "Anchor-20" 569 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1540 basechar 0 +AnchorPoint: "Anchor-15" 720 1540 basechar 0 +AnchorPoint: "Anchor-14" 360 -540 basechar 0 +LayerCount: 2 +Fore +SplineSet +-134 -424 m 1,0,-1 + 156 231 l 1,1,-1 + 156 951 l 1,2,-1 + 31 951 l 1,3,-1 + 31 1082 l 1,4,-1 + 163 1082 l 1,5,-1 + 216 1324 l 1,6,-1 + 336 1324 l 1,7,-1 + 336 1082 l 1,8,-1 + 532 1082 l 1,9,-1 + 710 1484 l 1,10,-1 + 852 1484 l 1,11,-1 + 336 316 l 1,12,-1 + 336 268 l 2,13,14 + 336 190 336 190 361.5 158.5 c 128,-1,15 + 387 127 387 127 450 127 c 0,16,17 + 486 127 486 127 554 141 c 1,18,-1 + 554 8 l 1,19,20 + 465 -16 465 -16 372 -16 c 0,21,22 + 268 -16 268 -16 214 40 c 1,23,-1 + 9 -424 l 1,24,-1 + -134 -424 l 1,0,-1 +336 623 m 1,25,-1 + 474 951 l 1,26,-1 + 336 951 l 1,27,-1 + 336 623 l 1,25,-1 +EndSplineSet +EndChar + +StartChar: uni2C67 +Encoding: 11367 11367 2214 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 8 + 4 + 4 + 5 + 9 + 1 + 1 + 12 + 12 + 15 + 15 + 14 + 5 + 14 + 16 + 17 + 8 + 3 + 95 + 89 + 8 + 8 + 1 + 10 + 6 + 3 + 5 + 18 + 15 + 1 + 1 + 12 + 95 + 89 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1274 0 m 1,0,-1 + 1121 0 l 1,1,-1 + 1121 653 l 1,2,-1 + 359 653 l 1,3,-1 + 359 0 l 1,4,-1 + 168 0 l 1,5,-1 + 168 1409 l 1,6,-1 + 359 1409 l 1,7,-1 + 359 813 l 1,8,-1 + 1121 813 l 1,9,-1 + 1121 1409 l 1,10,-1 + 1312 1409 l 1,11,-1 + 1312 160 l 1,12,-1 + 1451 160 l 1,13,-1 + 1451 -408 l 1,14,-1 + 1274 -408 l 1,15,-1 + 1274 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C68 +Encoding: 11368 11368 2215 +Width: 1139 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 28 + 25 + 21 + 21 + 22 + 12 + 7 + 7 + 10 + 9 + 22 + 9 + 29 + 30 + 23 + 0 + 22 + 21 + 0 + 28 + 28 + 3 + 10 + 12 + 12 + 7 + 81 + 89 + 12 + 21 + 3 + 17 + 80 + 89 + 3 + 16 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +SRP2 +IP +SRP1 +SHP[rp1] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +317 897 m 1,0,1 + 375 1003 375 1003 456.5 1052.5 c 128,-1,2 + 538 1102 538 1102 663 1102 c 0,3,4 + 839 1102 839 1102 922.5 1014.5 c 128,-1,5 + 1006 927 1006 927 1006 721 c 2,6,-1 + 1006 131 l 1,7,-1 + 1123 131 l 1,8,-1 + 1123 -408 l 1,9,-1 + 960 -408 l 1,10,-1 + 960 0 l 1,11,-1 + 825 0 l 1,12,-1 + 825 686 l 2,13,14 + 825 800 825 800 804 855.5 c 128,-1,15 + 783 911 783 911 735 937 c 128,-1,16 + 687 963 687 963 602 963 c 0,17,18 + 475 963 475 963 398.5 875 c 128,-1,19 + 322 787 322 787 322 638 c 2,20,-1 + 322 0 l 1,21,-1 + 142 0 l 1,22,-1 + 142 1484 l 1,23,-1 + 322 1484 l 1,24,-1 + 322 1098 l 2,25,26 + 322 1037 322 1037 318.5 972 c 128,-1,27 + 315 907 315 907 314 897 c 1,28,-1 + 317 897 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uni2C69 +Encoding: 11369 11369 2216 +Width: 1366 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 0 + 7 + 15 + 13 + 13 + 9 + 9 + 10 + 14 + 15 + 15 + 3 + 6 + 4 + 4 + 1 + 3 + 10 + 3 + 16 + 17 + 8 + 0 + 13 + 7 + 13 + 6 + 14 + 11 + 3 + 10 + 18 + 4 + 6 + 6 + 1 + 95 + 89 + 6 + 18 +SVTCA[y-axis] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +663 797 m 1,0,-1 + 1206 160 l 1,1,-1 + 1345 160 l 1,2,-1 + 1345 -408 l 1,3,-1 + 1168 -408 l 1,4,-1 + 1168 0 l 1,5,-1 + 1106 0 l 1,6,-1 + 543 680 l 1,7,-1 + 359 540 l 1,8,-1 + 359 0 l 1,9,-1 + 168 0 l 1,10,-1 + 168 1409 l 1,11,-1 + 359 1409 l 1,12,-1 + 359 703 l 1,13,-1 + 1038 1409 l 1,14,-1 + 1263 1409 l 1,15,-1 + 663 797 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C6A +Encoding: 11370 11370 2217 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 15 + 10 + 10 + 12 + 9 + 0 + 6 + 7 + 8 + 8 + 13 + 12 + 6 + 2 + 2 + 3 + 12 + 3 + 17 + 16 + 9 + 1 + 6 + 0 + 6 + 7 + 13 + 15 + 15 + 10 + 81 + 89 + 15 + 21 + 7 + 15 + 4 + 0 + 3 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +SRP0 +MDRP[rnd,white] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +450 494 m 1,0,-1 + 318 385 l 1,1,-1 + 318 0 l 1,2,-1 + 138 0 l 1,3,-1 + 138 1484 l 1,4,-1 + 318 1484 l 1,5,-1 + 318 557 l 1,6,-1 + 793 1082 l 1,7,-1 + 1004 1082 l 1,8,-1 + 565 617 l 1,9,-1 + 924 131 l 1,10,-1 + 1021 131 l 1,11,-1 + 1021 -408 l 1,12,-1 + 858 -408 l 1,13,-1 + 858 0 l 1,14,-1 + 811 0 l 1,15,-1 + 450 494 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C6B +Encoding: 11371 11371 2218 +Width: 1251 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 1 + 0 + 5 + 9 + 10 + 3 + 3 + 6 + 9 + 0 + 4 + 13 + 12 + 9 + 6 + 7 + 6 + 95 + 89 + 7 + 3 + 4 + 10 + 3 + 10 + 95 + 89 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,white] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1187 -408 m 1,0,-1 + 1010 -408 l 1,1,-1 + 1010 0 l 1,2,-1 + 65 0 l 1,3,-1 + 65 143 l 1,4,-1 + 923 1253 l 1,5,-1 + 138 1253 l 1,6,-1 + 138 1409 l 1,7,-1 + 1140 1409 l 1,8,-1 + 1140 1270 l 1,9,-1 + 282 156 l 1,10,-1 + 1187 156 l 1,11,-1 + 1187 -408 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C6C +Encoding: 11372 11372 2219 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 2 + 6 + 6 + 10 + 9 + 7 + 3 + 0 + 9 + 0 + 13 + 12 + 6 + 3 + 4 + 3 + 80 + 89 + 4 + 15 + 1 + 7 + 0 + 7 + 80 + 89 + 10 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,white] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +49 0 m 1,0,-1 + 49 137 l 1,1,-1 + 710 943 l 1,2,-1 + 89 943 l 1,3,-1 + 89 1082 l 1,4,-1 + 913 1082 l 1,5,-1 + 913 945 l 1,6,-1 + 251 139 l 1,7,-1 + 950 139 l 1,8,-1 + 950 -408 l 1,9,-1 + 787 -408 l 1,10,-1 + 787 0 l 1,11,-1 + 49 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C6D +Encoding: 11373 11373 2220 +Width: 1500 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 23 + 6 + 17 + 0 + 0 + 14 + 6 + 14 + 26 + 27 + 1 + 11 + 0 + 12 + 3 + 9 + 20 + 95 + 89 + 9 + 4 + 3 + 15 + 95 + 89 + 3 + 19 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1142 0 m 1,0,-1 + 1142 71 l 1,1,2 + 960 -20 960 -20 790 -20 c 0,3,4 + 463 -20 463 -20 280 175 c 128,-1,5 + 97 370 97 370 97 711 c 0,6,7 + 97 1049 97 1049 282 1239.5 c 128,-1,8 + 467 1430 467 1430 797 1430 c 0,9,10 + 992 1430 992 1430 1152 1353 c 1,11,-1 + 1302 1409 l 1,12,-1 + 1333 1409 l 1,13,-1 + 1333 0 l 1,14,-1 + 1142 0 l 1,0,-1 +790 133 m 0,15,16 + 1024 133 1024 133 1142 236 c 1,17,-1 + 1142 1177 l 1,18,19 + 1027 1277 1027 1277 797 1277 c 0,20,21 + 556 1277 556 1277 423.5 1128.5 c 128,-1,22 + 291 980 291 980 291 711 c 0,23,24 + 291 440 291 440 424.5 286.5 c 128,-1,25 + 558 133 558 133 790 133 c 0,15,16 +EndSplineSet +EndChar + +StartChar: uni2C71 +Encoding: 11377 11377 2221 +Width: 1222 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 3 + 2 + 1 + 0 + 6 + 2 + 6 + 22 + 14 + 23 + 12 + 18 + 83 + 89 + 15 + 15 + 12 + 16 + 6 + 1 + 2 + 15 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +613 0 m 1,0,-1 + 400 0 l 1,1,-1 + 7 1082 l 1,2,-1 + 199 1082 l 1,3,-1 + 437 378 l 2,4,5 + 450 338 450 338 506 141 c 1,6,-1 + 522 194 l 1,7,-1 + 580 376 l 1,8,-1 + 722 840 l 2,9,10 + 764 977 764 977 825 1039.5 c 128,-1,11 + 886 1102 886 1102 990 1102 c 0,12,13 + 1155 1102 1155 1102 1251 947 c 1,14,-1 + 1145 847 l 1,15,16 + 1104 907 1104 907 1074.5 926.5 c 128,-1,17 + 1045 946 1045 946 1009 946 c 0,18,19 + 967 946 967 946 942 917 c 128,-1,20 + 917 888 917 888 894 820 c 2,21,-1 + 613 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C72 +Encoding: 11378 11378 2222 +Width: 2124 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 20 + 19 + 30 + 14 + 23 + 19 + 4 + 37 + 2 + 38 + 27 + 3 + 14 + 30 + 23 + 3 + 18 + 19 + 3 + 18 + 18 + 9 + 18 + 0 + 5 + 95 + 89 + 3 + 0 + 4 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1969 1430 m 0,0,1 + 2127 1430 2127 1430 2225 1283 c 1,2,-1 + 2112 1176 l 1,3,4 + 2046 1275 2046 1275 1973 1275 c 0,5,6 + 1923 1275 1923 1275 1893 1246.5 c 128,-1,7 + 1863 1218 1863 1218 1843 1149 c 2,8,-1 + 1511 0 l 1,9,-1 + 1283 0 l 1,10,-1 + 1039 895 l 2,11,12 + 1023 948 1023 948 1000.5 1046.5 c 128,-1,13 + 978 1145 978 1145 969 1195 c 1,14,15 + 951 1084 951 1084 898 895 c 2,16,-1 + 652 0 l 1,17,-1 + 424 0 l 1,18,-1 + 9 1409 l 1,19,-1 + 208 1409 l 1,20,-1 + 461 514 l 2,21,22 + 506 346 506 346 544 168 c 1,23,24 + 568 278 568 278 599.5 408 c 128,-1,25 + 631 538 631 538 877 1409 c 1,26,-1 + 1060 1409 l 1,27,-1 + 1305 532 l 2,28,29 + 1361 317 1361 317 1393 168 c 1,30,-1 + 1402 203 l 1,31,32 + 1459 447 1459 447 1478 514 c 2,33,-1 + 1664 1179 l 2,34,35 + 1699 1308 1699 1308 1770 1369 c 128,-1,36 + 1841 1430 1841 1430 1969 1430 c 0,0,1 +EndSplineSet +EndChar + +StartChar: uni2C73 +Encoding: 11379 11379 2223 +Width: 1722 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 12 + 3 + 17 + 3 + 35 + 27 + 36 + 9 + 8 + 8 + 35 + 24 + 31 + 83 + 89 + 28 + 24 + 16 + 17 + 12 + 3 + 3 + 7 + 14 + 16 + 8 + 15 + 7 + 21 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1174 0 m 1,0,-1 + 965 0 l 1,1,-1 + 792 698 l 1,2,-1 + 740 933 l 1,3,-1 + 733 898 l 1,4,-1 + 686 694 l 1,5,-1 + 508 0 l 1,6,-1 + 300 0 l 1,7,-1 + -3 1082 l 1,8,-1 + 175 1082 l 1,9,-1 + 358 353 l 2,10,11 + 367 320 367 320 401 150 c 1,12,-1 + 436 294 l 1,13,-1 + 644 1082 l 1,14,-1 + 837 1082 l 1,15,-1 + 1026 345 l 1,16,-1 + 1072 149 l 1,17,18 + 1097 287 1097 287 1117 353 c 2,19,-1 + 1251 864 l 2,20,21 + 1274 952 1274 952 1307.5 1004 c 128,-1,22 + 1341 1056 1341 1056 1387 1079 c 128,-1,23 + 1433 1102 1433 1102 1517 1102 c 0,24,25 + 1591 1102 1591 1102 1652 1067 c 128,-1,26 + 1713 1032 1713 1032 1766 947 c 1,27,-1 + 1660 847 l 1,28,29 + 1630 892 1630 892 1598.5 919 c 128,-1,30 + 1567 946 1567 946 1524 946 c 0,31,32 + 1480 946 1480 946 1453 915 c 128,-1,33 + 1426 884 1426 884 1409 820 c 2,34,-1 + 1174 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C74 +Encoding: 11380 11380 2224 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 43 + 26 + 9 + 28 + 7 + 15 + 30 + 30 + 7 + 9 + 3 + 5 + 0 + 18 + 3 + 3 + 5 + 5 + 22 + 0 + 3 + 37 + 36 + 3 + 18 + 28 + 18 + 81 + 89 + 7 + 22 + 28 + 28 + 2 + 25 + 15 + 12 + 33 + 80 + 89 + 12 + 16 + 2 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 440 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1024 1540 basechar 0 +AnchorPoint: "Anchor-20" 1024 -380 basechar 0 +AnchorPoint: "Anchor-16" 580 1200 basechar 0 +AnchorPoint: "Anchor-15" 1030 1260 basechar 0 +AnchorPoint: "Anchor-14" 514 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1017 1082 m 1,0,-1 + 613 0 l 1,1,-1 + 400 0 l 1,2,-1 + 202 547 l 1,3,-1 + 96 511 l 1,4,-1 + 45 639 l 1,5,6 + 115 659 115 659 156 675 c 1,7,8 + 118 789 118 789 118 861 c 0,9,10 + 118 963 118 963 183 1028 c 128,-1,11 + 248 1093 248 1093 356 1093 c 0,12,13 + 448 1093 448 1093 504.5 1033 c 128,-1,14 + 561 973 561 973 561 874 c 0,15,16 + 561 785 561 785 511.5 721 c 128,-1,17 + 462 657 462 657 352 605 c 1,18,-1 + 437 378 l 2,19,20 + 456 329 456 329 492 194 c 2,21,-1 + 506 141 l 1,22,-1 + 522 194 l 1,23,-1 + 580 376 l 1,24,-1 + 826 1082 l 1,25,-1 + 1017 1082 l 1,0,-1 +273 860 m 0,26,27 + 273 815 273 815 307 730 c 1,28,29 + 412 789 412 789 412 866 c 0,30,31 + 412 900 412 900 395 921.5 c 128,-1,32 + 378 943 378 943 349 943 c 256,33,34 + 320 943 320 943 296.5 923.5 c 128,-1,35 + 273 904 273 904 273 860 c 0,26,27 +EndSplineSet +EndChar + +StartChar: uni2C75 +Encoding: 11381 11381 2225 +Width: 1182 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 6 + 2 + 2 + 3 + 0 + 3 + 9 + 8 + 6 + 1 + 95 + 89 + 6 + 6 + 3 + 4 + 3 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1121 653 m 1,0,-1 + 359 653 l 1,1,-1 + 359 0 l 1,2,-1 + 168 0 l 1,3,-1 + 168 1409 l 1,4,-1 + 359 1409 l 1,5,-1 + 359 813 l 1,6,-1 + 1121 813 l 1,7,-1 + 1121 653 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C76 +Encoding: 11382 11382 2226 +Width: 871 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 1 + 5 + 5 + 6 + 2 + 6 + 9 + 8 + 1 + 4 + 81 + 89 + 1 + 1 + 6 + 7 + 15 + 6 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +322 1082 m 1,0,-1 + 322 624 l 1,1,-1 + 809 624 l 1,2,-1 + 809 493 l 1,3,-1 + 322 493 l 1,4,-1 + 322 0 l 1,5,-1 + 142 0 l 1,6,-1 + 142 1082 l 1,7,-1 + 322 1082 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni2C77 +Encoding: 11383 11383 2227 +Width: 1328 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 22 + 0 + 28 + 9 + 15 + 12 + 5 + 5 + 15 + 0 + 3 + 32 + 31 + 19 + 25 + 80 + 89 + 19 + 16 + 9 + 8 + 16 + 28 + 15 + 2 + 15 + 80 + 89 + 2 + 22 +SVTCA[y-axis] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 737 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 1328 1540 basechar 0 +AnchorPoint: "Anchor-20" 1328 -380 basechar 0 +AnchorPoint: "Anchor-16" 680 1200 basechar 0 +AnchorPoint: "Anchor-15" 1109 1260 basechar 0 +AnchorPoint: "Anchor-14" 635 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +1242 565 m 0,0,1 + 1242 -20 1242 -20 658 -20 c 0,2,3 + 366 -20 366 -20 225.5 122 c 128,-1,4 + 85 264 85 264 85 545 c 0,5,6 + 85 776 85 776 196.5 925 c 128,-1,7 + 308 1074 308 1074 505 1106 c 1,8,-1 + 526 970 l 1,9,10 + 402 943 402 943 338 834 c 128,-1,11 + 274 725 274 725 274 541 c 0,12,13 + 274 335 274 335 345.5 233 c 128,-1,14 + 417 131 417 131 572 122 c 1,15,-1 + 572 699 l 2,16,17 + 572 892 572 892 649 998 c 128,-1,18 + 726 1104 726 1104 884 1104 c 0,19,20 + 1051 1104 1051 1104 1146.5 958 c 128,-1,21 + 1242 812 1242 812 1242 565 c 0,0,1 +1053 567 m 0,22,23 + 1053 760 1053 760 1009.5 865.5 c 128,-1,24 + 966 971 966 971 886 971 c 0,25,26 + 742 971 742 971 742 702 c 2,27,-1 + 742 122 l 1,28,29 + 903 129 903 129 978 237 c 128,-1,30 + 1053 345 1053 345 1053 567 c 0,22,23 +EndSplineSet +EndChar + +StartChar: uni2E17 +Encoding: 11799 11799 2228 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 5 + 1 + 4 + 0 + 1 + 0 + 8 + 9 + 1 + 7 + 1 + 7 + 3 + 5 + 3 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +618 741 m 1,0,-1 + 65 501 l 1,1,-1 + 65 663 l 1,2,-1 + 618 903 l 1,3,-1 + 618 741 l 1,0,-1 +618 379 m 1,4,-1 + 65 139 l 1,5,-1 + 65 301 l 1,6,-1 + 618 541 l 1,7,-1 + 618 379 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uniA717 +Encoding: 42775 42775 2229 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 64 + 1 + 1 + 6 + 128 + 4 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +IP +MDAP[rnd] +SMD +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-182 1139 m 1,0,-1 + -182 1286 l 1,1,-1 + -28 1286 l 1,2,-1 + -28 1139 l 1,3,-1 + -182 1139 l 1,0,-1 +57 950 m 1,4,-1 + 57 1484 l 1,5,-1 + 180 1484 l 1,6,-1 + 180 950 l 1,7,-1 + 57 950 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uniA718 +Encoding: 42776 42776 2230 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 7 + 7 + 1 + 6 + 6 + 3 + 128 + 1 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +391 1380 m 1,0,-1 + 26 1015 l 1,1,-1 + -61 1101 l 1,2,-1 + 304 1466 l 1,3,-1 + 391 1380 l 1,0,-1 +-77 1337 m 1,4,-1 + -77 1484 l 1,5,-1 + 77 1484 l 1,6,-1 + 77 1337 l 1,7,-1 + -77 1337 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uniA719 +Encoding: 42777 42777 2231 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 7 + 7 + 6 + 128 + 2 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +274 1119 m 1,0,-1 + -274 1119 l 1,1,-1 + -274 1240 l 1,2,-1 + 274 1240 l 1,3,-1 + 274 1119 l 1,0,-1 +-77 1337 m 1,4,-1 + -77 1484 l 1,5,-1 + 77 1484 l 1,6,-1 + 77 1337 l 1,7,-1 + -77 1337 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uniA71A +Encoding: 42778 42778 2232 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 128 + 0 + 5 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-274 1240 m 1,0,-1 + 149 1240 l 1,1,-1 + 149 1484 l 1,2,-1 + 274 1484 l 1,3,-1 + 274 1119 l 1,4,-1 + -274 1119 l 1,5,-1 + -274 1240 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniA71B +Encoding: 42779 42779 2233 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 2 + 3 + 0 + 3 + 5 + 3 + 10 + 11 + 1 + 5 + 5 + 3 + 8 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +872 1546 m 1,0,-1 + 586 1546 l 1,1,-1 + 586 1031 l 1,2,-1 + 439 1031 l 1,3,-1 + 439 1546 l 1,4,-1 + 153 1546 l 1,5,-1 + 153 1569 l 1,6,-1 + 500 1910 l 1,7,-1 + 517 1910 l 1,8,-1 + 872 1568 l 1,9,-1 + 872 1546 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniA71C +Encoding: 42780 42780 2234 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 8 + 5 + 0 + 5 + 3 + 3 + 10 + 11 + 8 + 4 + 4 + 1 + 7 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +872 1373 m 1,0,-1 + 517 1031 l 1,1,-1 + 500 1031 l 1,2,-1 + 153 1372 l 1,3,-1 + 153 1395 l 1,4,-1 + 439 1395 l 1,5,-1 + 439 1910 l 1,6,-1 + 586 1910 l 1,7,-1 + 586 1395 l 1,8,-1 + 872 1395 l 1,9,-1 + 872 1373 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniA71D +Encoding: 42781 42781 2235 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 7 + 3 + 2 + 4 + 3 + 4 + 9 + 8 + 1 + 1 + 3 + 5 + 4 + 3 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +339 1234 m 1,0,-1 + 234 1234 l 1,1,-1 + 178 1997 l 1,2,-1 + 396 1997 l 1,3,-1 + 339 1234 l 1,0,-1 +176 934 m 1,4,-1 + 176 1086 l 1,5,-1 + 391 1086 l 1,6,-1 + 391 934 l 1,7,-1 + 176 934 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uniA71E +Encoding: 42782 42782 2236 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 6 + 1 + 1 + 5 + 0 + 0 + 8 + 9 + 2 + 2 + 1 + 6 + 6 + 7 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +396 934 m 1,0,-1 + 178 934 l 1,1,-1 + 234 1697 l 1,2,-1 + 339 1697 l 1,3,-1 + 396 934 l 1,0,-1 +391 1997 m 1,4,-1 + 391 1845 l 1,5,-1 + 176 1845 l 1,6,-1 + 176 1997 l 1,7,-1 + 391 1997 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uniA71F +Encoding: 42783 42783 2237 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 6 + 1 + 1 + 5 + 0 + 0 + 8 + 9 + 2 + 1 + 6 + 7 + 1 +SVTCA[y-axis] +MDAP[rnd] +MDAP[rnd] +MDRP[min,rnd,black] +SRP1 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +396 421 m 1,0,-1 + 178 421 l 1,1,-1 + 234 1184 l 1,2,-1 + 339 1184 l 1,3,-1 + 396 421 l 1,0,-1 +391 1484 m 1,4,-1 + 391 1332 l 1,5,-1 + 176 1332 l 1,6,-1 + 176 1484 l 1,7,-1 + 391 1484 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uniA720 +Encoding: 42784 42784 2238 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 5 + 0 + 9 + 128 + 7 + 3 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +312 1359 m 1,0,-1 + 73 1359 l 1,1,-1 + 73 1129 l 1,2,-1 + -52 1129 l 1,3,-1 + -52 1359 l 1,4,-1 + -227 1359 l 1,5,-1 + -227 1129 l 1,6,-1 + -352 1129 l 1,7,-1 + -352 1484 l 1,8,-1 + 312 1484 l 1,9,-1 + 312 1359 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniA721 +Encoding: 42785 42785 2239 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 8 + 4 + 4 + 6 + 3 + 128 + 1 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +312 0 m 1,0,-1 + -352 0 l 1,1,-1 + -352 355 l 1,2,-1 + -227 355 l 1,3,-1 + -227 125 l 1,4,-1 + -52 125 l 1,5,-1 + -52 355 l 1,6,-1 + 73 355 l 1,7,-1 + 73 125 l 1,8,-1 + 312 125 l 1,9,-1 + 312 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniA788 +Encoding: 42888 42888 2240 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 3 + 5 + 0 + 3 + 7 + 8 + 4 + 128 + 15 + 2 + 1 + 8 + 2 +SVTCA[y-axis] +MDAP[rnd] +SDB +DELTAP1 +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +28 -425 m 1,0,-1 + 263 -140 l 1,1,-1 + 435 -140 l 1,2,-1 + 661 -425 l 1,3,-1 + 491 -425 l 1,4,-1 + 342 -235 l 1,5,-1 + 196 -425 l 1,6,-1 + 28 -425 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniA789 +Encoding: 42889 42889 2241 +Width: 569 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 0 + 4 + 4 + 3 + 7 + 7 + 8 + 9 + 5 + 4 + 0 + 2 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +187 875 m 1,0,-1 + 187 1082 l 1,1,-1 + 382 1082 l 1,2,-1 + 382 875 l 1,3,-1 + 187 875 l 1,0,-1 +187 201 m 1,4,-1 + 187 408 l 1,5,-1 + 382 408 l 1,6,-1 + 382 201 l 1,7,-1 + 187 201 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uniA78A +Encoding: 42890 42890 2242 +Width: 896 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 4 + 0 + 7 + 2 + 0 + 2 + 8 + 9 + 5 + 4 + 0 + 1 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +100 726 m 1,0,-1 + 100 874 l 1,1,-1 + 796 874 l 1,2,-1 + 796 726 l 1,3,-1 + 100 726 l 1,0,-1 +100 244 m 1,4,-1 + 100 392 l 1,5,-1 + 796 392 l 1,6,-1 + 796 244 l 1,7,-1 + 100 244 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uniA78B +Encoding: 42891 42891 2243 +Width: 391 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 0 + 0 + 6 + 7 + 1 + 5 + 0 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +285 1259 m 1,0,-1 + 232 601 l 1,1,-1 + 151 601 l 1,2,-1 + 100 1259 l 1,3,-1 + 100 1484 l 1,4,-1 + 285 1484 l 1,5,-1 + 285 1259 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniA78C +Encoding: 42892 42892 2244 +Width: 391 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 3 + 0 + 0 + 6 + 7 + 2 + 4 + 0 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +285 1259 m 1,0,-1 + 232 848 l 1,1,-1 + 151 848 l 1,2,-1 + 100 1259 l 1,3,-1 + 100 1484 l 1,4,-1 + 285 1484 l 1,5,-1 + 285 1259 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniFB01 +Encoding: 64257 64257 2245 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 44 + 6 + 4 + 2 + 21 + 19 + 13 + 1 + 1 + 2 + 22 + 26 + 26 + 25 + 29 + 2 + 29 + 30 + 31 + 28 + 15 + 24 + 25 + 83 + 89 + 24 + 0 + 10 + 15 + 80 + 89 + 10 + 0 + 0 + 4 + 5 + 4 + 80 + 89 + 19 + 5 + 15 + 26 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +361 951 m 1,0,-1 + 361 0 l 1,1,-1 + 181 0 l 1,2,-1 + 181 951 l 1,3,-1 + 29 951 l 1,4,-1 + 29 1082 l 1,5,-1 + 181 1082 l 1,6,-1 + 181 1204 l 2,7,8 + 181 1352 181 1352 246 1417 c 128,-1,9 + 311 1482 311 1482 445 1482 c 0,10,11 + 520 1482 520 1482 572 1470 c 1,12,-1 + 572 1333 l 1,13,14 + 527 1341 527 1341 492 1341 c 0,15,16 + 423 1341 423 1341 392 1306 c 128,-1,17 + 361 1271 361 1271 361 1179 c 2,18,-1 + 361 1082 l 1,19,-1 + 572 1082 l 1,20,-1 + 572 951 l 1,21,-1 + 361 951 l 1,0,-1 +706 1312 m 1,22,-1 + 706 1484 l 1,23,-1 + 886 1484 l 1,24,-1 + 886 1312 l 1,25,-1 + 706 1312 l 1,22,-1 +706 0 m 1,26,-1 + 706 1082 l 1,27,-1 + 886 1082 l 1,28,-1 + 886 0 l 1,29,-1 + 706 0 l 1,26,-1 +EndSplineSet +EndChar + +StartChar: uniFB02 +Encoding: 64258 64258 2246 +Width: 1024 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 21 + 19 + 1 + 6 + 4 + 2 + 13 + 1 + 1 + 2 + 22 + 25 + 2 + 25 + 26 + 27 + 24 + 0 + 10 + 15 + 80 + 89 + 10 + 0 + 0 + 4 + 5 + 4 + 80 + 89 + 19 + 5 + 15 + 22 + 1 + 21 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MIAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +361 951 m 1,0,-1 + 361 0 l 1,1,-1 + 181 0 l 1,2,-1 + 181 951 l 1,3,-1 + 29 951 l 1,4,-1 + 29 1082 l 1,5,-1 + 181 1082 l 1,6,-1 + 181 1204 l 2,7,8 + 181 1352 181 1352 246 1417 c 128,-1,9 + 311 1482 311 1482 445 1482 c 0,10,11 + 520 1482 520 1482 572 1470 c 1,12,-1 + 572 1333 l 1,13,14 + 527 1341 527 1341 492 1341 c 0,15,16 + 423 1341 423 1341 392 1306 c 128,-1,17 + 361 1271 361 1271 361 1179 c 2,18,-1 + 361 1082 l 1,19,-1 + 572 1082 l 1,20,-1 + 572 951 l 1,21,-1 + 361 951 l 1,0,-1 +707 0 m 1,22,-1 + 707 1484 l 1,23,-1 + 887 1484 l 1,24,-1 + 887 0 l 1,25,-1 + 707 0 l 1,22,-1 +EndSplineSet +EndChar + +StartChar: uniFB1D +Encoding: 64285 64285 2247 +Width: 532 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1289 1497 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 266 -331 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" yod hiriq +EndChar + +StartChar: uniFB1E +Encoding: 64286 64286 2248 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +PUSHB_7 + 6 + 15 + 0 + 1 + 0 + 10 + 3 +PUSHW_1 + 319 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-10" 0 1430 mark 0 +AnchorPoint: "Anchor-3" 0 1430 mark 0 +LayerCount: 2 +Fore +SplineSet +330 1763 m 1,0,1 + 330 1618 330 1618 240 1532 c 128,-1,2 + 150 1446 150 1446 0 1446 c 256,3,4 + -150 1446 -150 1446 -240 1533.5 c 128,-1,5 + -330 1621 -330 1621 -330 1763 c 1,6,-1 + -168 1763 l 1,7,8 + -168 1686 -168 1686 -123 1639.5 c 128,-1,9 + -78 1593 -78 1593 0 1593 c 0,10,11 + 77 1593 77 1593 122.5 1641 c 128,-1,12 + 168 1689 168 1689 168 1763 c 1,13,-1 + 330 1763 l 1,0,1 +EndSplineSet +EndChar + +StartChar: yodyod_patah +Encoding: 64287 64287 2249 +Width: 1042 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 520 0 basechar 0 +AnchorPoint: "Anchor-12" 520 1350 basechar 0 +AnchorPoint: "Anchor-11" 360 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 700 0 basechar 0 +AnchorPoint: "Anchor-8" 780 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 520 0 basechar 0 +AnchorPoint: "Anchor-5" 520 0 basechar 0 +AnchorPoint: "Anchor-4" 520 1700 basechar 0 +AnchorPoint: "Anchor-3" 520 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1289 1497 N 1 0 0 1 0 0 2 +Refer: 1289 1497 N 1 0 0 1 510 0 2 +Refer: 1263 1463 N 1 0 0 1 522 547 2 +Ligature2: "Ligature Substitution lookup 5 subtable" yodyod patah +EndChar + +StartChar: alternativeayin +Encoding: 64288 64288 2250 +Width: 1192 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1298 1506 N 1 0 0 1 0 0 3 +EndChar + +StartChar: alefwide +Encoding: 64289 64289 2251 +Width: 1286 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1120 1430 basechar 0 +AnchorPoint: "Anchor-9" 1060 0 basechar 0 +AnchorPoint: "Anchor-8" 1080 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 660 1350 basechar 0 +AnchorPoint: "Anchor-2" 550 260 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1280 1488 N 1 0 0 1 0 0 3 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: daletwide +Encoding: 64290 64290 2252 +Width: 1135 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 730 0 basechar 0 +AnchorPoint: "Anchor-12" 560 1350 basechar 0 +AnchorPoint: "Anchor-11" 560 0 basechar 0 +AnchorPoint: "Anchor-10" 960 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 900 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 560 0 basechar 0 +AnchorPoint: "Anchor-5" 830 0 basechar 0 +AnchorPoint: "Anchor-4" 540 1700 basechar 0 +AnchorPoint: "Anchor-3" 540 1350 basechar 0 +AnchorPoint: "Anchor-2" 380 700 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1283 1491 N 1 0 0 1 0 0 3 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: hewide +Encoding: 64291 64291 2253 +Width: 1298 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1000 1430 basechar 0 +AnchorPoint: "Anchor-9" 960 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-2" 630 700 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1284 1492 N 1 0 0 1 0 0 3 +EndChar + +StartChar: kafwide +Encoding: 64292 64292 2254 +Width: 1075 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 460 0 basechar 0 +AnchorPoint: "Anchor-12" 460 1350 basechar 0 +AnchorPoint: "Anchor-11" 460 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 460 0 basechar 0 +AnchorPoint: "Anchor-5" 460 0 basechar 0 +AnchorPoint: "Anchor-4" 400 1700 basechar 0 +AnchorPoint: "Anchor-3" 400 1350 basechar 0 +AnchorPoint: "Anchor-2" 440 660 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1291 1499 N 1 0 0 1 0 0 3 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: lamedwide +Encoding: 64293 64293 2255 +Width: 1085 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 420 0 basechar 0 +AnchorPoint: "Anchor-12" 680 1350 basechar 0 +AnchorPoint: "Anchor-11" 420 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 700 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 0 1350 basechar 0 +AnchorPoint: "Anchor-6" 420 0 basechar 0 +AnchorPoint: "Anchor-5" 420 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-2" 430 720 basechar 0 +AnchorPoint: "Anchor-0" -130 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1292 1500 N 1 0 0 1 0 0 3 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: finalmemwide +Encoding: 64294 64294 2256 +Width: 1389 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 680 1350 basechar 0 +AnchorPoint: "Anchor-11" 680 0 basechar 0 +AnchorPoint: "Anchor-10" 1200 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 680 0 basechar 0 +AnchorPoint: "Anchor-5" 680 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 660 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1293 1501 N 1 0 0 1 0 0 3 +EndChar + +StartChar: reshwide +Encoding: 64295 64295 2257 +Width: 1094 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 420 1350 basechar 0 +AnchorPoint: "Anchor-11" 700 0 basechar 0 +AnchorPoint: "Anchor-10" 860 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 860 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 500 0 basechar 0 +AnchorPoint: "Anchor-5" 820 0 basechar 0 +AnchorPoint: "Anchor-4" 420 1700 basechar 0 +AnchorPoint: "Anchor-3" 420 1350 basechar 0 +AnchorPoint: "Anchor-2" 410 700 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1304 1512 N 1 0 0 1 0 0 3 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: tavwide +Encoding: 64296 64296 2258 +Width: 1415 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1200 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1100 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 700 1700 basechar 0 +AnchorPoint: "Anchor-3" 700 1350 basechar 0 +AnchorPoint: "Anchor-2" 740 700 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1306 1514 N 1 0 0 1 0 0 3 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: alt_plussign +Encoding: 64297 64297 2259 +Width: 1151 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 6 + 3 + 3 + 1 + 0 + 0 + 1 + 9 + 8 + 6 + 2 + 1 + 2 +PUSHW_1 + 321 +PUSHB_3 + 89 + 1 + 4 +PUSHW_1 + 311 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,grey] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1063 514 m 1,0,-1 + 90 514 l 1,1,-1 + 90 700 l 1,2,-1 + 481 700 l 1,3,-1 + 481 1128 l 1,4,-1 + 668 1128 l 1,5,-1 + 668 700 l 1,6,-1 + 1063 700 l 1,7,-1 + 1063 514 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: shinshindot +Encoding: 64298 64298 2260 +Width: 1495 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 30 + 15 + 30 + 36 + 15 + 16 + 37 +CALL +SRP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 700 0 basechar 0 +AnchorPoint: "Anchor-12" 700 1350 basechar 0 +AnchorPoint: "Anchor-11" 720 0 basechar 0 +AnchorPoint: "Anchor-10" 1700 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1460 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 720 0 basechar 0 +AnchorPoint: "Anchor-5" 720 0 basechar 0 +AnchorPoint: "Anchor-4" 760 1700 basechar 0 +AnchorPoint: "Anchor-3" 760 1350 basechar 0 +AnchorPoint: "Anchor-2" 950 620 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1305 1513 N 1 0 0 1 0 0 3 +Refer: 1265 1465 N 1 0 0 1 1325 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin shindot +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: shinsindot +Encoding: 64299 64299 2261 +Width: 1495 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 700 0 basechar 0 +AnchorPoint: "Anchor-12" 800 1350 basechar 0 +AnchorPoint: "Anchor-11" 720 0 basechar 0 +AnchorPoint: "Anchor-10" 1360 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1300 1350 basechar 0 +AnchorPoint: "Anchor-7" 0 1350 basechar 0 +AnchorPoint: "Anchor-6" 720 0 basechar 0 +AnchorPoint: "Anchor-5" 720 0 basechar 0 +AnchorPoint: "Anchor-4" 760 1700 basechar 0 +AnchorPoint: "Anchor-3" 760 1350 basechar 0 +AnchorPoint: "Anchor-2" 950 620 basechar 0 +AnchorPoint: "Anchor-0" -80 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1305 1513 N 1 0 0 1 0 0 3 +Refer: 1265 1465 N 1 0 0 1 152 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin sindot +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: shindageshshindot +Encoding: 64300 64300 2262 +Width: 1495 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 2 + 95 + 42 + 1 + 42 + 2 + 155 + 42 + 1 + 132 + 42 + 1 + 123 + 42 + 1 + 84 + 42 + 1 + 42 + 1 + 30 + 15 + 30 + 36 + 15 + 16 + 37 +CALL +SRP1 +SHC[rp1] +SRP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SHC[rp1] +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 700 0 basechar 0 +AnchorPoint: "Anchor-12" 700 1350 basechar 0 +AnchorPoint: "Anchor-11" 720 0 basechar 0 +AnchorPoint: "Anchor-10" 1700 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1460 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 720 0 basechar 0 +AnchorPoint: "Anchor-5" 720 0 basechar 0 +AnchorPoint: "Anchor-4" 760 1700 basechar 0 +AnchorPoint: "Anchor-3" 760 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1305 1513 N 1 0 0 1 0 0 3 +Refer: 1265 1465 N 1 0 0 1 1360 0 2 +Refer: 1268 1468 N 1 0 0 1 958 -79 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin dagesh shindot +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin shindot dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: shindageshsindot +Encoding: 64301 64301 2263 +Width: 1495 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 1 + 95 + 30 + 1 + 30 + 1 + 155 + 30 + 1 + 132 + 30 + 1 + 123 + 30 + 1 + 84 + 30 + 1 + 30 +SRP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SHC[rp1] +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 700 0 basechar 0 +AnchorPoint: "Anchor-12" 800 1350 basechar 0 +AnchorPoint: "Anchor-11" 720 0 basechar 0 +AnchorPoint: "Anchor-10" 1360 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1300 1350 basechar 0 +AnchorPoint: "Anchor-7" 0 1350 basechar 0 +AnchorPoint: "Anchor-6" 720 0 basechar 0 +AnchorPoint: "Anchor-5" 720 0 basechar 0 +AnchorPoint: "Anchor-4" 760 1700 basechar 0 +AnchorPoint: "Anchor-3" 760 1350 basechar 0 +AnchorPoint: "Anchor-0" -80 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1305 1513 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 958 -79 2 +Refer: 1265 1465 N 1 0 0 1 145 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin dagesh sindot +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin sindot dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: alefpatah +Encoding: 64302 64302 2264 +Width: 1286 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 460 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 960 0 basechar 0 +AnchorPoint: "Anchor-10" 1120 1430 basechar 0 +AnchorPoint: "Anchor-9" 1060 0 basechar 0 +AnchorPoint: "Anchor-8" 1080 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 360 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 660 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1280 1488 N 1 0 0 1 0 0 3 +Refer: 1263 1463 N 1 0 0 1 643 0 2 +Ligature2: "Ligature Substitution lookup 5 subtable" alef patah +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: alefqamats +Encoding: 64303 64303 2265 +Width: 1286 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 460 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 960 0 basechar 0 +AnchorPoint: "Anchor-10" 1120 1430 basechar 0 +AnchorPoint: "Anchor-9" 1060 0 basechar 0 +AnchorPoint: "Anchor-8" 1080 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 360 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 660 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1280 1488 N 1 0 0 1 0 0 3 +Refer: 1264 1464 N 1 0 0 1 643 0 2 +Ligature2: "Ligature Substitution lookup 5 subtable" alef qamats +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: alefmapiq +Encoding: 64304 64304 2266 +Width: 1286 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 96 + 35 + 1 + 48 + 35 + 1 + 35 +SVTCA[y-axis] +SRP1 +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1120 1430 basechar 0 +AnchorPoint: "Anchor-9" 1060 0 basechar 0 +AnchorPoint: "Anchor-8" 1080 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 660 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1280 1488 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 569 -585 2 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: betdagesh +Encoding: 64305 64305 2267 +Width: 1225 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 16 + 1 + 16 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 560 0 basechar 0 +AnchorPoint: "Anchor-12" 500 1350 basechar 0 +AnchorPoint: "Anchor-11" 560 0 basechar 0 +AnchorPoint: "Anchor-10" 940 1430 basechar 0 +AnchorPoint: "Anchor-9" 840 0 basechar 0 +AnchorPoint: "Anchor-8" 900 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 560 0 basechar 0 +AnchorPoint: "Anchor-5" 560 0 basechar 0 +AnchorPoint: "Anchor-4" 500 1700 basechar 0 +AnchorPoint: "Anchor-3" 500 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1281 1489 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 467 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" bet dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: gimeldagesh +Encoding: 64306 64306 2268 +Width: 866 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 79 + 36 + 1 + 47 + 36 + 1 + 36 +SVTCA[y-axis] +SRP1 +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 450 0 basechar 0 +AnchorPoint: "Anchor-12" 360 1350 basechar 0 +AnchorPoint: "Anchor-11" 450 0 basechar 0 +AnchorPoint: "Anchor-10" 640 1430 basechar 0 +AnchorPoint: "Anchor-9" 580 0 basechar 0 +AnchorPoint: "Anchor-8" 500 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 450 0 basechar 0 +AnchorPoint: "Anchor-5" 450 0 basechar 0 +AnchorPoint: "Anchor-4" 360 1700 basechar 0 +AnchorPoint: "Anchor-3" 360 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1282 1490 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 201 76 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" gimel dagesh +EndChar + +StartChar: daletdagesh +Encoding: 64307 64307 2269 +Width: 1135 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 16 + 1 + 16 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 730 0 basechar 0 +AnchorPoint: "Anchor-12" 540 1350 basechar 0 +AnchorPoint: "Anchor-11" 560 0 basechar 0 +AnchorPoint: "Anchor-10" 960 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 900 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 560 0 basechar 0 +AnchorPoint: "Anchor-5" 830 0 basechar 0 +AnchorPoint: "Anchor-4" 540 1700 basechar 0 +AnchorPoint: "Anchor-3" 540 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1283 1491 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 383 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" dalet dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: hedagesh +Encoding: 64308 64308 2270 +Width: 1298 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 2 + 0 + 16 + 1 + 16 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 600 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1000 1430 basechar 0 +AnchorPoint: "Anchor-9" 960 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1284 1492 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 641 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" he dagesh +EndChar + +StartChar: vavdagesh +Encoding: 64309 64309 2271 +Width: 532 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 4 + 1 + 4 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 360 0 basechar 0 +AnchorPoint: "Anchor-12" 270 1350 basechar 0 +AnchorPoint: "Anchor-11" 270 0 basechar 0 +AnchorPoint: "Anchor-10" 500 1430 basechar 0 +AnchorPoint: "Anchor-9" 180 0 basechar 0 +AnchorPoint: "Anchor-8" 360 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 270 0 basechar 0 +AnchorPoint: "Anchor-5" 270 0 basechar 0 +AnchorPoint: "Anchor-4" 270 1700 basechar 0 +AnchorPoint: "Anchor-3" 270 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1285 1493 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 10 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" vav dagesh +EndChar + +StartChar: zayindagesh +Encoding: 64310 64310 2272 +Width: 662 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 16 + 1 + 16 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 300 0 basechar 0 +AnchorPoint: "Anchor-12" 420 1350 basechar 0 +AnchorPoint: "Anchor-11" 300 0 basechar 0 +AnchorPoint: "Anchor-10" 540 1430 basechar 0 +AnchorPoint: "Anchor-9" 240 0 basechar 0 +AnchorPoint: "Anchor-8" 460 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 300 0 basechar 0 +AnchorPoint: "Anchor-5" 300 0 basechar 0 +AnchorPoint: "Anchor-4" 420 1700 basechar 0 +AnchorPoint: "Anchor-3" 420 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1286 1494 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 27 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" zayin dagesh +EndChar + +StartChar: tetdagesh +Encoding: 64312 64312 2273 +Width: 1337 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 36 + 1 + 36 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 680 0 basechar 0 +AnchorPoint: "Anchor-10" 1180 1430 basechar 0 +AnchorPoint: "Anchor-9" 1020 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 680 0 basechar 0 +AnchorPoint: "Anchor-5" 680 0 basechar 0 +AnchorPoint: "Anchor-4" 660 1700 basechar 0 +AnchorPoint: "Anchor-3" 660 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1288 1496 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 694 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" tet dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: yoddagesh +Encoding: 64313 64313 2274 +Width: 532 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 1 + 203 + 4 + 1 + 143 + 4 + 1 + 127 + 4 + 1 + 47 + 4 + 1 + 0 + 4 + 1 + 4 +SVTCA[y-axis] +SRP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 380 0 basechar 0 +AnchorPoint: "Anchor-12" 270 1350 basechar 0 +AnchorPoint: "Anchor-11" 270 0 basechar 0 +AnchorPoint: "Anchor-10" 500 1430 basechar 0 +AnchorPoint: "Anchor-9" 180 0 basechar 0 +AnchorPoint: "Anchor-8" 360 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 280 0 basechar 0 +AnchorPoint: "Anchor-5" 280 0 basechar 0 +AnchorPoint: "Anchor-4" 270 1700 basechar 0 +AnchorPoint: "Anchor-3" 270 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1289 1497 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 10 172 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" yod dagesh +EndChar + +StartChar: finalkafdagesh +Encoding: 64314 64314 2275 +Width: 1094 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 12 + 1 + 12 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 540 0 basechar 0 +AnchorPoint: "Anchor-12" 400 1350 basechar 0 +AnchorPoint: "Anchor-11" 340 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 1040 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 340 0 basechar 0 +AnchorPoint: "Anchor-5" 420 0 basechar 0 +AnchorPoint: "Anchor-4" 400 1700 basechar 0 +AnchorPoint: "Anchor-3" 400 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1290 1498 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 408 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" finalkaf dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: kafdagesh +Encoding: 64315 64315 2276 +Width: 1075 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 18 + 1 + 18 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 460 0 basechar 0 +AnchorPoint: "Anchor-12" 400 1350 basechar 0 +AnchorPoint: "Anchor-11" 460 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 460 0 basechar 0 +AnchorPoint: "Anchor-5" 460 0 basechar 0 +AnchorPoint: "Anchor-4" 400 1700 basechar 0 +AnchorPoint: "Anchor-3" 400 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1291 1499 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 465 -69 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" kaf dagesh +EndChar + +StartChar: lameddagesh +Encoding: 64316 64316 2277 +Width: 1085 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 1 + 2 + 26 + 1 + 26 + 1 + 4 + 26 + 1 + 26 +SRP1 +DELTAP1 +SHC[rp1] +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 420 0 basechar 0 +AnchorPoint: "Anchor-12" 680 1350 basechar 0 +AnchorPoint: "Anchor-11" 420 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 700 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 0 1350 basechar 0 +AnchorPoint: "Anchor-6" 420 0 basechar 0 +AnchorPoint: "Anchor-5" 420 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" -130 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1292 1500 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 428 16 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" lamed dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: memdagesh +Encoding: 64318 64318 2278 +Width: 1407 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 48 + 34 + 1 + 0 + 34 + 1 + 34 + 1 + 100 + 34 + 1 + 34 +SRP1 +DELTAP1 +SHC[rp1] +SVTCA[y-axis] +SRP1 +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 780 1350 basechar 0 +AnchorPoint: "Anchor-11" 680 0 basechar 0 +AnchorPoint: "Anchor-10" 1200 1430 basechar 0 +AnchorPoint: "Anchor-9" 1060 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 680 0 basechar 0 +AnchorPoint: "Anchor-5" 680 0 basechar 0 +AnchorPoint: "Anchor-4" 780 1700 basechar 0 +AnchorPoint: "Anchor-3" 780 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1294 1502 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 760 16 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" mem dagesh +EndChar + +StartChar: nundagesh +Encoding: 64320 64320 2279 +Width: 797 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 16 + 1 + 16 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 360 0 basechar 0 +AnchorPoint: "Anchor-12" 320 1350 basechar 0 +AnchorPoint: "Anchor-11" 360 0 basechar 0 +AnchorPoint: "Anchor-10" 650 1430 basechar 0 +AnchorPoint: "Anchor-9" 460 0 basechar 0 +AnchorPoint: "Anchor-8" 500 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 360 0 basechar 0 +AnchorPoint: "Anchor-5" 360 0 basechar 0 +AnchorPoint: "Anchor-4" 320 1700 basechar 0 +AnchorPoint: "Anchor-3" 320 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1296 1504 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 201 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" nun dagesh +EndChar + +StartChar: samekhdagesh +Encoding: 64321 64321 2280 +Width: 1343 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 2 + 0 + 34 + 1 + 34 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 640 1350 basechar 0 +AnchorPoint: "Anchor-11" 680 0 basechar 0 +AnchorPoint: "Anchor-10" 1200 1430 basechar 0 +AnchorPoint: "Anchor-9" 1000 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 680 0 basechar 0 +AnchorPoint: "Anchor-5" 680 0 basechar 0 +AnchorPoint: "Anchor-4" 640 1700 basechar 0 +AnchorPoint: "Anchor-3" 640 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1297 1505 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 678 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" samekh dagesh +EndChar + +StartChar: finalpedagesh +Encoding: 64323 64323 2281 +Width: 1276 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 600 0 basechar 0 +AnchorPoint: "Anchor-12" 600 1350 basechar 0 +AnchorPoint: "Anchor-11" 430 0 basechar 0 +AnchorPoint: "Anchor-10" 1100 1430 basechar 0 +AnchorPoint: "Anchor-9" 1200 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 500 0 basechar 0 +AnchorPoint: "Anchor-5" 500 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1299 1507 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 565 186 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" finalpe dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: pedagesh +Encoding: 64324 64324 2282 +Width: 1249 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 600 0 basechar 0 +AnchorPoint: "Anchor-12" 600 1350 basechar 0 +AnchorPoint: "Anchor-11" 600 0 basechar 0 +AnchorPoint: "Anchor-10" 1100 1430 basechar 0 +AnchorPoint: "Anchor-9" 900 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 600 0 basechar 0 +AnchorPoint: "Anchor-5" 600 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1300 1508 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 557 180 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" pe dagesh +EndChar + +StartChar: tsadidagesh +Encoding: 64326 64326 2283 +Width: 1116 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 13 + 1 + 47 + 18 + 1 + 18 + 1 + 36 + 18 + 1 + 16 + 18 + 1 + 18 +SRP1 +DELTAP1 +DELTAP1 +SHC[rp1] +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 600 0 basechar 0 +AnchorPoint: "Anchor-12" 520 1350 basechar 0 +AnchorPoint: "Anchor-11" 600 0 basechar 0 +AnchorPoint: "Anchor-10" 980 1430 basechar 0 +AnchorPoint: "Anchor-9" 800 0 basechar 0 +AnchorPoint: "Anchor-8" 900 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 600 0 basechar 0 +AnchorPoint: "Anchor-5" 600 0 basechar 0 +AnchorPoint: "Anchor-4" 520 1700 basechar 0 +AnchorPoint: "Anchor-3" 520 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1302 1510 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 328 -300 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" tsadi dagesh +EndChar + +StartChar: qofdagesh +Encoding: 64327 64327 2284 +Width: 1208 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 2 + 160 + 29 + 1 + 48 + 29 + 1 + 29 +SVTCA[y-axis] +SRP1 +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 160 0 basechar 0 +AnchorPoint: "Anchor-12" 560 1350 basechar 0 +AnchorPoint: "Anchor-11" 620 0 basechar 0 +AnchorPoint: "Anchor-10" 1080 1430 basechar 0 +AnchorPoint: "Anchor-9" 600 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 620 0 basechar 0 +AnchorPoint: "Anchor-5" 860 0 basechar 0 +AnchorPoint: "Anchor-4" 560 1700 basechar 0 +AnchorPoint: "Anchor-3" 560 1350 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1303 1511 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 596 100 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" qof dagesh +EndChar + +StartChar: reshdagesh +Encoding: 64328 64328 2285 +Width: 1094 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 16 + 1 + 16 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 680 0 basechar 0 +AnchorPoint: "Anchor-12" 420 1350 basechar 0 +AnchorPoint: "Anchor-11" 700 0 basechar 0 +AnchorPoint: "Anchor-10" 860 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 860 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 500 0 basechar 0 +AnchorPoint: "Anchor-5" 820 0 basechar 0 +AnchorPoint: "Anchor-4" 420 1700 basechar 0 +AnchorPoint: "Anchor-3" 420 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1304 1512 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 408 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" resh dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: shindagesh +Encoding: 64329 64329 2286 +Width: 1495 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 1 + 95 + 30 + 1 + 30 + 1 + 155 + 30 + 1 + 132 + 30 + 1 + 123 + 30 + 1 + 84 + 30 + 1 + 30 +SRP1 +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP1 +SHC[rp1] +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 700 0 basechar 0 +AnchorPoint: "Anchor-12" 700 1350 basechar 0 +AnchorPoint: "Anchor-11" 720 0 basechar 0 +AnchorPoint: "Anchor-10" 1360 1430 basechar 0 +AnchorPoint: "Anchor-9" 1080 0 basechar 0 +AnchorPoint: "Anchor-8" 1300 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 720 0 basechar 0 +AnchorPoint: "Anchor-5" 720 0 basechar 0 +AnchorPoint: "Anchor-4" 760 1700 basechar 0 +AnchorPoint: "Anchor-3" 760 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1305 1513 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 952 -79 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: tavdagesh +Encoding: 64330 64330 2287 +Width: 1415 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_5 + 1 + 0 + 26 + 1 + 26 +SVTCA[y-axis] +SRP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +AnchorPoint: "Anchor-13" 660 0 basechar 0 +AnchorPoint: "Anchor-12" 660 1350 basechar 0 +AnchorPoint: "Anchor-11" 660 0 basechar 0 +AnchorPoint: "Anchor-10" 1200 1430 basechar 0 +AnchorPoint: "Anchor-9" 1060 0 basechar 0 +AnchorPoint: "Anchor-8" 1100 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 660 0 basechar 0 +AnchorPoint: "Anchor-5" 660 0 basechar 0 +AnchorPoint: "Anchor-4" 700 1700 basechar 0 +AnchorPoint: "Anchor-3" 700 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1306 1514 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 737 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" tav dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: vavholam +Encoding: 64331 64331 2288 +Width: 532 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 360 0 basechar 0 +AnchorPoint: "Anchor-12" 180 1350 basechar 0 +AnchorPoint: "Anchor-11" 270 0 basechar 0 +AnchorPoint: "Anchor-10" 660 1430 basechar 0 +AnchorPoint: "Anchor-9" 180 0 basechar 0 +AnchorPoint: "Anchor-8" 420 1350 basechar 0 +AnchorPoint: "Anchor-7" 100 1350 basechar 0 +AnchorPoint: "Anchor-6" 270 0 basechar 0 +AnchorPoint: "Anchor-5" 270 0 basechar 0 +AnchorPoint: "Anchor-4" 270 1700 basechar 0 +AnchorPoint: "Anchor-3" 270 1700 basechar 0 +AnchorPoint: "Anchor-0" -80 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1285 1493 N 1 0 0 1 0 0 3 +Refer: 1265 1465 N 1 0 0 1 266 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" vav holam +EndChar + +StartChar: betrafe +Encoding: 64332 64332 2289 +Width: 1225 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 560 0 basechar 0 +AnchorPoint: "Anchor-12" 360 1350 basechar 0 +AnchorPoint: "Anchor-11" 560 0 basechar 0 +AnchorPoint: "Anchor-10" 1020 1430 basechar 0 +AnchorPoint: "Anchor-9" 840 0 basechar 0 +AnchorPoint: "Anchor-8" 900 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 560 0 basechar 0 +AnchorPoint: "Anchor-5" 560 0 basechar 0 +AnchorPoint: "Anchor-4" 500 1700 basechar 0 +AnchorPoint: "Anchor-3" 500 1700 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1281 1489 N 1 0 0 1 0 0 3 +Refer: 1271 1471 N 1 0 0 1 516 0 2 +Ligature2: "Ligature Substitution lookup 5 subtable" bet rafe +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: kafrafe +Encoding: 64333 64333 2290 +Width: 1075 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 460 0 basechar 0 +AnchorPoint: "Anchor-12" 300 1350 basechar 0 +AnchorPoint: "Anchor-11" 460 0 basechar 0 +AnchorPoint: "Anchor-10" 980 1430 basechar 0 +AnchorPoint: "Anchor-9" 760 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 200 1350 basechar 0 +AnchorPoint: "Anchor-6" 460 0 basechar 0 +AnchorPoint: "Anchor-5" 460 0 basechar 0 +AnchorPoint: "Anchor-4" 460 1700 basechar 0 +AnchorPoint: "Anchor-3" 460 1700 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1291 1499 N 1 0 0 1 0 0 3 +Refer: 1271 1471 N 1 0 0 1 469 0 2 +Ligature2: "Ligature Substitution lookup 5 subtable" kaf rafe +EndChar + +StartChar: perafe +Encoding: 64334 64334 2291 +Width: 1249 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 600 0 basechar 0 +AnchorPoint: "Anchor-12" 400 1350 basechar 0 +AnchorPoint: "Anchor-11" 600 0 basechar 0 +AnchorPoint: "Anchor-10" 1100 1430 basechar 0 +AnchorPoint: "Anchor-9" 900 0 basechar 0 +AnchorPoint: "Anchor-8" 1000 1350 basechar 0 +AnchorPoint: "Anchor-7" 240 1350 basechar 0 +AnchorPoint: "Anchor-6" 600 0 basechar 0 +AnchorPoint: "Anchor-5" 600 0 basechar 0 +AnchorPoint: "Anchor-4" 560 1700 basechar 0 +AnchorPoint: "Anchor-3" 560 1700 basechar 0 +AnchorPoint: "Anchor-0" 60 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1300 1508 N 1 0 0 1 0 0 3 +Refer: 1271 1471 N 1 0 0 1 578 0 2 +Ligature2: "Ligature Substitution lookup 5 subtable" pe rafe +EndChar + +StartChar: aleflamed +Encoding: 64335 64335 2292 +Width: 1286 +GlyphClass: 3 +Flags: W +TtInstrs: +NPUSHB + 23 + 0 + 5 + 9 + 10 + 10 + 15 + 6 + 5 + 4 + 1 + 17 + 16 + 16 + 19 + 4 + 1 + 1 + 18 + 15 + 6 + 6 + 4 + 17 +NPUSHW + 9 + 314 + 16 + 9 + 313 + 1 + 4 + 313 + 2 + 310 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +238 1071 m 1,0,-1 + 80 1071 l 1,1,-1 + 80 1665 l 1,2,-1 + 266 1665 l 1,3,-1 + 266 1227 l 1,4,-1 + 352 1227 l 1,5,-1 + 803 606 l 1,6,7 + 953 746 953 746 981 1004 c 2,8,-1 + 1004 1227 l 1,9,-1 + 1194 1227 l 1,10,-1 + 1171 1008 l 2,11,12 + 1161 901 1161 901 1131 815 c 128,-1,13 + 1101 729 1101 729 1051.5 654 c 128,-1,14 + 1002 579 1002 579 899 477 c 1,15,-1 + 1260 0 l 1,16,-1 + 1026 0 l 1,17,-1 + 238 1071 l 1,0,-1 +EndSplineSet +Ligature2: "'dlig' Discretionary Ligatures in Hebrew lookup 1 subtable" alef lamed +EndChar + +StartChar: uniFE20 +Encoding: 65056 65056 2293 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 9 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-23" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +4 1463 m 1,0,-1 + 0 1463 l 2,1,2 + -235 1463 -235 1463 -399.5 1404 c 128,-1,3 + -564 1345 -564 1345 -658 1215 c 1,4,-1 + -791 1215 l 1,5,6 + -671 1405 -671 1405 -480 1495.5 c 128,-1,7 + -289 1586 -289 1586 -20 1586 c 2,8,-1 + 4 1586 l 1,9,-1 + 4 1463 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniFE21 +Encoding: 65057 65057 2294 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_3 + 1 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-22" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +-3 1586 m 1,0,-1 + 21 1586 l 2,1,2 + 289 1586 289 1586 480.5 1495.5 c 128,-1,3 + 672 1405 672 1405 792 1215 c 1,4,-1 + 659 1215 l 1,5,6 + 565 1345 565 1345 400.5 1404 c 128,-1,7 + 236 1463 236 1463 1 1463 c 2,8,-1 + -3 1463 l 1,9,-1 + -3 1586 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uniFE22 +Encoding: 65058 65058 2295 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 0 + 0 + 3 + 11 + 128 + 8 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-23" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +0 1275 m 1,0,1 + -96 1298 -96 1298 -184 1318.5 c 128,-1,2 + -272 1339 -272 1339 -342 1339 c 0,3,4 + -433 1339 -433 1339 -489.5 1327.5 c 128,-1,5 + -546 1316 -546 1316 -577 1293 c 128,-1,6 + -608 1270 -608 1270 -626 1220 c 1,7,-1 + -772 1220 l 1,8,9 + -740 1363 -740 1363 -630 1425.5 c 128,-1,10 + -520 1488 -520 1488 -334 1488 c 0,11,12 + -215 1488 -215 1488 0 1435 c 1,13,-1 + 0 1275 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uniFE23 +Encoding: 65059 65059 2296 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 7 + 128 + 3 + 11 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-22" 0 1200 mark 0 +LayerCount: 2 +Fore +SplineSet +0 1435 m 1,0,1 + 97 1411 97 1411 185.5 1390 c 128,-1,2 + 274 1369 274 1369 343 1369 c 0,3,4 + 475 1369 475 1369 540 1395 c 128,-1,5 + 605 1421 605 1421 625 1488 c 1,6,-1 + 773 1488 l 1,7,8 + 748 1386 748 1386 693.5 1329.5 c 128,-1,9 + 639 1273 639 1273 550 1246.5 c 128,-1,10 + 461 1220 461 1220 339 1220 c 0,11,12 + 261 1220 261 1220 174.5 1237 c 128,-1,13 + 88 1254 88 1254 0 1275 c 1,14,-1 + 0 1435 l 1,0,1 +EndSplineSet +EndChar + +StartChar: uniFFFC +Encoding: 65532 65532 2297 +Width: 2048 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 130 + 7 + 31 + 31 + 18 + 6 + 30 + 30 + 18 + 11 + 1 + 21 + 21 + 18 + 113 + 101 + 24 + 42 + 96 + 107 + 85 + 93 + 93 + 70 + 77 + 74 + 80 + 66 + 88 + 63 + 58 + 3 + 19 + 19 + 58 + 60 + 51 + 88 + 80 + 70 + 107 + 42 + 101 + 10 + 43 + 10 + 0 + 18 + 18 + 120 + 34 + 26 + 46 + 46 + 43 + 15 + 39 + 39 + 43 + 14 + 38 + 38 + 35 + 27 + 43 + 43 + 119 + 40 + 32 + 20 + 46 + 46 + 43 + 110 + 104 + 104 + 71 + 60 + 84 + 84 + 61 + 71 + 1 + 27 + 12 + 36 + 92 + 85 + 11 + 35 + 70 + 48 + 98 + 98 + 93 + 55 + 116 + 22 + 44 + 71 + 27 + 36 + 85 + 35 + 52 + 116 + 44 + 44 + 116 + 52 + 35 + 85 + 36 + 27 + 71 + 8 + 43 + 15 + 7 + 3 + 25 + 25 + 16 + 8 + 4 + 28 + 39 + 31 + 19 + 43 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SHP[rp1] +MDRP[rnd,white] +SHP[rp2] +SHP[rp2] +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +2048 1150 m 1,0,-1 + 1948 1150 l 1,1,-1 + 1948 1373 l 1,2,-1 + 1725 1373 l 1,3,-1 + 1725 1473 l 1,4,-1 + 2048 1473 l 1,5,-1 + 2048 1150 l 1,0,-1 +1473 1373 m 1,6,-1 + 1150 1373 l 1,7,-1 + 1150 1473 l 1,8,-1 + 1473 1473 l 1,9,-1 + 1473 1373 l 1,6,-1 +2048 575 m 1,10,-1 + 1948 575 l 1,11,-1 + 1948 898 l 1,12,-1 + 2048 898 l 1,13,-1 + 2048 575 l 1,10,-1 +898 1373 m 1,14,-1 + 575 1373 l 1,15,-1 + 575 1473 l 1,16,-1 + 898 1473 l 1,17,-1 + 898 1373 l 1,14,-1 +2048 0 m 1,18,-1 + 1725 0 l 1,19,-1 + 1725 100 l 1,20,-1 + 1948 100 l 1,21,-1 + 1948 323 l 1,22,-1 + 2048 323 l 1,23,-1 + 2048 0 l 1,18,-1 +323 1373 m 1,24,-1 + 100 1373 l 1,25,-1 + 100 1150 l 1,26,-1 + 0 1150 l 1,27,-1 + 0 1473 l 1,28,-1 + 323 1473 l 1,29,-1 + 323 1373 l 1,24,-1 +1473 0 m 1,30,-1 + 1150 0 l 1,31,-1 + 1150 100 l 1,32,-1 + 1473 100 l 1,33,-1 + 1473 0 l 1,30,-1 +100 575 m 1,34,-1 + 0 575 l 1,35,-1 + 0 898 l 1,36,-1 + 100 898 l 1,37,-1 + 100 575 l 1,34,-1 +898 0 m 1,38,-1 + 575 0 l 1,39,-1 + 575 100 l 1,40,-1 + 898 100 l 1,41,-1 + 898 0 l 1,38,-1 +323 0 m 1,42,-1 + 0 0 l 1,43,-1 + 0 323 l 1,44,-1 + 100 323 l 1,45,-1 + 100 100 l 1,46,-1 + 323 100 l 1,47,-1 + 323 0 l 1,42,-1 +1603 327 m 0,48,49 + 1510 327 1510 327 1462.5 374.5 c 128,-1,50 + 1415 422 1415 422 1394 541 c 1,51,-1 + 1501 559 l 1,52,53 + 1513 484 1513 484 1534 450 c 128,-1,54 + 1555 416 1555 416 1603 416 c 0,55,56 + 1653 416 1653 416 1675 449.5 c 128,-1,57 + 1697 483 1697 483 1697 578 c 2,58,-1 + 1697 1060 l 1,59,-1 + 1603 1060 l 1,60,-1 + 1603 1150 l 1,61,-1 + 1805 1150 l 1,62,-1 + 1805 581 l 2,63,64 + 1805 451 1805 451 1755 389 c 128,-1,65 + 1705 327 1705 327 1603 327 c 0,48,49 +1336 568 m 0,66,67 + 1336 460 1336 460 1258.5 399.5 c 128,-1,68 + 1181 339 1181 339 1038 339 c 2,69,-1 + 862 339 l 1,70,-1 + 862 1150 l 1,71,-1 + 1004 1150 l 2,72,73 + 1290 1150 1290 1150 1290 954 c 0,74,75 + 1290 886 1290 886 1251.5 835 c 128,-1,76 + 1213 784 1213 784 1135 767 c 1,77,78 + 1234 756 1234 756 1285 702.5 c 128,-1,79 + 1336 649 1336 649 1336 568 c 0,66,67 +1179 940 m 0,80,81 + 1179 1006 1179 1006 1134.5 1034.5 c 128,-1,82 + 1090 1063 1090 1063 1004 1063 c 2,83,-1 + 972 1063 l 1,84,-1 + 972 805 l 1,85,-1 + 1004 805 l 2,86,87 + 1179 805 1179 805 1179 940 c 0,80,81 +1226 577 m 0,88,89 + 1226 646 1226 646 1175.5 683 c 128,-1,90 + 1125 720 1125 720 1024 720 c 2,91,-1 + 972 720 l 1,92,-1 + 972 426 l 1,93,-1 + 1033 426 l 2,94,95 + 1226 426 1226 426 1226 577 c 0,88,89 +778 749 m 0,96,97 + 778 327 778 327 483 327 c 0,98,99 + 334 327 334 327 261 429.5 c 128,-1,100 + 188 532 188 532 188 749 c 0,101,102 + 188 962 188 962 261 1062.5 c 128,-1,103 + 334 1163 334 1163 484 1163 c 0,104,105 + 632 1163 632 1163 705 1062.5 c 128,-1,106 + 778 962 778 962 778 749 c 0,96,97 +665 749 m 0,107,108 + 665 920 665 920 620.5 996.5 c 128,-1,109 + 576 1073 576 1073 484 1073 c 0,110,111 + 388 1073 388 1073 344.5 996 c 128,-1,112 + 301 919 301 919 301 749 c 0,113,114 + 301 575 301 575 346 495.5 c 128,-1,115 + 391 416 391 416 483 416 c 0,116,117 + 576 416 576 416 620.5 491.5 c 128,-1,118 + 665 567 665 567 665 749 c 0,107,108 +EndSplineSet +EndChar + +StartChar: commaaccent +Encoding: 65539 -1 2298 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 7 + 0 + 4 + 9 + 0 + 9 + 12 + 11 + 8 + 8 + 3 + 0 + 9 + 16 + 9 + 2 + 9 + 0 + 3 + 16 + 3 + 32 + 3 + 3 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +MDAP[rnd] +DELTAP1 +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +328 -193 m 2,0,1 + 328 -280 328 -280 306 -333.5 c 128,-1,2 + 284 -387 284 -387 244 -434 c 1,3,-1 + 127 -434 l 1,4,5 + 172 -386 172 -386 196.5 -343 c 128,-1,6 + 221 -300 221 -300 221 -254 c 1,7,-1 + 133 -254 l 1,8,-1 + 133 -98 l 1,9,-1 + 328 -98 l 1,10,-1 + 328 -193 l 2,0,1 +EndSplineSet +EndChar + +StartChar: breve.cyr +Encoding: 65540 -1 2299 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 7 + 8 + 8 + 11 + 3 + 2 + 10 + 7 + 2 + 0 + 128 + 0 + 5 + 142 + 89 + 0 +SVTCA[y-axis] +MDAP[rnd] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,grey] +SHP[rp2] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +340 1200 m 256,0,1 + -16 1200 -16 1200 -27 1520 c 1,2,-1 + 137 1520 l 1,3,4 + 149 1321 149 1321 340 1321 c 256,5,6 + 531 1321 531 1321 543 1520 c 1,7,-1 + 707 1520 l 1,8,9 + 696 1200 696 1200 340 1200 c 256,0,1 +EndSplineSet +EndChar + +StartChar: caroncommaaccent +Encoding: 65541 -1 2300 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 6 + 0 + 4 + 8 + 0 + 8 + 11 + 10 + 8 + 7 + 146 + 89 + 80 + 3 + 96 + 3 + 2 + 160 + 3 + 176 + 3 + 2 + 3 + 8 + 3 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,grey] +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +325 1303 m 2,0,1 + 325 1216 325 1216 303 1157.5 c 128,-1,2 + 281 1099 281 1099 241 1052 c 1,3,-1 + 124 1052 l 1,4,5 + 218 1152 218 1152 218 1242 c 1,6,-1 + 130 1242 l 1,7,-1 + 130 1409 l 1,8,-1 + 325 1409 l 1,9,-1 + 325 1303 l 2,0,1 +EndSplineSet +EndChar + +StartChar: commaaccentrotate +Encoding: 65542 -1 2301 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 34 + 6 + 9 + 4 + 8 + 9 + 8 + 10 + 11 + 9 + 6 + 146 + 89 + 95 + 3 + 111 + 3 + 2 + 175 + 3 + 191 + 3 + 2 + 3 + 80 + 9 + 1 + 15 + 9 + 63 + 9 + 127 + 9 + 3 + 9 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +MDRP[min,rnd,black] +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +130 1317 m 2,0,1 + 130 1404 130 1404 152 1462.5 c 128,-1,2 + 174 1521 174 1521 214 1568 c 1,3,-1 + 331 1568 l 1,4,5 + 237 1468 237 1468 237 1378 c 1,6,-1 + 325 1378 l 1,7,-1 + 325 1211 l 1,8,-1 + 130 1211 l 1,9,-1 + 130 1317 l 2,0,1 +EndSplineSet +EndChar + +StartChar: grave.uc +Encoding: 65543 -1 2302 +Width: 602 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 1 + 4 + 6 + 7 + 159 + 2 + 175 + 2 + 191 + 2 + 3 + 2 + 128 + 31 + 0 + 47 + 0 + 63 + 0 + 95 + 0 + 4 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SMD +MDRP[min,rnd,black] +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +416 1530 m 1,0,-1 + 106 1747 l 1,1,-1 + 106 1776 l 1,2,-1 + 313 1776 l 1,3,-1 + 530 1550 l 1,4,-1 + 530 1530 l 1,5,-1 + 416 1530 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: acute.uc +Encoding: 65544 -1 2303 +Width: 602 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 1 + 4 + 6 + 7 + 159 + 2 + 175 + 2 + 191 + 2 + 3 + 2 + 128 + 31 + 0 + 47 + 0 + 63 + 0 + 95 + 0 + 4 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SMD +MDRP[min,rnd,black] +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +72 1530 m 1,0,-1 + 72 1550 l 1,1,-1 + 289 1776 l 1,2,-1 + 496 1776 l 1,3,-1 + 496 1747 l 1,4,-1 + 186 1530 l 1,5,-1 + 72 1530 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: circumflex.uc +Encoding: 65545 -1 2304 +Width: 664 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 9 + 8 + 3 + 3 + 1 + 6 + 0 + 6 + 11 + 10 + 3 + 159 + 8 + 175 + 8 + 2 + 8 + 128 + 5 + 31 + 1 + 47 + 1 + 63 + 1 + 95 + 1 + 4 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp1] +SMD +MDRP[min,rnd,black] +DELTAP1 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +662 1550 m 1,0,-1 + 662 1530 l 1,1,-1 + 557 1530 l 1,2,-1 + 338 1669 l 1,3,-1 + 336 1669 l 1,4,-1 + 104 1530 l 1,5,-1 + 0 1530 l 1,6,-1 + 0 1550 l 1,7,-1 + 234 1790 l 1,8,-1 + 438 1790 l 1,9,-1 + 662 1550 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: caron.uc +Encoding: 65546 -1 2305 +Width: 664 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 0 + 1 + 5 + 5 + 8 + 3 + 3 + 8 + 10 + 11 + 159 + 3 + 175 + 3 + 2 + 3 + 128 + 31 + 1 + 47 + 1 + 63 + 1 + 95 + 1 + 4 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SMD +MDRP[min,rnd,black] +DELTAP1 +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +438 1530 m 1,0,-1 + 234 1530 l 1,1,-1 + 0 1769 l 1,2,-1 + 0 1790 l 1,3,-1 + 104 1790 l 1,4,-1 + 336 1651 l 1,5,-1 + 338 1651 l 1,6,-1 + 557 1790 l 1,7,-1 + 662 1790 l 1,8,-1 + 662 1769 l 1,9,-1 + 438 1530 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: dieresis.uc +Encoding: 65547 -1 2306 +Width: 647 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 7 + 4 + 0 + 3 + 4 + 3 + 8 + 9 + 1 + 5 + 4 + 5 + 145 + 89 + 0 + 4 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +439 1530 m 1,0,-1 + 439 1714 l 1,1,-1 + 602 1714 l 1,2,-1 + 602 1530 l 1,3,-1 + 439 1530 l 1,0,-1 +45 1530 m 1,4,-1 + 45 1714 l 1,5,-1 + 210 1714 l 1,6,-1 + 210 1530 l 1,7,-1 + 45 1530 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: tilde.uc +Encoding: 65548 -1 2307 +Width: 672 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 20 + 21 + 21 + 25 + 8 + 9 + 9 + 24 + 20 + 13 + 13 + 5 + 143 + 89 + 31 + 13 + 1 + 176 + 13 + 192 + 13 + 208 + 13 + 3 + 15 + 13 + 31 + 13 + 47 + 13 + 3 + 9 + 3 + 13 + 0 + 64 + 0 + 18 + 143 + 89 + 8 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +CALL +SVTCA[y-axis] +SMD +RTG +SRP0 +MDRP[min,rnd,black] +SDS +SDB +DELTAP1 +DELTAP1 +DELTAP2 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +492 1530 m 0,0,1 + 450 1530 450 1530 408 1548.5 c 128,-1,2 + 366 1567 366 1567 327 1589.5 c 128,-1,3 + 288 1612 288 1612 252.5 1630.5 c 128,-1,4 + 217 1649 217 1649 186 1649 c 0,5,6 + 131 1649 131 1649 104 1618 c 128,-1,7 + 77 1587 77 1587 68 1530 c 1,8,-1 + -23 1530 l 1,9,10 + -12 1632 -12 1632 12 1684.5 c 128,-1,11 + 36 1737 36 1737 76.5 1767.5 c 128,-1,12 + 117 1798 117 1798 180 1798 c 0,13,14 + 224 1798 224 1798 266 1779.5 c 128,-1,15 + 308 1761 308 1761 347 1738.5 c 128,-1,16 + 386 1716 386 1716 420.5 1697.5 c 128,-1,17 + 455 1679 455 1679 485 1679 c 0,18,19 + 585 1679 585 1679 602 1798 c 1,20,-1 + 694 1798 l 1,21,22 + 677 1650 677 1650 627 1590 c 128,-1,23 + 577 1530 577 1530 492 1530 c 0,0,1 +EndSplineSet +EndChar + +StartChar: hungarumlaut.uc +Encoding: 65549 -1 2308 +Width: 815 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 10 + 4 + 7 + 1 + 4 + 12 + 13 + 8 + 159 + 2 + 175 + 2 + 191 + 2 + 3 + 2 + 128 + 6 + 31 + 0 + 47 + 0 + 63 + 0 + 95 + 0 + 4 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +SHP[rp2] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +32 1530 m 1,0,-1 + 32 1550 l 1,1,-1 + 229 1777 l 1,2,-1 + 436 1777 l 1,3,-1 + 436 1748 l 1,4,-1 + 126 1530 l 1,5,-1 + 32 1530 l 1,0,-1 +379 1530 m 1,6,-1 + 379 1550 l 1,7,-1 + 576 1777 l 1,8,-1 + 783 1777 l 1,9,-1 + 783 1748 l 1,10,-1 + 473 1530 l 1,11,-1 + 379 1530 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: breve.uc +Encoding: 65550 -1 2309 +Width: 584 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 10 + 11 + 11 + 15 + 4 + 3 + 14 + 10 + 159 + 3 + 175 + 3 + 191 + 3 + 3 + 3 + 128 + 7 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +SMD +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SRP1 +SVTCA[x-axis] +SHP[rp1] +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +308 1530 m 256,0,1 + 175 1530 175 1530 84.5 1599 c 128,-1,2 + -6 1668 -6 1668 -24 1779 c 1,3,-1 + 93 1779 l 1,4,5 + 110 1726 110 1726 164.5 1696 c 128,-1,6 + 219 1666 219 1666 310 1666 c 256,7,8 + 401 1666 401 1666 454.5 1696.5 c 128,-1,9 + 508 1727 508 1727 525 1779 c 1,10,-1 + 642 1779 l 1,11,12 + 621 1665 621 1665 531 1597.5 c 128,-1,13 + 441 1530 441 1530 308 1530 c 256,0,1 +EndSplineSet +EndChar + +StartChar: grave.alt1 +Encoding: 65551 -1 2310 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 67 96 N 1 0 0 1 0 0 2 +EndChar + +StartChar: grave.alt2 +Encoding: 65552 -1 2311 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 67 96 N 1 0 0 1 0 0 2 +EndChar + +StartChar: grave.alt3 +Encoding: 65553 -1 2312 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 67 96 N 1 0 0 1 0 0 2 +EndChar + +StartChar: acute.alt1 +Encoding: 65554 -1 2313 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 118 180 N 1 0 0 1 0 0 2 +EndChar + +StartChar: acute.alt2 +Encoding: 65555 -1 2314 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 118 180 N 1 0 0 1 0 0 2 +EndChar + +StartChar: acute.alt3 +Encoding: 65556 -1 2315 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 118 180 N 1 0 0 1 0 0 2 +EndChar + +StartChar: hookabove.alt1 +Encoding: 65557 -1 2316 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 16 + 8 + 15 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-223 1665 m 256,0,1 + -223 1696 -223 1696 -248.5 1713 c 128,-1,2 + -274 1730 -274 1730 -316 1730 c 0,3,4 + -388 1730 -388 1730 -458 1706 c 1,5,-1 + -489 1805 l 1,6,7 + -399 1835 -399 1835 -293 1835 c 0,8,9 + -56 1835 -56 1835 -56 1686 c 0,10,11 + -56 1627 -56 1627 -96.5 1584.5 c 128,-1,12 + -137 1542 -137 1542 -228 1531 c 1,13,-1 + -228 1481 l 1,14,-1 + -340 1481 l 1,15,-1 + -340 1601 l 1,16,17 + -271 1604 -271 1604 -247 1619 c 128,-1,18 + -223 1634 -223 1634 -223 1665 c 256,0,1 +EndSplineSet +EndChar + +StartChar: hookabove.alt2 +Encoding: 65558 -1 2317 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 16 + 8 + 15 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-485 1665 m 256,0,1 + -485 1696 -485 1696 -510.5 1713 c 128,-1,2 + -536 1730 -536 1730 -578 1730 c 0,3,4 + -650 1730 -650 1730 -720 1706 c 1,5,-1 + -751 1805 l 1,6,7 + -661 1835 -661 1835 -555 1835 c 0,8,9 + -318 1835 -318 1835 -318 1686 c 0,10,11 + -318 1627 -318 1627 -358.5 1584.5 c 128,-1,12 + -399 1542 -399 1542 -490 1531 c 1,13,-1 + -490 1481 l 1,14,-1 + -602 1481 l 1,15,-1 + -602 1601 l 1,16,17 + -533 1604 -533 1604 -509 1619 c 128,-1,18 + -485 1634 -485 1634 -485 1665 c 256,0,1 +EndSplineSet +EndChar + +StartChar: hookabove.alt3 +Encoding: 65559 -1 2318 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_4 + 3 + 16 + 8 + 15 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-670 1665 m 256,0,1 + -670 1696 -670 1696 -695.5 1713 c 128,-1,2 + -721 1730 -721 1730 -763 1730 c 0,3,4 + -835 1730 -835 1730 -905 1706 c 1,5,-1 + -936 1805 l 1,6,7 + -846 1835 -846 1835 -740 1835 c 0,8,9 + -503 1835 -503 1835 -503 1686 c 0,10,11 + -503 1627 -503 1627 -543.5 1584.5 c 128,-1,12 + -584 1542 -584 1542 -675 1531 c 1,13,-1 + -675 1481 l 1,14,-1 + -787 1481 l 1,15,-1 + -787 1601 l 1,16,17 + -718 1604 -718 1604 -694 1619 c 128,-1,18 + -670 1634 -670 1634 -670 1665 c 256,0,1 +EndSplineSet +EndChar + +StartChar: tilde.alt1 +Encoding: 65560 -1 2319 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tilde.alt2 +Encoding: 65561 -1 2320 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: breve.alt1 +Encoding: 65562 -1 2321 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 666 728 N 1 0 0 1 0 0 2 +EndChar + +StartChar: circumflex.alt1 +Encoding: 65563 -1 2322 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 648 710 N 1 0 0 1 0 0 2 +EndChar + +StartChar: dotbelow.alt1 +Encoding: 65564 -1 2323 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_2 + 0 + 2 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-241 -311 m 1,0,-1 + -241 -139 l 1,1,-1 + -61 -139 l 1,2,-1 + -61 -311 l 1,3,-1 + -241 -311 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: acute.alt4 +Encoding: 65565 -1 2324 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 118 180 N 1 0 0 1 0 0 2 +EndChar + +StartChar: acute.alt5 +Encoding: 65566 -1 2325 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 118 180 N 1 0 0 1 0 0 2 +EndChar + +StartChar: grave.alt4 +Encoding: 65567 -1 2326 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 67 96 N 1 0 0 1 0 0 2 +EndChar + +StartChar: grave.alt5 +Encoding: 65568 -1 2327 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 67 96 N 1 0 0 1 0 0 2 +EndChar + +StartChar: hookabove.alt4 +Encoding: 65569 -1 2328 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 715 777 N 1 0 0 1 0 0 3 +EndChar + +StartChar: hookabove.alt5 +Encoding: 65570 -1 2329 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 715 777 N 1 0 0 1 0 0 3 +EndChar + +StartChar: tilde.alt3 +Encoding: 65571 -1 2330 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tilde.alt4 +Encoding: 65572 -1 2331 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tilde.alt5 +Encoding: 65573 -1 2332 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tilde.alt6 +Encoding: 65574 -1 2333 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tilde.alt7 +Encoding: 65575 -1 2334 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tilde.alt8 +Encoding: 65576 -1 2335 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: dotbelow.alt2 +Encoding: 65577 -1 2336 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -528 0 2 +EndChar + +StartChar: dotbelow.alt3 +Encoding: 65578 -1 2337 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -644 0 2 +EndChar + +StartChar: dotbelow.alt4 +Encoding: 65579 -1 2338 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -804 0 2 +EndChar + +StartChar: dotbelow.alt5 +Encoding: 65580 -1 2339 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -576 0 2 +EndChar + +StartChar: dotbelow.alt6 +Encoding: 65581 -1 2340 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -873 0 2 +EndChar + +StartChar: tilde.alt9 +Encoding: 65582 -1 2341 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: dotbelow.alt7 +Encoding: 65583 -1 2342 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -418 0 2 +EndChar + +StartChar: dotbelow.alt8 +Encoding: 65584 -1 2343 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -139 0 2 +EndChar + +StartChar: dotbelow.alt9 +Encoding: 65585 -1 2344 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -69 0 2 +EndChar + +StartChar: dotbelow.alt10 +Encoding: 65586 -1 2345 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -534 0 2 +EndChar + +StartChar: dotbelow.alt11 +Encoding: 65587 -1 2346 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -405 0 2 +EndChar + +StartChar: dotbelow.alt12 +Encoding: 65588 -1 2347 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -425 0 2 +EndChar + +StartChar: dotbelow.alt13 +Encoding: 65589 -1 2348 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -625 0 2 +EndChar + +StartChar: dotbelow.alt14 +Encoding: 65590 -1 2349 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -492 0 2 +EndChar + +StartChar: dotbelow.alt15 +Encoding: 65591 -1 2350 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 2323 -1 N 1 0 0 1 -725 0 2 +EndChar + +StartChar: tilde.alt10 +Encoding: 65592 -1 2351 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tilde.alt11 +Encoding: 65593 -1 2352 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tilde.alt12 +Encoding: 65594 -1 2353 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tilde.alt13 +Encoding: 65595 -1 2354 +Width: 0 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 670 732 N 1 0 0 1 0 0 2 +EndChar + +StartChar: dotlessi.alt1 +Encoding: 65596 -1 2355 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 0 + 0 + 4 + 5 + 2 + 15 + 0 + 21 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +136 0 m 1,0,-1 + 136 1062 l 1,1,-1 + 316 1062 l 1,2,-1 + 316 0 l 1,3,-1 + 136 0 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03080304.cap +Encoding: 65597 -1 2356 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 8 + 159 + 11 + 255 + 11 + 2 + 11 + 64 + 9 + 13 + 72 + 11 + 11 + 5 + 1 + 1 + 4 + 111 + 0 + 1 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP3 +SHP[rp2] +SHP[rp2] +SRP1 +SHP[rp1] +SHP[rp2] +MDAP[rnd] +CALL +DELTAP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +136 1458 m 1,0,-1 + 136 1642 l 1,1,-1 + 299 1642 l 1,2,-1 + 299 1458 l 1,3,-1 + 136 1458 l 1,0,-1 +-298 1458 m 1,4,-1 + -298 1642 l 1,5,-1 + -135 1642 l 1,6,-1 + -135 1458 l 1,7,-1 + -298 1458 l 1,4,-1 +275 1708 m 1,8,-1 + -274 1708 l 1,9,-1 + -274 1835 l 1,10,-1 + 275 1835 l 1,11,-1 + 275 1708 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: uni03080301.cap +Encoding: 65598 -1 2357 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 12 + 7 + 4 + 7 + 4 + 6 + 1 + 13 + 13 + 107 + 6 + 1 + 6 + 132 + 1 + 1 + 240 + 1 + 1 + 2 + 176 + 1 + 208 + 1 + 224 + 1 + 3 + 1 +PUSHW_1 + -64 +NPUSHB + 26 + 30 + 33 + 72 + 15 + 1 + 1 + 224 + 1 + 240 + 1 + 2 + 159 + 1 + 1 + 48 + 1 + 64 + 1 + 80 + 1 + 112 + 1 + 128 + 1 + 5 + 1 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +CALL +DELTAP2 +SDS +DELTAP2 +DELTAP3 +MDAP[rnd] +DELTAP3 +SHP[rp1] +MDAP[rnd] +SRP1 +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +62 1835 m 1,0,-1 + 288 1835 l 1,1,-1 + 288 1823 l 1,2,-1 + 27 1652 l 1,3,-1 + -103 1652 l 1,4,-1 + -103 1662 l 1,5,-1 + 62 1835 l 1,0,-1 +136 1448 m 1,6,-1 + 136 1632 l 1,7,-1 + 299 1632 l 1,8,-1 + 299 1448 l 1,9,-1 + 136 1448 l 1,6,-1 +-298 1448 m 1,10,-1 + -298 1632 l 1,11,-1 + -135 1632 l 1,12,-1 + -135 1448 l 1,13,-1 + -298 1448 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni0308030C.cap +Encoding: 65599 -1 2358 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 8 + 3 + 7 + 15 + 11 + 3 + 11 + 3 + 11 + 16 + 107 + 12 + 1 + 12 + 7 + 7 + 132 + 0 + 1 + 240 + 0 + 1 + 2 + 176 + 0 + 208 + 0 + 224 + 0 + 3 + 0 +PUSHW_1 + -64 +NPUSHB + 26 + 30 + 33 + 72 + 15 + 0 + 1 + 224 + 0 + 240 + 0 + 2 + 159 + 0 + 1 + 48 + 0 + 64 + 0 + 80 + 0 + 112 + 0 + 128 + 0 + 5 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +CALL +DELTAP2 +SDS +DELTAP2 +DELTAP3 +SHP[rp2] +MDAP[rnd] +MDAP[rnd] +DELTAP3 +SHP[rp1] +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +152 1835 m 1,0,-1 + 307 1835 l 1,1,-1 + 307 1825 l 1,2,-1 + 99 1652 l 1,3,-1 + -96 1652 l 1,4,-1 + -305 1823 l 1,5,-1 + -305 1835 l 1,6,-1 + -150 1835 l 1,7,-1 + 1 1738 l 1,8,-1 + 152 1835 l 1,0,-1 +136 1448 m 1,9,-1 + 136 1632 l 1,10,-1 + 299 1632 l 1,11,-1 + 299 1448 l 1,12,-1 + 136 1448 l 1,9,-1 +-298 1448 m 1,13,-1 + -298 1632 l 1,14,-1 + -135 1632 l 1,15,-1 + -135 1448 l 1,16,-1 + -298 1448 l 1,13,-1 +EndSplineSet +EndChar + +StartChar: uni03080300.cap +Encoding: 65600 -1 2359 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 11 + 8 + 2 + 8 + 2 + 8 + 5 + 10 + 107 + 9 + 1 + 9 + 132 + 5 + 1 + 240 + 5 + 1 + 2 + 176 + 5 + 208 + 5 + 224 + 5 + 3 + 5 +PUSHW_1 + -64 +NPUSHB + 26 + 30 + 33 + 72 + 15 + 5 + 1 + 224 + 5 + 240 + 5 + 2 + 159 + 5 + 1 + 48 + 5 + 64 + 5 + 80 + 5 + 112 + 5 + 128 + 5 + 5 + 5 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +CALL +DELTAP2 +SDS +DELTAP2 +DELTAP3 +MDAP[rnd] +DELTAP3 +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +104 1662 m 1,0,-1 + 104 1652 l 1,1,-1 + -26 1652 l 1,2,-1 + -287 1823 l 1,3,-1 + -287 1835 l 1,4,-1 + -61 1835 l 1,5,-1 + 104 1662 l 1,0,-1 +-298 1448 m 1,6,-1 + -298 1632 l 1,7,-1 + -135 1632 l 1,8,-1 + -135 1448 l 1,9,-1 + -298 1448 l 1,6,-1 +136 1448 m 1,10,-1 + 136 1632 l 1,11,-1 + 299 1632 l 1,12,-1 + 299 1448 l 1,13,-1 + 136 1448 l 1,10,-1 +EndSplineSet +EndChar + +StartChar: uni03070304.cap +Encoding: 65601 -1 2360 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 4 + 15 + 7 + 95 + 7 + 2 + 175 + 7 + 255 + 7 + 2 + 7 + 64 + 9 + 13 + 72 + 7 + 7 + 1 + 80 + 0 + 240 + 0 + 2 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP2 +SHP[rp2] +SHP[rp2] +MDAP[rnd] +CALL +DELTAP1 +DELTAP2 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-87 1468 m 1,0,-1 + -87 1652 l 1,1,-1 + 76 1652 l 1,2,-1 + 76 1468 l 1,3,-1 + -87 1468 l 1,0,-1 +275 1708 m 1,4,-1 + -274 1708 l 1,5,-1 + -274 1835 l 1,6,-1 + 275 1835 l 1,7,-1 + 275 1708 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni03030304.cap +Encoding: 65602 -1 2361 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 23 + 8 + 32 + 16 + 48 + 16 + 64 + 16 + 3 + 16 + 16 + 1 + 20 + 11 + 4 + 8 + 1 + 24 + 1 + 2 + 1 + 111 + 2 + 127 + 2 + 159 + 2 + 175 + 2 + 4 + 2 + 64 + 25 + 30 + 72 + 2 +SVTCA[y-axis] +MDAP[rnd] +CALL +DELTAP1 +SHP[rp1] +DELTAP2 +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +DELTAP2 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +275 1708 m 1,0,-1 + -274 1708 l 1,1,-1 + -274 1835 l 1,2,-1 + 275 1835 l 1,3,-1 + 275 1708 l 1,0,-1 +127 1475 m 0,4,5 + 76 1475 76 1475 -8 1513 c 0,6,7 + -93 1550 -93 1550 -129 1550 c 0,8,9 + -174 1550 -174 1550 -196.5 1532.5 c 128,-1,10 + -219 1515 -219 1515 -227 1475 c 1,11,-1 + -318 1475 l 1,12,13 + -307 1557 -307 1557 -285.5 1593 c 128,-1,14 + -264 1629 -264 1629 -226 1649 c 128,-1,15 + -188 1669 -188 1669 -125 1669 c 0,16,17 + -70 1669 -70 1669 13 1632 c 0,18,19 + 96 1594 96 1594 130 1594 c 0,20,21 + 178 1594 178 1594 199.5 1613 c 128,-1,22 + 221 1632 221 1632 227 1669 c 1,23,-1 + 319 1669 l 1,24,25 + 307 1588 307 1588 286 1551 c 128,-1,26 + 265 1514 265 1514 227.5 1494.5 c 128,-1,27 + 190 1475 190 1475 127 1475 c 0,4,5 +EndSplineSet +EndChar + +StartChar: uni02E502E502E6 +Encoding: 65603 -1 2362 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 7 + 1 + 1 + 0 + 4 + 0 + 10 + 11 + 8 + 3 + 7 + 7 + 1 + 4 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 925 l 1,2,-1 + 467 1273 l 1,3,-1 + 160 1273 l 1,4,-1 + 160 1409 l 1,5,-1 + 517 1409 l 1,6,-1 + 815 1111 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E5 uni02E6 +EndChar + +StartChar: uni02E502E502E7 +Encoding: 65604 -1 2363 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 8 + 3 + 7 + 7 + 1 + 4 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 725 l 1,2,-1 + 447 1273 l 1,3,-1 + 160 1273 l 1,4,-1 + 160 1409 l 1,5,-1 + 517 1409 l 1,6,-1 + 815 966 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E5 uni02E7 +EndChar + +StartChar: uni02E502E502E8 +Encoding: 65605 -1 2364 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 8 + 3 + 7 + 7 + 1 + 4 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 415 l 1,2,-1 + 437 1273 l 1,3,-1 + 160 1273 l 1,4,-1 + 160 1409 l 1,5,-1 + 527 1409 l 1,6,-1 + 815 731 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E5 uni02E8 +EndChar + +StartChar: uni02E502E502E9 +Encoding: 65606 -1 2365 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 6 + 0 + 0 + 3 + 10 + 9 + 7 + 3 + 6 + 6 + 1 + 3 + 4 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 430 1273 l 1,2,-1 + 160 1273 l 1,3,-1 + 160 1409 l 1,4,-1 + 527 1409 l 1,5,-1 + 815 453 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E5 uni02E9 +EndChar + +StartChar: uni02E502E602E5 +Encoding: 65607 -1 2366 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 1 + 0 + 0 + 4 + 10 + 9 + 2 + 7 + 3 + 3 + 6 + 6 + 1 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1223 l 1,2,-1 + 487 915 l 1,3,-1 + 77 1304 l 1,4,-1 + 169 1401 l 1,5,-1 + 487 1101 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E5 +EndChar + +StartChar: uni02E502E602E6 +Encoding: 65608 -1 2367 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 7 + 1 + 1 + 0 + 4 + 0 + 10 + 11 + 8 + 3 + 3 + 6 + 6 + 1 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 935 l 1,2,-1 + 451 935 l 1,3,-1 + 82 1302 l 1,4,-1 + 180 1399 l 1,5,-1 + 507 1071 l 1,6,-1 + 815 1071 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E6 +EndChar + +StartChar: uni02E502E602E7 +Encoding: 65609 -1 2368 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 1 + 1 + 0 + 3 + 0 + 8 + 9 + 6 + 3 + 2 + 5 + 5 + 1 + 4 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 586 l 1,2,-1 + 77 1302 l 1,3,-1 + 172 1396 l 1,4,-1 + 815 783 l 1,5,-1 + 815 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E7 +EndChar + +StartChar: uni02E502E602E8 +Encoding: 65610 -1 2369 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 8 + 3 + 2 + 7 + 7 + 1 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 236 l 1,2,-1 + 487 913 l 1,3,-1 + 77 1302 l 1,4,-1 + 160 1409 l 1,5,-1 + 595 1001 l 1,6,-1 + 815 536 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E8 +EndChar + +StartChar: uni02E502E602E9 +Encoding: 65611 -1 2370 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 6 + 0 + 0 + 3 + 10 + 9 + 6 + 6 + 1 + 4 + 7 + 7 + 4 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 470 929 l 1,2,-1 + 70 1307 l 1,3,-1 + 160 1409 l 1,4,-1 + 590 1003 l 1,5,-1 + 815 391 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E9 +EndChar + +StartChar: uni02E502E6 +Encoding: 65612 -1 2371 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 1 + 1 + 0 + 0 + 3 + 9 + 8 + 6 + 3 + 2 + 5 + 5 + 1 + 4 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 925 l 1,2,-1 + 70 1309 l 1,3,-1 + 160 1409 l 1,4,-1 + 488 1113 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 +EndChar + +StartChar: uni02E502E702E5 +Encoding: 65613 -1 2372 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 1 + 0 + 0 + 4 + 10 + 9 + 2 + 7 + 3 + 3 + 6 + 6 + 1 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1145 l 1,2,-1 + 483 591 l 1,3,-1 + 53 1331 l 1,4,-1 + 160 1409 l 1,5,-1 + 487 864 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E5 +EndChar + +StartChar: uni02E502E702E6 +Encoding: 65614 -1 2373 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 8 + 3 + 3 + 6 + 2 + 7 + 7 + 5 + 6 + 6 + 1 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +MIAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 929 l 1,2,-1 + 483 594 l 1,3,-1 + 53 1334 l 1,4,-1 + 160 1409 l 1,5,-1 + 513 820 l 1,6,-1 + 815 1121 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E6 +EndChar + +StartChar: uni02E502E702E7 +Encoding: 65615 -1 2374 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 3 + 6 + 6 + 1 + 8 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 667 l 1,2,-1 + 471 667 l 1,3,-1 + 79 1337 l 1,4,-1 + 195 1409 l 1,5,-1 + 551 803 l 1,6,-1 + 815 803 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E7 +EndChar + +StartChar: uni02E502E702E8 +Encoding: 65616 -1 2375 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 2 + 7 + 7 + 1 + 8 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 270 l 1,2,-1 + 461 625 l 1,3,-1 + 45 1339 l 1,4,-1 + 163 1409 l 1,5,-1 + 567 711 l 1,6,-1 + 815 462 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E8 +EndChar + +StartChar: uni02E502E702E9 +Encoding: 65617 -1 2376 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 4 + 0 + 0 + 2 + 8 + 7 + 4 + 4 + 1 + 5 + 3 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 72 1341 l 1,2,-1 + 191 1409 l 1,3,-1 + 815 282 l 1,4,-1 + 815 1409 l 1,5,-1 + 951 1409 l 1,6,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E9 +EndChar + +StartChar: uni02E502E7 +Encoding: 65618 -1 2377 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 5 + 1 + 1 + 0 + 0 + 3 + 9 + 8 + 2 + 5 + 5 + 1 + 6 + 4 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 598 l 1,2,-1 + 45 1337 l 1,3,-1 + 160 1409 l 1,4,-1 + 488 864 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 +EndChar + +StartChar: uni02E502E802E5 +Encoding: 65619 -1 2378 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 1 + 0 + 0 + 4 + 10 + 9 + 2 + 7 + 3 + 3 + 6 + 6 + 1 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1049 l 1,2,-1 + 487 246 l 1,3,-1 + 36 1359 l 1,4,-1 + 160 1409 l 1,5,-1 + 487 606 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E5 +EndChar + +StartChar: uni02E502E802E6 +Encoding: 65620 -1 2379 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 7 + 1 + 1 + 0 + 4 + 0 + 10 + 11 + 3 + 6 + 2 + 7 + 7 + 5 + 6 + 6 + 1 + 8 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 927 l 1,2,-1 + 497 292 l 1,3,-1 + 37 1356 l 1,4,-1 + 163 1409 l 1,5,-1 + 507 617 l 1,6,-1 + 815 1231 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E6 +EndChar + +StartChar: uni02E502E802E7 +Encoding: 65621 -1 2380 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 3 + 6 + 2 + 7 + 7 + 5 + 6 + 6 + 1 + 8 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 598 l 1,2,-1 + 482 263 l 1,3,-1 + 37 1359 l 1,4,-1 + 160 1409 l 1,5,-1 + 531 510 l 1,6,-1 + 815 784 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E7 +EndChar + +StartChar: uni02E502E802E8 +Encoding: 65622 -1 2381 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 3 + 6 + 6 + 1 + 8 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 337 l 1,2,-1 + 452 337 l 1,3,-1 + 39 1359 l 1,4,-1 + 160 1409 l 1,5,-1 + 547 473 l 1,6,-1 + 815 473 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E8 +EndChar + +StartChar: uni02E502E802E9 +Encoding: 65623 -1 2382 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 6 + 0 + 3 + 0 + 9 + 10 + 7 + 4 + 3 + 6 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 487 327 l 1,2,-1 + 47 1354 l 1,3,-1 + 174 1409 l 1,4,-1 + 603 405 l 1,5,-1 + 815 191 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E9 +EndChar + +StartChar: uni02E502E8 +Encoding: 65624 -1 2383 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 5 + 1 + 1 + 0 + 3 + 0 + 8 + 9 + 2 + 5 + 5 + 1 + 6 + 4 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 243 l 1,2,-1 + 37 1359 l 1,3,-1 + 160 1409 l 1,4,-1 + 488 606 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 +EndChar + +StartChar: uni02E502E902E5 +Encoding: 65625 -1 2384 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 1 + 0 + 4 + 0 + 9 + 10 + 6 + 2 + 3 + 7 + 5 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 983 l 1,2,-1 + 487 0 l 1,3,-1 + 29 1361 l 1,4,-1 + 154 1409 l 1,5,-1 + 487 426 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E5 +EndChar + +StartChar: uni02E502E902E6 +Encoding: 65626 -1 2385 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 7 + 1 + 1 + 0 + 4 + 0 + 10 + 11 + 6 + 2 + 6 + 2 + 3 + 8 + 5 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 885 l 1,2,-1 + 487 0 l 1,3,-1 + 23 1359 l 1,4,-1 + 149 1406 l 1,5,-1 + 494 405 l 1,6,-1 + 815 1281 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E6 +EndChar + +StartChar: uni02E502E902E7 +Encoding: 65627 -1 2386 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 7 + 1 + 1 + 0 + 4 + 0 + 10 + 11 + 6 + 2 + 6 + 2 + 3 + 8 + 5 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 655 l 1,2,-1 + 487 0 l 1,3,-1 + 54 1363 l 1,4,-1 + 181 1408 l 1,5,-1 + 515 355 l 1,6,-1 + 815 976 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E7 +EndChar + +StartChar: uni02E502E902E8 +Encoding: 65628 -1 2387 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 6 + 2 + 6 + 2 + 3 + 8 + 5 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 312 l 1,2,-1 + 487 0 l 1,3,-1 + 54 1363 l 1,4,-1 + 180 1408 l 1,5,-1 + 552 251 l 1,6,-1 + 815 501 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E8 +EndChar + +StartChar: uni02E502E902E9 +Encoding: 65629 -1 2388 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 5 + 0 + 2 + 1 + 0 + 3 + 9 + 8 + 6 + 3 + 3 + 4 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[min,rnd,black] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 482 0 l 1,1,-1 + 48 1363 l 1,2,-1 + 177 1409 l 1,3,-1 + 580 136 l 1,4,-1 + 815 136 l 1,5,-1 + 815 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E9 +EndChar + +StartChar: uni02E502E9 +Encoding: 65630 -1 2389 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 4 + 0 + 0 + 2 + 8 + 7 + 4 + 4 + 1 + 5 + 3 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 41 1363 l 1,2,-1 + 170 1409 l 1,3,-1 + 488 426 l 1,4,-1 + 488 1409 l 1,5,-1 + 624 1409 l 1,6,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 +EndChar + +StartChar: uni02E602E502E5 +Encoding: 65631 -1 2390 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 1 + 0 + 0 + 6 + 5 + 3 + 8 + 9 + 4 + 4 + 1 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1273 l 1,2,-1 + 507 1273 l 1,3,-1 + 176 945 l 1,4,-1 + 79 1042 l 1,5,-1 + 451 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E5 +EndChar + +StartChar: uni02E602E502E6 +Encoding: 65632 -1 2391 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 5 + 3 + 0 + 3 + 11 + 10 + 2 + 7 + 4 + 7 + 4 + 7 + 1 + 8 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 914 l 1,2,-1 + 486 1223 l 1,3,-1 + 167 930 l 1,4,-1 + 76 1032 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 1101 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E6 +EndChar + +StartChar: uni02E602E502E7 +Encoding: 65633 -1 2392 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 7 + 1 + 1 + 0 + 5 + 3 + 0 + 3 + 11 + 10 + 2 + 7 + 4 + 7 + 4 + 1 + 8 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 553 l 1,2,-1 + 455 1194 l 1,3,-1 + 161 928 l 1,4,-1 + 76 1032 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 834 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E7 +EndChar + +StartChar: uni02E602E502E8 +Encoding: 65634 -1 2393 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 7 + 4 + 7 + 4 + 1 + 8 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 233 l 1,2,-1 + 435 1174 l 1,3,-1 + 159 928 l 1,4,-1 + 76 1032 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 596 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E8 +EndChar + +StartChar: uni02E602E502E9 +Encoding: 65635 -1 2394 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 6 + 0 + 4 + 2 + 0 + 3 + 10 + 9 + 6 + 3 + 6 + 3 + 1 + 7 + 2 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 444 1161 l 1,2,-1 + 175 930 l 1,3,-1 + 94 1032 l 1,4,-1 + 505 1409 l 1,5,-1 + 815 446 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E9 +EndChar + +StartChar: uni02E602E5 +Encoding: 65636 -1 2395 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 1 + 0 + 4 + 0 + 7 + 8 + 3 + 3 + 1 + 2 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 1218 l 1,2,-1 + 170 927 l 1,3,-1 + 76 1032 l 1,4,-1 + 488 1409 l 1,5,-1 + 624 1409 l 1,6,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 +EndChar + +StartChar: uni02E602E602E5 +Encoding: 65637 -1 2396 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 1 + 0 + 4 + 0 + 9 + 10 + 4 + 5 + 5 + 1 + 2 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1220 l 1,2,-1 + 560 995 l 1,3,-1 + 160 995 l 1,4,-1 + 160 1131 l 1,5,-1 + 500 1131 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E6 uni02E5 +EndChar + +StartChar: uni02E602E602E7 +Encoding: 65638 -1 2397 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 2 + 7 + 4 + 5 + 7 + 5 + 7 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 617 l 1,2,-1 + 458 995 l 1,3,-1 + 160 995 l 1,4,-1 + 160 1131 l 1,5,-1 + 513 1131 l 1,6,-1 + 815 813 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E6 uni02E7 +EndChar + +StartChar: uni02E602E602E8 +Encoding: 65639 -1 2398 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 7 + 1 + 1 + 0 + 4 + 0 + 10 + 11 + 4 + 5 + 7 + 5 + 7 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 309 l 1,2,-1 + 461 995 l 1,3,-1 + 160 995 l 1,4,-1 + 160 1131 l 1,5,-1 + 543 1131 l 1,6,-1 + 815 605 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E6 uni02E8 +EndChar + +StartChar: uni02E602E602E9 +Encoding: 65640 -1 2399 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 0 + 3 + 0 + 9 + 10 + 3 + 4 + 6 + 4 + 6 + 4 + 1 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 476 995 l 1,2,-1 + 160 995 l 1,3,-1 + 160 1131 l 1,4,-1 + 574 1131 l 1,5,-1 + 815 426 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E6 uni02E9 +EndChar + +StartChar: uni02E602E702E5 +Encoding: 65641 -1 2400 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 1 + 0 + 0 + 6 + 4 + 3 + 9 + 10 + 3 + 6 + 5 + 6 + 5 + 1 + 2 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1144 l 1,2,-1 + 488 589 l 1,3,-1 + 80 1006 l 1,4,-1 + 176 1104 l 1,5,-1 + 462 811 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E5 +EndChar + +StartChar: uni02E602E702E6 +Encoding: 65642 -1 2401 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 7 + 1 + 1 + 0 + 4 + 6 + 0 + 3 + 11 + 10 + 3 + 6 + 2 + 7 + 7 + 5 + 8 + 6 + 5 + 6 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 944 l 1,2,-1 + 487 617 l 1,3,-1 + 76 1029 l 1,4,-1 + 172 1125 l 1,5,-1 + 487 810 l 1,6,-1 + 815 1137 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E6 +EndChar + +StartChar: uni02E602E702E7 +Encoding: 65643 -1 2402 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 3 + 6 + 5 + 6 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 667 l 1,2,-1 + 405 667 l 1,3,-1 + 70 1041 l 1,4,-1 + 168 1133 l 1,5,-1 + 466 803 l 1,6,-1 + 815 803 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E7 +EndChar + +StartChar: uni02E602E702E8 +Encoding: 65644 -1 2403 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 1 + 1 + 0 + 0 + 3 + 9 + 8 + 2 + 5 + 4 + 5 + 4 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 295 l 1,2,-1 + 76 1035 l 1,3,-1 + 170 1134 l 1,4,-1 + 815 489 l 1,5,-1 + 815 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E8 +EndChar + +StartChar: uni02E602E702E9 +Encoding: 65645 -1 2404 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 6 + 0 + 0 + 3 + 10 + 9 + 6 + 4 + 6 + 4 + 1 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 487 627 l 1,2,-1 + 76 1037 l 1,3,-1 + 167 1136 l 1,4,-1 + 599 707 l 1,5,-1 + 815 294 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E9 +EndChar + +StartChar: uni02E602E7 +Encoding: 65646 -1 2405 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 1 + 1 + 0 + 3 + 0 + 8 + 9 + 2 + 5 + 4 + 5 + 4 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 612 l 1,2,-1 + 76 1024 l 1,3,-1 + 169 1125 l 1,4,-1 + 488 806 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 +EndChar + +StartChar: uni02E602E802E5 +Encoding: 65647 -1 2406 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 1 + 0 + 4 + 6 + 0 + 3 + 10 + 9 + 3 + 6 + 5 + 6 + 5 + 1 + 2 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1053 l 1,2,-1 + 488 258 l 1,3,-1 + 47 1123 l 1,4,-1 + 164 1193 l 1,5,-1 + 475 578 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E5 +EndChar + +StartChar: uni02E602E802E6 +Encoding: 65648 -1 2407 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 7 + 1 + 1 + 0 + 0 + 6 + 4 + 3 + 10 + 11 + 3 + 6 + 2 + 7 + 7 + 5 + 8 + 6 + 5 + 6 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 925 l 1,2,-1 + 487 270 l 1,3,-1 + 57 1109 l 1,4,-1 + 175 1180 l 1,5,-1 + 487 573 l 1,6,-1 + 815 1228 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E6 +EndChar + +StartChar: uni02E602E802E7 +Encoding: 65649 -1 2408 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 7 + 1 + 1 + 0 + 0 + 6 + 4 + 3 + 10 + 11 + 3 + 6 + 2 + 7 + 7 + 5 + 6 + 5 + 6 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 627 l 1,2,-1 + 497 279 l 1,3,-1 + 63 1135 l 1,4,-1 + 182 1196 l 1,5,-1 + 531 513 l 1,6,-1 + 815 825 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E7 +EndChar + +StartChar: uni02E602E802E8 +Encoding: 65650 -1 2409 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 7 + 1 + 1 + 0 + 0 + 3 + 4 + 3 + 10 + 11 + 3 + 6 + 5 + 6 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 342 l 1,2,-1 + 466 342 l 1,3,-1 + 63 1135 l 1,4,-1 + 182 1196 l 1,5,-1 + 549 478 l 1,6,-1 + 815 478 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E8 +EndChar + +StartChar: uni02E602E802E9 +Encoding: 65651 -1 2410 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 6 + 0 + 0 + 3 + 10 + 9 + 4 + 4 + 1 + 7 + 3 + 6 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 483 309 l 1,2,-1 + 63 1135 l 1,3,-1 + 182 1196 l 1,4,-1 + 592 394 l 1,5,-1 + 815 191 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E9 +EndChar + +StartChar: uni02E602E8 +Encoding: 65652 -1 2411 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 5 + 1 + 1 + 0 + 0 + 3 + 9 + 8 + 5 + 4 + 5 + 4 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 301 l 1,2,-1 + 63 1135 l 1,3,-1 + 182 1196 l 1,4,-1 + 488 598 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 +EndChar + +StartChar: uni02E602E902E5 +Encoding: 65653 -1 2412 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 1 + 0 + 0 + 6 + 4 + 3 + 9 + 10 + 6 + 2 + 5 + 5 + 3 + 7 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 983 l 1,2,-1 + 487 0 l 1,3,-1 + 54 1289 l 1,4,-1 + 179 1337 l 1,5,-1 + 487 426 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E5 +EndChar + +StartChar: uni02E602E902E6 +Encoding: 65654 -1 2413 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 7 + 1 + 1 + 0 + 0 + 6 + 4 + 3 + 10 + 11 + 2 + 7 + 6 + 7 + 5 + 5 + 3 + 8 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 885 l 1,2,-1 + 487 0 l 1,3,-1 + 53 1289 l 1,4,-1 + 178 1338 l 1,5,-1 + 494 405 l 1,6,-1 + 815 1281 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E6 +EndChar + +StartChar: uni02E602E902E7 +Encoding: 65655 -1 2414 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 7 + 1 + 1 + 0 + 4 + 6 + 0 + 3 + 11 + 10 + 2 + 7 + 6 + 7 + 5 + 5 + 3 + 8 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 655 l 1,2,-1 + 487 0 l 1,3,-1 + 54 1291 l 1,4,-1 + 181 1336 l 1,5,-1 + 515 355 l 1,6,-1 + 815 976 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E7 +EndChar + +StartChar: uni02E602E902E8 +Encoding: 65656 -1 2415 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 7 + 1 + 1 + 0 + 4 + 6 + 0 + 3 + 11 + 10 + 2 + 7 + 7 + 5 + 5 + 3 + 8 + 3 + 6 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 312 l 1,2,-1 + 487 0 l 1,3,-1 + 54 1290 l 1,4,-1 + 180 1335 l 1,5,-1 + 552 251 l 1,6,-1 + 815 501 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E8 +EndChar + +StartChar: uni02E602E902E9 +Encoding: 65657 -1 2416 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 5 + 0 + 2 + 1 + 0 + 3 + 9 + 8 + 3 + 3 + 1 + 6 + 3 + 4 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 487 0 l 1,1,-1 + 54 1290 l 1,2,-1 + 180 1335 l 1,3,-1 + 591 136 l 1,4,-1 + 815 136 l 1,5,-1 + 815 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E9 +EndChar + +StartChar: uni02E602E9 +Encoding: 65658 -1 2417 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 4 + 0 + 0 + 2 + 8 + 7 + 4 + 3 + 3 + 1 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 53 1290 l 1,2,-1 + 180 1335 l 1,3,-1 + 488 433 l 1,4,-1 + 488 1409 l 1,5,-1 + 624 1409 l 1,6,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 +EndChar + +StartChar: uni02E702E502E5 +Encoding: 65659 -1 2418 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 1 + 0 + 0 + 6 + 5 + 3 + 8 + 9 + 4 + 4 + 1 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1273 l 1,2,-1 + 528 1273 l 1,3,-1 + 187 700 l 1,4,-1 + 76 775 l 1,5,-1 + 451 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E5 +EndChar + +StartChar: uni02E702E502E6 +Encoding: 65660 -1 2419 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 4 + 7 + 4 + 7 + 1 + 8 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 914 l 1,2,-1 + 513 1200 l 1,3,-1 + 187 700 l 1,4,-1 + 76 775 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 1101 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E6 +EndChar + +StartChar: uni02E702E502E7 +Encoding: 65661 -1 2420 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 4 + 7 + 4 + 7 + 1 + 8 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 553 l 1,2,-1 + 480 1148 l 1,3,-1 + 187 700 l 1,4,-1 + 76 775 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 834 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E7 +EndChar + +StartChar: uni02E702E502E8 +Encoding: 65662 -1 2421 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 4 + 7 + 4 + 1 + 8 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 233 l 1,2,-1 + 458 1118 l 1,3,-1 + 187 700 l 1,4,-1 + 76 775 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 596 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E8 +EndChar + +StartChar: uni02E702E502E9 +Encoding: 65663 -1 2422 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 0 + 0 + 4 + 10 + 9 + 6 + 3 + 6 + 3 + 1 + 7 + 2 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 461 1106 l 1,2,-1 + 187 700 l 1,3,-1 + 76 775 l 1,4,-1 + 505 1409 l 1,5,-1 + 815 446 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E9 +EndChar + +StartChar: uni02E702E5 +Encoding: 65664 -1 2423 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 1 + 0 + 0 + 4 + 8 + 7 + 3 + 3 + 1 + 2 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 1150 l 1,2,-1 + 215 698 l 1,3,-1 + 104 775 l 1,4,-1 + 488 1409 l 1,5,-1 + 624 1409 l 1,6,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 +EndChar + +StartChar: uni02E702E602E5 +Encoding: 65665 -1 2424 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 1 + 0 + 4 + 0 + 7 + 8 + 3 + 3 + 1 + 2 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1231 l 1,2,-1 + 154 671 l 1,3,-1 + 76 775 l 1,4,-1 + 815 1409 l 1,5,-1 + 951 1409 l 1,6,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E5 +EndChar + +StartChar: uni02E702E602E6 +Encoding: 65666 -1 2425 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 3 + 6 + 4 + 6 + 4 + 6 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 995 l 1,2,-1 + 493 995 l 1,3,-1 + 168 635 l 1,4,-1 + 70 727 l 1,5,-1 + 432 1131 l 1,6,-1 + 815 1131 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E6 +EndChar + +StartChar: uni02E702E602E7 +Encoding: 65667 -1 2426 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 3 + 6 + 4 + 7 + 6 + 6 + 7 + 4 + 3 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 641 l 1,2,-1 + 486 950 l 1,3,-1 + 167 657 l 1,4,-1 + 76 759 l 1,5,-1 + 487 1136 l 1,6,-1 + 815 828 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E7 +EndChar + +StartChar: uni02E702E602E8 +Encoding: 65668 -1 2427 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 3 + 6 + 7 + 4 + 6 + 6 + 4 + 7 + 3 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 281 l 1,2,-1 + 455 922 l 1,3,-1 + 161 656 l 1,4,-1 + 76 760 l 1,5,-1 + 487 1137 l 1,6,-1 + 815 562 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E8 +EndChar + +StartChar: uni02E702E602E9 +Encoding: 65669 -1 2428 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 6 + 0 + 0 + 2 + 4 + 3 + 9 + 10 + 2 + 5 + 6 + 3 + 5 + 3 + 5 + 1 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 408 951 l 1,2,-1 + 179 667 l 1,3,-1 + 76 759 l 1,4,-1 + 447 1209 l 1,5,-1 + 815 349 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E9 +EndChar + +StartChar: uni02E702E6 +Encoding: 65670 -1 2429 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 5 + 1 + 1 + 0 + 0 + 4 + 9 + 8 + 2 + 5 + 5 + 6 + 3 + 3 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 969 l 1,2,-1 + 169 650 l 1,3,-1 + 76 751 l 1,4,-1 + 488 1163 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 +EndChar + +StartChar: uni02E702E702E5 +Encoding: 65671 -1 2430 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 1 + 0 + 4 + 0 + 9 + 10 + 4 + 5 + 5 + 1 + 2 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1114 l 1,2,-1 + 584 667 l 1,3,-1 + 160 667 l 1,4,-1 + 160 803 l 1,5,-1 + 502 803 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E7 uni02E5 +EndChar + +StartChar: uni02E702E702E6 +Encoding: 65672 -1 2431 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 4 + 5 + 2 + 7 + 7 + 8 + 5 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 921 l 1,2,-1 + 573 667 l 1,3,-1 + 160 667 l 1,4,-1 + 160 803 l 1,5,-1 + 518 803 l 1,6,-1 + 815 1117 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E7 uni02E6 +EndChar + +StartChar: uni02E702E702E8 +Encoding: 65673 -1 2432 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 2 + 7 + 4 + 5 + 7 + 5 + 7 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 292 l 1,2,-1 + 460 667 l 1,3,-1 + 160 667 l 1,4,-1 + 160 803 l 1,5,-1 + 515 803 l 1,6,-1 + 815 488 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E7 uni02E8 +EndChar + +StartChar: uni02E702E702E9 +Encoding: 65674 -1 2433 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 0 + 3 + 0 + 9 + 10 + 3 + 4 + 6 + 4 + 6 + 4 + 1 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 471 667 l 1,2,-1 + 160 667 l 1,3,-1 + 160 803 l 1,4,-1 + 553 803 l 1,5,-1 + 815 295 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E7 uni02E9 +EndChar + +StartChar: uni02E702E802E5 +Encoding: 65675 -1 2434 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 1 + 0 + 0 + 6 + 4 + 3 + 9 + 10 + 3 + 6 + 5 + 6 + 5 + 1 + 2 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1060 l 1,2,-1 + 495 309 l 1,3,-1 + 86 704 l 1,4,-1 + 181 798 l 1,5,-1 + 446 544 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E5 +EndChar + +StartChar: uni02E702E802E6 +Encoding: 65676 -1 2435 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 7 + 1 + 1 + 0 + 0 + 6 + 4 + 3 + 10 + 11 + 3 + 6 + 2 + 7 + 7 + 5 + 8 + 6 + 5 + 6 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 896 l 1,2,-1 + 487 317 l 1,3,-1 + 87 704 l 1,4,-1 + 181 798 l 1,5,-1 + 455 534 l 1,6,-1 + 815 1168 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E6 +EndChar + +StartChar: uni02E702E802E7 +Encoding: 65677 -1 2436 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 7 + 1 + 1 + 0 + 4 + 6 + 0 + 3 + 11 + 10 + 3 + 6 + 2 + 7 + 7 + 5 + 8 + 6 + 5 + 6 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 620 l 1,2,-1 + 487 312 l 1,3,-1 + 89 698 l 1,4,-1 + 180 800 l 1,5,-1 + 488 501 l 1,6,-1 + 815 807 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E7 +EndChar + +StartChar: uni02E702E802E8 +Encoding: 65678 -1 2437 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 3 + 6 + 5 + 6 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 342 l 1,2,-1 + 455 342 l 1,3,-1 + 87 706 l 1,4,-1 + 185 798 l 1,5,-1 + 516 478 l 1,6,-1 + 815 478 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E8 +EndChar + +StartChar: uni02E702E802E9 +Encoding: 65679 -1 2438 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 4 + 0 + 2 + 0 + 7 + 8 + 3 + 3 + 1 + 5 + 3 + 4 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 86 704 l 1,2,-1 + 181 798 l 1,3,-1 + 815 188 l 1,4,-1 + 815 1409 l 1,5,-1 + 951 1409 l 1,6,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E9 +EndChar + +StartChar: uni02E702E8 +Encoding: 65680 -1 2439 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 1 + 1 + 0 + 3 + 0 + 8 + 9 + 2 + 5 + 4 + 5 + 4 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 308 l 1,2,-1 + 92 703 l 1,3,-1 + 185 804 l 1,4,-1 + 488 502 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 +EndChar + +StartChar: uni02E702E902E5 +Encoding: 65681 -1 2440 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 1 + 0 + 0 + 6 + 4 + 3 + 9 + 10 + 5 + 5 + 3 + 2 + 7 + 3 + 6 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 963 l 1,2,-1 + 505 0 l 1,3,-1 + 56 729 l 1,4,-1 + 167 804 l 1,5,-1 + 466 317 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E5 +EndChar + +StartChar: uni02E702E902E6 +Encoding: 65682 -1 2441 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 0 + 6 + 4 + 3 + 10 + 11 + 2 + 7 + 7 + 8 + 5 + 5 + 3 + 8 + 3 + 6 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 813 l 1,2,-1 + 487 0 l 1,3,-1 + 55 729 l 1,4,-1 + 166 804 l 1,5,-1 + 464 304 l 1,6,-1 + 815 1176 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E6 +EndChar + +StartChar: uni02E702E902E7 +Encoding: 65683 -1 2442 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 4 + 6 + 0 + 3 + 11 + 10 + 2 + 7 + 7 + 8 + 5 + 5 + 3 + 8 + 3 + 6 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 575 l 1,2,-1 + 487 0 l 1,3,-1 + 55 729 l 1,4,-1 + 166 804 l 1,5,-1 + 485 269 l 1,6,-1 + 815 856 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E7 +EndChar + +StartChar: uni02E702E902E8 +Encoding: 65684 -1 2443 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 7 + 1 + 1 + 0 + 4 + 6 + 0 + 3 + 11 + 10 + 2 + 7 + 7 + 5 + 5 + 3 + 8 + 3 + 6 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 345 l 1,2,-1 + 488 -3 l 1,3,-1 + 56 729 l 1,4,-1 + 167 804 l 1,5,-1 + 513 222 l 1,6,-1 + 815 543 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E8 +EndChar + +StartChar: uni02E702E902E9 +Encoding: 65685 -1 2444 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 5 + 0 + 0 + 1 + 2 + 3 + 8 + 9 + 3 + 3 + 1 + 6 + 3 + 4 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 487 0 l 1,1,-1 + 56 729 l 1,2,-1 + 167 804 l 1,3,-1 + 564 136 l 1,4,-1 + 815 136 l 1,5,-1 + 815 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E9 +EndChar + +StartChar: uni02E702E9 +Encoding: 65686 -1 2445 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 4 + 0 + 0 + 2 + 8 + 7 + 3 + 3 + 1 + 5 + 3 + 4 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 487 0 l 1,1,-1 + 56 729 l 1,2,-1 + 167 804 l 1,3,-1 + 488 263 l 1,4,-1 + 488 1409 l 1,5,-1 + 624 1409 l 1,6,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 +EndChar + +StartChar: uni02E802E502E5 +Encoding: 65687 -1 2446 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 1 + 0 + 0 + 6 + 5 + 3 + 8 + 9 + 4 + 4 + 1 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1273 l 1,2,-1 + 577 1273 l 1,3,-1 + 192 342 l 1,4,-1 + 71 392 l 1,5,-1 + 482 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E5 +EndChar + +StartChar: uni02E802E502E6 +Encoding: 65688 -1 2447 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 4 + 7 + 4 + 7 + 1 + 8 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 888 l 1,2,-1 + 531 1162 l 1,3,-1 + 192 342 l 1,4,-1 + 69 392 l 1,5,-1 + 482 1409 l 1,6,-1 + 815 1074 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E6 +EndChar + +StartChar: uni02E802E502E7 +Encoding: 65689 -1 2448 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 5 + 3 + 0 + 3 + 11 + 10 + 2 + 7 + 4 + 7 + 4 + 7 + 1 + 8 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 611 l 1,2,-1 + 509 1108 l 1,3,-1 + 192 342 l 1,4,-1 + 69 391 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 872 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E7 +EndChar + +StartChar: uni02E802E502E8 +Encoding: 65690 -1 2449 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 4 + 7 + 4 + 7 + 1 + 8 + 3 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 157 l 1,2,-1 + 484 1042 l 1,3,-1 + 192 342 l 1,4,-1 + 69 392 l 1,5,-1 + 487 1412 l 1,6,-1 + 815 548 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E8 +EndChar + +StartChar: uni02E802E502E9 +Encoding: 65691 -1 2450 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 6 + 0 + 4 + 2 + 0 + 3 + 10 + 9 + 3 + 6 + 3 + 6 + 1 + 7 + 2 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 475 1021 l 1,2,-1 + 192 342 l 1,3,-1 + 69 392 l 1,4,-1 + 487 1409 l 1,5,-1 + 815 426 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E9 +EndChar + +StartChar: uni02E802E5 +Encoding: 65692 -1 2451 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 1 + 0 + 4 + 0 + 7 + 8 + 3 + 3 + 1 + 2 + 5 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 1052 l 1,2,-1 + 192 342 l 1,3,-1 + 69 392 l 1,4,-1 + 487 1409 l 1,5,-1 + 624 1409 l 1,6,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 +EndChar + +StartChar: uni02E802E602E5 +Encoding: 65693 -1 2452 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 1 + 0 + 0 + 5 + 10 + 9 + 4 + 4 + 1 + 2 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1218 l 1,2,-1 + 592 1015 l 1,3,-1 + 248 342 l 1,4,-1 + 129 403 l 1,5,-1 + 483 1100 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E5 +EndChar + +StartChar: uni02E802E602E6 +Encoding: 65694 -1 2453 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 7 + 1 + 1 + 0 + 5 + 0 + 10 + 11 + 3 + 6 + 4 + 6 + 4 + 6 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 995 l 1,2,-1 + 582 995 l 1,3,-1 + 247 342 l 1,4,-1 + 129 403 l 1,5,-1 + 499 1131 l 1,6,-1 + 815 1131 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E6 +EndChar + +StartChar: uni02E802E602E7 +Encoding: 65695 -1 2454 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 3 + 6 + 4 + 7 + 6 + 6 + 7 + 4 + 3 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 601 l 1,2,-1 + 513 997 l 1,3,-1 + 175 342 l 1,4,-1 + 57 413 l 1,5,-1 + 487 1252 l 1,6,-1 + 815 824 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E7 +EndChar + +StartChar: uni02E802E602E8 +Encoding: 65696 -1 2455 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 3 + 6 + 4 + 7 + 6 + 6 + 7 + 4 + 3 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 181 l 1,2,-1 + 479 931 l 1,3,-1 + 175 343 l 1,4,-1 + 57 414 l 1,5,-1 + 487 1253 l 1,6,-1 + 815 517 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E8 +EndChar + +StartChar: uni02E802E602E9 +Encoding: 65697 -1 2456 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 6 + 0 + 4 + 0 + 9 + 10 + 2 + 6 + 5 + 3 + 5 + 3 + 5 + 1 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP2 +IP +SHP[rp2] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 471 915 l 1,2,-1 + 175 343 l 1,3,-1 + 58 413 l 1,4,-1 + 487 1253 l 1,5,-1 + 815 378 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E9 +EndChar + +StartChar: uni02E802E6 +Encoding: 65698 -1 2457 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 5 + 1 + 1 + 0 + 4 + 0 + 8 + 9 + 2 + 5 + 5 + 6 + 3 + 3 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 953 l 1,2,-1 + 176 344 l 1,3,-1 + 57 405 l 1,4,-1 + 488 1250 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 +EndChar + +StartChar: uni02E802E702E5 +Encoding: 65699 -1 2458 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 1 + 0 + 5 + 0 + 9 + 10 + 4 + 4 + 1 + 2 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1115 l 1,2,-1 + 599 702 l 1,3,-1 + 236 342 l 1,4,-1 + 145 441 l 1,5,-1 + 487 782 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E5 +EndChar + +StartChar: uni02E802E702E6 +Encoding: 65700 -1 2459 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 3 + 7 + 7 + 6 + 2 + 6 + 8 + 9 + 0 + 3 + 3 + 1 + 1 + 4 + 7 + 18 + 4 + 3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +815 988 m 1,0,-1 + 236 342 l 1,1,-1 + 145 441 l 1,2,-1 + 815 1180 l 1,3,-1 + 815 1409 l 1,4,-1 + 951 1409 l 1,5,-1 + 951 0 l 1,6,-1 + 815 0 l 1,7,-1 + 815 988 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E6 +EndChar + +StartChar: uni02E802E702E7 +Encoding: 65701 -1 2460 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 5 + 6 + 0 + 3 + 11 + 10 + 3 + 6 + 4 + 6 + 4 + 6 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 667 l 1,2,-1 + 527 667 l 1,3,-1 + 236 342 l 1,4,-1 + 145 441 l 1,5,-1 + 473 803 l 1,6,-1 + 815 803 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E7 +EndChar + +StartChar: uni02E802E702E8 +Encoding: 65702 -1 2461 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 26 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 3 + 6 + 4 + 7 + 6 + 6 + 7 + 4 + 3 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 322 l 1,2,-1 + 491 627 l 1,3,-1 + 236 342 l 1,4,-1 + 145 441 l 1,5,-1 + 487 817 l 1,6,-1 + 815 509 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E8 +EndChar + +StartChar: uni02E802E702E9 +Encoding: 65703 -1 2462 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 6 + 0 + 0 + 2 + 4 + 3 + 9 + 10 + 2 + 5 + 6 + 3 + 5 + 5 + 3 + 6 + 3 + 1 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +SLOOP +IP +MDAP[rnd] +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 461 588 l 1,2,-1 + 239 339 l 1,3,-1 + 145 441 l 1,4,-1 + 487 817 l 1,5,-1 + 815 260 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E9 +EndChar + +StartChar: uni02E802E7 +Encoding: 65704 -1 2463 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 5 + 1 + 1 + 0 + 4 + 0 + 8 + 9 + 2 + 5 + 5 + 6 + 3 + 3 + 1 + 6 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 660 l 1,2,-1 + 169 341 l 1,3,-1 + 76 442 l 1,4,-1 + 488 854 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 +EndChar + +StartChar: uni02E802E802E5 +Encoding: 65705 -1 2464 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 16 + 1 + 0 + 0 + 4 + 10 + 9 + 4 + 2 + 7 + 5 + 5 + 1 + 7 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 983 l 1,2,-1 + 596 342 l 1,3,-1 + 160 342 l 1,4,-1 + 160 478 l 1,5,-1 + 498 478 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E8 uni02E5 +EndChar + +StartChar: uni02E802E802E6 +Encoding: 65706 -1 2465 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 4 + 5 + 2 + 7 + 7 + 8 + 5 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 804 l 1,2,-1 + 576 342 l 1,3,-1 + 160 342 l 1,4,-1 + 160 478 l 1,5,-1 + 494 478 l 1,6,-1 + 815 1100 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E8 uni02E6 +EndChar + +StartChar: uni02E802E802E7 +Encoding: 65707 -1 2466 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 5 + 0 + 10 + 11 + 4 + 5 + 2 + 7 + 7 + 8 + 5 + 5 + 1 + 8 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 659 l 1,2,-1 + 517 342 l 1,3,-1 + 160 342 l 1,4,-1 + 160 478 l 1,5,-1 + 447 478 l 1,6,-1 + 815 869 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E8 uni02E7 +EndChar + +StartChar: uni02E802E802E9 +Encoding: 65708 -1 2467 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 15 + 4 + 7 + 1 + 7 + 9 + 10 + 1 + 2 + 2 + 5 + 4 + 8 + 18 + 5 + 3 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +447 342 m 1,0,-1 + 160 342 l 1,1,-1 + 160 478 l 1,2,-1 + 517 478 l 1,3,-1 + 815 201 l 1,4,-1 + 815 1409 l 1,5,-1 + 951 1409 l 1,6,-1 + 951 0 l 1,7,-1 + 815 0 l 1,8,-1 + 447 342 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E8 uni02E9 +EndChar + +StartChar: uni02E802E902E5 +Encoding: 65709 -1 2468 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 1 + 0 + 0 + 6 + 4 + 3 + 9 + 10 + 2 + 7 + 5 + 5 + 3 + 7 + 3 + 6 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 978 l 1,2,-1 + 487 0 l 1,3,-1 + 76 377 l 1,4,-1 + 167 479 l 1,5,-1 + 423 244 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E5 +EndChar + +StartChar: uni02E802E902E6 +Encoding: 65710 -1 2469 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 0 + 6 + 4 + 3 + 10 + 11 + 2 + 7 + 7 + 8 + 5 + 5 + 3 + 8 + 3 + 6 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 853 l 1,2,-1 + 487 0 l 1,3,-1 + 76 377 l 1,4,-1 + 167 479 l 1,5,-1 + 435 232 l 1,6,-1 + 815 1216 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E6 +EndChar + +StartChar: uni02E802E902E7 +Encoding: 65711 -1 2470 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 0 + 6 + 4 + 3 + 10 + 11 + 2 + 7 + 7 + 8 + 5 + 5 + 3 + 8 + 3 + 6 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 575 l 1,2,-1 + 487 0 l 1,3,-1 + 76 377 l 1,4,-1 + 167 479 l 1,5,-1 + 452 217 l 1,6,-1 + 815 856 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E7 +EndChar + +StartChar: uni02E802E902E8 +Encoding: 65712 -1 2471 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 7 + 1 + 1 + 0 + 0 + 6 + 4 + 3 + 10 + 11 + 2 + 7 + 7 + 8 + 5 + 5 + 3 + 8 + 3 + 6 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 308 l 1,2,-1 + 487 0 l 1,3,-1 + 76 377 l 1,4,-1 + 167 479 l 1,5,-1 + 486 186 l 1,6,-1 + 815 495 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E8 +EndChar + +StartChar: uni02E802E902E9 +Encoding: 65713 -1 2472 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 5 + 0 + 0 + 2 + 9 + 8 + 3 + 3 + 1 + 6 + 3 + 4 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 488 0 l 1,1,-1 + 79 374 l 1,2,-1 + 173 479 l 1,3,-1 + 548 136 l 1,4,-1 + 815 136 l 1,5,-1 + 815 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E9 +EndChar + +StartChar: uni02E802E9 +Encoding: 65714 -1 2473 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 4 + 0 + 2 + 0 + 7 + 8 + 3 + 3 + 1 + 5 + 3 + 4 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 79 374 l 1,2,-1 + 173 479 l 1,3,-1 + 488 191 l 1,4,-1 + 488 1409 l 1,5,-1 + 624 1409 l 1,6,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 +EndChar + +StartChar: uni02E902E502E5 +Encoding: 65715 -1 2474 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 0 + 0 + 5 + 9 + 8 + 3 + 6 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1273 l 1,2,-1 + 580 1273 l 1,3,-1 + 177 0 l 1,4,-1 + 48 46 l 1,5,-1 + 482 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E5 +EndChar + +StartChar: uni02E902E502E6 +Encoding: 65716 -1 2475 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 5 + 3 + 0 + 3 + 11 + 10 + 2 + 7 + 7 + 4 + 8 + 3 + 6 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 908 l 1,2,-1 + 552 1158 l 1,3,-1 + 180 1 l 1,4,-1 + 54 46 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 1097 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E6 +EndChar + +StartChar: uni02E902E502E7 +Encoding: 65717 -1 2476 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 7 + 1 + 1 + 0 + 0 + 5 + 11 + 10 + 2 + 7 + 7 + 4 + 8 + 3 + 6 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 586 l 1,2,-1 + 523 1079 l 1,3,-1 + 181 1 l 1,4,-1 + 54 46 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 854 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E7 +EndChar + +StartChar: uni02E902E502E8 +Encoding: 65718 -1 2477 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 7 + 1 + 1 + 0 + 0 + 5 + 11 + 10 + 2 + 7 + 7 + 4 + 8 + 3 + 6 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SHP[rp1] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 234 l 1,2,-1 + 498 1018 l 1,3,-1 + 149 3 l 1,4,-1 + 23 50 l 1,5,-1 + 487 1409 l 1,6,-1 + 815 604 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E8 +EndChar + +StartChar: uni02E902E502E9 +Encoding: 65719 -1 2478 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 6 + 0 + 0 + 4 + 10 + 9 + 6 + 2 + 6 + 2 + 3 + 7 + 5 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 487 983 l 1,2,-1 + 154 0 l 1,3,-1 + 29 48 l 1,4,-1 + 487 1409 l 1,5,-1 + 815 426 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E9 +EndChar + +StartChar: uni02E902E5 +Encoding: 65720 -1 2479 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 14 + 1 + 0 + 0 + 4 + 8 + 7 + 2 + 2 + 3 + 5 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 983 l 1,2,-1 + 170 0 l 1,3,-1 + 41 46 l 1,4,-1 + 488 1409 l 1,5,-1 + 624 1409 l 1,6,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 +EndChar + +StartChar: uni02E902E602E5 +Encoding: 65721 -1 2480 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 0 + 0 + 5 + 10 + 9 + 2 + 7 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1218 l 1,2,-1 + 603 1004 l 1,3,-1 + 174 0 l 1,4,-1 + 47 55 l 1,5,-1 + 487 1082 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E5 +EndChar + +StartChar: uni02E902E602E6 +Encoding: 65722 -1 2481 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 7 + 1 + 1 + 0 + 0 + 5 + 11 + 10 + 3 + 6 + 6 + 4 + 8 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 995 l 1,2,-1 + 571 995 l 1,3,-1 + 160 0 l 1,4,-1 + 39 50 l 1,5,-1 + 476 1131 l 1,6,-1 + 815 1131 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E6 +EndChar + +StartChar: uni02E902E602E7 +Encoding: 65723 -1 2482 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 3 + 6 + 7 + 6 + 7 + 6 + 4 + 8 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 625 l 1,2,-1 + 531 899 l 1,3,-1 + 160 0 l 1,4,-1 + 37 50 l 1,5,-1 + 482 1146 l 1,6,-1 + 815 811 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E7 +EndChar + +StartChar: uni02E902E602E8 +Encoding: 65724 -1 2483 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 22 + 7 + 1 + 1 + 0 + 0 + 5 + 11 + 10 + 2 + 7 + 3 + 6 + 7 + 6 + 7 + 6 + 4 + 8 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 198 l 1,2,-1 + 518 816 l 1,3,-1 + 163 0 l 1,4,-1 + 37 53 l 1,5,-1 + 508 1141 l 1,6,-1 + 815 502 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E8 +EndChar + +StartChar: uni02E902E602E9 +Encoding: 65725 -1 2484 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 20 + 6 + 0 + 4 + 2 + 0 + 3 + 10 + 9 + 2 + 5 + 6 + 5 + 6 + 5 + 3 + 7 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 487 803 l 1,2,-1 + 160 0 l 1,3,-1 + 36 50 l 1,4,-1 + 487 1163 l 1,5,-1 + 815 360 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E9 +EndChar + +StartChar: uni02E902E6 +Encoding: 65726 -1 2485 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 5 + 1 + 1 + 0 + 4 + 0 + 8 + 9 + 2 + 5 + 5 + 3 + 6 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 888 l 1,2,-1 + 160 0 l 1,3,-1 + 37 50 l 1,4,-1 + 488 1266 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 +EndChar + +StartChar: uni02E902E702E5 +Encoding: 65727 -1 2486 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 0 + 4 + 0 + 7 + 8 + 2 + 5 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1127 l 1,2,-1 + 191 0 l 1,3,-1 + 72 68 l 1,4,-1 + 815 1409 l 1,5,-1 + 951 1409 l 1,6,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E5 +EndChar + +StartChar: uni02E902E702E6 +Encoding: 65728 -1 2487 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 7 + 1 + 1 + 0 + 0 + 5 + 11 + 10 + 2 + 7 + 7 + 4 + 8 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 947 l 1,2,-1 + 567 698 l 1,3,-1 + 163 0 l 1,4,-1 + 45 70 l 1,5,-1 + 461 784 l 1,6,-1 + 815 1139 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E6 +EndChar + +StartChar: uni02E902E702E7 +Encoding: 65729 -1 2488 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 7 + 1 + 1 + 0 + 5 + 0 + 10 + 11 + 3 + 6 + 6 + 4 + 8 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 667 l 1,2,-1 + 551 667 l 1,3,-1 + 195 0 l 1,4,-1 + 79 72 l 1,5,-1 + 471 803 l 1,6,-1 + 815 803 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E7 +EndChar + +StartChar: uni02E902E702E8 +Encoding: 65730 -1 2489 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 7 + 1 + 1 + 0 + 0 + 3 + 5 + 3 + 10 + 11 + 2 + 7 + 3 + 6 + 7 + 6 + 7 + 6 + 4 + 8 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +IP +MDAP[rnd] +MDAP[rnd] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 288 l 1,2,-1 + 513 589 l 1,3,-1 + 160 0 l 1,4,-1 + 53 75 l 1,5,-1 + 483 815 l 1,6,-1 + 815 480 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E8 +EndChar + +StartChar: uni02E902E702E9 +Encoding: 65731 -1 2490 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 6 + 0 + 4 + 2 + 0 + 3 + 10 + 9 + 2 + 6 + 5 + 5 + 3 + 7 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +IP +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 487 545 l 1,2,-1 + 160 0 l 1,3,-1 + 53 78 l 1,4,-1 + 483 818 l 1,5,-1 + 815 264 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E9 +EndChar + +StartChar: uni02E902E7 +Encoding: 65732 -1 2491 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 5 + 1 + 1 + 0 + 4 + 0 + 8 + 9 + 2 + 5 + 5 + 3 + 6 + 3 + 1 + 3 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 545 l 1,2,-1 + 160 0 l 1,3,-1 + 45 72 l 1,4,-1 + 488 811 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 +EndChar + +StartChar: uni02E902E802E5 +Encoding: 65733 -1 2492 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 1 + 0 + 0 + 5 + 10 + 9 + 2 + 7 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 1018 l 1,2,-1 + 590 406 l 1,3,-1 + 160 0 l 1,4,-1 + 70 102 l 1,5,-1 + 470 480 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E5 +EndChar + +StartChar: uni02E902E802E6 +Encoding: 65734 -1 2493 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 7 + 1 + 1 + 0 + 5 + 0 + 10 + 11 + 2 + 7 + 7 + 4 + 8 + 3 + 1 + 4 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 873 l 1,2,-1 + 595 408 l 1,3,-1 + 160 0 l 1,4,-1 + 77 107 l 1,5,-1 + 487 496 l 1,6,-1 + 815 1173 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E6 +EndChar + +StartChar: uni02E902E802E7 +Encoding: 65735 -1 2494 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 1 + 1 + 0 + 0 + 4 + 9 + 8 + 2 + 5 + 5 + 3 + 6 + 3 + 3 + 3 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 626 l 1,2,-1 + 172 13 l 1,3,-1 + 77 107 l 1,4,-1 + 815 823 l 1,5,-1 + 815 1409 l 1,6,-1 + 951 1409 l 1,7,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E7 +EndChar + +StartChar: uni02E902E802E8 +Encoding: 65736 -1 2495 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 7 + 1 + 1 + 0 + 0 + 5 + 11 + 10 + 3 + 6 + 6 + 4 + 8 + 3 + 4 + 4 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 342 l 1,2,-1 + 507 342 l 1,3,-1 + 180 10 l 1,4,-1 + 82 107 l 1,5,-1 + 451 478 l 1,6,-1 + 815 478 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E8 +EndChar + +StartChar: uni02E902E802E9 +Encoding: 65737 -1 2496 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 6 + 0 + 4 + 2 + 0 + 3 + 10 + 9 + 2 + 5 + 5 + 3 + 7 + 3 + 3 + 3 + 6 + 0 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +SHP[rp2] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 487 308 l 1,2,-1 + 169 8 l 1,3,-1 + 77 105 l 1,4,-1 + 487 494 l 1,5,-1 + 815 186 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E9 +EndChar + +StartChar: uni02E902E8 +Encoding: 65738 -1 2497 +Width: 784 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 18 + 5 + 1 + 1 + 0 + 0 + 4 + 9 + 8 + 2 + 5 + 5 + 3 + 6 + 3 + 3 + 3 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp1] +MDAP[rnd] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +624 0 m 1,0,-1 + 488 0 l 1,1,-1 + 488 296 l 1,2,-1 + 160 0 l 1,3,-1 + 70 100 l 1,4,-1 + 488 484 l 1,5,-1 + 488 1409 l 1,6,-1 + 624 1409 l 1,7,-1 + 624 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 +EndChar + +StartChar: uni02E902E902E5 +Encoding: 65739 -1 2498 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 1 + 0 + 4 + 6 + 0 + 3 + 10 + 9 + 2 + 4 + 7 + 3 + 5 + 4 + 18 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 956 l 1,2,-1 + 527 0 l 1,3,-1 + 160 0 l 1,4,-1 + 160 136 l 1,5,-1 + 430 136 l 1,6,-1 + 815 1409 l 1,7,-1 + 951 1409 l 1,8,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E9 uni02E5 +EndChar + +StartChar: uni02E902E902E6 +Encoding: 65740 -1 2499 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 7 + 1 + 1 + 0 + 0 + 4 + 11 + 10 + 2 + 7 + 7 + 4 + 8 + 3 + 5 + 4 + 18 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 806 l 1,2,-1 + 527 0 l 1,3,-1 + 160 0 l 1,4,-1 + 160 136 l 1,5,-1 + 432 136 l 1,6,-1 + 815 1201 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E9 uni02E6 +EndChar + +StartChar: uni02E902E902E7 +Encoding: 65741 -1 2500 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 7 + 1 + 1 + 0 + 0 + 6 + 4 + 3 + 10 + 11 + 2 + 7 + 7 + 4 + 8 + 3 + 5 + 4 + 18 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 580 l 1,2,-1 + 529 0 l 1,3,-1 + 160 0 l 1,4,-1 + 160 136 l 1,5,-1 + 444 136 l 1,6,-1 + 815 891 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E9 uni02E7 +EndChar + +StartChar: uni02E902E902E8 +Encoding: 65742 -1 2501 +Width: 1111 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 19 + 7 + 1 + 1 + 0 + 4 + 0 + 10 + 11 + 2 + 7 + 7 + 4 + 8 + 3 + 5 + 4 + 18 + 1 + 18 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SHP[rp1] +MIAP[rnd] +SRP2 +IP +SRP1 +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +951 0 m 1,0,-1 + 815 0 l 1,1,-1 + 815 298 l 1,2,-1 + 517 0 l 1,3,-1 + 160 0 l 1,4,-1 + 160 136 l 1,5,-1 + 467 136 l 1,6,-1 + 815 484 l 1,7,-1 + 815 1409 l 1,8,-1 + 951 1409 l 1,9,-1 + 951 0 l 1,0,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E9 uni02E8 +EndChar + +StartChar: cyrillic_otmark +Encoding: 65743 -1 2502 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 9 + 3 + 7 + 7 + 6 + 2 + 9 + 128 + 11 + 3 +SVTCA[y-axis] +MIAP[rnd] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp2] +IP +MDAP[rnd] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +457 1409 m 1,0,-1 + 367 1214 l 1,1,-1 + 327 1214 l 1,2,-1 + 280 1315 l 1,3,-1 + 67 1315 l 1,4,-1 + 20 1214 l 1,5,-1 + -20 1214 l 1,6,-1 + -67 1315 l 1,7,-1 + -280 1315 l 1,8,-1 + -327 1214 l 1,9,-1 + -367 1214 l 1,10,-1 + -457 1409 l 1,11,-1 + 457 1409 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03040300.cap +Encoding: 65744 -1 2503 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 2 + 5 + 8 + 228 + 8 + 244 + 8 + 2 + 8 + 7 + 112 + 5 + 1 + 80 + 5 + 128 + 5 + 240 + 5 + 3 + 15 + 5 + 1 + 5 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +MDAP[rnd] +SHP[rp1] +DELTAP1 +SRP1 +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +128 1662 m 1,0,-1 + 128 1652 l 1,1,-1 + -2 1652 l 1,2,-1 + -263 1823 l 1,3,-1 + -263 1835 l 1,4,-1 + -37 1835 l 1,5,-1 + 128 1662 l 1,0,-1 +275 1496 m 1,6,-1 + -274 1496 l 1,7,-1 + -274 1623 l 1,8,-1 + 275 1623 l 1,9,-1 + 275 1496 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni03040301.cap +Encoding: 65745 -1 2504 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 3 + 6 + 228 + 6 + 244 + 6 + 2 + 6 + 9 + 112 + 0 + 1 + 80 + 0 + 128 + 0 + 240 + 0 + 3 + 15 + 0 + 1 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +MDAP[rnd] +SHP[rp1] +DELTAP1 +SRP1 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +38 1835 m 1,0,-1 + 264 1835 l 1,1,-1 + 264 1823 l 1,2,-1 + 3 1652 l 1,3,-1 + -127 1652 l 1,4,-1 + -127 1662 l 1,5,-1 + 38 1835 l 1,0,-1 +-274 1623 m 1,6,-1 + 275 1623 l 1,7,-1 + 275 1496 l 1,8,-1 + -274 1496 l 1,9,-1 + -274 1623 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: uni03030301.cap +Encoding: 65746 -1 2505 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 45 + 19 + 27 + 24 + 16 + 4 + 12 + 12 + 16 + 24 + 32 + 24 + 2 + 208 + 24 + 224 + 24 + 240 + 24 + 3 + 207 + 24 + 1 + 96 + 24 + 112 + 24 + 2 + 240 + 24 + 1 + 159 + 24 + 175 + 24 + 2 + 64 + 24 + 80 + 24 + 128 + 24 + 3 + 24 + 7 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +IP +MDAP[rnd] +IP +IP +SRP2 +IP +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +127 1475 m 0,0,1 + 76 1475 76 1475 -8 1513 c 0,2,3 + -93 1550 -93 1550 -129 1550 c 0,4,5 + -174 1550 -174 1550 -196.5 1532.5 c 128,-1,6 + -219 1515 -219 1515 -227 1475 c 1,7,-1 + -318 1475 l 1,8,9 + -307 1557 -307 1557 -285.5 1593 c 128,-1,10 + -264 1629 -264 1629 -226 1649 c 128,-1,11 + -188 1669 -188 1669 -125 1669 c 0,12,13 + -70 1669 -70 1669 13 1632 c 0,14,15 + 96 1594 96 1594 130 1594 c 0,16,17 + 178 1594 178 1594 199.5 1613 c 128,-1,18 + 221 1632 221 1632 227 1669 c 1,19,-1 + 319 1669 l 1,20,21 + 307 1588 307 1588 286 1551 c 128,-1,22 + 265 1514 265 1514 227.5 1494.5 c 128,-1,23 + 190 1475 190 1475 127 1475 c 0,0,1 +38 1835 m 1,24,-1 + 264 1835 l 1,25,-1 + 264 1823 l 1,26,-1 + 33 1692 l 1,27,-1 + -97 1692 l 1,28,-1 + -97 1702 l 1,29,-1 + 38 1835 l 1,24,-1 +EndSplineSet +EndChar + +StartChar: uni03030308.cap +Encoding: 65747 -1 2506 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 12 + 24 + 8 + 27 + 27 + 20 +PUSHW_1 + -64 +NPUSHB + 19 + 25 + 32 + 72 + 20 + 20 + 15 + 8 + 2 + 223 + 5 + 239 + 5 + 255 + 5 + 3 + 192 + 5 + 1 + 5 +PUSHW_1 + -64 +NPUSHB + 54 + 18 + 22 + 72 + 5 + 3 + 16 + 7 + 32 + 7 + 64 + 7 + 80 + 7 + 96 + 7 + 128 + 7 + 6 + 208 + 7 + 224 + 7 + 240 + 7 + 3 + 207 + 7 + 1 + 96 + 7 + 112 + 7 + 2 + 15 + 7 + 31 + 7 + 2 + 240 + 7 + 1 + 159 + 7 + 175 + 7 + 2 + 64 + 7 + 80 + 7 + 128 + 7 + 3 + 7 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP1 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP2 +DELTAP3 +SHP[rp1] +MDRP[min,rnd,black] +CALL +DELTAP2 +DELTAP2 +SHP[rp2] +MDAP[rnd] +SHP[rp1] +IP +MDAP[rnd] +CALL +SHP[rp1] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +218 1835 m 1,0,-1 + 218 1700 l 1,1,-1 + 99 1700 l 1,2,-1 + 99 1835 l 1,3,-1 + 218 1835 l 1,0,-1 +-98 1835 m 1,4,-1 + -98 1700 l 1,5,-1 + -217 1700 l 1,6,-1 + -217 1835 l 1,7,-1 + -98 1835 l 1,4,-1 +127 1475 m 0,8,9 + 76 1475 76 1475 -8 1513 c 0,10,11 + -93 1550 -93 1550 -129 1550 c 0,12,13 + -174 1550 -174 1550 -196.5 1532.5 c 128,-1,14 + -219 1515 -219 1515 -227 1475 c 1,15,-1 + -318 1475 l 1,16,17 + -307 1557 -307 1557 -285.5 1593 c 128,-1,18 + -264 1629 -264 1629 -226 1649 c 128,-1,19 + -188 1669 -188 1669 -125 1669 c 0,20,21 + -70 1669 -70 1669 13 1632 c 0,22,23 + 96 1594 96 1594 130 1594 c 0,24,25 + 178 1594 178 1594 199.5 1613 c 128,-1,26 + 221 1632 221 1632 227 1669 c 1,27,-1 + 319 1669 l 1,28,29 + 307 1588 307 1588 286 1551 c 128,-1,30 + 265 1514 265 1514 227.5 1494.5 c 128,-1,31 + 190 1475 190 1475 127 1475 c 0,8,9 +EndSplineSet +EndChar + +StartChar: uni03010307.cap +Encoding: 65748 -1 2507 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 2 + 1 + 2 + 1 + 128 + 7 + 1 + 7 + 128 + 4 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +DELTAP1 +IP +IP +MDAP[rnd] +MDAP[rnd] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-32 1666 m 1,0,-1 + -167 1666 l 1,1,-1 + -167 1803 l 1,2,-1 + -32 1803 l 1,3,-1 + -32 1666 l 1,0,-1 +-80 1506 m 1,4,-1 + -80 1526 l 1,5,-1 + 137 1813 l 1,6,-1 + 344 1813 l 1,7,-1 + 344 1784 l 1,8,-1 + 14 1506 l 1,9,-1 + -80 1506 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni030C0307.cap +Encoding: 65749 -1 2508 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 9 + 5 + 11 + 2 + 64 + 8 +PUSHW_1 + -64 +PUSHB_6 + 9 + 17 + 72 + 8 + 128 + 5 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[rp0,min,rnd,black] +CALL +SMD +MDRP[min,rnd,white] +SHP[rp1] +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +68 1698 m 1,0,-1 + -67 1698 l 1,1,-1 + -67 1835 l 1,2,-1 + 68 1835 l 1,3,-1 + 68 1698 l 1,0,-1 +107 1498 m 1,4,-1 + -97 1498 l 1,5,-1 + -331 1737 l 1,6,-1 + -331 1758 l 1,7,-1 + -227 1758 l 1,8,-1 + 5 1619 l 1,9,-1 + 7 1619 l 1,10,-1 + 226 1758 l 1,11,-1 + 331 1758 l 1,12,-1 + 331 1737 l 1,13,-1 + 107 1498 l 1,4,-1 +EndSplineSet +EndChar + +StartChar: uni03040308.cap +Encoding: 65750 -1 2509 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 35 + 2 + 10 + 9 + 5 + 5 + 7 + 9 + 3 + 80 + 7 + 96 + 7 + 112 + 7 + 208 + 7 + 224 + 7 + 240 + 7 + 6 + 64 + 7 + 80 + 7 + 112 + 7 + 128 + 7 + 224 + 7 + 240 + 7 + 6 + 7 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHP[rp1] +MDAP[rnd] +SRP2 +IP +MDAP[rnd] +SRP2 +IP +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +299 1835 m 1,0,-1 + 299 1651 l 1,1,-1 + 136 1651 l 1,2,-1 + 136 1835 l 1,3,-1 + 299 1835 l 1,0,-1 +-135 1835 m 1,4,-1 + -135 1651 l 1,5,-1 + -298 1651 l 1,6,-1 + -298 1835 l 1,7,-1 + -135 1835 l 1,4,-1 +275 1458 m 1,8,-1 + -274 1458 l 1,9,-1 + -274 1585 l 1,10,-1 + 275 1585 l 1,11,-1 + 275 1458 l 1,8,-1 +EndSplineSet +EndChar + +StartChar: bari.dotless +Encoding: 65751 -1 2510 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 24 + 11 + 1 + 9 + 9 + 6 + 4 + 8 + 8 + 12 + 13 + 7 + 11 + 0 + 11 + 80 + 89 + 4 + 0 + 0 + 2 + 9 + 21 + 2 + 15 +SVTCA[y-axis] +MIAP[rnd] +MIAP[rnd] +SRP2 +IP +MDAP[rnd] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +SRP1 +SRP2 +SVTCA[x-axis] +IP +SRP1 +SHP[rp1] +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +AnchorPoint: "Anchor-25" 160 0 basechar 0 +AnchorPoint: "Anchor-23" 1366 1840 basechar 0 +AnchorPoint: "Anchor-22" 0 1840 basechar 0 +AnchorPoint: "Anchor-21" 455 1540 basechar 0 +AnchorPoint: "Anchor-20" 455 -380 basechar 0 +AnchorPoint: "Anchor-16" 230 1580 basechar 0 +AnchorPoint: "Anchor-15" 320 1540 basechar 0 +AnchorPoint: "Anchor-14" 230 -130 basechar 0 +LayerCount: 2 +Fore +SplineSet +26 617 m 1,0,-1 + 135 617 l 1,1,-1 + 135 1082 l 1,2,-1 + 315 1082 l 1,3,-1 + 315 617 l 1,4,-1 + 429 617 l 1,5,-1 + 429 484 l 1,6,-1 + 315 484 l 1,7,-1 + 315 0 l 1,8,-1 + 135 0 l 1,9,-1 + 135 484 l 1,10,-1 + 26 484 l 1,11,-1 + 26 617 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: uni03B1030403130300 +Encoding: 65752 -1 2511 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 4 + 3 + 31 + 48 + 47 + 48 + 79 + 48 + 3 + 191 + 48 + 1 + 16 + 48 + 128 + 48 + 160 + 48 + 192 + 48 + 240 + 48 + 5 + 48 + 2 + 40 + 17 + 38 + 4 + 3 + 2 + 40 + 0 + 40 + 39 + 6 + 19 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 220 0 2 +Refer: 1953 8141 N 1 0 0 1 230 350 2 +EndChar + +StartChar: uni03B1030403130301 +Encoding: 65753 -1 2512 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 4 + 3 + 31 + 59 + 47 + 59 + 79 + 59 + 3 + 191 + 59 + 1 + 16 + 59 + 128 + 59 + 160 + 59 + 192 + 59 + 240 + 59 + 5 + 59 + 2 + 40 + 17 + 38 + 4 + 3 + 2 + 40 + 0 + 40 + 39 + 6 + 19 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 220 0 2 +Refer: 1954 8142 N 1 0 0 1 230 350 2 +EndChar + +StartChar: uni03B1030403140300 +Encoding: 65754 -1 2513 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 4 + 3 + 31 + 59 + 47 + 59 + 79 + 59 + 3 + 191 + 59 + 1 + 16 + 59 + 128 + 59 + 160 + 59 + 192 + 59 + 240 + 59 + 5 + 59 + 2 + 40 + 17 + 38 + 4 + 3 + 2 + 40 + 0 + 40 + 39 + 6 + 19 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 220 0 2 +Refer: 1966 8157 N 1 0 0 1 230 350 2 +EndChar + +StartChar: uni03B1030403140301 +Encoding: 65755 -1 2514 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 4 + 3 + 31 + 59 + 47 + 59 + 79 + 59 + 3 + 191 + 59 + 1 + 16 + 59 + 128 + 59 + 160 + 59 + 192 + 59 + 240 + 59 + 5 + 59 + 2 + 40 + 17 + 38 + 4 + 3 + 2 + 40 + 0 + 40 + 39 + 6 + 19 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 220 0 2 +Refer: 1967 8158 N 1 0 0 1 230 350 2 +EndChar + +StartChar: uni03B1030603130300 +Encoding: 65756 -1 2515 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 4 + 3 + 47 + 69 + 63 + 69 + 79 + 69 + 191 + 69 + 4 + 128 + 69 + 240 + 69 + 2 + 69 + 2 + 39 + 39 + 17 + 38 + 4 + 3 + 2 + 42 + 0 + 42 + 50 + 6 + 19 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 712 774 N 1 0 0 1 538 -39 2 +Refer: 1953 8141 N 1 0 0 1 230 350 2 +EndChar + +StartChar: uni03B1030603130301 +Encoding: 65757 -1 2516 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 2 + 3 + 47 + 55 + 63 + 55 + 79 + 55 + 191 + 55 + 4 + 128 + 55 + 240 + 55 + 2 + 55 + 4 + 56 + 56 + 17 + 38 + 4 + 3 + 2 + 59 + 0 + 59 + 67 + 6 + 19 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 230 350 2 +Refer: 712 774 N 1 0 0 1 538 -39 2 +EndChar + +StartChar: uni03B1030603140300 +Encoding: 65758 -1 2517 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 2 + 3 + 47 + 55 + 63 + 55 + 79 + 55 + 191 + 55 + 4 + 128 + 55 + 240 + 55 + 2 + 55 + 4 + 56 + 56 + 17 + 38 + 4 + 3 + 2 + 59 + 0 + 59 + 67 + 6 + 19 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 230 350 2 +Refer: 712 774 N 1 0 0 1 538 -39 2 +EndChar + +StartChar: uni03B1030603140301 +Encoding: 65759 -1 2518 +Width: 1184 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 2 + 3 + 47 + 55 + 63 + 55 + 79 + 55 + 191 + 55 + 4 + 128 + 55 + 240 + 55 + 2 + 55 + 4 + 56 + 56 + 17 + 38 + 4 + 3 + 2 + 59 + 0 + 59 + 67 + 6 + 19 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 867 945 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 230 350 2 +Refer: 712 774 N 1 0 0 1 538 -39 2 +EndChar + +StartChar: uni03B9030403130300 +Encoding: 65760 -1 2519 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 3 + 2 + 31 + 30 + 47 + 30 + 79 + 30 + 3 + 191 + 30 + 1 + 16 + 30 + 128 + 30 + 160 + 30 + 192 + 30 + 240 + 30 + 5 + 30 + 1 + 10 + 10 + 17 + 38 + 3 + 2 + 1 + 12 + 0 + 12 + 13 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 -94 0 2 +Refer: 1953 8141 N 1 0 0 1 -104 350 2 +EndChar + +StartChar: uni03B9030403130301 +Encoding: 65761 -1 2520 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 3 + 2 + 31 + 30 + 47 + 30 + 79 + 30 + 3 + 191 + 30 + 1 + 16 + 30 + 128 + 30 + 160 + 30 + 192 + 30 + 240 + 30 + 5 + 30 + 1 + 10 + 10 + 17 + 38 + 3 + 2 + 1 + 12 + 0 + 12 + 13 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 -94 0 2 +Refer: 1954 8142 N 1 0 0 1 -84 350 2 +EndChar + +StartChar: uni03B9030403140300 +Encoding: 65762 -1 2521 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 3 + 2 + 31 + 30 + 47 + 30 + 79 + 30 + 3 + 191 + 30 + 1 + 16 + 30 + 128 + 30 + 160 + 30 + 192 + 30 + 240 + 30 + 5 + 30 + 1 + 10 + 10 + 17 + 38 + 3 + 2 + 1 + 12 + 0 + 12 + 13 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 -94 0 2 +Refer: 1966 8157 N 1 0 0 1 -109 350 2 +EndChar + +StartChar: uni03B9030403140301 +Encoding: 65763 -1 2522 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 3 + 2 + 31 + 30 + 47 + 30 + 79 + 30 + 3 + 191 + 30 + 1 + 16 + 30 + 128 + 30 + 160 + 30 + 192 + 30 + 240 + 30 + 5 + 30 + 1 + 10 + 10 + 17 + 38 + 3 + 2 + 1 + 12 + 0 + 12 + 13 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 -94 0 2 +Refer: 1967 8158 N 1 0 0 1 -69 350 2 +EndChar + +StartChar: uni03B9030603130300 +Encoding: 65764 -1 2523 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 1 + 2 + 47 + 26 + 63 + 26 + 79 + 26 + 191 + 26 + 4 + 128 + 26 + 240 + 26 + 2 + 26 + 3 + 27 + 27 + 17 + 38 + 1 + 3 + 2 + 30 + 0 + 30 + 38 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 -99 350 2 +Refer: 712 774 N 1 0 0 1 230 -39 2 +EndChar + +StartChar: uni03B9030603130301 +Encoding: 65765 -1 2524 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 1 + 2 + 47 + 26 + 63 + 26 + 79 + 26 + 191 + 26 + 4 + 128 + 26 + 240 + 26 + 2 + 26 + 3 + 27 + 27 + 17 + 38 + 1 + 3 + 2 + 30 + 0 + 30 + 38 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 -99 350 2 +Refer: 712 774 N 1 0 0 1 230 -39 2 +EndChar + +StartChar: uni03B9030603140300 +Encoding: 65766 -1 2525 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 1 + 2 + 47 + 26 + 63 + 26 + 79 + 26 + 191 + 26 + 4 + 128 + 26 + 240 + 26 + 2 + 26 + 3 + 27 + 27 + 17 + 38 + 1 + 3 + 2 + 30 + 0 + 30 + 38 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 -99 350 2 +Refer: 712 774 N 1 0 0 1 230 -39 2 +EndChar + +StartChar: uni03B9030603140301 +Encoding: 65767 -1 2526 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 1 + 2 + 47 + 26 + 63 + 26 + 79 + 26 + 191 + 26 + 4 + 128 + 26 + 240 + 26 + 2 + 26 + 3 + 27 + 27 + 17 + 38 + 1 + 3 + 2 + 30 + 0 + 30 + 38 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 -99 350 2 +Refer: 712 774 N 1 0 0 1 230 -39 2 +EndChar + +StartChar: uni03C5030403130300 +Encoding: 65768 -1 2527 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 3 + 2 + 31 + 42 + 47 + 42 + 79 + 42 + 3 + 191 + 42 + 1 + 16 + 42 + 128 + 42 + 160 + 42 + 192 + 42 + 240 + 42 + 5 + 42 + 1 + 22 + 22 + 17 + 38 + 3 + 2 + 1 + 24 + 0 + 24 + 25 + 6 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 210 0 2 +Refer: 1953 8141 N 1 0 0 1 200 350 2 +EndChar + +StartChar: uni03C5030403130301 +Encoding: 65769 -1 2528 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 1 + 2 + 31 + 38 + 47 + 38 + 79 + 38 + 3 + 191 + 38 + 1 + 16 + 38 + 128 + 38 + 160 + 38 + 192 + 38 + 240 + 38 + 5 + 38 + 3 + 40 + 40 + 17 + 38 + 3 + 2 + 1 + 41 + 0 + 41 + 42 + 6 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 220 350 2 +Refer: 651 713 N 1 0 0 1 210 0 2 +EndChar + +StartChar: uni03C5030403140300 +Encoding: 65770 -1 2529 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 1 + 2 + 31 + 38 + 47 + 38 + 79 + 38 + 3 + 191 + 38 + 1 + 16 + 38 + 128 + 38 + 160 + 38 + 192 + 38 + 240 + 38 + 5 + 38 + 3 + 40 + 40 + 17 + 38 + 3 + 2 + 1 + 41 + 0 + 41 + 42 + 6 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 200 350 2 +Refer: 651 713 N 1 0 0 1 210 0 2 +EndChar + +StartChar: uni03C5030403140301 +Encoding: 65771 -1 2530 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 39 + 1 + 2 + 31 + 38 + 47 + 38 + 79 + 38 + 3 + 191 + 38 + 1 + 16 + 38 + 128 + 38 + 160 + 38 + 192 + 38 + 240 + 38 + 5 + 38 + 3 + 40 + 40 + 17 + 38 + 3 + 2 + 1 + 41 + 0 + 41 + 42 + 6 + 13 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +DELTAP2 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 240 350 2 +Refer: 651 713 N 1 0 0 1 210 0 2 +EndChar + +StartChar: uni03C5030603130300 +Encoding: 65772 -1 2531 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 1 + 2 + 47 + 38 + 63 + 38 + 79 + 38 + 191 + 38 + 4 + 128 + 38 + 240 + 38 + 2 + 38 + 3 + 39 + 39 + 17 + 38 + 1 + 3 + 2 + 42 + 0 + 42 + 50 + 6 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1953 8141 N 1 0 0 1 210 350 2 +Refer: 712 774 N 1 0 0 1 540 -39 2 +EndChar + +StartChar: uni03C5030603130301 +Encoding: 65773 -1 2532 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 1 + 2 + 47 + 38 + 63 + 38 + 79 + 38 + 191 + 38 + 4 + 128 + 38 + 240 + 38 + 2 + 38 + 3 + 39 + 39 + 17 + 38 + 1 + 3 + 2 + 42 + 0 + 42 + 50 + 6 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1954 8142 N 1 0 0 1 220 350 2 +Refer: 712 774 N 1 0 0 1 540 -39 2 +EndChar + +StartChar: uni03C5030603140300 +Encoding: 65774 -1 2533 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 1 + 2 + 47 + 38 + 63 + 38 + 79 + 38 + 191 + 38 + 4 + 128 + 38 + 240 + 38 + 2 + 38 + 3 + 39 + 39 + 17 + 38 + 1 + 3 + 2 + 42 + 0 + 42 + 50 + 6 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1966 8157 N 1 0 0 1 190 350 2 +Refer: 712 774 N 1 0 0 1 540 -39 2 +EndChar + +StartChar: uni03C5030603140301 +Encoding: 65775 -1 2534 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 1 + 2 + 47 + 38 + 63 + 38 + 79 + 38 + 191 + 38 + 4 + 128 + 38 + 240 + 38 + 2 + 38 + 3 + 39 + 39 + 17 + 38 + 1 + 3 + 2 + 42 + 0 + 42 + 50 + 6 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +SRP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP1 +SHC[rp1] +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 1967 8158 N 1 0 0 1 260 350 2 +Refer: 712 774 N 1 0 0 1 540 -39 2 +EndChar + +StartChar: uni03B9030803040300 +Encoding: 65776 -1 2535 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 148 + 4 + 43 + 24 + 59 + 24 + 107 + 24 + 123 + 24 + 4 + 11 + 24 + 27 + 24 + 43 + 24 + 59 + 24 + 91 + 24 + 139 + 24 + 155 + 24 + 7 + 59 + 24 + 123 + 24 + 155 + 24 + 3 + 212 + 24 + 1 + 244 + 24 + 1 + 24 + 3 + 159 + 20 + 1 + 2 + 31 + 20 + 47 + 20 + 111 + 20 + 127 + 20 + 159 + 20 + 191 + 20 + 207 + 20 + 239 + 20 + 8 + 15 + 20 + 47 + 20 + 63 + 20 + 95 + 20 + 143 + 20 + 207 + 20 + 255 + 20 + 7 + 63 + 20 + 95 + 20 + 111 + 20 + 127 + 20 + 143 + 20 + 175 + 20 + 191 + 20 + 223 + 20 + 239 + 20 + 255 + 20 + 10 + 20 + 2 + 1 + 10 + 95 + 10 + 1 + 0 + 10 + 16 + 10 + 32 + 10 + 48 + 10 + 64 + 10 + 5 + 16 + 10 + 32 + 10 + 64 + 10 + 80 + 10 + 96 + 10 + 112 + 10 + 208 + 10 + 224 + 10 + 240 + 10 + 9 + 10 + 17 + 38 + 4 + 3 + 2 + 1 + 14 + 0 + 14 + 13 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +DELTAP2 +DELTAP3 +DELTAP3 +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +SDS +DELTAP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -94 -69 2 +Refer: 651 713 N 1 0 0 1 -96 166 2 +Refer: 2573 -1 N 1 0 0 1 -168 0 2 +EndChar + +StartChar: uni03B9030803040301 +Encoding: 65777 -1 2536 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 148 + 4 + 43 + 24 + 59 + 24 + 107 + 24 + 123 + 24 + 4 + 11 + 24 + 27 + 24 + 43 + 24 + 59 + 24 + 91 + 24 + 139 + 24 + 155 + 24 + 7 + 59 + 24 + 123 + 24 + 155 + 24 + 3 + 212 + 24 + 1 + 244 + 24 + 1 + 24 + 3 + 159 + 20 + 1 + 2 + 31 + 20 + 47 + 20 + 111 + 20 + 127 + 20 + 159 + 20 + 191 + 20 + 207 + 20 + 239 + 20 + 8 + 15 + 20 + 47 + 20 + 63 + 20 + 95 + 20 + 143 + 20 + 207 + 20 + 255 + 20 + 7 + 63 + 20 + 95 + 20 + 111 + 20 + 127 + 20 + 143 + 20 + 175 + 20 + 191 + 20 + 223 + 20 + 239 + 20 + 255 + 20 + 10 + 20 + 2 + 1 + 10 + 95 + 10 + 1 + 0 + 10 + 16 + 10 + 32 + 10 + 48 + 10 + 64 + 10 + 5 + 16 + 10 + 32 + 10 + 64 + 10 + 80 + 10 + 96 + 10 + 112 + 10 + 208 + 10 + 224 + 10 + 240 + 10 + 9 + 10 + 17 + 38 + 4 + 3 + 2 + 1 + 15 + 0 + 15 + 12 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +DELTAP2 +DELTAP3 +DELTAP3 +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +SDS +DELTAP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -94 -69 2 +Refer: 651 713 N 1 0 0 1 -96 166 2 +Refer: 2574 -1 N 1 0 0 1 -42 0 2 +EndChar + +StartChar: uni03B9030803060300 +Encoding: 65778 -1 2537 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 131 + 4 + 111 + 34 + 127 + 34 + 143 + 34 + 191 + 34 + 4 + 63 + 34 + 143 + 34 + 159 + 34 + 3 + 15 + 34 + 63 + 34 + 79 + 34 + 127 + 34 + 159 + 34 + 191 + 34 + 6 + 208 + 34 + 1 + 240 + 34 + 1 + 34 + 3 + 31 + 21 + 47 + 21 + 111 + 21 + 127 + 21 + 159 + 21 + 191 + 21 + 207 + 21 + 239 + 21 + 8 + 63 + 21 + 143 + 21 + 159 + 21 + 3 + 15 + 21 + 47 + 21 + 63 + 21 + 127 + 21 + 159 + 21 + 5 + 21 + 2 + 1 + 14 + 95 + 14 + 1 + 0 + 14 + 16 + 14 + 32 + 14 + 48 + 14 + 64 + 14 + 5 + 16 + 14 + 32 + 14 + 64 + 14 + 80 + 14 + 96 + 14 + 112 + 14 + 208 + 14 + 224 + 14 + 240 + 14 + 9 + 14 + 17 + 38 + 4 + 3 + 21 + 0 + 21 + 29 + 4 + 5 + 37 + 2 + 1 + 14 + 0 + 14 + 13 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +DELTAP2 +DELTAP3 +DELTAP3 +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -94 -69 2 +Refer: 712 774 N 1 0 0 1 230 166 2 +Refer: 2573 -1 N 1 0 0 1 -168 0 2 +EndChar + +StartChar: uni03B9030803060301 +Encoding: 65779 -1 2538 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 131 + 4 + 111 + 34 + 127 + 34 + 143 + 34 + 191 + 34 + 4 + 63 + 34 + 143 + 34 + 159 + 34 + 3 + 15 + 34 + 63 + 34 + 79 + 34 + 127 + 34 + 159 + 34 + 191 + 34 + 6 + 208 + 34 + 1 + 240 + 34 + 1 + 34 + 3 + 31 + 21 + 47 + 21 + 111 + 21 + 127 + 21 + 159 + 21 + 191 + 21 + 207 + 21 + 239 + 21 + 8 + 63 + 21 + 143 + 21 + 159 + 21 + 3 + 15 + 21 + 47 + 21 + 63 + 21 + 127 + 21 + 159 + 21 + 5 + 21 + 2 + 1 + 14 + 95 + 14 + 1 + 0 + 14 + 16 + 14 + 32 + 14 + 48 + 14 + 64 + 14 + 5 + 16 + 14 + 32 + 14 + 64 + 14 + 80 + 14 + 96 + 14 + 112 + 14 + 208 + 14 + 224 + 14 + 240 + 14 + 9 + 14 + 17 + 38 + 4 + 3 + 21 + 0 + 21 + 29 + 4 + 5 + 37 + 2 + 1 + 14 + 0 + 14 + 13 + 4 + 5 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +DELTAP2 +DELTAP3 +DELTAP3 +SRP1 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 875 953 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 -94 -69 2 +Refer: 712 774 N 1 0 0 1 230 166 2 +Refer: 2574 -1 N 1 0 0 1 -42 0 2 +EndChar + +StartChar: uni03C5030803040300 +Encoding: 65780 -1 2539 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 147 + 4 + 43 + 36 + 59 + 36 + 107 + 36 + 123 + 36 + 4 + 11 + 36 + 27 + 36 + 43 + 36 + 59 + 36 + 91 + 36 + 139 + 36 + 155 + 36 + 7 + 59 + 36 + 123 + 36 + 155 + 36 + 3 + 212 + 36 + 1 + 244 + 36 + 1 + 36 + 1 + 159 + 24 + 1 + 2 + 31 + 24 + 47 + 24 + 111 + 24 + 127 + 24 + 159 + 24 + 191 + 24 + 207 + 24 + 239 + 24 + 8 + 15 + 24 + 47 + 24 + 63 + 24 + 95 + 24 + 143 + 24 + 207 + 24 + 255 + 24 + 7 + 63 + 24 + 95 + 24 + 111 + 24 + 127 + 24 + 143 + 24 + 175 + 24 + 191 + 24 + 223 + 24 + 239 + 24 + 255 + 24 + 10 + 24 + 2 + 3 + 95 + 30 + 1 + 0 + 30 + 16 + 30 + 32 + 30 + 48 + 30 + 64 + 30 + 5 + 16 + 30 + 32 + 30 + 64 + 30 + 80 + 30 + 96 + 30 + 112 + 30 + 208 + 30 + 224 + 30 + 240 + 30 + 9 + 30 + 17 + 38 + 4 + 3 + 2 + 1 + 30 + 0 + 30 + 29 + 7 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +DELTAP2 +DELTAP3 +DELTAP3 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +SDS +DELTAP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 203 166 2 +Refer: 106 168 N 1 0 0 1 205 -69 2 +Refer: 2573 -1 N 1 0 0 1 121 0 2 +EndChar + +StartChar: uni03C5030803040301 +Encoding: 65781 -1 2540 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 147 + 4 + 43 + 36 + 59 + 36 + 107 + 36 + 123 + 36 + 4 + 11 + 36 + 27 + 36 + 43 + 36 + 59 + 36 + 91 + 36 + 139 + 36 + 155 + 36 + 7 + 59 + 36 + 123 + 36 + 155 + 36 + 3 + 212 + 36 + 1 + 244 + 36 + 1 + 36 + 1 + 159 + 24 + 1 + 2 + 31 + 24 + 47 + 24 + 111 + 24 + 127 + 24 + 159 + 24 + 191 + 24 + 207 + 24 + 239 + 24 + 8 + 15 + 24 + 47 + 24 + 63 + 24 + 95 + 24 + 143 + 24 + 207 + 24 + 255 + 24 + 7 + 63 + 24 + 95 + 24 + 111 + 24 + 127 + 24 + 143 + 24 + 175 + 24 + 191 + 24 + 223 + 24 + 239 + 24 + 255 + 24 + 10 + 24 + 2 + 3 + 95 + 30 + 1 + 0 + 30 + 16 + 30 + 32 + 30 + 48 + 30 + 64 + 30 + 5 + 16 + 30 + 32 + 30 + 64 + 30 + 80 + 30 + 96 + 30 + 112 + 30 + 208 + 30 + 224 + 30 + 240 + 30 + 9 + 30 + 17 + 38 + 4 + 3 + 2 + 1 + 30 + 0 + 30 + 29 + 7 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +DELTAP2 +DELTAP3 +DELTAP3 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +SDS +DELTAP1 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 651 713 N 1 0 0 1 203 166 2 +Refer: 106 168 N 1 0 0 1 205 -69 2 +Refer: 2574 -1 N 1 0 0 1 244 0 2 +EndChar + +StartChar: uni03C5030803060300 +Encoding: 65782 -1 2541 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 123 + 4 + 111 + 46 + 127 + 46 + 143 + 46 + 191 + 46 + 4 + 63 + 46 + 143 + 46 + 159 + 46 + 3 + 15 + 46 + 63 + 46 + 79 + 46 + 127 + 46 + 159 + 46 + 191 + 46 + 6 + 208 + 46 + 1 + 240 + 46 + 1 + 46 + 3 + 31 + 33 + 47 + 33 + 111 + 33 + 127 + 33 + 159 + 33 + 191 + 33 + 207 + 33 + 239 + 33 + 8 + 63 + 33 + 143 + 33 + 159 + 33 + 3 + 15 + 33 + 47 + 33 + 63 + 33 + 127 + 33 + 159 + 33 + 5 + 33 + 2 + 1 + 95 + 26 + 1 + 0 + 26 + 16 + 26 + 32 + 26 + 48 + 26 + 64 + 26 + 5 + 16 + 26 + 32 + 26 + 64 + 26 + 80 + 26 + 96 + 26 + 112 + 26 + 208 + 26 + 224 + 26 + 240 + 26 + 9 + 26 + 17 + 38 + 4 + 3 + 2 + 1 + 26 + 0 + 26 + 25 + 7 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +DELTAP2 +DELTAP3 +DELTAP3 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 205 -69 2 +Refer: 712 774 N 1 0 0 1 530 166 2 +Refer: 2573 -1 N 1 0 0 1 129 0 2 +EndChar + +StartChar: uni03C5030803060301 +Encoding: 65783 -1 2542 +Width: 1120 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 123 + 4 + 111 + 46 + 127 + 46 + 143 + 46 + 191 + 46 + 4 + 63 + 46 + 143 + 46 + 159 + 46 + 3 + 15 + 46 + 63 + 46 + 79 + 46 + 127 + 46 + 159 + 46 + 191 + 46 + 6 + 208 + 46 + 1 + 240 + 46 + 1 + 46 + 3 + 31 + 33 + 47 + 33 + 111 + 33 + 127 + 33 + 159 + 33 + 191 + 33 + 207 + 33 + 239 + 33 + 8 + 63 + 33 + 143 + 33 + 159 + 33 + 3 + 15 + 33 + 47 + 33 + 63 + 33 + 127 + 33 + 159 + 33 + 5 + 33 + 2 + 1 + 95 + 26 + 1 + 0 + 26 + 16 + 26 + 32 + 26 + 48 + 26 + 64 + 26 + 5 + 16 + 26 + 32 + 26 + 64 + 26 + 80 + 26 + 96 + 26 + 112 + 26 + 208 + 26 + 224 + 26 + 240 + 26 + 9 + 26 + 17 + 38 + 4 + 3 + 2 + 1 + 26 + 0 + 26 + 25 + 7 + 15 + 37 +CALL +SRP1 +SHC[rp1] +SHC[rp1] +SHC[rp1] +SHC[rp1] +SVTCA[y-axis] +CALL +DELTAP2 +DELTAP3 +DELTAP3 +SHC[rp1] +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP1 +DELTAP2 +DELTAP3 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 887 965 N 1 0 0 1 0 0 3 +Refer: 106 168 N 1 0 0 1 198 -69 2 +Refer: 712 774 N 1 0 0 1 523 166 2 +Refer: 2574 -1 N 1 0 0 1 225 0 2 +EndChar + +StartChar: dottediacute +Encoding: 65784 -1 2543 +Width: 455 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 25 + 2 + 13 + 159 + 13 + 175 + 13 + 2 + 0 + 13 + 192 + 13 + 240 + 13 + 3 + 13 + 5 + 38 + 2 + 9 + 89 + 9 + 12 + 5 + 7 + 37 +CALL +SRP1 +SHC[rp1] +SVTCA[y-axis] +CALL +DELTAP1 +DELTAP1 +SRP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 76 105 N 1 0 0 1 0 0 3 +Refer: 2303 -1 N 1 0 0 1 32 59 2 +EndChar + +StartChar: Eng.alt1 +Encoding: 65785 -1 2544 +Width: 1481 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 30 + 9 + 32 + 24 + 18 + 18 + 20 + 19 + 19 + 3 + 32 + 3 + 36 + 35 + 28 + 13 + 95 + 89 + 28 + 4 + 25 + 19 + 21 + 3 + 0 + 6 + 95 + 89 + 0 + 19 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SRP2 +IP +MIAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +944 -425 m 0,0,1 + 849 -425 849 -425 767 -388 c 128,-1,2 + 685 -351 685 -351 626 -277 c 1,3,-1 + 753 -162 l 1,4,5 + 843 -272 843 -272 949 -272 c 0,6,7 + 1077 -272 1077 -272 1130 -165 c 128,-1,8 + 1183 -58 1183 -58 1183 191 c 2,9,-1 + 1183 818 l 2,10,11 + 1183 1033 1183 1033 1085 1153.5 c 128,-1,12 + 987 1274 987 1274 811 1274 c 0,13,14 + 692 1274 692 1274 588 1222 c 128,-1,15 + 484 1170 484 1170 423.5 1081 c 128,-1,16 + 363 992 363 992 363 891 c 2,17,-1 + 363 0 l 1,18,-1 + 172 0 l 1,19,-1 + 172 1092 l 1,20,-1 + 168 1409 l 1,21,-1 + 352 1409 l 1,22,23 + 359 1255 359 1255 359 1158 c 1,24,-1 + 363 1158 l 1,25,26 + 435 1287 435 1287 570.5 1358 c 128,-1,27 + 706 1429 706 1429 869 1429 c 0,28,29 + 1112 1429 1112 1429 1242.5 1276.5 c 128,-1,30 + 1373 1124 1373 1124 1373 839 c 2,31,-1 + 1373 187 l 2,32,33 + 1373 -132 1373 -132 1267 -278.5 c 128,-1,34 + 1161 -425 1161 -425 944 -425 c 0,0,1 +EndSplineSet +EndChar + +StartChar: Eng.alt2 +Encoding: 65786 -1 2545 +Width: 1479 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 29 + 23 + 21 + 21 + 0 + 14 + 17 + 17 + 12 + 18 + 0 + 18 + 5 + 0 + 3 + 27 + 26 + 21 + 14 + 18 + 24 + 19 + 3 + 3 + 8 + 95 + 89 + 3 + 18 + 18 +SVTCA[y-axis] +MIAP[rnd] +MDRP[rnd,grey] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +SHP[rp1] +SRP2 +IP +IP +SRP1 +SRP2 +SVTCA[x-axis] +SLOOP +IP +SRP1 +SRP2 +IP +SHP[rp2] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1312 -134 m 2,0,1 + 1312 -284 1312 -284 1249.5 -354.5 c 128,-1,2 + 1187 -425 1187 -425 1065 -425 c 0,3,4 + 983 -425 983 -425 918 -411 c 1,5,-1 + 918 -259 l 1,6,7 + 970 -270 970 -270 1010 -270 c 0,8,9 + 1055 -270 1055 -270 1079.5 -256 c 128,-1,10 + 1104 -242 1104 -242 1114.5 -209.5 c 128,-1,11 + 1125 -177 1125 -177 1125 -94 c 2,12,-1 + 1125 -3 l 1,13,-1 + 328 1200 l 1,14,-1 + 333 1103 l 1,15,-1 + 338 936 l 1,16,-1 + 338 0 l 1,17,-1 + 168 0 l 1,18,-1 + 168 1409 l 1,19,-1 + 390 1409 l 1,20,-1 + 1152 261 l 1,21,22 + 1140 457 1140 457 1140 545 c 2,23,-1 + 1140 1409 l 1,24,-1 + 1312 1409 l 1,25,-1 + 1312 -134 l 2,0,1 +EndSplineSet +EndChar + +StartChar: Eng.alt3 +Encoding: 65787 -1 2546 +Width: 1481 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 36 + 12 + 35 + 27 + 21 + 21 + 22 + 5 + 4 + 4 + 23 + 22 + 35 + 22 + 39 + 38 + 27 + 31 + 22 + 22 + 31 + 31 + 16 + 95 + 89 + 31 + 4 + 24 + 3 + 0 + 9 + 95 + 89 + 4 + 4 + 0 + 19 +SVTCA[y-axis] +MIAP[rnd] +SHP[rp2] +MDAP[rnd] +CALL +SVTCA[y-axis] +RTG +MIAP[rnd] +MIAP[rnd] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +IP +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +SRP1 +SHP[rp1] +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +761 -20 m 0,0,1 + 581 -20 581 -20 450 40.5 c 128,-1,2 + 319 101 319 101 250.5 214.5 c 128,-1,3 + 182 328 182 328 172 489 c 1,4,-1 + 363 489 l 1,5,6 + 373 362 373 362 419.5 283.5 c 128,-1,7 + 466 205 466 205 546.5 168 c 128,-1,8 + 627 131 627 131 765 131 c 0,9,10 + 977 131 977 131 1080 260.5 c 128,-1,11 + 1183 390 1183 390 1183 665 c 2,12,-1 + 1183 818 l 2,13,14 + 1183 1033 1183 1033 1085 1153.5 c 128,-1,15 + 987 1274 987 1274 811 1274 c 0,16,17 + 692 1274 692 1274 588 1222 c 128,-1,18 + 484 1170 484 1170 423.5 1081 c 128,-1,19 + 363 992 363 992 363 891 c 2,20,-1 + 363 700 l 1,21,-1 + 172 700 l 1,22,-1 + 172 1092 l 1,23,-1 + 168 1409 l 1,24,-1 + 352 1409 l 1,25,26 + 359 1255 359 1255 359 1178 c 1,27,-1 + 363 1178 l 1,28,29 + 435 1297 435 1297 567 1363 c 128,-1,30 + 699 1429 699 1429 869 1429 c 0,31,32 + 1112 1429 1112 1429 1242.5 1276.5 c 128,-1,33 + 1373 1124 1373 1124 1373 839 c 2,34,-1 + 1373 661 l 2,35,36 + 1373 321 1373 321 1218.5 150.5 c 128,-1,37 + 1064 -20 1064 -20 761 -20 c 0,0,1 +EndSplineSet +EndChar + +StartChar: zero.alt +Encoding: 65788 -1 2547 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 23 + 9 + 15 + 229 + 89 + 0 + 9 + 1 + 41 + 3 + 9 + 3 + 21 + 229 + 89 + 47 + 3 + 63 + 3 + 2 + 16 + 3 + 1 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +306 490 m 0,0,1 + 306 301 306 301 227 203.5 c 128,-1,2 + 148 106 148 106 -3 106 c 0,3,4 + -153 106 -153 106 -230.5 202.5 c 128,-1,5 + -308 299 -308 299 -308 490 c 0,6,7 + -308 684 -308 684 -233.5 779 c 128,-1,8 + -159 874 -159 874 1 874 c 0,9,10 + 157 874 157 874 231.5 777.5 c 128,-1,11 + 306 681 306 681 306 490 c 0,0,1 +160 490 m 0,12,13 + 160 629 160 629 122 693 c 128,-1,14 + 84 757 84 757 1 757 c 0,15,16 + -85 757 -85 757 -123.5 692.5 c 128,-1,17 + -162 628 -162 628 -162 490 c 0,18,19 + -162 358 -162 358 -123 290.5 c 128,-1,20 + -84 223 -84 223 -2 223 c 0,21,22 + 160 223 160 223 160 490 c 0,12,13 +EndSplineSet +EndChar + +StartChar: one.alt +Encoding: 65789 -1 2548 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 27 + 1 + 0 + 2 + 128 + 47 + 4 + 159 + 4 + 2 + 191 + 4 + 1 + 4 + 0 + 0 + 1 + 0 + 0 + 16 + 0 + 2 + 0 + 0 + 16 + 0 + 2 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +MDAP[rnd] +DELTAP1 +DELTAP2 +SMD +MDRP[min,rnd,black] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +31 125 m 1,0,-1 + 31 726 l 1,1,-1 + -168 606 l 1,2,-1 + -168 746 l 1,3,-1 + 40 867 l 1,4,-1 + 167 867 l 1,5,-1 + 167 125 l 1,6,-1 + 31 125 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: two.alt +Encoding: 65790 -1 2549 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 37 + 7 + 23 + 17 + 0 + 13 + 13 + 17 + 17 + 10 + 229 + 89 + 0 + 17 + 1 + 41 + 3 + 17 + 1 + 26 + 0 + 26 + 229 + 89 + 0 + 0 + 1 + 0 + 0 + 16 + 0 + 2 + 0 + 0 + 16 + 0 + 2 + 0 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP1 +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-291 125 m 1,0,-1 + -291 192 l 1,1,2 + -255 262 -255 262 -194 324 c 128,-1,3 + -133 386 -133 386 -33 456 c 0,4,5 + 59 520 59 520 93.5 561.5 c 128,-1,6 + 128 603 128 603 128 647 c 0,7,8 + 128 701 128 701 93 729 c 128,-1,9 + 58 757 58 757 -3 757 c 0,10,11 + -61 757 -61 757 -102.5 730 c 128,-1,12 + -144 703 -144 703 -152 650 c 1,13,-1 + -286 679 l 1,14,15 + -275 767 -275 767 -197 820.5 c 128,-1,16 + -119 874 -119 874 2 874 c 0,17,18 + 133 874 133 874 205.5 818 c 128,-1,19 + 278 762 278 762 278 662 c 0,20,21 + 278 593 278 593 236 534 c 128,-1,22 + 194 475 194 475 113 421 c 0,23,24 + -9 340 -9 340 -51.5 305.5 c 128,-1,25 + -94 271 -94 271 -115 235 c 1,26,-1 + 292 235 l 1,27,-1 + 292 125 l 1,28,-1 + -291 125 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: three.alt +Encoding: 65791 -1 2550 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 58 + 33 + 16 + 15 + 16 + 15 + 228 + 89 + 16 + 64 + 9 + 12 + 72 + 16 + 16 + 28 + 3 + 15 + 24 + 31 + 24 + 47 + 24 + 3 + 15 + 3 + 24 + 24 + 28 + 28 + 22 + 229 + 89 + 0 + 28 + 1 + 41 + 3 + 28 + 3 + 9 + 229 + 89 + 80 + 7 + 96 + 7 + 2 + 7 + 7 + 47 + 3 + 63 + 3 + 2 + 16 + 3 + 1 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHP[rp1] +MDAP[rnd] +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SRP1 +SRP2 +IP +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +304 331 m 0,0,1 + 304 228 304 228 227 167 c 128,-1,2 + 150 106 150 106 4 106 c 0,3,4 + -127 106 -127 106 -208.5 160.5 c 128,-1,5 + -290 215 -290 215 -304 309 c 1,6,-1 + -157 335 l 1,7,8 + -139 223 -139 223 3 223 c 0,9,10 + 75 223 75 223 116 255 c 128,-1,11 + 157 287 157 287 157 346 c 0,12,13 + 157 452 157 452 -29 452 c 2,14,-1 + -92 452 l 1,15,-1 + -78 559 l 1,16,-1 + -27 559 l 2,17,18 + 60 559 60 559 98.5 582.5 c 128,-1,19 + 137 606 137 606 137 655 c 0,20,21 + 137 756 137 756 -3 756 c 0,22,23 + -136 756 -136 756 -148 658 c 1,24,-1 + -288 673 l 1,25,26 + -277 764 -277 764 -199 819 c 128,-1,27 + -121 874 -121 874 0 874 c 0,28,29 + 132 874 132 874 205.5 818 c 128,-1,30 + 279 762 279 762 279 668 c 0,31,32 + 279 533 279 533 105 500 c 1,33,-1 + 105 498 l 1,34,35 + 304 479 304 479 304 331 c 0,0,1 +EndSplineSet +EndChar + +StartChar: four.alt +Encoding: 65792 -1 2551 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 41 + 0 + 4 + 15 + 4 + 229 + 89 + 8 + 5 + 11 + 6 + 15 + 64 + 9 + 12 + 72 + 15 + 15 + 2 + 47 + 6 + 159 + 6 + 2 + 191 + 6 + 1 + 6 + 0 + 2 + 1 + 0 + 2 + 16 + 2 + 2 + 0 + 2 + 16 + 2 + 2 + 2 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +DELTAP3 +MDAP[rnd] +DELTAP1 +DELTAP2 +SRP2 +IP +MDAP[rnd] +CALL +SRP2 +IP +SHP[rp1] +SHP[rp1] +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +208 284 m 1,0,-1 + 208 125 l 1,1,-1 + 92 125 l 1,2,-1 + 92 284 l 1,3,-1 + -318 284 l 1,4,-1 + -318 368 l 1,5,-1 + 79 867 l 1,6,-1 + 208 867 l 1,7,-1 + 208 397 l 1,8,-1 + 321 397 l 1,9,-1 + 321 284 l 1,10,-1 + 208 284 l 1,0,-1 +85 715 m 1,11,-1 + 49 662 l 1,12,-1 + -130 439 l 2,13,14 + -143 418 -143 418 -167 397 c 1,15,-1 + 85 397 l 1,16,-1 + 85 715 l 1,11,-1 +EndSplineSet +EndChar + +StartChar: five.alt +Encoding: 65793 -1 2552 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 10 + 24 + 27 + 19 + 19 + 27 + 27 + 15 + 228 + 89 + 27 +PUSHW_1 + -64 +NPUSHB + 50 + 9 + 12 + 72 + 27 + 27 + 20 + 3 + 20 + 23 + 229 + 89 + 63 + 20 + 95 + 20 + 175 + 20 + 3 + 15 + 20 + 127 + 20 + 207 + 20 + 239 + 20 + 4 + 13 + 3 + 20 + 3 + 9 + 229 + 89 + 80 + 6 + 96 + 6 + 2 + 6 + 6 + 47 + 3 + 63 + 3 + 2 + 16 + 3 + 1 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +SHP[rp1] +MDAP[rnd] +DELTAP1 +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +RTG +MDAP[rnd] +SRP2 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +305 378 m 0,0,1 + 305 253 305 253 222.5 179.5 c 128,-1,2 + 140 106 140 106 1 106 c 0,3,4 + -256 106 -256 106 -305 307 c 1,5,-1 + -158 331 l 1,6,7 + -138 272 -138 272 -98.5 245.5 c 128,-1,8 + -59 219 -59 219 3 219 c 0,9,10 + 79 219 79 219 122.5 260.5 c 128,-1,11 + 166 302 166 302 166 373 c 0,12,13 + 166 440 166 440 129.5 481 c 128,-1,14 + 93 522 93 522 13 522 c 0,15,16 + -50 522 -50 522 -90.5 502 c 128,-1,17 + -131 482 -131 482 -163 452 c 1,18,-1 + -280 452 l 1,19,-1 + -251 859 l 1,20,-1 + 258 859 l 1,21,-1 + 258 742 l 1,22,-1 + -140 742 l 1,23,-1 + -157 565 l 1,24,25 + -122 593 -122 593 -80 610.5 c 128,-1,26 + -38 628 -38 628 25 628 c 0,27,28 + 155 628 155 628 230 560.5 c 128,-1,29 + 305 493 305 493 305 378 c 0,0,1 +EndSplineSet +EndChar + +StartChar: six.alt +Encoding: 65794 -1 2553 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_6 + 20 + 26 + 228 + 89 + 17 + 20 +PUSHW_1 + -64 +NPUSHB + 34 + 9 + 12 + 72 + 20 + 20 + 3 + 9 + 9 + 14 + 228 + 89 + 12 + 12 + 0 + 9 + 1 + 41 + 3 + 9 + 3 + 32 + 228 + 89 + 47 + 3 + 63 + 3 + 79 + 3 + 3 + 16 + 3 + 1 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +IP +CALL +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +297 367 m 0,0,1 + 297 248 297 248 219 176.5 c 128,-1,2 + 141 105 141 105 10 105 c 0,3,4 + -140 105 -140 105 -218.5 199 c 128,-1,5 + -297 293 -297 293 -297 472 c 0,6,7 + -297 671 -297 671 -213.5 772.5 c 128,-1,8 + -130 874 -130 874 18 874 c 0,9,10 + 214 874 214 874 269 721 c 1,11,-1 + 134 696 l 1,12,13 + 106 772 106 772 12 772 c 0,14,15 + -66 772 -66 772 -111.5 710.5 c 128,-1,16 + -157 649 -157 649 -157 524 c 1,17,18 + -134 558 -134 558 -86 582.5 c 128,-1,19 + -38 607 -38 607 34 607 c 0,20,21 + 152 607 152 607 224.5 543 c 128,-1,22 + 297 479 297 479 297 367 c 0,0,1 +152 356 m 0,23,24 + 152 431 152 431 117 464.5 c 128,-1,25 + 82 498 82 498 1 498 c 0,26,27 + -66 498 -66 498 -102 461 c 128,-1,28 + -138 424 -138 424 -138 356 c 0,29,30 + -138 287 -138 287 -101.5 248 c 128,-1,31 + -65 209 -65 209 5 209 c 0,32,33 + 74 209 74 209 113 248 c 128,-1,34 + 152 287 152 287 152 356 c 0,23,24 +EndSplineSet +EndChar + +StartChar: seven.alt +Encoding: 65795 -1 2554 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 32 + 0 + 8 + 9 + 8 + 229 + 89 + 47 + 9 + 127 + 9 + 159 + 9 + 239 + 9 + 4 + 79 + 9 + 191 + 9 + 2 + 9 + 0 + 4 + 16 + 4 + 2 + 0 + 4 + 16 + 4 + 2 + 4 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SRP1 +SVTCA[y-axis] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +291 764 m 1,0,1 + 132 593 132 593 69.5 445 c 128,-1,2 + 7 297 7 297 7 124 c 1,3,-1 + -141 124 l 1,4,5 + -141 274 -141 274 -77 419.5 c 128,-1,6 + -13 565 -13 565 152 749 c 1,7,-1 + -291 749 l 1,8,-1 + -291 860 l 1,9,-1 + 291 860 l 1,10,-1 + 291 764 l 1,0,1 +EndSplineSet +EndChar + +StartChar: eight.alt +Encoding: 65796 -1 2555 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 22 + 9 + 33 + 38 + 33 + 38 + 228 + 89 + 33 + 64 + 9 + 12 + 72 + 33 + 33 + 16 + 3 + 16 + 28 + 228 + 89 + 0 + 16 + 1 + 41 + 3 + 16 + 3 + 43 + 228 + 89 + 47 + 3 + 63 + 3 + 2 + 16 + 3 + 1 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP1 +DELTAP2 +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +304 322 m 0,0,1 + 304 217 304 217 225.5 161.5 c 128,-1,2 + 147 106 147 106 4 106 c 256,3,4 + -139 106 -139 106 -218 162 c 128,-1,5 + -297 218 -297 218 -297 321 c 0,6,7 + -297 393 -297 393 -249 444 c 128,-1,8 + -201 495 -201 495 -121 507 c 1,9,-1 + -121 509 l 1,10,11 + -196 524 -196 524 -235.5 571 c 128,-1,12 + -275 618 -275 618 -275 680 c 0,13,14 + -275 766 -275 766 -199.5 820 c 128,-1,15 + -124 874 -124 874 2 874 c 0,16,17 + 129 874 129 874 206 821 c 128,-1,18 + 283 768 283 768 283 679 c 0,19,20 + 283 618 283 618 242.5 571 c 128,-1,21 + 202 524 202 524 126 510 c 1,22,-1 + 126 508 l 1,23,24 + 207 497 207 497 255.5 448 c 128,-1,25 + 304 399 304 399 304 322 c 0,0,1 +140 675 m 0,26,27 + 140 780 140 780 2 780 c 0,28,29 + -135 780 -135 780 -135 675 c 0,30,31 + -135 621 -135 621 -100.5 592.5 c 128,-1,32 + -66 564 -66 564 3 564 c 0,33,34 + 140 564 140 564 140 675 c 0,26,27 +158 338 m 0,35,36 + 158 396 158 396 117.5 425.5 c 128,-1,37 + 77 455 77 455 2 455 c 0,38,39 + -71 455 -71 455 -111 423 c 128,-1,40 + -151 391 -151 391 -151 336 c 0,41,42 + -151 207 -151 207 6 207 c 0,43,44 + 84 207 84 207 121 239 c 128,-1,45 + 158 271 158 271 158 338 c 0,35,36 +EndSplineSet +EndChar + +StartChar: nine.alt +Encoding: 65797 -1 2556 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 42 + 28 + 22 + 228 + 89 + 19 + 9 + 28 + 64 + 9 + 15 + 72 + 28 + 28 + 3 + 9 + 9 + 16 + 228 + 89 + 13 + 13 + 31 + 9 + 47 + 9 + 63 + 9 + 3 + 0 + 9 + 1 + 10 + 3 + 9 + 3 + 34 + 228 + 89 + 0 + 3 + 1 + 3 +SVTCA[y-axis] +MDAP[rnd] +DELTAP3 +CALL +SVTCA[y-axis] +RTG +MDAP[rnd] +SDS +SDB +DELTAP1 +DELTAP2 +SHP[rp1] +MDAP[rnd] +CALL +SRP1 +SRP2 +SVTCA[y-axis] +IP +RTG +MDAP[rnd] +CALL +SRP2 +IP +CALL +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-296 612 m 0,0,1 + -296 731 -296 731 -218 802.5 c 128,-1,2 + -140 874 -140 874 -9 874 c 0,3,4 + 139 874 139 874 218.5 780.5 c 128,-1,5 + 298 687 298 687 298 507 c 0,6,7 + 298 307 298 307 222 206 c 128,-1,8 + 146 105 146 105 -17 105 c 0,9,10 + -118 105 -118 105 -186 146.5 c 128,-1,11 + -254 188 -254 188 -282 265 c 1,12,-1 + -147 290 l 1,13,14 + -132 249 -132 249 -93 229.5 c 128,-1,15 + -54 210 -54 210 -11 210 c 0,16,17 + 67 210 67 210 112.5 270 c 128,-1,18 + 158 330 158 330 158 455 c 1,19,20 + 135 421 135 421 87 396.5 c 128,-1,21 + 39 372 39 372 -33 372 c 0,22,23 + -151 372 -151 372 -223.5 436 c 128,-1,24 + -296 500 -296 500 -296 612 c 0,0,1 +-151 625 m 0,25,26 + -151 543 -151 543 -113 511 c 128,-1,27 + -75 479 -75 479 0 479 c 0,28,29 + 67 479 67 479 103 517 c 128,-1,30 + 139 555 139 555 139 625 c 0,31,32 + 139 694 139 694 102.5 731 c 128,-1,33 + 66 768 66 768 -4 768 c 0,34,35 + -73 768 -73 768 -112 731 c 128,-1,36 + -151 694 -151 694 -151 625 c 0,25,26 +EndSplineSet +EndChar + +StartChar: circumflexacute +Encoding: 65798 -1 2557 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 128 + 0 + 1 + 0 + 64 + 3 + 3 + 9 + 14 + 128 + 8 + 11 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +MDAP[rnd] +SMD +MDRP[min,rnd,black] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +312 1835 m 1,0,-1 + 529 1835 l 1,1,-1 + 529 1823 l 1,2,-1 + 303 1647 l 1,3,-1 + 207 1647 l 1,4,-1 + 207 1657 l 1,5,-1 + 312 1835 l 1,0,-1 +323 1482 m 1,6,-1 + 323 1462 l 1,7,-1 + 218 1462 l 1,8,-1 + -1 1631 l 1,9,-1 + -3 1631 l 1,10,-1 + -225 1462 l 1,11,-1 + -329 1462 l 1,12,-1 + -329 1482 l 1,13,-1 + -105 1752 l 1,14,-1 + 99 1752 l 1,15,-1 + 323 1482 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: circumflexgrave +Encoding: 65799 -1 2558 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 12 + 128 + 5 + 1 + 5 + 64 + 2 + 2 + 9 + 14 + 128 + 8 + 11 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +MDAP[rnd] +SMD +MDRP[min,rnd,black] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-210 1657 m 1,0,-1 + -210 1647 l 1,1,-1 + -306 1647 l 1,2,-1 + -532 1823 l 1,3,-1 + -532 1835 l 1,4,-1 + -315 1835 l 1,5,-1 + -210 1657 l 1,0,-1 +323 1482 m 1,6,-1 + 323 1462 l 1,7,-1 + 218 1462 l 1,8,-1 + -1 1631 l 1,9,-1 + -3 1631 l 1,10,-1 + -225 1462 l 1,11,-1 + -329 1462 l 1,12,-1 + -329 1482 l 1,13,-1 + -105 1752 l 1,14,-1 + 99 1752 l 1,15,-1 + 323 1482 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: circumflexhook +Encoding: 65800 -1 2559 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 2 + 12 + 128 + 7 + 1 + 7 + 64 + 240 + 14 + 1 + 14 + 14 + 20 + 25 + 128 + 19 + 22 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +MDAP[rnd] +DELTAP1 +SMD +MDRP[min,rnd,grey] +DELTAP1 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +340 1732 m 0,0,1 + 340 1767 340 1767 281 1767 c 0,2,3 + 230 1767 230 1767 190 1751 c 1,4,-1 + 170 1815 l 1,5,6 + 228 1835 228 1835 295 1835 c 0,7,8 + 447 1835 447 1835 447 1739 c 0,9,10 + 447 1695 447 1695 413.5 1667 c 128,-1,11 + 380 1639 380 1639 326 1639 c 1,12,-1 + 326 1616 l 1,13,-1 + 265 1616 l 1,14,-1 + 265 1694 l 1,15,16 + 340 1694 340 1694 340 1732 c 0,0,1 +323 1482 m 1,17,-1 + 323 1462 l 1,18,-1 + 218 1462 l 1,19,-1 + -1 1631 l 1,20,-1 + -3 1631 l 1,21,-1 + -225 1462 l 1,22,-1 + -329 1462 l 1,23,-1 + -329 1482 l 1,24,-1 + -105 1752 l 1,25,-1 + 99 1752 l 1,26,-1 + 323 1482 l 1,17,-1 +EndSplineSet +EndChar + +StartChar: circumflextilde +Encoding: 65801 -1 2560 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 28 + 19 + 4 + 15 + 12 + 31 + 12 + 2 + 12 + 64 + 9 + 15 + 72 + 12 + 16 + 7 + 0 + 0 + 24 + 143 + 28 + 159 + 28 + 175 + 28 + 3 + 28 + 32 + 25 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDRP[min,rnd,black] +DELTAP1 +SHP[rp2] +SHP[rp2] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +MDRP[min,rnd,black] +CALL +DELTAP2 +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +127 1641 m 0,0,1 + 76 1641 76 1641 -8 1679 c 0,2,3 + -93 1716 -93 1716 -129 1716 c 0,4,5 + -174 1716 -174 1716 -196.5 1698.5 c 128,-1,6 + -219 1681 -219 1681 -227 1641 c 1,7,-1 + -318 1641 l 1,8,9 + -307 1723 -307 1723 -285.5 1759 c 128,-1,10 + -264 1795 -264 1795 -226 1815 c 128,-1,11 + -188 1835 -188 1835 -125 1835 c 0,12,13 + -70 1835 -70 1835 13 1798 c 0,14,15 + 96 1760 96 1760 130 1760 c 0,16,17 + 178 1760 178 1760 199.5 1779 c 128,-1,18 + 221 1798 221 1798 227 1835 c 1,19,-1 + 319 1835 l 1,20,21 + 307 1754 307 1754 286 1717 c 128,-1,22 + 265 1680 265 1680 227.5 1660.5 c 128,-1,23 + 190 1641 190 1641 127 1641 c 0,0,1 +1 1529 m 1,24,-1 + -150 1462 l 1,25,-1 + -305 1462 l 1,26,-1 + -305 1474 l 1,27,-1 + -96 1615 l 1,28,-1 + 99 1615 l 1,29,-1 + 307 1472 l 1,30,-1 + 307 1462 l 1,31,-1 + 152 1462 l 1,32,-1 + 1 1529 l 1,24,-1 +EndSplineSet +EndChar + +StartChar: breveacute +Encoding: 65802 -1 2561 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 159 + 0 + 175 + 0 + 2 + 0 + 13 + 6 + 80 + 3 + 96 + 3 + 2 + 3 + 3 + 16 + 32 + 10 + 64 + 10 + 80 + 10 + 96 + 10 + 128 + 10 + 208 + 10 + 6 + 208 + 10 + 224 + 10 + 240 + 10 + 3 + 64 + 10 + 1 + 10 +PUSHW_1 + -64 +PUSHB_5 + 21 + 24 + 72 + 10 + 6 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,grey] +CALL +DELTAP1 +DELTAP2 +DELTAP3 +SHP[rp2] +IP +MDAP[rnd] +DELTAP3 +SRP2 +IP +MDRP[min,rnd,black] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +35 1835 m 1,0,-1 + 261 1835 l 1,1,-1 + 261 1823 l 1,2,-1 + 40 1677 l 1,3,-1 + -90 1677 l 1,4,-1 + -90 1687 l 1,5,-1 + 35 1835 l 1,0,-1 +-1 1462 m 256,6,7 + -130 1462 -130 1462 -212.5 1528.5 c 128,-1,8 + -295 1595 -295 1595 -313 1711 c 1,9,-1 + -206 1711 l 1,10,11 + -189 1643 -189 1643 -136 1615.5 c 128,-1,12 + -83 1588 -83 1588 1 1588 c 256,13,14 + 85 1588 85 1588 137 1616 c 128,-1,15 + 189 1644 189 1644 206 1711 c 1,16,-1 + 313 1711 l 1,17,18 + 291 1591 291 1591 209.5 1526.5 c 128,-1,19 + 128 1462 128 1462 -1 1462 c 256,6,7 +EndSplineSet +EndChar + +StartChar: brevegrave +Encoding: 65803 -1 2562 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 40 + 159 + 5 + 175 + 5 + 2 + 5 + 13 + 6 + 80 + 2 + 96 + 2 + 2 + 2 + 2 + 16 + 32 + 9 + 64 + 9 + 80 + 9 + 96 + 9 + 128 + 9 + 208 + 9 + 6 + 208 + 9 + 224 + 9 + 240 + 9 + 3 + 64 + 9 + 1 + 9 +PUSHW_1 + -64 +PUSHB_5 + 21 + 24 + 72 + 9 + 6 +SVTCA[y-axis] +MDAP[rnd] +MDRP[min,rnd,black] +CALL +DELTAP1 +DELTAP2 +DELTAP3 +SHP[rp2] +IP +MDAP[rnd] +DELTAP3 +SRP2 +IP +MDRP[min,rnd,black] +DELTAP1 +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +92 1687 m 1,0,-1 + 92 1677 l 1,1,-1 + -38 1677 l 1,2,-1 + -259 1823 l 1,3,-1 + -259 1835 l 1,4,-1 + -33 1835 l 1,5,-1 + 92 1687 l 1,0,-1 +-1 1462 m 256,6,7 + -130 1462 -130 1462 -212.5 1528.5 c 128,-1,8 + -295 1595 -295 1595 -313 1711 c 1,9,-1 + -206 1711 l 1,10,11 + -189 1643 -189 1643 -136 1615.5 c 128,-1,12 + -83 1588 -83 1588 1 1588 c 256,13,14 + 85 1588 85 1588 137 1616 c 128,-1,15 + 189 1644 189 1644 206 1711 c 1,16,-1 + 313 1711 l 1,17,18 + 291 1591 291 1591 209.5 1526.5 c 128,-1,19 + 128 1462 128 1462 -1 1462 c 256,6,7 +EndSplineSet +EndChar + +StartChar: brevehook +Encoding: 65804 -1 2563 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 38 + 16 + 28 + 21 + 26 + 0 + 27 + 27 + 0 + 21 + 64 + 14 + 24 + 72 + 21 + 7 + 10 + 10 + 32 + 4 + 64 + 4 + 80 + 4 + 96 + 4 + 128 + 4 + 208 + 4 + 6 + 208 + 4 + 224 + 4 + 240 + 4 + 3 + 4 +PUSHW_1 + -64 +PUSHB_4 + 29 + 32 + 72 + 4 +PUSHW_1 + -64 +PUSHB_4 + 21 + 24 + 72 + 4 +PUSHW_1 + -64 +PUSHB_5 + 13 + 17 + 72 + 4 + 0 +SVTCA[y-axis] +MDAP[rnd] +MDRP[rp0,min,rnd,grey] +CALL +CALL +CALL +DELTAP2 +DELTAP3 +SHP[rp2] +SRP2 +IP +MDRP[min,rnd,grey] +CALL +SRP1 +IP +MDAP[rnd] +SRP2 +IP +SRP2 +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-1 1462 m 256,0,1 + -130 1462 -130 1462 -212.5 1528.5 c 128,-1,2 + -295 1595 -295 1595 -313 1711 c 1,3,-1 + -206 1711 l 1,4,5 + -189 1643 -189 1643 -136 1615.5 c 128,-1,6 + -83 1588 -83 1588 1 1588 c 256,7,8 + 85 1588 85 1588 137 1616 c 128,-1,9 + 189 1644 189 1644 206 1711 c 1,10,-1 + 313 1711 l 1,11,12 + 291 1591 291 1591 209.5 1526.5 c 128,-1,13 + 128 1462 128 1462 -1 1462 c 256,0,1 +29 1732 m 0,14,15 + 29 1767 29 1767 -30 1767 c 0,16,17 + -81 1767 -81 1767 -121 1751 c 1,18,-1 + -141 1815 l 1,19,20 + -83 1835 -83 1835 -16 1835 c 0,21,22 + 136 1835 136 1835 136 1739 c 0,23,24 + 136 1691 136 1691 99 1665 c 128,-1,25 + 62 1639 62 1639 -11 1639 c 2,26,-1 + -46 1639 l 1,27,-1 + -46 1694 l 1,28,29 + 29 1694 29 1694 29 1732 c 0,14,15 +EndSplineSet +EndChar + +StartChar: brevetilde +Encoding: 65805 -1 2564 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 31 + 29 + 20 + 12 + 12 + 8 + 4 + 4 + 32 + 17 + 128 + 24 + 1 + 80 + 24 + 96 + 24 + 112 + 24 + 208 + 24 + 224 + 24 + 240 + 24 + 6 + 224 + 24 + 240 + 24 + 2 + 24 +PUSHW_1 + -64 +NPUSHB + 16 + 42 + 47 + 72 + 111 + 24 + 159 + 24 + 175 + 24 + 3 + 64 + 24 + 1 + 24 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +MDAP[rnd] +DELTAP1 +DELTAP1 +CALL +DELTAP1 +DELTAP2 +DELTAP3 +SHP[rp1] +SHP[rp1] +IP +MDAP[rnd] +SHP[rp1] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1 1462 m 0,0,1 + -101 1462 -101 1462 -167.5 1515 c 128,-1,2 + -234 1568 -234 1568 -248 1661 c 1,3,-1 + -163 1661 l 1,4,5 + -134 1578 -134 1578 3 1578 c 0,6,7 + 138 1578 138 1578 167 1661 c 1,8,-1 + 252 1661 l 1,9,10 + 231 1561 231 1561 166.5 1511.5 c 128,-1,11 + 102 1462 102 1462 1 1462 c 0,0,1 +127 1681 m 0,12,13 + 92 1681 92 1681 58 1690.5 c 128,-1,14 + 24 1700 24 1700 -8.5 1711 c 128,-1,15 + -41 1722 -41 1722 -71.5 1731.5 c 128,-1,16 + -102 1741 -102 1741 -129 1741 c 0,17,18 + -210 1741 -210 1741 -227 1681 c 1,19,-1 + -318 1681 l 1,20,21 + -306 1746 -306 1746 -285 1774.5 c 128,-1,22 + -264 1803 -264 1803 -226.5 1819 c 128,-1,23 + -189 1835 -189 1835 -125 1835 c 0,24,25 + -89 1835 -89 1835 -54 1825.5 c 128,-1,26 + -19 1816 -19 1816 13 1805 c 128,-1,27 + 45 1794 45 1794 74.5 1784.5 c 128,-1,28 + 104 1775 104 1775 130 1775 c 0,29,30 + 178 1775 178 1775 199.5 1790.5 c 128,-1,31 + 221 1806 221 1806 227 1835 c 1,32,-1 + 319 1835 l 1,33,34 + 308 1771 308 1771 287 1741.5 c 128,-1,35 + 266 1712 266 1712 228 1696.5 c 128,-1,36 + 190 1681 190 1681 127 1681 c 0,12,13 +EndSplineSet +EndChar + +StartChar: circumflexacute.lc +Encoding: 65806 -1 2565 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 0 + 3 + 3 + 9 + 14 + 128 + 11 + 8 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +MDAP[rnd] +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +312 1574 m 1,0,-1 + 529 1574 l 1,1,-1 + 529 1562 l 1,2,-1 + 303 1386 l 1,3,-1 + 207 1386 l 1,4,-1 + 207 1396 l 1,5,-1 + 312 1574 l 1,0,-1 +323 1221 m 1,6,-1 + 323 1201 l 1,7,-1 + 218 1201 l 1,8,-1 + -1 1370 l 1,9,-1 + -3 1370 l 1,10,-1 + -225 1201 l 1,11,-1 + -329 1201 l 1,12,-1 + -329 1221 l 1,13,-1 + -105 1491 l 1,14,-1 + 99 1491 l 1,15,-1 + 323 1221 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: circumflexgrave.lc +Encoding: 65807 -1 2566 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 5 + 2 + 2 + 11 + 7 + 128 + 13 + 10 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +MDAP[rnd] +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-210 1396 m 1,0,-1 + -210 1386 l 1,1,-1 + -306 1386 l 1,2,-1 + -532 1562 l 1,3,-1 + -532 1574 l 1,4,-1 + -315 1574 l 1,5,-1 + -210 1396 l 1,0,-1 +-102 1491 m 1,6,-1 + 102 1491 l 1,7,-1 + 326 1221 l 1,8,-1 + 326 1201 l 1,9,-1 + 222 1201 l 1,10,-1 + 0 1370 l 1,11,-1 + -2 1370 l 1,12,-1 + -221 1201 l 1,13,-1 + -326 1201 l 1,14,-1 + -326 1221 l 1,15,-1 + -102 1491 l 1,6,-1 +EndSplineSet +EndChar + +StartChar: circumflexhook.lc +Encoding: 65808 -1 2567 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 15 + 20 + 2 + 7 + 14 + 14 + 21 + 26 + 128 + 23 + 20 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +IP +MDAP[rnd] +MDRP[min,rnd,grey] +SHP[rp2] +SRP1 +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +345 1524 m 0,0,1 + 345 1568 345 1568 269 1568 c 0,2,3 + 208 1568 208 1568 155 1549 c 1,4,-1 + 129 1629 l 1,5,6 + 199 1653 199 1653 288 1653 c 0,7,8 + 480 1653 480 1653 480 1541 c 0,9,10 + 480 1493 480 1493 447 1458.5 c 128,-1,11 + 414 1424 414 1424 341 1415 c 1,12,-1 + 341 1377 l 1,13,-1 + 250 1377 l 1,14,-1 + 250 1471 l 1,15,16 + 292 1473 292 1473 318.5 1482 c 128,-1,17 + 345 1491 345 1491 345 1524 c 0,0,1 +323 1221 m 1,18,-1 + 323 1201 l 1,19,-1 + 218 1201 l 1,20,-1 + -1 1370 l 1,21,-1 + -3 1370 l 1,22,-1 + -225 1201 l 1,23,-1 + -329 1201 l 1,24,-1 + -329 1221 l 1,25,-1 + -105 1491 l 1,26,-1 + 99 1491 l 1,27,-1 + 323 1221 l 1,18,-1 +EndSplineSet +EndChar + +StartChar: circumflextilde.lc +Encoding: 65809 -1 2568 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 17 + 29 + 14 + 22 + 64 + 23 + 26 + 72 + 22 + 64 + 9 + 15 + 72 + 22 + 64 + 26 + 17 + 10 +PUSHW_1 + -64 +NPUSHB + 10 + 12 + 15 + 72 + 10 + 10 + 5 + 0 + 128 + 4 + 7 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +SMD +MDRP[min,rnd,black] +SHP[rp2] +SHP[rp2] +MDAP[rnd] +CALL +SHP[rp1] +SHP[rp1] +SMD +MDRP[min,rnd,black] +CALL +CALL +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-102 1491 m 1,0,-1 + 102 1491 l 1,1,-1 + 326 1221 l 1,2,-1 + 326 1201 l 1,3,-1 + 222 1201 l 1,4,-1 + 0 1370 l 1,5,-1 + -2 1370 l 1,6,-1 + -221 1201 l 1,7,-1 + -326 1201 l 1,8,-1 + -326 1221 l 1,9,-1 + -102 1491 l 1,0,-1 +114 1581 m 0,10,11 + 63 1581 63 1581 -21 1619 c 0,12,13 + -106 1656 -106 1656 -142 1656 c 0,14,15 + -187 1656 -187 1656 -209.5 1638.5 c 128,-1,16 + -232 1621 -232 1621 -240 1581 c 1,17,-1 + -331 1581 l 1,18,19 + -320 1663 -320 1663 -298.5 1699 c 128,-1,20 + -277 1735 -277 1735 -239 1755 c 128,-1,21 + -201 1775 -201 1775 -138 1775 c 0,22,23 + -83 1775 -83 1775 0 1738 c 0,24,25 + 83 1700 83 1700 117 1700 c 0,26,27 + 165 1700 165 1700 186.5 1719 c 128,-1,28 + 208 1738 208 1738 214 1775 c 1,29,-1 + 306 1775 l 1,30,31 + 294 1694 294 1694 273 1657 c 128,-1,32 + 252 1620 252 1620 214.5 1600.5 c 128,-1,33 + 177 1581 177 1581 114 1581 c 0,10,11 +EndSplineSet +EndChar + +StartChar: breveacute.lc +Encoding: 65810 -1 2569 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 14 + 17 + 17 + 8 + 3 + 128 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SHP[rp2] +MDAP[rnd] +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-1 1201 m 0,0,1 + -133 1201 -133 1201 -224 1286 c 128,-1,2 + -315 1371 -315 1371 -333 1510 c 1,3,-1 + -216 1510 l 1,4,5 + -188 1357 -188 1357 1 1357 c 0,6,7 + 187 1357 187 1357 216 1510 c 1,8,-1 + 333 1510 l 1,9,10 + 312 1368 312 1368 222.5 1284.5 c 128,-1,11 + 133 1201 133 1201 -1 1201 c 0,0,1 +-108 1530 m 1,12,-1 + -108 1550 l 1,13,-1 + 109 1776 l 1,14,-1 + 316 1776 l 1,15,-1 + 316 1747 l 1,16,-1 + 6 1530 l 1,17,-1 + -108 1530 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: brevegrave.lc +Encoding: 65811 -1 2570 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 15 + 12 + 12 + 8 + 3 + 128 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SHP[rp2] +MDAP[rnd] +MDRP[min,rnd,black] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +1 1201 m 0,0,1 + -134 1201 -134 1201 -223 1285 c 128,-1,2 + -312 1369 -312 1369 -333 1510 c 1,3,-1 + -216 1510 l 1,4,5 + -187 1357 -187 1357 -1 1357 c 0,6,7 + 188 1357 188 1357 216 1510 c 1,8,-1 + 333 1510 l 1,9,10 + 315 1370 315 1370 224 1285.5 c 128,-1,11 + 133 1201 133 1201 1 1201 c 0,0,1 +-6 1530 m 1,12,-1 + -316 1747 l 1,13,-1 + -316 1776 l 1,14,-1 + -109 1776 l 1,15,-1 + 108 1550 l 1,16,-1 + 108 1530 l 1,17,-1 + -6 1530 l 1,12,-1 +EndSplineSet +EndChar + +StartChar: brevehook.lc +Encoding: 65812 -1 2571 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 11 + 27 + 24 + 14 + 19 + 26 + 26 + 9 + 3 + 128 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,grey] +SHP[rp2] +SHP[rp2] +MDAP[rnd] +MDRP[min,rnd,grey] +SHP[rp2] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-1 1201 m 0,0,1 + -133 1201 -133 1201 -224 1286 c 128,-1,2 + -315 1371 -315 1371 -333 1510 c 1,3,-1 + -216 1510 l 1,4,5 + -188 1357 -188 1357 1 1357 c 0,6,7 + 187 1357 187 1357 216 1510 c 1,8,-1 + 333 1510 l 1,9,10 + 312 1368 312 1368 222.5 1284.5 c 128,-1,11 + 133 1201 133 1201 -1 1201 c 0,0,1 +51 1675 m 0,12,13 + 51 1730 51 1730 -42 1730 c 0,14,15 + -114 1730 -114 1730 -184 1706 c 1,16,-1 + -215 1805 l 1,17,18 + -125 1835 -125 1835 -19 1835 c 0,19,20 + 218 1835 218 1835 218 1696 c 0,21,22 + 218 1637 218 1637 177.5 1594.5 c 128,-1,23 + 137 1552 137 1552 46 1541 c 1,24,-1 + 46 1501 l 1,25,-1 + -66 1501 l 1,26,-1 + -66 1611 l 1,27,28 + 3 1614 3 1614 27 1629 c 128,-1,29 + 51 1644 51 1644 51 1675 c 0,12,13 +EndSplineSet +EndChar + +StartChar: brevetilde.lc +Encoding: 65813 -1 2572 +Width: 0 +GlyphClass: 2 +Flags: W +TtInstrs: +NPUSHB + 21 + 31 + 16 + 24 + 64 + 9 + 15 + 72 + 24 + 64 + 28 + 19 + 12 + 12 + 9 + 128 + 3 + 1 + 3 + 128 + 6 + 0 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp2] +SMD +MDRP[min,rnd,grey] +DELTAP1 +SHP[rp2] +SHP[rp2] +MDAP[rnd] +SHP[rp1] +SHP[rp1] +SMD +MDRP[min,rnd,black] +CALL +SHP[rp2] +SHP[rp2] +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +-1 1201 m 0,0,1 + -133 1201 -133 1201 -224 1286 c 128,-1,2 + -315 1371 -315 1371 -333 1510 c 1,3,-1 + -216 1510 l 1,4,5 + -188 1357 -188 1357 1 1357 c 0,6,7 + 187 1357 187 1357 216 1510 c 1,8,-1 + 333 1510 l 1,9,10 + 312 1368 312 1368 222.5 1284.5 c 128,-1,11 + 133 1201 133 1201 -1 1201 c 0,0,1 +124 1581 m 0,12,13 + 73 1581 73 1581 -11 1619 c 0,14,15 + -96 1656 -96 1656 -132 1656 c 0,16,17 + -177 1656 -177 1656 -199.5 1638.5 c 128,-1,18 + -222 1621 -222 1621 -230 1581 c 1,19,-1 + -321 1581 l 1,20,21 + -310 1663 -310 1663 -288.5 1699 c 128,-1,22 + -267 1735 -267 1735 -229 1755 c 128,-1,23 + -191 1775 -191 1775 -128 1775 c 0,24,25 + -73 1775 -73 1775 10 1738 c 0,26,27 + 93 1700 93 1700 127 1700 c 0,28,29 + 175 1700 175 1700 196.5 1719 c 128,-1,30 + 218 1738 218 1738 224 1775 c 1,31,-1 + 316 1775 l 1,32,33 + 304 1694 304 1694 283 1657 c 128,-1,34 + 262 1620 262 1620 224.5 1600.5 c 128,-1,35 + 187 1581 187 1581 124 1581 c 0,12,13 +EndSplineSet +EndChar + +StartChar: uni1FEF.short +Encoding: 65814 -1 2573 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 4 + 1 + 7 + 6 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +404 1590 m 1,0,-1 + 203 1798 l 1,1,-1 + 203 1835 l 1,2,-1 + 410 1835 l 1,3,-1 + 479 1623 l 1,4,-1 + 479 1590 l 1,5,-1 + 404 1590 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: tonos.short +Encoding: 65815 -1 2574 +Width: 682 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_7 + 0 + 3 + 6 + 7 + 3 + 128 + 0 +SVTCA[y-axis] +MDAP[rnd] +SMD +MDRP[min,rnd,black] +SRP1 +SRP2 +SVTCA[x-axis] +IP +IP +IUP[x] +IUP[y] +EndTTInstrs +LayerCount: 2 +Fore +SplineSet +203 1590 m 1,0,-1 + 203 1623 l 1,1,-1 + 272 1835 l 1,2,-1 + 479 1835 l 1,3,-1 + 479 1798 l 1,4,-1 + 278 1590 l 1,5,-1 + 203 1590 l 1,0,-1 +EndSplineSet +EndChar + +StartChar: lamedholamdagesh +Encoding: 65816 -1 2575 +Width: 1085 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 420 0 basechar 0 +AnchorPoint: "Anchor-12" 680 1350 basechar 0 +AnchorPoint: "Anchor-11" 420 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 700 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" -180 1350 basechar 0 +AnchorPoint: "Anchor-6" 420 0 basechar 0 +AnchorPoint: "Anchor-5" 420 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" -300 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1292 1500 N 1 0 0 1 0 0 3 +Refer: 1265 1465 N 1 0 0 1 -69 0 2 +Refer: 1268 1468 N 1 0 0 1 426 20 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" lamed dagesh holam +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: lamedholam +Encoding: 65817 -1 2576 +Width: 1085 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 420 0 basechar 0 +AnchorPoint: "Anchor-12" 680 1350 basechar 0 +AnchorPoint: "Anchor-11" 420 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 700 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" -180 1350 basechar 0 +AnchorPoint: "Anchor-6" 420 0 basechar 0 +AnchorPoint: "Anchor-5" 420 0 basechar 0 +AnchorPoint: "Anchor-4" 600 1700 basechar 0 +AnchorPoint: "Anchor-3" 600 1350 basechar 0 +AnchorPoint: "Anchor-0" -300 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1292 1500 N 1 0 0 1 0 0 3 +Refer: 1265 1465 N 1 0 0 1 -69 0 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" lamed holam +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tet dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: finalkafqamats +Encoding: 65818 -1 2577 +Width: 1094 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 540 0 basechar 0 +AnchorPoint: "Anchor-12" 400 1350 basechar 0 +AnchorPoint: "Anchor-11" 340 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 1040 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 340 0 basechar 0 +AnchorPoint: "Anchor-5" 420 0 basechar 0 +AnchorPoint: "Anchor-4" 400 1700 basechar 0 +AnchorPoint: "Anchor-3" 400 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1290 1498 N 1 0 0 1 0 0 3 +Refer: 1264 1464 N 1 0 0 1 385 842 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" finalkaf qamats +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: finalkafsheva +Encoding: 65819 -1 2578 +Width: 1094 +GlyphClass: 2 +Flags: W +AnchorPoint: "Anchor-13" 540 0 basechar 0 +AnchorPoint: "Anchor-12" 400 1350 basechar 0 +AnchorPoint: "Anchor-11" 340 0 basechar 0 +AnchorPoint: "Anchor-10" 880 1430 basechar 0 +AnchorPoint: "Anchor-9" 1040 0 basechar 0 +AnchorPoint: "Anchor-8" 800 1350 basechar 0 +AnchorPoint: "Anchor-7" 140 1350 basechar 0 +AnchorPoint: "Anchor-6" 340 0 basechar 0 +AnchorPoint: "Anchor-5" 420 0 basechar 0 +AnchorPoint: "Anchor-4" 400 1700 basechar 0 +AnchorPoint: "Anchor-3" 400 1350 basechar 0 +AnchorPoint: "Anchor-0" 0 1430 basechar 0 +LayerCount: 2 +Fore +Refer: 1290 1498 N 1 0 0 1 0 0 3 +Refer: 1256 1456 N 1 0 0 1 408 811 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" finalkaf sheva +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: aleflamedhatafsegol +Encoding: 65820 -1 2579 +Width: 1286 +GlyphClass: 3 +Flags: W +LayerCount: 2 +Fore +Refer: 2292 64335 N 1 0 0 1 0 0 3 +Refer: 1257 1457 N 1 0 0 1 664 0 2 +EndChar + +StartChar: aleflamedsegol +Encoding: 65821 -1 2580 +Width: 1286 +GlyphClass: 3 +Flags: W +LayerCount: 2 +Fore +Refer: 2292 64335 N 1 0 0 1 0 0 3 +Refer: 1262 1462 N 1 0 0 1 645 0 2 +EndChar + +StartChar: aleflamedtsere +Encoding: 65822 -1 2581 +Width: 1286 +GlyphClass: 3 +Flags: W +LayerCount: 2 +Fore +Refer: 2292 64335 N 1 0 0 1 0 0 3 +Refer: 1261 1461 N 1 0 0 1 651 0 2 +EndChar + +StartChar: alternativelamed +Encoding: 65823 -1 2582 +Width: 1085 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +Refer: 1292 1500 N 1 0 0 1 0 0 3 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: alefdagesh +Encoding: 65824 -1 2583 +Width: 1286 +GlyphClass: 2 +Flags: W +TtInstrs: +PUSHB_8 + 1 + 96 + 35 + 1 + 48 + 35 + 1 + 35 +SVTCA[y-axis] +SRP1 +DELTAP1 +DELTAP1 +SHC[rp1] +EndTTInstrs +LayerCount: 2 +Fore +Refer: 1280 1488 N 1 0 0 1 0 0 3 +Refer: 1268 1468 N 1 0 0 1 569 -585 2 +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" alef dagesh +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 +EndChar + +StartChar: uni05B105BD +Encoding: 65825 -1 2584 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 24 + 45 + 51 + 39 + 57 + 57 + 63 + 27 + 9 + 21 + 3 + 15 + 33 + 33 + 63 + 62 + 39 + 39 + 62 + 15 + 15 + 62 + 3 + 3 + 62 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SRP1 +SHP[rp1] +MDAP[rnd] +SRP1 +SHP[rp1] +MDAP[rnd] +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +SRP2 +SLOOP +IP +SRP1 +SHP[rp1] +MDAP[rnd] +SRP2 +IP +IP +IUP[y] +IUP[x] +EndTTInstrs +AnchorPoint: "Anchor-13" 380 20 mark 0 +AnchorPoint: "Anchor-11" -320 20 mark 0 +AnchorPoint: "Anchor-5" -30 20 mark 0 +LayerCount: 2 +Fore +SplineSet +-474 -96 m 0,0,1 + -474 -64 -474 -64 -451 -41 c 128,-1,2 + -428 -18 -428 -18 -396 -18 c 0,3,4 + -362 -18 -362 -18 -339 -41 c 128,-1,5 + -316 -64 -316 -64 -316 -96 c 0,6,7 + -316 -130 -316 -130 -339 -153 c 128,-1,8 + -362 -176 -362 -176 -396 -176 c 0,9,10 + -428 -176 -428 -176 -451 -153 c 128,-1,11 + -474 -130 -474 -130 -474 -96 c 0,0,1 +-245 -96 m 0,12,13 + -245 -64 -245 -64 -222 -41 c 128,-1,14 + -199 -18 -199 -18 -167 -18 c 0,15,16 + -133 -18 -133 -18 -110 -41 c 128,-1,17 + -87 -64 -87 -64 -87 -96 c 0,18,19 + -87 -130 -87 -130 -110 -153 c 128,-1,20 + -133 -176 -133 -176 -167 -176 c 0,21,22 + -199 -176 -199 -176 -222 -153 c 128,-1,23 + -245 -130 -245 -130 -245 -96 c 0,12,13 +-359 -305 m 0,24,25 + -359 -271 -359 -271 -336.5 -248 c 128,-1,26 + -314 -225 -314 -225 -282 -225 c 0,27,28 + -247 -225 -247 -225 -224.5 -248 c 128,-1,29 + -202 -271 -202 -271 -202 -305 c 0,30,31 + -202 -337 -202 -337 -224.5 -361 c 128,-1,32 + -247 -385 -247 -385 -282 -385 c 0,33,34 + -314 -385 -314 -385 -336.5 -361 c 128,-1,35 + -359 -337 -359 -337 -359 -305 c 0,24,25 +203 -98 m 0,36,37 + 203 -64 203 -64 226 -41 c 128,-1,38 + 249 -18 249 -18 281 -18 c 0,39,40 + 315 -18 315 -18 338 -41 c 128,-1,41 + 361 -64 361 -64 361 -98 c 0,42,43 + 361 -130 361 -130 338 -153 c 128,-1,44 + 315 -176 315 -176 281 -176 c 0,45,46 + 249 -176 249 -176 226 -153 c 128,-1,47 + 203 -130 203 -130 203 -98 c 0,36,37 +203 -305 m 256,48,49 + 203 -271 203 -271 226 -248 c 128,-1,50 + 249 -225 249 -225 281 -225 c 256,51,52 + 313 -225 313 -225 337 -249 c 128,-1,53 + 361 -273 361 -273 361 -305 c 256,54,55 + 361 -337 361 -337 337.5 -361 c 128,-1,56 + 314 -385 314 -385 281 -385 c 0,57,58 + 247 -385 247 -385 225 -362 c 128,-1,59 + 203 -339 203 -339 203 -305 c 256,48,49 +3 -385 m 1,60,-1 + 3 -18 l 1,61,-1 + 113 -18 l 1,62,-1 + 113 -385 l 1,63,-1 + 3 -385 l 1,60,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" hatafsegol meteg +EndChar + +StartChar: uni05B205BD +Encoding: 65826 -1 2585 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 14 + 13 + 19 + 7 + 25 + 25 + 31 + 30 + 7 + 7 + 30 + 3 + 2 + 2 + 30 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SHP[rp1] +SRP1 +SHP[rp1] +MDAP[rnd] +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +SRP2 +IP +IP +IUP[y] +IUP[x] +EndTTInstrs +AnchorPoint: "Anchor-13" 300 20 mark 0 +AnchorPoint: "Anchor-11" -340 20 mark 0 +AnchorPoint: "Anchor-5" -60 20 mark 0 +LayerCount: 2 +Fore +SplineSet +-494 -162 m 1,0,-1 + -494 -53 l 1,1,-1 + -167 -53 l 1,2,-1 + -167 -162 l 1,3,-1 + -494 -162 l 1,0,-1 +123 -98 m 0,4,5 + 123 -64 123 -64 145.5 -41 c 128,-1,6 + 168 -18 168 -18 203 -18 c 0,7,8 + 235 -18 235 -18 258.5 -41 c 128,-1,9 + 282 -64 282 -64 282 -98 c 0,10,11 + 282 -130 282 -130 258.5 -153 c 128,-1,12 + 235 -176 235 -176 203 -176 c 0,13,14 + 168 -176 168 -176 145.5 -153 c 128,-1,15 + 123 -130 123 -130 123 -98 c 0,4,5 +123 -305 m 0,16,17 + 123 -273 123 -273 145.5 -249 c 128,-1,18 + 168 -225 168 -225 200 -225 c 0,19,20 + 235 -225 235 -225 257.5 -249 c 128,-1,21 + 280 -273 280 -273 280 -305 c 0,22,23 + 280 -339 280 -339 257.5 -362 c 128,-1,24 + 235 -385 235 -385 200 -385 c 0,25,26 + 168 -385 168 -385 145.5 -362 c 128,-1,27 + 123 -339 123 -339 123 -305 c 0,16,17 +-77 -385 m 1,28,-1 + -77 -18 l 1,29,-1 + 33 -18 l 1,30,-1 + 33 -385 l 1,31,-1 + -77 -385 l 1,28,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" hatafpatah meteg +EndChar + +StartChar: uni05B305BD +Encoding: 65827 -1 2586 +Width: 0 +GlyphClass: 4 +Flags: W +TtInstrs: +NPUSHB + 15 + 17 + 23 + 11 + 29 + 29 + 35 + 34 + 64 + 11 + 11 + 34 + 1 + 5 + 5 + 7 +PUSHW_1 + -64 +PUSHB_8 + 18 + 22 + 72 + 7 + 128 + 4 + 4 + 34 +SVTCA[y-axis] +MDAP[rnd] +SHP[rp1] +MDAP[rnd] +SMD +MDRP[min,rnd,grey] +CALL +IP +SRP1 +SHP[rp1] +SRP1 +SHP[rp1] +MDAP[rnd] +SMD +SRP0 +MDRP[min,rnd,black] +SHP[rp2] +MDAP[rnd] +SRP2 +IP +IP +IUP[y] +IUP[x] +EndTTInstrs +AnchorPoint: "Anchor-13" 380 20 mark 0 +AnchorPoint: "Anchor-11" -300 20 mark 0 +AnchorPoint: "Anchor-5" 0 20 mark 0 +LayerCount: 2 +Fore +SplineSet +-310 -276 m 1,0,-1 + -310 -162 l 1,1,-1 + -420 -162 l 1,2,-1 + -420 -53 l 1,3,-1 + -93 -53 l 1,4,-1 + -93 -162 l 1,5,-1 + -199 -162 l 1,6,-1 + -199 -276 l 1,7,-1 + -310 -276 l 1,0,-1 +197 -98 m 0,8,9 + 197 -64 197 -64 219.5 -41 c 128,-1,10 + 242 -18 242 -18 277 -18 c 0,11,12 + 309 -18 309 -18 332.5 -41 c 128,-1,13 + 356 -64 356 -64 356 -98 c 0,14,15 + 356 -130 356 -130 332.5 -153 c 128,-1,16 + 309 -176 309 -176 277 -176 c 0,17,18 + 242 -176 242 -176 219.5 -153 c 128,-1,19 + 197 -130 197 -130 197 -98 c 0,8,9 +197 -305 m 0,20,21 + 197 -273 197 -273 219.5 -249 c 128,-1,22 + 242 -225 242 -225 274 -225 c 0,23,24 + 309 -225 309 -225 332.5 -249 c 128,-1,25 + 356 -273 356 -273 356 -305 c 0,26,27 + 356 -339 356 -339 332.5 -362 c 128,-1,28 + 309 -385 309 -385 274 -385 c 0,29,30 + 242 -385 242 -385 219.5 -362 c 128,-1,31 + 197 -339 197 -339 197 -305 c 0,20,21 +-3 -385 m 1,32,-1 + -3 -18 l 1,33,-1 + 107 -18 l 1,34,-1 + 107 -385 l 1,35,-1 + -3 -385 l 1,32,-1 +EndSplineSet +Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" hatafqamats meteg +EndChar + +StartChar: S_BE +Encoding: 65828 -1 2587 +Width: 1140 +GlyphClass: 2 +Flags: W +LayerCount: 2 +Fore +SplineSet +864 471 m 0,0,1 + 864 556 864 556 839.5 628.5 c 128,-1,2 + 815 701 815 701 780.5 758.5 c 128,-1,3 + 746 816 746 816 708 859 c 128,-1,4 + 670 902 670 902 644 929 c 1,5,6 + 571 903 571 903 504 862.5 c 128,-1,7 + 437 822 437 822 386 765 c 128,-1,8 + 335 708 335 708 305 635 c 128,-1,9 + 275 562 275 562 275 471 c 0,10,11 + 275 395 275 395 292.5 329.5 c 128,-1,12 + 310 264 310 264 346.5 216 c 128,-1,13 + 383 168 383 168 438.5 140.5 c 128,-1,14 + 494 113 494 113 571 113 c 0,15,16 + 652 113 652 113 708 140 c 128,-1,17 + 764 167 764 167 798.5 214.5 c 128,-1,18 + 833 262 833 262 848.5 327.5 c 128,-1,19 + 864 393 864 393 864 471 c 0,0,1 +466 1359 m 1,20,-1 + 769 1036 l 2,21,22 + 859 940 859 940 874 923 c 0,23,24 + 925 865 925 865 964.5 798 c 128,-1,25 + 1004 731 1004 731 1028.5 651.5 c 128,-1,26 + 1053 572 1053 572 1053 475 c 0,27,28 + 1053 365 1053 365 1021 274 c 128,-1,29 + 989 183 989 183 927.5 117.5 c 128,-1,30 + 866 52 866 52 776 16 c 128,-1,31 + 686 -20 686 -20 571 -20 c 0,32,33 + 457 -20 457 -20 367 14 c 128,-1,34 + 277 48 277 48 214.5 111.5 c 128,-1,35 + 152 175 152 175 119 266.5 c 128,-1,36 + 86 358 86 358 86 473 c 0,37,38 + 86 585 86 585 122.5 673 c 128,-1,39 + 159 761 159 761 222.5 828.5 c 128,-1,40 + 286 896 286 896 370.5 944.5 c 128,-1,41 + 455 993 455 993 551 1026 c 1,42,-1 + 265 1340 l 1,43,-1 + 265 1459 l 1,44,45 + 671 1647 671 1647 973 1563 c 1,46,-1 + 973 1431 l 1,47,48 + 741 1514 741 1514 466 1359 c 1,20,-1 +EndSplineSet +EndChar +EndChars +EndSplineFont diff --git a/share/fonts/LiberationSansMonospaceDigits.ttf b/share/fonts/LiberationSansMonospaceDigits.ttf index b001ec7bf4308d86d162deca1f5de317671b3677..b1471c70b780d29399c8c014c4b0aff4dac5726f 100644 GIT binary patch delta 598 zcmaEIP-4L$2@eKF1_lNpMg|5J1_d{_5Z^L&f!7RdiYyEa3^ML6u5J(IUtM5ed3}I^ zflfU+4G zOc*(!Y$gUi#z-ienZbmy5Xxp@a9}(HWwSEKFsVY>Yz$URK~Oe3!xyH|HBb%*g9eK% zl+DQ?!x95!b1_|F>4dVm87w%CL)knGF`RNxHZMaK=V~aMkHLh?cl)~v7H-DrEY&PR z)0?YUM5Y^5vxraMQ^mr?=8~D7SyDWmrHW)qXwv`y delta 589 zcmZ2*NaD#s2@eKF1_lNpMg|5J1_d{_5Z^L&ri%=03MUvC7-ZaCT-_eZzq-J{^16kA zflu)NtY(ZgT1gn@xUAU&rt?MTiXO9qCt zISecUPcl*yQ`l?R8zye?ktqGFXv4r#-oU`XeYPOKxFq)P_G=6*%>k1o7-eLnOwxA7 z^V@u7lILImffEitXMyPJKMvP52Qan=FoG~sdjKQz_5el}@3MLpMj^2C85o!t*csKK zY-R>2##AVqg+Y<=2$aprz{kV_WwSBJGWkQ<>2g9r-;l+DS&$6^g-b1`PJ z%R$-P3^E*tKG48489C5 u3=BTOzAn?*TpihwA_o+F#}X diff --git a/share/ui/style.css b/share/ui/style.css index 659e3cd402..f966631fa2 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -63,10 +63,6 @@ spinbutton.entry { padding-left: 2px; } -#DesktopMainTable spinbutton { - font-family:"LSMD"; /*Liberation Sans MonoDigits renamed TODO: based in Liberation sans and monospaced view licenses...*/ -} - SPRuler { background-color: @theme_bg_color; color: @theme_fg_color; @@ -139,7 +135,9 @@ combobox window.popup scrolledwindow treeview separator { } /* Hide slider */ -#InkSpinScale slider { +#InkSpinScale s#DesktopMainTable spinbutton { + font-family:"Liberation Sans MonoDigits",monospace; /*TODO: based in Liberation sans and monospaced view licenses...*/ +}lider { background: none; border: none; outline: none; @@ -185,7 +183,15 @@ spinbutton undershoot { } #monoStrokeWidth, -#fillEmptySpace{ - font-family:"LSMD"; /*Liberation Sans MonoDigits renamed TODO: based in Liberation sans and monospaced view licenses...*/ +#fillEmptySpace, +#SelectStatus, +#CoordinateStatusX, +#CoordinateStatusY, +#DesktopMainTable spinbutton{ + font-family:"Liberation Sans MonoDigits",monospace; /*TODO: based in Liberation sans and monospaced view licenses...*/ +} + +#fillEmptySpace, +#monoStrokeWidth{ min-width:47px; /*min width to avoid movement on message label*/ } diff --git a/src/seltrans.cpp b/src/seltrans.cpp index 39bdf8abb5..84fdbe85cc 100644 --- a/src/seltrans.cpp +++ b/src/seltrans.cpp @@ -969,8 +969,7 @@ gboolean Inkscape::SelTrans::scaleRequest(Geom::Point &pt, guint state) /* Status text */ _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, - _("Scale: %0.2f%% x %0.2f%%; " - "with Ctrl to lock ratio"), + _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); return TRUE; @@ -1074,8 +1073,7 @@ gboolean Inkscape::SelTrans::stretchRequest(SPSelTransHandle const &handle, Geom // status text _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, - _("Scale: %0.2f%% x %0.2f%%; " - "with Ctrl to lock ratio"), + _("Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio"), 100 * _absolute_affine[0], 100 * _absolute_affine[3]); return TRUE; @@ -1212,7 +1210,7 @@ gboolean Inkscape::SelTrans::skewRequest(SPSelTransHandle const &handle, Geom::P _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) - _("Skew: %0.2f°; with Ctrl to snap angle"), + _("Skew: %0.2f°; with Ctrl to snap angle"), degrees); return TRUE; @@ -1288,8 +1286,7 @@ gboolean Inkscape::SelTrans::rotateRequest(Geom::Point &pt, guint state) _message_context.setF(Inkscape::IMMEDIATE_MESSAGE, // TRANSLATORS: don't modify the first ";" // (it will NOT be displayed as ";" - only the second one will be) - _("Rotate: %0.2f°; with Ctrl to snap angle"), - degrees); + _("Rotate: %0.2f°; with Ctrl to snap angle"), degrees); return TRUE; } @@ -1326,8 +1323,8 @@ gboolean Inkscape::SelTrans::centerRequest(Geom::Point &pt, guint state) Inkscape::Util::Quantity y_q = Inkscape::Util::Quantity(pt[Geom::Y], "px"); Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); - _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), - xs.c_str(), ys.c_str()); + _message_context.setF(Inkscape::NORMAL_MESSAGE, _("Move center to %s, %s"), + xs.c_str(), ys.c_str()); return TRUE; } @@ -1473,10 +1470,8 @@ void Inkscape::SelTrans::moveTo(Geom::Point const &xy, guint state) Glib::ustring xs(x_q.string(_desktop->namedview->display_units)); Glib::ustring ys(y_q.string(_desktop->namedview->display_units)); _message_context.setF(Inkscape::NORMAL_MESSAGE, - _("Move by %s, %s; with " - "Ctrl to restrict to " - "horizontal/vertical; with Shift to disable snapping"), - xs.c_str(), ys.c_str()); + _("Move by %s, %s; with Ctrl to restrict to horizontal/vertical; with Shift to disable snapping"), + xs.c_str(), ys.c_str()); } // Given a location of a handle at the visual bounding box, find the corresponding location at the diff --git a/src/ui/tools/arc-tool.cpp b/src/ui/tools/arc-tool.cpp index ee6fac6f40..bd3567df70 100644 --- a/src/ui/tools/arc-tool.cpp +++ b/src/ui/tools/arc-tool.cpp @@ -400,18 +400,9 @@ void ArcTool::drag(Geom::Point pt, guint state) { ratio_y = (int) rint (rdimy / rdimx); } - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Ellipse: %s × %s (constrained to ratio " - "%d:%d); with Shift " - "to draw around the starting point"), - xs.c_str(), ys.c_str(), ratio_x, ratio_y); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Ellipse: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point"), xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { - this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Ellipse: %s × %s; with Ctrl to make square " - "or integer-ratio ellipse; with Shift to draw around the starting point"), - xs.c_str(), ys.c_str()); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Ellipse: %s × %s; with Ctrl to make square or integer-ratio ellipse; with Shift to draw around the starting point"), xs.c_str(), ys.c_str()); } } diff --git a/src/ui/tools/gradient-tool.cpp b/src/ui/tools/gradient-tool.cpp index 7dffe75e89..8b85f8854f 100644 --- a/src/ui/tools/gradient-tool.cpp +++ b/src/ui/tools/gradient-tool.cpp @@ -114,55 +114,34 @@ void GradientTool::selection_changed(Inkscape::Selection*) { //The use of ngettext in the following code is intentional even if the English singular form would never be used if (n_sel == 1) { if (drag->singleSelectedDraggerNumDraggables() == 1) { - gchar *message = g_strconcat( - // TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a - // compound message - _("%s selected"), - // TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d gradient handle", - " out of %d gradient handles", n_tot), - ngettext(" on %d selected object", - " on %d selected objects", n_obj), - NULL); + gchar * message = g_strconcat( + //TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a compound message + _("%s selected"), + //TRANSLATORS: Mind the space in front. This is part of a compound message + ngettext(" out of %d gradient handle"," out of %d gradient handles",n_tot), + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(gr_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { - gchar *message = g_strconcat( - // TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count - // & object count) - ngettext("One handle merging %d stop (drag with Shift to separate) " - "selected", - "One handle merging %d stops (drag with Shift to separate) " - "selected", - drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d gradient handle", - " out of %d gradient handles", n_tot), - ngettext(" on %d selected object", - " on %d selected objects", n_obj), - NULL); + gchar * message = g_strconcat( + //TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count & object count) + ngettext("One handle merging %d stop (drag with Shift to separate) selected", + "One handle merging %d stops (drag with Shift to separate) selected",drag->singleSelectedDraggerNumDraggables()), + ngettext(" out of %d gradient handle"," out of %d gradient handles",n_tot), + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected gradient handles. This is part of a compound message (part two indicates selected object count) - gchar *message = g_strconcat( - ngettext( - "%d gradient handle selected out of %d", - "%d gradient handles selected out of %d", n_sel), - // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of - // a compound message - ngettext(" on %d selected object", - " on %d selected objects", n_obj), - NULL); + gchar * message = g_strconcat(ngettext("%d gradient handle selected out of %d","%d gradient handles selected out of %d",n_sel), + //TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of a compound message + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); rc->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { rc->message_context->setF(Inkscape::NORMAL_MESSAGE, - // TRANSLATORS: The plural refers to number of selected objects - ngettext("No gradient handles selected out of %d " - "on %d selected object", - "No gradient handles selected out of %d " - "on %d selected objects", - n_obj), - n_tot, n_obj); + //TRANSLATORS: The plural refers to number of selected objects + ngettext("No gradient handles selected out of %d on %d selected object", + "No gradient handles selected out of %d on %d selected objects",n_obj), n_tot, n_obj); } } @@ -960,12 +939,10 @@ static void sp_gradient_drag(GradientTool &rc, Geom::Point const pt, guint /*sta // status text; we do not track coords because this branch is run once, not all the time // during drag int n_objects = (int) boost::distance(selection->items()); - rc.message_context->setF( - Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", - n_objects), - n_objects); + rc.message_context->setF(Inkscape::NORMAL_MESSAGE, + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", n_objects), + n_objects); } else { desktop->getMessageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select objects on which to create gradient.")); } diff --git a/src/ui/tools/mesh-tool.cpp b/src/ui/tools/mesh-tool.cpp index 7d13bfef70..41f2938c2b 100644 --- a/src/ui/tools/mesh-tool.cpp +++ b/src/ui/tools/mesh-tool.cpp @@ -130,55 +130,37 @@ void MeshTool::selection_changed(Inkscape::Selection* /*sel*/) { //The use of ngettext in the following code is intentional even if the English singular form would never be used if (n_sel == 1) { if (drag->singleSelectedDraggerNumDraggables() == 1) { - gchar *message = g_strconcat( - // TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a - // compound message + gchar * message = g_strconcat( + //TRANSLATORS: %s will be substituted with the point name (see previous messages); This is part of a compound message _("%s selected"), - // TRANSLATORS: Mind the space in front. This is part of a compound message - ngettext(" out of %d mesh handle", - " out of %d mesh handles", n_tot), - ngettext(" on %d selected object", - " on %d selected objects", n_obj), - NULL); + //TRANSLATORS: Mind the space in front. This is part of a compound message + ngettext(" out of %d mesh handle"," out of %d mesh handles",n_tot), + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE, message,_(ms_handle_descr[drag->singleSelectedDraggerSingleDraggableType()]), n_tot, n_obj); } else { - gchar *message = g_strconcat( - // TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count - // & object count) - ngettext("One handle merging %d stop (drag with Shift to separate) " - "selected", - "One handle merging %d stops (drag with Shift to separate) " - "selected", - drag->singleSelectedDraggerNumDraggables()), - ngettext(" out of %d mesh handle", - " out of %d mesh handles", n_tot), - ngettext(" on %d selected object", - " on %d selected objects", n_obj), - NULL); + gchar * message = + g_strconcat( + //TRANSLATORS: This is a part of a compound message (out of two more indicating: grandint handle count & object count) + ngettext("One handle merging %d stop (drag with Shift to separate) selected", + "One handle merging %d stops (drag with Shift to separate) selected", + drag->singleSelectedDraggerNumDraggables()), + ngettext(" out of %d mesh handle"," out of %d mesh handles",n_tot), + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message,drag->singleSelectedDraggerNumDraggables(), n_tot, n_obj); } } else if (n_sel > 1) { //TRANSLATORS: The plural refers to number of selected mesh handles. This is part of a compound message (part two indicates selected object count) - gchar *message = g_strconcat( - ngettext("%d mesh handle selected out of %d", - "%d mesh handles selected out of %d", - n_sel), - // TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of - // a compound message - ngettext(" on %d selected object", - " on %d selected objects", n_obj), - NULL); + gchar * message = + g_strconcat(ngettext("%d mesh handle selected out of %d","%d mesh handles selected out of %d",n_sel), + //TRANSLATORS: Mind the space in front. (Refers to gradient handles selected). This is part of a compound message + ngettext(" on %d selected object"," on %d selected objects",n_obj),NULL); this->message_context->setF(Inkscape::NORMAL_MESSAGE,message, n_sel, n_tot, n_obj); } else if (n_sel == 0) { this->message_context->setF(Inkscape::NORMAL_MESSAGE, - // TRANSLATORS: The plural refers to number of selected objects - ngettext("No mesh handles selected out of %d on " - "%d selected object", - "No mesh handles selected out of %d on " - "%d selected objects", - n_obj), - n_tot, n_obj); + //TRANSLATORS: The plural refers to number of selected objects + ngettext("No mesh handles selected out of %d on %d selected object", + "No mesh handles selected out of %d on %d selected objects",n_obj), n_tot, n_obj); } // FIXME @@ -1137,12 +1119,10 @@ static void sp_mesh_new_default(MeshTool &rc) { // status text; we do not track coords because this branch is run once, not all the time // during drag int n_objects = (int) boost::distance(selection->items()); - rc.message_context->setF( - Inkscape::NORMAL_MESSAGE, - ngettext("Gradient for %d object; with Ctrl to snap angle", - "Gradient for %d objects; with Ctrl to snap angle", - n_objects), - n_objects); + rc.message_context->setF(Inkscape::NORMAL_MESSAGE, + ngettext("Gradient for %d object; with Ctrl to snap angle", + "Gradient for %d objects; with Ctrl to snap angle", n_objects), + n_objects); } else { desktop->getMessageStack()->flash(Inkscape::WARNING_MESSAGE, _("Select objects on which to create gradient.")); } diff --git a/src/ui/tools/node-tool.cpp b/src/ui/tools/node-tool.cpp index 5546b732cf..4f5ed44be6 100644 --- a/src/ui/tools/node-tool.cpp +++ b/src/ui/tools/node-tool.cpp @@ -681,15 +681,11 @@ void NodeTool::update_tip(GdkEvent *event) { } g_assert(positions.size() == 2); const double angle = Geom::deg_from_rad(Geom::Line(positions[0], positions[1]).angle()); - nodestring = g_strdup_printf("%u of %u nodes " - "selected, angle: %.2f°.", - sz, total, angle); + nodestring = g_strdup_printf("%u of %u nodes selected, angle: %.2f°.", sz, total, angle); } else { nodestring = g_strdup_printf( - ngettext("%u of %u node selected.", - "%u of %u nodes selected.", - total), + ngettext("%u of %u node selected.", "%u of %u nodes selected.", total), sz, total); } diff --git a/src/ui/tools/pen-tool.cpp b/src/ui/tools/pen-tool.cpp index 4374c6b7ae..7fbc08d333 100644 --- a/src/ui/tools/pen-tool.cpp +++ b/src/ui/tools/pen-tool.cpp @@ -1800,20 +1800,14 @@ void PenTool::_setSubsequentPoint(Geom::Point const p, bool statusbar, guint sta if (statusbar) { gchar *message; if(this->spiro || this->bspline){ - message = is_curve ? _("Curve segment: angle %3.2f°; with " - "Shift+Click cusp " - "node,ALT move previous, Enter or Shift+Enter to finish") - : _("Line segment: angle %3.2f°; with " - "Shift+Click cusp " - "node,ALT move previous, Enter or Shift+Enter to finish"); + message = is_curve ? + _("Curve segment: angle %3.2f°; with Shift+Click cusp node,ALT move previous, Enter or Shift+Enter to finish" ): + _("Line segment: angle %3.2f°; with Shift+Click cusp node,ALT move previous, Enter or Shift+Enter to finish"); this->_setAngleDistanceStatusMessage(p, 0, message); } else { - message = is_curve ? _("Curve segment: angle %3.2f°, distance %s; with " - "Ctrl to snap angle, Enter or Shift+Enter to finish the path") - : _("Line segment: angle %3.2f°, distance %s; with " - "Ctrl to snap angle, Enter or Shift+Enter to finish the path"); + message = is_curve ? + _("Curve segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter or Shift+Enter to finish the path" ): + _("Line segment: angle %3.2f°, distance %s; with Ctrl to snap angle, Enter or Shift+Enter to finish the path"); this->_setAngleDistanceStatusMessage(p, 0, message); } @@ -1831,9 +1825,7 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { sp_canvas_item_hide(this->cl0); SP_CTRL(this->c1)->moveto(this->p[1]); this->cl1->setCoords(this->p[0], this->p[1]); - this->_setAngleDistanceStatusMessage(p, 0, - _("Curve handle: angle %3.2f°, " - "length %s; with Ctrl to snap angle")); + this->_setAngleDistanceStatusMessage(p, 0, _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle")); } else if ( this->npoints == 5 ) { this->p[4] = p; sp_canvas_item_show(this->c0); @@ -1856,12 +1848,9 @@ void PenTool::_setCtrl(Geom::Point const p, guint const state) { - gchar *message = is_symm ? _("Curve handle, symmetric: angle %3.2f°, " - "length %s; " - "with Ctrl to snap angle, with Shift to move this handle only") - : _("Curve handle: angle %3.2f°, length %s; with " - "Ctrl to snap angle, with Shift to move this handle only"); + gchar *message = is_symm ? + _("Curve handle, symmetric: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only") : + _("Curve handle: angle %3.2f°, length %s; with Ctrl to snap angle, with Shift to move this handle only"); this->_setAngleDistanceStatusMessage(p, 3, message); } else { g_warning("Something bad happened - npoints is %d", this->npoints); diff --git a/src/ui/tools/rect-tool.cpp b/src/ui/tools/rect-tool.cpp index f7cbfc8077..3edbf4f5c1 100644 --- a/src/ui/tools/rect-tool.cpp +++ b/src/ui/tools/rect-tool.cpp @@ -427,31 +427,23 @@ void RectTool::drag(Geom::Point const pt, guint state) { if (!is_golden_ratio) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to ratio " - "%d:%d); with Shift to draw around the starting point"), - xs.c_str(), ys.c_str(), ratio_x, ratio_y); + _("Rectangle: %s × %s (constrained to ratio %d:%d); with Shift to draw around the starting point"), + xs.c_str(), ys.c_str(), ratio_x, ratio_y); } else { if (ratio_y == 1) { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden " - "ratio 1.618 : 1); with Shift to draw around the starting point"), - xs.c_str(), ys.c_str()); + _("Rectangle: %s × %s (constrained to golden ratio 1.618 : 1); with Shift to draw around the starting point"), + xs.c_str(), ys.c_str()); } else { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s (constrained to golden " - "ratio 1 : 1.618); with Shift to draw around the starting point"), - xs.c_str(), ys.c_str()); + _("Rectangle: %s × %s (constrained to golden ratio 1 : 1.618); with Shift to draw around the starting point"), + xs.c_str(), ys.c_str()); } } } else { this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio " - "rectangle; with Shift to draw around the starting point"), - xs.c_str(), ys.c_str()); + _("Rectangle: %s × %s; with Ctrl to make square or integer-ratio rectangle; with Shift to draw around the starting point"), + xs.c_str(), ys.c_str()); } } diff --git a/src/ui/tools/spiral-tool.cpp b/src/ui/tools/spiral-tool.cpp index c716040d82..29cf408b82 100644 --- a/src/ui/tools/spiral-tool.cpp +++ b/src/ui/tools/spiral-tool.cpp @@ -378,9 +378,8 @@ void SpiralTool::drag(Geom::Point const &p, guint state) { Inkscape::Util::Quantity q = Inkscape::Util::Quantity(rad, "px"); Glib::ustring rads = q.string(desktop->namedview->display_units); this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - _("Spiral: radius %s, angle %5g°; " - "with Ctrl to snap angle"), - rads.c_str(), sp_round((arg + 2.0 * M_PI * this->spiral->revo) * 180 / M_PI, 0.0001)); + _("Spiral: radius %s, angle %5g°; with Ctrl to snap angle"), + rads.c_str(), sp_round((arg + 2.0*M_PI*this->spiral->revo)*180/M_PI, 0.0001)); } void SpiralTool::finishItem() { diff --git a/src/ui/tools/spray-tool.cpp b/src/ui/tools/spray-tool.cpp index f5b79dcf31..f590be0596 100644 --- a/src/ui/tools/spray-tool.cpp +++ b/src/ui/tools/spray-tool.cpp @@ -194,9 +194,7 @@ void SprayTool::update_cursor(bool /*with_shift*/) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); - sel_message = g_strdup_printf(ngettext("%i object selected", - "%i objects selected", num), - num); + sel_message = g_strdup_printf(ngettext("%i object selected","%i objects selected",num), num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/tools/star-tool.cpp b/src/ui/tools/star-tool.cpp index 7d80dec8c7..d19cc1b27b 100644 --- a/src/ui/tools/star-tool.cpp +++ b/src/ui/tools/star-tool.cpp @@ -390,12 +390,10 @@ void StarTool::drag(Geom::Point p, guint state) Inkscape::Util::Quantity q = Inkscape::Util::Quantity(r1, "px"); Glib::ustring rads = q.string(desktop->namedview->display_units); this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, - (this->isflatsided - ? _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") - : _("Star: radius %s, angle %5g°; with Ctrl to snap angle")), - rads.c_str(), sp_round((arg1)*180 / M_PI, 0.0001)); + ( this->isflatsided? + _("Polygon: radius %s, angle %5g°; with Ctrl to snap angle") + : _("Star: radius %s, angle %5g°; with Ctrl to snap angle") ), + rads.c_str(), sp_round((arg1) * 180 / M_PI, 0.0001)); } void StarTool::finishItem() { diff --git a/src/ui/tools/text-tool.cpp b/src/ui/tools/text-tool.cpp index 9f74e42266..6f4acc3678 100644 --- a/src/ui/tools/text-tool.cpp +++ b/src/ui/tools/text-tool.cpp @@ -577,10 +577,7 @@ bool TextTool::root_handler(GdkEvent* event) { Inkscape::Util::Quantity y_q = Inkscape::Util::Quantity(fabs((p - this->p0)[Geom::Y]), "px"); Glib::ustring xs = x_q.string(desktop->namedview->display_units); Glib::ustring ys = y_q.string(desktop->namedview->display_units); - this->message_context->setF( - Inkscape::IMMEDIATE_MESSAGE, - _("Flowed text frame: %s × %s"), - xs.c_str(), ys.c_str()); + this->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Flowed text frame: %s × %s"), xs.c_str(), ys.c_str()); } else if (!this->sp_event_context_knot_mouseover()) { SnapManager &m = desktop->namedview->snap_manager; m.setup(desktop); @@ -1616,22 +1613,9 @@ static void sp_text_context_update_cursor(TextTool *tc, bool scroll_to_see) } } - SP_EVENT_CONTEXT(tc)->message_context->setF( - Inkscape::NORMAL_MESSAGE, - ngettext("Type or edit flowed text (%d character%s); Enter to start " - "new paragraph.", - "Type or edit flowed text (%d characters%s); Enter to start " - "new paragraph.", - nChars), - nChars, trunc); + SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit flowed text (%d character%s); Enter to start new paragraph.", "Type or edit flowed text (%d characters%s); Enter to start new paragraph.", nChars), nChars, trunc); } else { - SP_EVENT_CONTEXT(tc)->message_context->setF( - Inkscape::NORMAL_MESSAGE, - ngettext( - "Type or edit text (%d character%s); Enter to start new line.", - "Type or edit text (%d characters%s); Enter to start new line.", - nChars), - nChars, trunc); + SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit text (%d character%s); Enter to start new line.", "Type or edit text (%d characters%s); Enter to start new line.", nChars), nChars, trunc); } } else { diff --git a/src/ui/tools/tweak-tool.cpp b/src/ui/tools/tweak-tool.cpp index ca09911965..4f5834836f 100644 --- a/src/ui/tools/tweak-tool.cpp +++ b/src/ui/tools/tweak-tool.cpp @@ -144,9 +144,7 @@ void TweakTool::update_cursor (bool with_shift) { if (!desktop->selection->isEmpty()) { num = (guint) boost::distance(desktop->selection->items()); - sel_message = g_strdup_printf(ngettext("%i object selected", - "%i objects selected", num), - num); + sel_message = g_strdup_printf(ngettext("%i object selected","%i objects selected",num), num); } else { sel_message = g_strdup_printf("%s", _("Nothing selected")); } diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index 919bcb8e85..cfce3b52bf 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -382,8 +382,8 @@ SelectedStyle::SelectedStyle(bool /*layout*/) _fill_place.add(_na[SS_FILL]); _fill_place.set_tooltip_text(__na[SS_FILL]); - _fill_place.add(_fill_emty_space); _fill.pack_start(_fill_place, Gtk::PACK_SHRINK); + _fill.pack_start(_fill_emty_space, Gtk::PACK_SHRINK); _stroke_place.add(_na[SS_STROKE]); _stroke_place.set_tooltip_text(__na[SS_STROKE]); @@ -1338,44 +1338,25 @@ RotateableSwatch::do_motion(double by, guint modifier) { DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust alpha"))); double ch = hsla[3]; - parent->getDesktop()->event_context->message_context->setF( - Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting alpha: was %.3g, now %.3g " - "(diff %.3g); with " - "Ctrl to adjust lightness, with Shift to adjust saturation, without modifiers to adjust " - "hue"), - ch - diff, ch, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting alpha: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Shift to adjust saturation, without modifiers to adjust hue"), ch - diff, ch, diff); + } else if (modifier == 2) { // saturation DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust saturation"))); double ch = hsla[1]; - parent->getDesktop()->event_context->message_context->setF( - Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting saturation: was %.3gv, now %.3g " - "(diff %.3g); with " - "Ctrl to adjust lightness, with Alt to adjust alpha, without modifiers to adjust hue"), - ch - diff, ch, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting saturation: was %.3g, now %.3g (diff %.3g); with Ctrl to adjust lightness, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); + } else if (modifier == 1) { // lightness DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust lightness"))); double ch = hsla[2]; - parent->getDesktop()->event_context->message_context->setF( - Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with " - "Shift to adjust saturation, with Alt to adjust alpha, without modifiers to adjust hue"), - ch - diff, ch, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting lightness: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, without modifiers to adjust hue"), ch - diff, ch, diff); + } else { // hue DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust hue"))); double ch = hsla[0]; - parent->getDesktop()->event_context->message_context->setF( - Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting hue: was %.3g, now %.3g " - "(diff %.3g); with " - "Shift to adjust saturation, with Alt to adjust alpha, with Ctrl to adjust " - "lightness"), - ch - diff, ch, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting hue: was %.3g, now %.3g (diff %.3g); with Shift to adjust saturation, with Alt to adjust alpha, with Ctrl to adjust lightness"), ch - diff, ch, diff); } } @@ -1485,11 +1466,7 @@ RotateableStrokeWidth::do_motion(double by, guint modifier) { double diff = value_adjust(startvalue, by, modifier, false); DocumentUndo::maybeDone(parent->getDesktop()->getDocument(), undokey, SP_VERB_DIALOG_FILL_STROKE, (_("Adjust stroke width"))); - parent->getDesktop()->event_context->message_context->setF( - Inkscape::IMMEDIATE_MESSAGE, - _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), - startvalue, startvalue + diff, diff); + parent->getDesktop()->event_context->message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("Adjusting stroke width: was %.3g, now %.3g (diff %.3g)"), startvalue, startvalue + diff, diff); } } diff --git a/src/widgets/desktop-widget.cpp b/src/widgets/desktop-widget.cpp index 4960761d9e..088261f291 100644 --- a/src/widgets/desktop-widget.cpp +++ b/src/widgets/desktop-widget.cpp @@ -668,8 +668,10 @@ void SPDesktopWidget::init( SPDesktopWidget *dtw ) gtk_grid_attach(GTK_GRID(dtw->coord_status), label_y, 1, 1, 1, 1); dtw->coord_status_x = gtk_label_new(nullptr); dtw->coord_status_y = gtk_label_new(nullptr); - gtk_label_set_markup( GTK_LABEL(dtw->coord_status_x), " 0.00 " ); - gtk_label_set_markup( GTK_LABEL(dtw->coord_status_y), " 0.00 " ); + gtk_widget_set_name(dtw->coord_status_x, "CoordinateStatusX"); + gtk_widget_set_name(dtw->coord_status_y, "CoordinateStatusY"); + gtk_label_set_markup( GTK_LABEL(dtw->coord_status_x), " 0.00 " ); + gtk_label_set_markup( GTK_LABEL(dtw->coord_status_y), " 0.00 " ); auto label_z = gtk_label_new(_("Z:")); gtk_widget_set_name(label_z, "ZLabel"); @@ -1273,11 +1275,11 @@ void SPDesktopWidget::setCoordinateStatus(Geom::Point p) { gchar *cstr; - cstr = g_strdup_printf("%7.2f ", dt2r * p[Geom::X]); + cstr = g_strdup_printf("%7.2f", dt2r * p[Geom::X]); gtk_label_set_markup( GTK_LABEL(this->coord_status_x), cstr ); g_free(cstr); - cstr = g_strdup_printf("%7.2f ", dt2r * p[Geom::Y]); + cstr = g_strdup_printf("%7.2f", dt2r * p[Geom::Y]); gtk_label_set_markup( GTK_LABEL(this->coord_status_y), cstr ); g_free(cstr); } -- GitLab From d0ba2f6c83a966fb0fd45aca9fcbec3e12ae2463 Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Fri, 26 Oct 2018 20:43:17 +0200 Subject: [PATCH 08/11] Remove custom font and relay in a OS specific way to open-sans with a monospace fallback --- share/fonts/LiberationSansMonoDigits.sfd | 193070 --------------- share/fonts/LiberationSansMonospaceDigits.ttf | Bin 401696 -> 0 bytes share/ui/nix.css | 10 + share/ui/style.css | 9 - src/inkscape.cpp | 73 +- 5 files changed, 62 insertions(+), 193100 deletions(-) delete mode 100644 share/fonts/LiberationSansMonoDigits.sfd delete mode 100644 share/fonts/LiberationSansMonospaceDigits.ttf create mode 100644 share/ui/nix.css diff --git a/share/fonts/LiberationSansMonoDigits.sfd b/share/fonts/LiberationSansMonoDigits.sfd deleted file mode 100644 index 525791c2d6..0000000000 --- a/share/fonts/LiberationSansMonoDigits.sfd +++ /dev/null @@ -1,193070 +0,0 @@ -SplineFontDB: 3.0 -FontName: LiberationSansMonospaceDigits -FullName: Liberation Sans Monospace Digits -FamilyName: Liberation Sans MonoDigits -Weight: Book -Copyright: Digitized data copyright (c) 2010 Google Corporation. \nCopyright (c) 2012 Red Hat, Inc. -Version: 2.00.3 -ItalicAngle: 0 -UnderlinePosition: -292 -UnderlineWidth: 150 -Ascent: 1638 -Descent: 410 -InvalidEm: 0 -sfntRevision: 0x00020000 -LayerCount: 2 -Layer: 0 1 "Back" 1 -Layer: 1 1 "Fore" 0 -XUID: [1021 525 2134040670 14036128] -StyleMap: 0x0040 -FSType: 0 -OS2Version: 3 -OS2_WeightWidthSlopeOnly: 0 -OS2_UseTypoMetrics: 0 -CreationTime: 1276856602 -ModificationTime: 1540563224 -PfmFamily: 17 -TTFWeight: 400 -TTFWidth: 5 -LineGap: 67 -VLineGap: 0 -Panose: 2 11 6 4 2 2 2 2 2 4 -OS2TypoAscent: 1491 -OS2TypoAOffset: 0 -OS2TypoDescent: -431 -OS2TypoDOffset: 0 -OS2TypoLinegap: 307 -OS2WinAscent: 1854 -OS2WinAOffset: 0 -OS2WinDescent: 434 -OS2WinDOffset: 0 -HheadAscent: 1854 -HheadAOffset: 0 -HheadDescent: -434 -HheadDOffset: 0 -OS2SubXSize: 1434 -OS2SubYSize: 1331 -OS2SubXOff: 0 -OS2SubYOff: 283 -OS2SupXSize: 1434 -OS2SupYSize: 1331 -OS2SupXOff: 0 -OS2SupYOff: 977 -OS2StrikeYSize: 102 -OS2StrikeYPos: 530 -OS2CapHeight: 1409 -OS2XHeight: 1082 -OS2FamilyClass: 2053 -OS2Vendor: '1ASC' -OS2CodePages: 600001bf.dff70000 -OS2UnicodeRanges: e0000aff.500078ff.00000021.00000000 -Lookup: 1 0 0 "'locl' Localized Forms in Cyrillic lookup 0" { "'locl' Localized Forms in Cyrillic lookup 0 subtable" } ['locl' ('cyrl' <'MKD ' 'SRB ' > ) ] -Lookup: 4 1 0 "'dlig' Discretionary Ligatures in Hebrew lookup 1" { "'dlig' Discretionary Ligatures in Hebrew lookup 1 subtable" } ['dlig' ('hebr' <'dflt' > ) ] -Lookup: 4 1 0 "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2" { "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" } ['ccmp' ('hebr' <'dflt' > ) ] -Lookup: 6 1 0 "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 3" { "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 3 subtable" } ['ccmp' ('hebr' <'dflt' > ) ] -Lookup: 4 0 0 "'ccmp' Glyph Composition/Decomposition lookup 4" { "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" } ['ccmp' ('grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 4 1 0 "Ligature Substitution lookup 5" { "Ligature Substitution lookup 5 subtable" } [] -Lookup: 258 9 0 "'kern' Horizontal Kerning in Hebrew lookup 0" { "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" } ['kern' ('hebr' <'dflt' > ) ] -Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 1" { "'mark' Mark Positioning in Hebrew lookup 1 subtable" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 2" { "'mark' Mark Positioning in Hebrew lookup 2 subtable" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 260 7 0 "'mark' Mark Positioning in Hebrew lookup 3" { "'mark' Mark Positioning in Hebrew lookup 3 subtable" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 4" { "'mark' Mark Positioning in Hebrew lookup 4 subtable" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 5" { "'mark' Mark Positioning in Hebrew lookup 5 subtable" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 6" { "'mark' Mark Positioning in Hebrew lookup 6 subtable" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 7" { "'mark' Mark Positioning in Hebrew lookup 7 contextual 0" "'mark' Mark Positioning in Hebrew lookup 7 contextual 1" "'mark' Mark Positioning in Hebrew lookup 7 contextual 2" "'mark' Mark Positioning in Hebrew lookup 7 contextual 3" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 8" { "'mark' Mark Positioning in Hebrew lookup 8 contextual 0" "'mark' Mark Positioning in Hebrew lookup 8 contextual 1" "'mark' Mark Positioning in Hebrew lookup 8 contextual 2" "'mark' Mark Positioning in Hebrew lookup 8 contextual 3" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 9" { "'mark' Mark Positioning in Hebrew lookup 9 contextual 0" "'mark' Mark Positioning in Hebrew lookup 9 contextual 1" "'mark' Mark Positioning in Hebrew lookup 9 contextual 2" "'mark' Mark Positioning in Hebrew lookup 9 contextual 3" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 10" { "'mark' Mark Positioning in Hebrew lookup 10 contextual 0" "'mark' Mark Positioning in Hebrew lookup 10 contextual 1" "'mark' Mark Positioning in Hebrew lookup 10 contextual 2" "'mark' Mark Positioning in Hebrew lookup 10 contextual 3" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 11" { "'mark' Mark Positioning in Hebrew lookup 11 subtable" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 12" { "'mark' Mark Positioning in Hebrew lookup 12 subtable" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 260 1 0 "'mark' Mark Positioning in Hebrew lookup 13" { "'mark' Mark Positioning in Hebrew lookup 13 subtable" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 14" { "'mark' Mark Positioning in Hebrew lookup 14 contextual 0" "'mark' Mark Positioning in Hebrew lookup 14 contextual 1" "'mark' Mark Positioning in Hebrew lookup 14 contextual 2" "'mark' Mark Positioning in Hebrew lookup 14 contextual 3" "'mark' Mark Positioning in Hebrew lookup 14 contextual 4" "'mark' Mark Positioning in Hebrew lookup 14 contextual 5" "'mark' Mark Positioning in Hebrew lookup 14 contextual 6" "'mark' Mark Positioning in Hebrew lookup 14 contextual 7" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 15" { "'mark' Mark Positioning in Hebrew lookup 15 contextual 0" "'mark' Mark Positioning in Hebrew lookup 15 contextual 1" "'mark' Mark Positioning in Hebrew lookup 15 contextual 2" "'mark' Mark Positioning in Hebrew lookup 15 contextual 3" "'mark' Mark Positioning in Hebrew lookup 15 contextual 4" "'mark' Mark Positioning in Hebrew lookup 15 contextual 5" "'mark' Mark Positioning in Hebrew lookup 15 contextual 6" "'mark' Mark Positioning in Hebrew lookup 15 contextual 7" "'mark' Mark Positioning in Hebrew lookup 15 contextual 8" "'mark' Mark Positioning in Hebrew lookup 15 contextual 9" "'mark' Mark Positioning in Hebrew lookup 15 contextual 10" "'mark' Mark Positioning in Hebrew lookup 15 contextual 11" "'mark' Mark Positioning in Hebrew lookup 15 contextual 12" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 264 1 0 "'mark' Mark Positioning in Hebrew lookup 16" { "'mark' Mark Positioning in Hebrew lookup 16 contextual 0" "'mark' Mark Positioning in Hebrew lookup 16 contextual 1" } ['mark' ('hebr' <'dflt' > ) ] -Lookup: 258 8 0 "'kern' Horizontal Kerning lookup 17" { "'kern' Horizontal Kerning lookup 17 subtable" } ['kern' ('cyrl' <'MKD ' 'SRB ' 'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 257 1 0 "Single Positioning lookup 18" { "Single Positioning lookup 18 subtable" } [] -Lookup: 260 1 0 "Mark to base attachment lookup 19" { "Mark to base attachment lookup 19 subtable" } [] -Lookup: 260 1 0 "Mark to base attachment lookup 20" { "Mark to base attachment lookup 20 subtable" } [] -Lookup: 260 1 0 "Mark to base attachment lookup 21" { "Mark to base attachment lookup 21 subtable" } [] -Lookup: 260 1 0 "Mark to base attachment lookup 22" { "Mark to base attachment lookup 22 subtable" } [] -Lookup: 257 1 0 "Single Positioning lookup 23" { "Single Positioning lookup 23 subtable" } [] -Lookup: 257 1 0 "Single Positioning lookup 24" { "Single Positioning lookup 24 subtable" } [] -Lookup: 258 1 0 "Pairwise Positioning (kerning) lookup 25" { "Pairwise Positioning (kerning) lookup 25 subtable" } [] -Lookup: 260 0 0 "'mark' Mark Positioning lookup 26" { "'mark' Mark Positioning lookup 26 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 260 0 0 "'mark' Mark Positioning lookup 27" { "'mark' Mark Positioning lookup 27 subtable" } ['mark' ('cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 260 0 0 "'mark' Mark Positioning lookup 28" { "'mark' Mark Positioning lookup 28 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 260 0 0 "'mark' Mark Positioning lookup 29" { "'mark' Mark Positioning lookup 29 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 260 0 0 "'mark' Mark Positioning lookup 30" { "'mark' Mark Positioning lookup 30 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 260 256 0 "'mark' Mark Positioning lookup 31" { "'mark' Mark Positioning lookup 31 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 260 0 0 "'mark' Mark Positioning lookup 32" { "'mark' Mark Positioning lookup 32 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 260 0 0 "'mark' Mark Positioning lookup 33" { "'mark' Mark Positioning lookup 33 subtable" } ['mark' ('grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 260 0 0 "Mark to base attachment lookup 34" { "Mark to base attachment lookup 34 subtable" } [] -Lookup: 262 512 0 "'mkmk' Mark to Mark lookup 35" { "'mkmk' Mark to Mark lookup 35 subtable" } ['mkmk' ('cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] -Lookup: 262 768 0 "'mkmk' Mark to Mark lookup 36" { "'mkmk' Mark to Mark lookup 36 subtable" } ['mkmk' ('cyrl' <'dflt' > 'grek' <'dflt' > 'latn' <'dflt' > ) ] -MarkAttachClasses: 4 -"MarkClass-1" 31 uniFE20 uniFE21 uniFE22 uniFE23 -"MarkClass-2" 523 gravecomb acutecomb uni0302 tildecomb uni0304 uni0305 uni0306 uni0307 uni0308 hookabovecomb uni030A uni030B uni030C uni030D uni030E uni030F uni0310 uni0311 uni0312 uni0313 uni0314 uni031A uni033D uni033E uni033F uni0342 uni0343 uni0344 uni0346 uni034A uni034B uni034C uni0350 uni0351 uni0352 uni0357 uni035B uni0363 uni0364 uni0365 uni0366 uni0367 uni0368 uni0369 uni036A uni036B uni036C uni036D uni036E uni036F uni0483 uni0484 uni0485 uni0486 uni1DC0 uni1DC1 uni1DC3 uni1DC4 uni1DC5 uni1DC6 uni1DC7 uni1DC8 uni1DC9 uni1DFE -"MarkClass-3" 348 uni0316 uni0317 uni0318 uni0319 uni031C uni031D uni031E uni031F uni0320 dotbelowcomb uni0324 uni0325 uni0326 uni0329 uni032A uni032B uni032C uni032D uni032E uni032F uni0330 uni0331 uni0332 uni0333 uni0339 uni033A uni033B uni033C uni0345 uni0347 uni0348 uni0349 uni034D uni034E uni0353 uni0354 uni0355 uni0356 uni0359 uni035A uni1DC2 uni1DCA uni1DFF -DEI: 91125 -ChainSub2: coverage "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 3 subtable" 0 0 0 1 - 2 0 1 - Coverage: 22 alef bet kaf pe yodyod - Coverage: 17 patah qamats rafe - FCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - 1 - SeqLookup: 0 "Ligature Substitution lookup 5" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 16 contextual 1" 0 0 0 1 - 2 2 0 - Coverage: 7 uni05A4 - Coverage: 7 uni05A5 - BCoverage: 6 dagesh - BCoverage: 4 ayin - 1 - SeqLookup: 0 "Pairwise Positioning (kerning) lookup 25" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 16 contextual 0" 0 0 0 1 - 2 2 0 - Coverage: 7 uni05A4 - Coverage: 7 uni05A5 - BCoverage: 5 holam - BCoverage: 4 ayin - 1 - SeqLookup: 0 "Pairwise Positioning (kerning) lookup 25" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 12" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 5 meteg - BCoverage: 6 qamats - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 11" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 7 uni05A4 - BCoverage: 6 qamats - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 10" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 7 uni05A3 - BCoverage: 6 qamats - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 9" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 7 uni059A - BCoverage: 6 qamats - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 8" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 7 uni0596 - BCoverage: 6 qamats - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 7" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 5 hiriq - BCoverage: 6 qamats - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 6" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 5 sheva - BCoverage: 6 qamats - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 5" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 7 uni0596 - BCoverage: 5 patah - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 4" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 7 uni059A - BCoverage: 5 segol - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 3" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 7 uni05A3 - BCoverage: 5 segol - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 2" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 5 meteg - BCoverage: 5 tsere - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 1" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 7 uni05A3 - BCoverage: 5 tsere - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 15 contextual 0" 0 0 0 1 - 1 2 0 - Coverage: 45 uni0591 uni0596 uni05A3 uni05A4 uni05A5 meteg - BCoverage: 5 meteg - BCoverage: 5 hiriq - 1 - SeqLookup: 0 "Single Positioning lookup 24" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 7" 0 0 0 1 - 1 2 0 - Coverage: 15 uni059A uni05AD - BCoverage: 5 meteg - BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam - 1 - SeqLookup: 0 "Single Positioning lookup 23" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 6" 0 0 0 1 - 1 3 0 - Coverage: 15 uni059A uni05AD - BCoverage: 5 meteg - BCoverage: 6 qamats - BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam - 1 - SeqLookup: 0 "Single Positioning lookup 23" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 5" 0 0 0 1 - 1 3 0 - Coverage: 15 uni059A uni05AD - BCoverage: 5 meteg - BCoverage: 5 patah - BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam - 1 - SeqLookup: 0 "Single Positioning lookup 23" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 4" 0 0 0 1 - 1 3 0 - Coverage: 15 uni059A uni05AD - BCoverage: 5 meteg - BCoverage: 5 tsere - BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam - 1 - SeqLookup: 0 "Single Positioning lookup 23" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 3" 0 0 0 1 - 1 3 0 - Coverage: 15 uni059A uni05AD - BCoverage: 5 meteg - BCoverage: 5 hiriq - BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam - 1 - SeqLookup: 0 "Single Positioning lookup 23" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 2" 0 0 0 1 - 1 3 0 - Coverage: 15 uni059A uni05AD - BCoverage: 5 meteg - BCoverage: 5 sheva - BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam - 1 - SeqLookup: 0 "Single Positioning lookup 23" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 1" 0 0 0 1 - 1 3 0 - Coverage: 15 uni059A uni05AD - BCoverage: 5 hiriq - BCoverage: 5 sheva - BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam - 1 - SeqLookup: 0 "Single Positioning lookup 23" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 14 contextual 0" 0 0 0 1 - 1 2 0 - Coverage: 15 uni059A uni05AD - BCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 195 gimel dalet vav zayin yod lamed nun resh daletwide lamedwide reshwide gimeldagesh daletdagesh vavdagesh zayindagesh yoddagesh lameddagesh nundagesh reshdagesh vavholam lamedholamdagesh lamedholam - 1 - SeqLookup: 0 "Single Positioning lookup 23" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 10 contextual 3" 0 0 0 1 - 1 2 0 - Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 79 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA - BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva - 1 - SeqLookup: 0 "Mark to base attachment lookup 22" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 10 contextual 2" 0 0 0 1 - 1 2 0 - Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva - 1 - SeqLookup: 0 "Mark to base attachment lookup 22" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 10 contextual 1" 0 0 0 1 - 1 2 0 - Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 79 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA - BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - 1 - SeqLookup: 0 "Mark to base attachment lookup 22" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 10 contextual 0" 0 0 0 1 - 1 2 0 - Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - 1 - SeqLookup: 0 "Mark to base attachment lookup 22" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 9 contextual 3" 0 0 0 1 - 1 1 1 - Coverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF - BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva - FCoverage: 12 rafe uniFB1E - 1 - SeqLookup: 0 "Mark to base attachment lookup 21" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 9 contextual 2" 0 0 0 1 - 1 2 0 - Coverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF - BCoverage: 12 rafe uniFB1E - BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva - 1 - SeqLookup: 0 "Mark to base attachment lookup 21" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 9 contextual 1" 0 0 0 1 - 1 1 1 - Coverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF - BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - FCoverage: 12 rafe uniFB1E - 1 - SeqLookup: 0 "Mark to base attachment lookup 21" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 9 contextual 0" 0 0 0 1 - 1 2 0 - Coverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF - BCoverage: 12 rafe uniFB1E - BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - 1 - SeqLookup: 0 "Mark to base attachment lookup 21" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 8 contextual 3" 0 0 0 1 - 1 1 1 - Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva - FCoverage: 79 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA - 1 - SeqLookup: 0 "Mark to base attachment lookup 20" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 8 contextual 2" 0 0 0 1 - 1 1 1 - Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva - FCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - 1 - SeqLookup: 0 "Mark to base attachment lookup 20" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 8 contextual 1" 0 0 0 1 - 1 1 1 - Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - FCoverage: 131 sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - 1 - SeqLookup: 0 "Mark to base attachment lookup 20" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 8 contextual 0" 0 0 0 1 - 1 1 1 - Coverage: 211 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA sheva hatafsegol hatafpatah hatafqamats hiriq tsere segol patah qamats qubuts meteg qamatsqatan uni05B105BD uni05B205BD uni05B305BD - BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - FCoverage: 79 uni0591 uni0596 uni059B uni05A2 uni05A3 uni05A4 uni05A5 uni05A6 uni05A7 uni05AA - 1 - SeqLookup: 0 "Mark to base attachment lookup 20" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 7 contextual 3" 0 0 0 1 - 1 2 0 - Coverage: 12 rafe uniFB1E - BCoverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF - BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva - 1 - SeqLookup: 0 "Mark to base attachment lookup 19" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 7 contextual 2" 0 0 0 1 - 1 1 1 - Coverage: 12 rafe uniFB1E - BCoverage: 422 yodyod_patah shinshindot shinsindot shindageshshindot shindageshsindot alefpatah alefqamats alefmapiq betdagesh gimeldagesh daletdagesh hedagesh vavdagesh zayindagesh tetdagesh yoddagesh finalkafdagesh kafdagesh lameddagesh memdagesh nundagesh samekhdagesh finalpedagesh pedagesh tsadidagesh qofdagesh reshdagesh shindagesh tavdagesh vavholam betrafe kafrafe perafe lamedholamdagesh lamedholam finalkafqamats finalkafsheva - FCoverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF - 1 - SeqLookup: 0 "Mark to base attachment lookup 19" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 7 contextual 1" 0 0 0 1 - 1 2 0 - Coverage: 12 rafe uniFB1E - BCoverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF - BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - 1 - SeqLookup: 0 "Mark to base attachment lookup 19" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 7 contextual 0" 0 0 0 1 - 1 1 1 - Coverage: 12 rafe uniFB1E - BCoverage: 251 alef bet gimel dalet he vav zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavvav vavyod yodyod uni25CC alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - FCoverage: 111 uni0592 uni0593 uni0594 uni0595 uni0597 uni0598 uni059C uni059E uni059F uni05A1 uni05A8 uni05AB uni05AC uni05AF - 1 - SeqLookup: 0 "Mark to base attachment lookup 19" -EndFPST -ChainPos2: coverage "'mark' Mark Positioning in Hebrew lookup 2 subtable" 0 0 0 1 - 1 1 0 - Coverage: 5 holam - BCoverage: 232 alef bet gimel dalet he zayin het tet yod finalkaf kaf lamed finalmem mem finalnun nun samekh ayin finalpe pe finaltsadi tsadi qof resh shin tav vavyod yodyod alefwide daletwide hewide kafwide lamedwide finalmemwide reshwide tavwide - 1 - SeqLookup: 0 "Single Positioning lookup 18" -EndFPST -TtTable: prep -NPUSHW - 33 - 9 - 319 - 1 - 313 - 85 - 318 - 1 - 313 - 85 - 322 - 320 - 20 - 31 - 321 - 320 - 31 - 31 - 315 - 51 - 314 - 85 - 312 - 51 - 313 - 85 - 64 - 263 - 1 - 31 - 263 - 1 - 159 - 260 -NPUSHB - 170 - 1 - 192 - 253 - 1 - 175 - 253 - 1 - 0 - 253 - 1 - 10 - 79 - 251 - 1 - 32 - 251 - 1 - 245 - 80 - 40 - 31 - 242 - 70 - 40 - 31 - 241 - 70 - 42 - 31 - 240 - 70 - 43 - 31 - 95 - 239 - 127 - 239 - 2 - 15 - 239 - 79 - 239 - 95 - 239 - 143 - 239 - 175 - 239 - 5 - 11 - 229 - 228 - 30 - 31 - 227 - 226 - 70 - 31 - 15 - 226 - 1 - 64 - 226 - 70 - 22 - 31 - 225 - 224 - 70 - 31 - 207 - 224 - 223 - 224 - 239 - 224 - 3 - 64 - 224 - 51 - 54 - 70 - 224 - 70 - 24 - 31 - 238 - 237 - 255 - 31 - 237 - 1 - 232 - 85 - 236 - 72 - 235 - 85 - 234 - 50 - 0 - 85 - 233 - 232 - 232 - 85 - 231 - 72 - 0 - 85 - 230 - 0 - 255 - 31 - 221 - 61 - 223 - 85 - 223 - 1 - 3 - 85 - 222 - 61 - 3 - 85 - 220 - 3 - 255 - 31 - 15 - 213 - 31 - 213 - 2 - 15 - 213 - 31 - 213 - 2 - 64 - 202 - 24 - 27 - 70 - 207 - 194 - 1 - 189 - 192 - 60 - 31 - 193 - 80 - 38 - 31 - 188 - 190 - 40 - 31 - 255 - 185 - 1 - 80 - 184 - 112 - 184 - 128 - 184 - 3 -PUSHW_1 - -64 -NPUSHB - 255 - 184 - 18 - 50 - 70 - 31 - 183 - 63 - 183 - 79 - 183 - 111 - 183 - 127 - 183 - 159 - 183 - 175 - 183 - 7 - 24 - 182 - 1 - 112 - 178 - 160 - 178 - 176 - 178 - 3 - 15 - 178 - 1 - 144 - 181 - 1 - 176 - 181 - 1 - 15 - 181 - 1 - 8 - 15 - 179 - 63 - 179 - 239 - 179 - 3 - 128 - 176 - 144 - 176 - 2 - 176 - 176 - 192 - 176 - 208 - 176 - 3 - 47 - 175 - 63 - 175 - 2 - 160 - 173 - 176 - 173 - 2 - 192 - 173 - 208 - 173 - 2 - 47 - 172 - 63 - 172 - 2 - 159 - 171 - 1 - 192 - 170 - 208 - 170 - 2 - 79 - 169 - 143 - 169 - 2 - 47 - 169 - 111 - 169 - 191 - 169 - 255 - 169 - 4 - 156 - 155 - 36 - 31 - 80 - 155 - 1 - 111 - 150 - 1 - 191 - 150 - 1 - 150 - 70 - 29 - 31 - 149 - 148 - 23 - 31 - 15 - 148 - 31 - 148 - 127 - 148 - 143 - 148 - 255 - 148 - 5 - 48 - 145 - 64 - 145 - 2 - 128 - 145 - 1 - 112 - 143 - 128 - 143 - 2 - 144 - 143 - 1 - 192 - 143 - 208 - 143 - 2 - 79 - 140 - 95 - 140 - 111 - 140 - 3 - 134 - 70 - 255 - 31 - 159 - 133 - 1 - 132 - 131 - 49 - 31 - 116 - 115 - 63 - 31 - 115 - 80 - 38 - 31 - 111 - 110 - 60 - 31 - 110 - 70 - 53 - 31 - 26 - 1 - 24 - 85 - 25 - 51 - 24 - 85 - 7 - 51 - 3 - 85 - 6 - 3 - 255 - 31 - 96 - 80 - 38 - 31 - 95 - 80 - 38 - 31 - 92 - 70 - 49 - 31 - 91 - 90 - 72 - 31 - 90 - 70 - 49 - 31 - 19 - 50 - 18 - 85 - 5 - 1 - 3 - 85 - 4 - 50 - 3 - 85 - 108 - 3 - 1 - 12 - 3 - 60 - 3 - 76 - 3 - 108 - 3 - 124 - 3 - 5 - 239 - 81 - 255 -NPUSHB - 100 - 81 - 2 - 64 - 81 - 53 - 56 - 70 - 64 - 81 - 37 - 40 - 70 - 207 - 80 - 1 - 73 - 70 - 32 - 31 - 72 - 70 - 53 - 31 - 71 - 70 - 53 - 31 - 175 - 70 - 1 - 223 - 70 - 239 - 70 - 2 - 128 - 70 - 1 - 22 - 50 - 21 - 85 - 17 - 1 - 15 - 85 - 16 - 50 - 15 - 85 - 2 - 1 - 0 - 85 - 1 - 0 - 1 - 31 - 31 - 15 - 63 - 15 - 95 - 15 - 127 - 15 - 4 - 15 - 15 - 47 - 15 - 79 - 15 - 111 - 15 - 143 - 15 - 223 - 15 - 255 - 15 - 7 - 63 - 15 - 127 - 15 - 239 - 15 - 3 - 111 - 0 - 1 - 79 - 0 - 1 - 128 - 22 - 1 - 5 - 1 -PUSHW_1 - 400 -PUSHB_2 - 84 - 83 -CALL -CALL -MPPEM -PUSHW_1 - 2047 -GT -MPPEM -PUSHB_1 - 7 -LT -OR -PUSHB_1 - 1 -GETINFO -PUSHB_1 - 37 -GTEQ -PUSHB_1 - 1 -GETINFO -PUSHB_1 - 64 -LTEQ -AND -PUSHB_1 - 6 -GETINFO -PUSHB_1 - 0 -NEQ -AND -OR -IF -PUSHB_2 - 1 - 1 -INSTCTRL -EIF -SCANCTRL -SCANTYPE -SCANTYPE -SVTCA[y-axis] -WS -SCVTCI -MPPEM -PUSHB_1 - 50 -GTEQ -IF -PUSHB_1 - 96 -SCVTCI -EIF -MPPEM -PUSHB_1 - 100 -GTEQ -IF -PUSHB_1 - 64 -SCVTCI -EIF -MPPEM -PUSHB_1 - 128 -GTEQ -IF -PUSHB_1 - 16 -SCVTCI -PUSHB_2 - 22 - 0 -WS -EIF -DELTAC1 -DELTAC2 -DELTAC1 -DELTAC2 -DELTAC3 -CALL -CALL -CALL -CALL -CALL -SVTCA[x-axis] -DELTAC1 -DELTAC2 -DELTAC3 -CALL -CALL -CALL -SVTCA[y-axis] -DELTAC2 -CALL -CALL -DELTAC1 -DELTAC1 -DELTAC3 -CALL -CALL -CALL -SVTCA[x-axis] -CALL -CALL -CALL -SVTCA[y-axis] -CALL -CALL -CALL -CALL -CALL -CALL -SVTCA[x-axis] -CALL -CALL -SVTCA[y-axis] -CALL -CALL -SVTCA[x-axis] -CALL -DELTAC1 -CALL -SVTCA[y-axis] -DELTAC2 -DELTAC1 -DELTAC2 -DELTAC3 -DELTAC1 -DELTAC2 -DELTAC1 -CALL -SVTCA[x-axis] -CALL -DELTAC2 -DELTAC3 -SVTCA[y-axis] -DELTAC1 -CALL -DELTAC1 -DELTAC2 -SVTCA[x-axis] -DELTAC1 -DELTAC1 -DELTAC2 -SVTCA[y-axis] -DELTAC1 -DELTAC2 -DELTAC2 -DELTAC1 -DELTAC2 -DELTAC1 -SVTCA[x-axis] -SDB -DELTAC1 -DELTAC1 -DELTAC2 -DELTAC1 -DELTAC1 -SVTCA[y-axis] -DELTAC1 -DELTAC1 -CALL -DELTAC1 -DELTAC1 -SVTCA[x-axis] -CALL -SVTCA[y-axis] -CALL -SVTCA[x-axis] -CALL -SVTCA[y-axis] -DELTAC1 -CALL -DELTAC2 -DELTAC3 -CALL -CALL -CALL -CALL -CALL -CALL -CALL -CALL -CALL -CALL -CALL -SVTCA[x-axis] -CALL -CALL -DELTAC2 -CALL -CALL -SDB -DELTAC1 -CALL -SVTCA[y-axis] -CALL -SDB -DELTAC1 -DELTAC2 -SVTCA[x-axis] -CALL -CALL -CALL -SVTCA[y-axis] -CALL -DELTAC1 -DELTAC1 -SDB -DELTAC1 -DELTAC1 -DELTAC1 -SVTCA[x-axis] -DELTAC1 -DELTAC1 -DELTAC1 -SVTCA[y-axis] -CALL -CALL -CALL -CALL -CALL -CALL -RTG -SDB -EndTTInstrs -TtTable: fpgm -NPUSHB - 71 - 91 - 90 - 89 - 88 - 85 - 84 - 83 - 82 - 81 - 80 - 79 - 78 - 77 - 76 - 75 - 74 - 73 - 72 - 71 - 70 - 69 - 68 - 67 - 66 - 65 - 64 - 63 - 62 - 61 - 60 - 59 - 58 - 57 - 56 - 55 - 54 - 53 - 49 - 48 - 47 - 46 - 45 - 44 - 40 - 39 - 38 - 37 - 36 - 35 - 34 - 33 - 31 - 24 - 20 - 17 - 16 - 15 - 14 - 13 - 11 - 10 - 9 - 8 - 7 - 6 - 5 - 4 - 3 - 2 - 1 - 0 -FDEF -DUP -PUSHB_1 - 1 -ADD -RCVT -PUSHB_1 - 3 -CINDEX -DUP -SRP1 -GC[cur] -SUB -SWAP -RCVT -SWAP -SUB -SCFS -ENDF -FDEF -DUP -RCVT -RTG -ROUND[Grey] -WCVTP -ENDF -FDEF -RCVT -SWAP -GC[cur] -ADD -PUSHB_1 - 32 -SUB -DUP -PUSHB_1 - 70 -ADD -PUSHB_1 - 4 -MINDEX -SWAP -SCFS -SCFS -ENDF -FDEF -RCVT -SWAP -GC[cur] -SWAP -SUB -PUSHB_1 - 32 -ADD -DUP -PUSHB_1 - 38 -SUB -PUSHB_1 - 32 -SUB -PUSHB_1 - 4 -MINDEX -SWAP -SCFS -SCFS -ENDF -FDEF -RCVT -SWAP -GC[cur] -ADD -PUSHB_1 - 64 -SUB -DUP -PUSHB_1 - 102 -ADD -PUSHB_1 - 4 -MINDEX -SWAP -SCFS -SCFS -ENDF -FDEF -RCVT -SWAP -GC[cur] -SWAP -SUB -PUSHB_1 - 64 -ADD -DUP -PUSHB_1 - 38 -SUB -PUSHB_1 - 64 -SUB -PUSHB_1 - 4 -MINDEX -SWAP -SCFS -SCFS -ENDF -FDEF -SVTCA[x-axis] -SRP0 -DUP -ALIGNRP -SVTCA[y-axis] -ALIGNRP -ENDF -FDEF -DUP -RCVT -SWAP -DUP -PUSHB_1 - 205 -WCVTP -SWAP -DUP -PUSHW_1 - 346 -LTEQ -IF -SWAP -DUP -PUSHB_1 - 141 -WCVTP -SWAP -EIF -DUP -PUSHB_1 - 237 -LTEQ -IF -SWAP -DUP -PUSHB_1 - 77 -WCVTP -SWAP -EIF -DUP -PUSHB_1 - 4 -MINDEX -LTEQ -IF -SWAP -DUP -PUSHB_1 - 13 -WCVTP -SWAP -EIF -POP -POP -ENDF -FDEF -DUP -DUP -RCVT -RTG -ROUND[Grey] -WCVTP -DUP -PUSHB_1 - 1 -ADD -DUP -RCVT -PUSHB_1 - 70 -SROUND -ROUND[Grey] -ROLL -RCVT -ADD -WCVTP -ENDF -FDEF -SVTCA[x-axis] -PUSHB_2 - 11 - 10 -RS -SWAP -RS -NEG -SPVFS -ENDF -FDEF -SVTCA[y-axis] -PUSHB_2 - 10 - 11 -RS -SWAP -RS -SFVFS -ENDF -FDEF -SVTCA[y-axis] -PUSHB_1 - 40 -SWAP -WCVTF -PUSHB_2 - 1 - 40 -MIAP[no-rnd] -SVTCA[x-axis] -PUSHB_1 - 40 -SWAP -WCVTF -PUSHB_2 - 2 - 40 -RCVT -MSIRP[no-rp0] -PUSHB_2 - 2 - 0 -SFVTL[parallel] -GFV -ENDF -FDEF -DUP -RCVT -PUSHB_1 - 3 -CINDEX -RCVT -SUB -ABS -PUSHB_1 - 80 -LTEQ -IF -RCVT -WCVTP -ELSE -POP -POP -EIF -ENDF -FDEF -MD[grid] -PUSHB_1 - 14 -SWAP -WCVTP -ENDF -FDEF -DUP -RCVT -PUSHB_1 - 0 -RS -ADD -WCVTP -ENDF -FDEF -SVTCA[x-axis] -PUSHB_1 - 6 -RS -PUSHB_1 - 7 -RS -NEG -SPVFS -ENDF -FDEF -DUP -ROUND[Black] -PUSHB_1 - 64 -SUB -PUSHB_1 - 0 -MAX -DUP -PUSHB_2 - 44 - 192 -ROLL -MIN -PUSHW_1 - 4096 -DIV -ADD -CALL -GPV -ABS -SWAP -ABS -SUB -NOT -IF -PUSHB_1 - 3 -SUB -EIF -ENDF -FDEF -ROLL -SPVTCA[x-axis] -RCVT -ROLL -ROLL -SDPVTL[orthog] -PUSHB_1 - 17 -CALL -PUSHB_1 - 41 -SWAP -WCVTP -PUSHB_1 - 41 -ROFF -MIRP[rnd,grey] -RTG -ENDF -FDEF -RCVT -NEG -PUSHB_1 - 44 -SWAP -WCVTP -RCVT -PUSHB_1 - 43 -SWAP -WCVTP -ENDF -FDEF -MPPEM -GT -IF -RCVT -WCVTP -ELSE -POP -POP -EIF -ENDF -FDEF -MPPEM -LTEQ -IF -RCVT -WCVTP -ELSE -POP -POP -EIF -ENDF -FDEF -SVTCA[x-axis] -PUSHB_1 - 5 -CINDEX -SRP0 -SWAP -DUP -ROLL -MIRP[rp0,rnd,black] -SVTCA[y-axis] -PUSHB_1 - 1 -ADD -SWAP -MIRP[min,rnd,black] -MIRP[min,rnd,grey] -ENDF -FDEF -SVTCA[x-axis] -PUSHB_1 - 5 -CINDEX -SRP0 -SWAP -DUP -ROLL -MIRP[rp0,rnd,black] -SVTCA[y-axis] -PUSHB_1 - 1 -SUB -SWAP -MIRP[min,rnd,black] -MIRP[min,rnd,grey] -ENDF -FDEF -SVTCA[x-axis] -PUSHB_1 - 6 -CINDEX -SRP0 -MIRP[rp0,rnd,black] -SVTCA[y-axis] -MIRP[min,rnd,black] -MIRP[min,rnd,grey] -ENDF -FDEF -PUSHB_1 - 2 -RS -PUSHB_1 - 1 -GT -IF -POP -POP -POP -POP -POP -ELSE -GC[cur] -SWAP -GC[cur] -ADD -ROLL -ROLL -GC[cur] -SWAP -DUP -GC[cur] -ROLL -ADD -ROLL -SUB -PUSHW_1 - -128 -DIV -SWAP -DUP -SRP0 -SWAP -ROLL -PUSHB_2 - 12 - 12 -ROLL -WCVTF -RCVT -ADD -DUP -PUSHB_1 - 0 -LT -IF -PUSHB_1 - 1 -SUB -PUSHW_1 - -70 -MAX -ELSE -PUSHB_1 - 70 -MIN -EIF -PUSHB_1 - 16 -ADD -ROUND[Grey] -SVTCA[x-axis] -MSIRP[no-rp0] -EIF -ENDF -FDEF -DUP -RCVT -PUSHB_1 - 3 -CINDEX -GC[cur] -GT -MPPEM -PUSHB_1 - 19 -LTEQ -OR -IF -PUSHB_1 - 2 -CINDEX -GC[cur] -DUP -ROUND[Grey] -SUB -PUSHB_1 - 3 -CINDEX -PUSHB_1 - 3 -CINDEX -MIAP[rnd] -SWAP -POP -SHPIX -ELSE -POP -SRP1 -EIF -ENDF -FDEF -DUP -RCVT -PUSHB_1 - 3 -CINDEX -GC[cur] -LT -IF -PUSHB_1 - 2 -CINDEX -GC[cur] -DUP -ROUND[Grey] -SUB -PUSHB_1 - 3 -CINDEX -PUSHB_1 - 3 -CINDEX -MIAP[rnd] -SWAP -POP -SHPIX -ELSE -POP -SRP1 -EIF -ENDF -FDEF -SVTCA[y-axis] -PUSHB_1 - 7 -RS -PUSHB_1 - 6 -RS -SFVFS -ENDF -FDEF -POP -POP -GPV -ABS -SWAP -ABS -MAX -PUSHW_1 - 16384 -DIV -ENDF -FDEF -POP -PUSHB_1 - 128 -LTEQ -IF -GPV -ABS -SWAP -ABS -MAX -PUSHW_1 - 8192 -DIV -ELSE -PUSHB_3 - 0 - 64 - 47 -CALL -EIF -PUSHB_1 - 2 -ADD -ENDF -FDEF -POP -PUSHB_1 - 192 -LTEQ -IF -GPV -ABS -SWAP -ABS -MAX -PUSHW_1 - 5461 -DIV -ELSE -PUSHB_3 - 0 - 128 - 47 -CALL -EIF -PUSHB_1 - 2 -ADD -ENDF -FDEF -GPV -ABS -SWAP -ABS -MAX -PUSHW_1 - 16384 -DIV -ADD -SWAP -POP -ENDF -FDEF -MPPEM -GTEQ -IF -ROLL -PUSHB_1 - 4 -CINDEX -MD[grid] -ABS -SWAP -RCVT -ROUND[Black] -PUSHB_1 - 64 -MAX -SUB -PUSHB_1 - 128 -DIV -PUSHB_1 - 32 -SUB -ROUND[White] -PUSHB_1 - 14 -SWAP -WCVTP -SWAP -SRP0 -PUSHB_1 - 14 -MIRP[rp0,rnd,white] -ELSE -POP -SWAP -ROLL -SRP2 -SRP1 -DUP -IP -MDAP[rnd] -EIF -ENDF -FDEF -MPPEM -GTEQ -IF -DUP -PUSHB_1 - 3 -CINDEX -MD[grid] -ABS -ROUND[Black] -DUP -PUSHB_1 - 5 -MINDEX -PUSHB_1 - 6 -CINDEX -MD[grid] -ABS -SWAP -SUB -PUSHB_1 - 128 -DIV -PUSHB_1 - 32 -SUB -ROUND[White] -PUSHB_1 - 14 -SWAP -WCVTP -PUSHB_1 - 4 -MINDEX -SRP0 -PUSHB_1 - 14 -MIRP[rp0,rnd,white] -ROLL -SRP0 -PUSHB_1 - 14 -SWAP -WCVTP -PUSHB_1 - 14 -MIRP[rp0,rnd,white] -PUSHB_1 - 14 -SWAP -WCVTP -PUSHB_1 - 14 -MIRP[min,rnd,black] -ELSE -ROLL -PUSHB_1 - 4 -MINDEX -SRP1 -SRP2 -DUP -IP -SWAP -DUP -IP -MDAP[rnd] -MDAP[rnd] -EIF -ENDF -FDEF -RCVT -SWAP -RCVT -ADD -SWAP -RCVT -ADD -SWAP -RCVT -ADD -SWAP -SROUND -ROUND[Grey] -RTG -PUSHB_1 - 128 -DIV -DUP -ENDF -FDEF -PUSHB_1 - 72 -CALL -ENDF -FDEF -DUP -RCVT -PUSHB_1 - 0 -EQ -IF -PUSHB_1 - 64 -WCVTP -DUP -RCVT -PUSHB_1 - 64 -SUB -WCVTP -ELSE -POP -POP -EIF -ENDF -FDEF -RCVT -PUSHB_2 - 48 - 47 -RCVT -SWAP -RCVT -SUB -ADD -PUSHB_1 - 1 -ADD -ROUND[Black] -WCVTP -ENDF -FDEF -MPPEM -LTEQ -IF -PUSHB_1 - 47 -SWAP -WCVTF -PUSHB_1 - 20 -SWAP -WS -ELSE -POP -POP -EIF -ENDF -FDEF -MPPEM -LTEQ -IF -DUP -PUSHB_1 - 3 -CINDEX -RCVT -ROUND[Black] -GTEQ -IF -WCVTP -ELSE -POP -POP -EIF -ELSE -POP -POP -EIF -ENDF -FDEF -RCVT -PUSHB_1 - 20 -RS -PUSHB_1 - 0 -ADD -MUL -PUSHB_1 - 1 -ADD -ROUND[Black] -WCVTP -ENDF -FDEF -PUSHB_1 - 47 -RCVT -WCVTP -ENDF -FDEF -RCVT -SWAP -DUP -RCVT -ROLL -ADD -WCVTP -ENDF -FDEF -RCVT -SWAP -RCVT -ADD -WCVTP -ENDF -FDEF -MPPEM -SWAP -LTEQ -IF -PUSHW_2 - 51 - -32 -PUSHB_2 - 52 - 32 -ELSE -PUSHB_4 - 51 - 0 - 52 - 0 -EIF -WCVTP -WCVTP -ENDF -FDEF -PUSHB_1 - 22 -RS -IF -PUSHB_1 - 3 -MINDEX -RCVT -ROLL -IF -ABS -FLOOR -PUSHB_1 - 31 -ADD -ELSE -ABS -PUSHB_1 - 32 -ADD -FLOOR -DUP -IF -ELSE -POP -PUSHB_1 - 64 -EIF -PUSHB_1 - 1 -SUB -EIF -SWAP -IF -NEG -EIF -PUSHB_1 - 41 -SWAP -WCVTP -SWAP -SRP0 -PUSHB_1 - 41 -MIRP[grey] -ELSE -POP -POP -POP -POP -POP -EIF -ENDF -FDEF -PUSHB_1 - 2 -RS -EQ -IF -MPPEM -GTEQ -SWAP -MPPEM -LTEQ -AND -IF -SHPIX -ELSE -POP -POP -EIF -ELSE -POP -POP -POP -POP -EIF -ENDF -FDEF -PUSHB_1 - 22 -RS -IF -PUSHB_1 - 4 -CINDEX -RCVT -ABS -PUSHB_1 - 32 -ADD -FLOOR -DUP -IF -ELSE -POP -PUSHB_1 - 64 -EIF -PUSHB_1 - 1 -SUB -SWAP -IF -ELSE -NEG -EIF -PUSHB_1 - 41 -SWAP -WCVTP -PUSHB_1 - 5 -CINDEX -PUSHB_1 - 8 -CINDEX -SFVTL[parallel] -DUP -IF -SPVTCA[y-axis] -ELSE -SPVTCA[x-axis] -EIF -PUSHB_1 - 4 -CINDEX -SRP0 -PUSHB_1 - 5 -CINDEX -DUP -GC[cur] -PUSHB_1 - 4 -CINDEX -SWAP -WS -ALIGNRP -PUSHB_1 - 4 -CINDEX -PUSHB_1 - 7 -CINDEX -SFVTL[parallel] -PUSHB_1 - 7 -CINDEX -SRP0 -PUSHB_1 - 6 -CINDEX -DUP -GC[cur] -PUSHB_1 - 4 -CINDEX -PUSHB_1 - 1 -ADD -SWAP -WS -ALIGNRP -DUP -IF -SVTCA[x-axis] -ELSE -SVTCA[y-axis] -EIF -PUSHB_1 - 4 -CINDEX -SRP0 -PUSHB_1 - 5 -CINDEX -PUSHB_1 - 41 -MIRP[grey] -PUSHB_1 - 41 -DUP -RCVT -NEG -WCVTP -PUSHB_1 - 7 -CINDEX -SRP0 -PUSHB_1 - 6 -CINDEX -PUSHB_1 - 41 -MIRP[grey] -PUSHB_1 - 5 -CINDEX -PUSHB_1 - 8 -CINDEX -SFVTL[parallel] -DUP -IF -SPVTCA[y-axis] -ELSE -SPVTCA[x-axis] -EIF -PUSHB_1 - 5 -CINDEX -PUSHB_1 - 3 -CINDEX -RS -SCFS -PUSHB_1 - 4 -CINDEX -PUSHB_1 - 7 -CINDEX -SFVTL[parallel] -PUSHB_1 - 6 -CINDEX -PUSHB_1 - 3 -CINDEX -PUSHB_1 - 1 -ADD -RS -SCFS -ELSE -POP -EIF -POP -POP -POP -POP -POP -POP -POP -ENDF -FDEF -SPVTCA[y-axis] -PUSHB_1 - 4 -CINDEX -DUP -DUP -GC[cur] -PUSHB_1 - 4 -CINDEX -SWAP -WS -PUSHB_1 - 5 -CINDEX -SFVTL[parallel] -PUSHB_1 - 3 -CINDEX -RCVT -SCFS -POP -POP -POP -POP -ENDF -FDEF -SPVTCA[y-axis] -PUSHB_1 - 3 -CINDEX -DUP -PUSHB_1 - 4 -CINDEX -SFVTL[parallel] -PUSHB_1 - 2 -CINDEX -RS -SCFS -POP -POP -POP -ENDF -FDEF -RCVT -SWAP -DUP -RCVT -RTG -DUP -PUSHB_1 - 0 -LT -DUP -IF -SWAP -NEG -SWAP -EIF -SWAP -ROUND[Grey] -DUP -PUSHB_1 - 64 -LT -IF -POP -PUSHB_1 - 64 -EIF -SWAP -IF -NEG -EIF -ROLL -ADD -WCVTP -ENDF -FDEF -MPPEM -GTEQ -SWAP -MPPEM -LTEQ -AND -IF -DUP -RCVT -ROLL -ADD -WCVTP -ELSE -POP -POP -EIF -ENDF -FDEF -MPPEM -EQ -IF -DUP -RCVT -ROLL -ADD -WCVTP -ELSE -POP -POP -EIF -ENDF -FDEF -MPPEM -GTEQ -SWAP -MPPEM -LTEQ -AND -IF -SHPIX -ELSE -POP -POP -EIF -ENDF -FDEF -PUSHB_1 - 0 -POP -MPPEM -EQ -IF -SHPIX -ELSE -POP -POP -EIF -ENDF -FDEF -PUSHB_1 - 2 -RS -EQ -IF -PUSHB_1 - 70 -CALL -ELSE -POP -POP -POP -POP -EIF -ENDF -FDEF -PUSHB_1 - 2 -RS -EQ -IF -PUSHB_1 - 71 -CALL -ELSE -POP -POP -POP -EIF -ENDF -FDEF -PUSHB_1 - 2 -RS -EQ -IF -PUSHB_1 - 72 -CALL -ELSE -POP -POP -POP -POP -EIF -ENDF -FDEF -PUSHB_1 - 2 -RS -EQ -IF -PUSHB_1 - 73 -CALL -ELSE -POP -POP -POP -EIF -ENDF -FDEF -DUP -ROLL -SFVTL[parallel] -SWAP -MPPEM -GTEQ -ROLL -MPPEM -LTEQ -AND -IF -SWAP -SHPIX -ELSE -POP -POP -EIF -ENDF -FDEF -SVTCA[y-axis] -PUSHB_1 - 2 -CINDEX -MD[grid] -PUSHB_1 - 0 -GTEQ -IF -DUP -PUSHB_1 - 64 -SHPIX -SRP1 -ELSE -POP -EIF -ENDF -FDEF -SVTCA[x-axis] -GC[cur] -SWAP -GC[cur] -ADD -SWAP -GC[cur] -SUB -SWAP -DUP -SRP0 -DUP -GC[cur] -ROLL -SUB -PUSHW_1 - -128 -DIV -ROLL -PUSHB_2 - 64 - 64 -ROLL -WCVTF -RCVT -ADD -ROUND[Grey] -MSIRP[no-rp0] -ENDF -FDEF -DUP -ROLL -SWAP -MD[grid] -ABS -ROLL -SWAP -GTEQ -IF -ALIGNRP -ELSE -POP -EIF -ENDF -FDEF -MPPEM -GT -IF -RDTG -ELSE -ROFF -EIF -ENDF -FDEF -PUSHB_1 - 18 -SVTCA[y-axis] -MPPEM -SVTCA[x-axis] -MPPEM -EQ -WS -ENDF -FDEF -PUSHB_2 - 2 - 0 -WS -PUSHB_2 - 35 - 1 -GETINFO -LTEQ -PUSHB_2 - 64 - 1 -GETINFO -GTEQ -AND -IF -PUSHW_2 - 4096 - 32 -GETINFO -EQ -IF -PUSHB_3 - 2 - 1 - 2 -RS -ADD -WS -EIF -PUSHB_2 - 36 - 1 -GETINFO -LTEQ -IF -PUSHW_2 - 8192 - 64 -GETINFO -EQ -IF -PUSHB_3 - 2 - 2 - 2 -RS -ADD -WS -PUSHB_2 - 36 - 1 -GETINFO -EQ -IF -PUSHB_3 - 2 - 32 - 2 -RS -ADD -WS -SVTCA[y-axis] -MPPEM -SVTCA[x-axis] -MPPEM -GT -IF -PUSHB_3 - 2 - 8 - 2 -RS -ADD -WS -EIF -ELSE -PUSHW_2 - 16384 - 128 -GETINFO -EQ -IF -PUSHB_3 - 2 - 4 - 2 -RS -ADD -WS -EIF -PUSHW_2 - 16384 - 128 -MUL -PUSHW_1 - 256 -GETINFO -EQ -IF -PUSHB_3 - 2 - 8 - 2 -RS -ADD -WS -EIF -PUSHW_2 - 16384 - 256 -MUL -PUSHW_1 - 512 -GETINFO -EQ -IF -PUSHB_3 - 2 - 16 - 2 -RS -ADD -WS -EIF -PUSHB_2 - 38 - 1 -GETINFO -LTEQ -IF -PUSHW_2 - 16384 - 512 -MUL -PUSHW_1 - 1024 -GETINFO -EQ -IF -PUSHB_3 - 2 - 64 - 2 -RS -ADD -WS -EIF -PUSHW_2 - 16384 - 1024 -MUL -PUSHW_1 - 2048 -GETINFO -EQ -IF -PUSHB_3 - 2 - 128 - 2 -RS -ADD -WS -EIF -EIF -EIF -EIF -EIF -EIF -PUSHB_2 - 0 - 2 -RS -EQ -IF -NPUSHB - 10 - 5 - 64 - 8 - 64 - 9 - 64 - 12 - 2 - 13 - 2 -ELSE -PUSHB_2 - 1 - 2 -RS -EQ -IF -PUSHB_3 - 5 - 64 - 8 -PUSHW_3 - 256 - 9 - 256 -PUSHB_4 - 12 - 1 - 13 - 1 -ELSE -PUSHB_2 - 128 - 2 -RS -GT -IF -PUSHB_3 - 5 - 64 - 8 -PUSHW_1 - 384 -PUSHB_2 - 9 - 64 -ELSE -PUSHB_3 - 5 - 64 - 8 -PUSHW_3 - 384 - 9 - 320 -EIF -PUSHW_2 - 16384 - 128 -GETINFO -NEQ -PUSHW_2 - 16384 - 512 -MUL -PUSHW_1 - 1024 -GETINFO -NEQ -AND -IF -PUSHB_4 - 12 - 0 - 13 - 1 -ELSE -PUSHB_4 - 12 - 0 - 13 - 1 -EIF -EIF -EIF -WS -WS -WS -WS -WS -ENDF -FDEF -RCVT -RTG -ROUND[Grey] -SWAP -MPPEM -LTEQ -IF -SWAP -DUP -RCVT -DUP -ABS -PUSHB_1 - 64 -LT -IF -RUTG -EIF -ROUND[Grey] -ROLL -ADD -EIF -WCVTP -ENDF -FDEF -PUSHB_1 - 0 -SZPS -PUSHB_1 - 2 -CINDEX -PUSHB_1 - 2 -CINDEX -SVTCA[x-axis] -PUSHB_1 - 1 -SWAP -MIAP[no-rnd] -SVTCA[y-axis] -PUSHB_1 - 2 -SWAP -MIAP[no-rnd] -PUSHB_2 - 1 - 2 -SPVTL[parallel] -GPV -PUSHB_1 - 10 -SWAP -NEG -WS -PUSHB_1 - 11 -SWAP -WS -SVTCA[x-axis] -PUSHB_1 - 1 -SWAP -MIAP[rnd] -SVTCA[y-axis] -PUSHB_1 - 2 -SWAP -MIAP[rnd] -PUSHB_2 - 1 - 2 -SPVTL[parallel] -GPV -PUSHB_1 - 6 -SWAP -NEG -WS -PUSHB_1 - 7 -SWAP -WS -PUSHB_1 - 1 -SZPS -SVTCA[x-axis] -ENDF -FDEF -PUSHB_1 - 128 -PUSHB_1 - 2 -RS -LT -PUSHB_1 - 1 -PUSHB_1 - 2 -RS -EQ -OR -IF -POP -SWAP -SRP0 -PUSHB_1 - 32 -SMD -MDRP[min,black] -ELSE -ROLL -SRP0 -MIRP[min,rnd,black] -EIF -ENDF -FDEF -PUSHB_1 - 89 -CALL -ENDF -FDEF -ROLL -SRP0 -MIRP[rnd,black] -ENDF -EndTTInstrs -ShortTable: cvt 324 - 1484 - 1484 - 125 - 1409 - 21 - 121 - 1409 - 21 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1082 - 20 - 119 - 0 - -20 - 0 - 0 - -20 - 0 - 0 - -20 - 0 - -425 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 2048 - 0 - 0 - 180 - 189 - 175 - 160 - 0 - 0 - 0 - 0 - 0 - 0 - 136 - 126 - 0 - 172 - 0 - 0 - 0 - 0 - 0 - 0 - 191 - 195 - 171 - 0 - 0 - 155 - 141 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 185 - 170 - 0 - 0 - 0 - 148 - 153 - 135 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 106 - 131 - 141 - 164 - 180 - 0 - 0 - 0 - 0 - 0 - 96 - 106 - 121 - 152 - 172 - 184 - 167 - 0 - 290 - 307 - 195 - 107 - 0 - 0 - 0 - 219 - 201 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 481 - 457 - 146 - 168 - 107 - 146 - 183 - 107 - 155 - 0 - 635 - 754 - 146 - 594 - 110 - 727 - 897 - 130 - 137 - 160 - 159 - 361 - 143 - 0 - 352 - 164 - 347 - 94 - 130 - 0 - 0 - 0 - 94 - 101 - 111 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 138 - 144 - 165 - 122 - 128 - 0 - 0 - 0 - 0 - 0 - 1409 - -13 - 13 - -845 - 131 - 137 - 143 - 150 - 105 - 113 - 1484 - 15 - -994 - -14 - 52 - 1254 - 13 - -300 - 191 - 799 - 167 - 174 - 181 - 0 - 0 - 129 - 0 - 0 - 0 - 0 - 1864 - 874 - 694 - 514 - -621 - 0 - 145 - 103 - 145 - 97 - 473 - 0 - 653 - 833 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 0 - 1665 - 1128 - 20 - 1227 - 0 - -20 - -45 - -385 - 131 - 219 - 170 - 186 - 160 - 207 -EndShort -ShortTable: maxp 16 - 1 - 0 - 2588 - 338 - 84 - 92 - 6 - 2 - 16 - 47 - 92 - 0 - 676 - 516 - 4 - 1 -EndShort -LangName: 1033 "" "" "Regular" "Ascender - Liberation Sans" "" "Version 2.00.3" "" "Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and Trademark Office and certain other jurisdictions." "Ascender Corporation" "Steve Matteson" "Based on Arimo, which was designed by Steve Matteson as an innovative, refreshing sans serif design that is metrically compatible with Arial+ISIA. Arimo offers improved on-screen readability characteristics and the pan-European WGL character set and solves the needs of developers looking for width-compatible fonts to address document portability across platforms." "http://www.ascendercorp.com/" "http://www.ascendercorp.com/typedesigners.html" "Licensed under the SIL Open Font License, Version 1.1" "http://scripts.sil.org/OFL" -GaspTable: 3 8 2 17 1 65535 3 0 -Encoding: UnicodeBmp -UnicodeInterp: none -NameList: AGL For New Fonts -DisplaySize: -48 -AntiAlias: 1 -FitToEm: 0 -WinInfo: 38 38 14 -BeginPrivate: 0 -EndPrivate -TeXData: 1 0 0 291328 145664 97109 553984 -1048576 97109 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144 -AnchorClass2: "Anchor-0" "'mark' Mark Positioning in Hebrew lookup 1 subtable" "Anchor-1" "'mark' Mark Positioning in Hebrew lookup 3 subtable" "Anchor-2" "'mark' Mark Positioning in Hebrew lookup 4 subtable" "Anchor-3" "'mark' Mark Positioning in Hebrew lookup 5 subtable" "Anchor-4" "'mark' Mark Positioning in Hebrew lookup 5 subtable" "Anchor-5" "'mark' Mark Positioning in Hebrew lookup 6 subtable" "Anchor-6" "'mark' Mark Positioning in Hebrew lookup 6 subtable" "Anchor-7" "'mark' Mark Positioning in Hebrew lookup 11 subtable" "Anchor-8" "'mark' Mark Positioning in Hebrew lookup 12 subtable" "Anchor-9" "'mark' Mark Positioning in Hebrew lookup 13 subtable" "Anchor-10" "Mark to base attachment lookup 19 subtable" "Anchor-11" "Mark to base attachment lookup 20 subtable" "Anchor-12" "Mark to base attachment lookup 21 subtable" "Anchor-13" "Mark to base attachment lookup 22 subtable" "Anchor-14" "'mark' Mark Positioning lookup 26 subtable" "Anchor-15" "'mark' Mark Positioning lookup 26 subtable" "Anchor-16" "'mark' Mark Positioning lookup 26 subtable" "Anchor-17" "'mark' Mark Positioning lookup 27 subtable" "Anchor-18" "'mark' Mark Positioning lookup 28 subtable" "Anchor-19" "'mark' Mark Positioning lookup 29 subtable" "Anchor-20" "'mark' Mark Positioning lookup 30 subtable" "Anchor-21" "'mark' Mark Positioning lookup 30 subtable" "Anchor-22" "'mark' Mark Positioning lookup 31 subtable" "Anchor-23" "'mark' Mark Positioning lookup 31 subtable" "Anchor-24" "'mark' Mark Positioning lookup 32 subtable" "Anchor-25" "'mark' Mark Positioning lookup 33 subtable" "Anchor-26" "Mark to base attachment lookup 34 subtable" "Anchor-27" "'mkmk' Mark to Mark lookup 35 subtable" "Anchor-28" "'mkmk' Mark to Mark lookup 36 subtable" -BeginChars: 65829 2588 - -StartChar: .notdef -Encoding: 65536 -1 0 -Width: 1536 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 6 - 5 - 3 - 6 - 3 - 9 - 8 - 5 - 3 - 4 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -205 1409 m 1,0,-1 - 1330 1409 l 1,1,-1 - 1330 0 l 1,2,-1 - 205 0 l 1,3,-1 - 205 1409 l 1,0,-1 -281 1333 m 1,4,-1 - 281 76 l 1,5,-1 - 1254 76 l 1,6,-1 - 1254 1333 l 1,7,-1 - 281 1333 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: .null -Encoding: 65537 -1 1 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: nonmarkingreturn -Encoding: 65538 -1 2 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: space -Encoding: 32 32 3 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Kerns2: 861 -37 "'kern' Horizontal Kerning lookup 17 subtable" 855 -37 "'kern' Horizontal Kerning lookup 17 subtable" 854 -37 "'kern' Horizontal Kerning lookup 17 subtable" 846 -113 "'kern' Horizontal Kerning lookup 17 subtable" 839 -113 "'kern' Horizontal Kerning lookup 17 subtable" 836 -113 "'kern' Horizontal Kerning lookup 17 subtable" 827 -113 "'kern' Horizontal Kerning lookup 17 subtable" 60 -37 "'kern' Horizontal Kerning lookup 17 subtable" 55 -37 "'kern' Horizontal Kerning lookup 17 subtable" 36 -113 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: exclam -Encoding: 33 33 4 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 3 - 7 - 7 - 2 - 4 - 4 - 9 - 8 - 32 - 1 - 1 - 15 - 1 - 1 - 14 - 3 - 1 - 5 - 64 - 4 - 5 - 156 - 91 - 4 - 2 - 3 - 146 - 9 - 1 - 132 - 9 - 1 - 114 - 9 - 1 - 98 - 9 - 1 - 84 - 9 - 1 - 68 - 9 - 1 - 50 - 9 - 1 - 34 - 9 - 1 - 20 - 9 - 1 - 4 - 9 - 1 - 242 - 9 - 1 - 226 - 9 - 1 - 212 - 9 - 1 - 196 - 9 - 1 - 178 - 9 - 1 - 164 - 9 - 1 - 148 - 9 - 1 - 132 - 9 - 1 - 114 - 9 - 1 - 100 - 9 - 1 - 84 - 9 - 1 - 68 - 9 - 1 - 52 - 9 - 1 - 36 - 9 - 1 - 20 - 9 - 1 - 4 - 9 - 1 - 103 - 244 - 9 - 1 - 185 - 9 - 1 - 169 - 9 - 1 - 153 - 9 - 1 - 137 - 9 - 1 - 121 - 9 - 1 - 73 - 9 - 1 - 61 - 9 - 1 - 45 - 9 - 1 - 31 - 9 - 1 - 15 - 9 - 1 - 255 - 9 - 1 - 239 - 9 - 1 - 219 - 9 - 1 - 203 - 9 - 1 - 187 - 9 - 1 - 171 - 9 - 1 - 157 - 9 - 1 - 141 - 9 - 1 - 125 - 9 - 1 - 111 - 9 - 1 - 95 - 9 - 1 - 75 - 9 - 1 - 59 - 9 - 1 - 43 - 9 - 1 - 27 - 9 - 1 - 11 - 9 - 1 - 253 - 9 - 1 - 237 - 9 - 1 - 221 - 9 - 1 - 205 - 9 - 1 - 187 - 9 - 1 - 171 - 9 - 1 - 155 - 9 - 1 - 139 - 9 - 1 - 125 - 9 - 1 - 107 - 9 - 1 - 91 - 9 - 1 - 77 - 9 - 1 - 61 - 9 - 1 - 41 - 9 - 1 - 25 - 9 - 1 - 11 - 9 - 1 - 55 - 251 - 9 - 1 - 235 - 9 - 1 - 221 - 9 - 1 - 205 - 9 - 1 - 187 - 9 - 1 - 171 - 9 - 1 - 153 - 9 -NPUSHB - 91 - 1 - 137 - 9 - 1 - 121 - 9 - 1 - 105 - 9 - 1 - 91 - 9 - 1 - 75 - 9 - 1 - 59 - 9 - 1 - 45 - 9 - 1 - 29 - 9 - 1 - 1 - 235 - 9 - 1 - 219 - 9 - 1 - 203 - 9 - 1 - 191 - 9 - 1 - 175 - 9 - 1 - 159 - 9 - 1 - 123 - 9 - 1 - 107 - 9 - 1 - 59 - 9 - 1 - 43 - 9 - 1 - 27 - 9 - 1 - 15 - 9 - 1 - 2 - 207 - 9 - 1 - 191 - 9 - 1 - 159 - 9 - 1 - 143 - 9 - 1 - 127 - 9 - 1 - 96 - 9 - 1 - 64 - 9 - 1 - 31 - 9 - 1 - 15 - 9 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SDS -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -MDAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,white] -SDS -SDB -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -359 397 m 1,0,-1 - 211 397 l 1,1,-1 - 187 1409 l 1,2,-1 - 383 1409 l 1,3,-1 - 359 397 l 1,0,-1 -185 0 m 1,4,-1 - 185 201 l 1,5,-1 - 379 201 l 1,6,-1 - 379 0 l 1,7,-1 - 185 0 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: quotedbl -Encoding: 34 34 5 -Width: 727 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 3 - 2 - 7 - 6 - 2 - 6 - 9 - 8 - 5 - 32 - 0 - 1 - 0 - 6 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -618 966 m 1,0,-1 - 476 966 l 1,1,-1 - 456 1409 l 1,2,-1 - 640 1409 l 1,3,-1 - 618 966 l 1,0,-1 -249 966 m 1,4,-1 - 108 966 l 1,5,-1 - 87 1409 l 1,6,-1 - 271 1409 l 1,7,-1 - 249 966 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: numbersign -Encoding: 35 35 6 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 104 - 4 - 1 - 0 - 25 - 4 - 24 - 5 - 7 - 30 - 31 - 22 - 4 - 23 - 6 - 8 - 29 - 28 - 21 - 4 - 20 - 9 - 11 - 14 - 15 - 18 - 4 - 19 - 10 - 23 - 24 - 6 - 5 - 20 - 19 - 9 - 10 - 10 - 19 - 24 - 5 - 4 - 26 - 12 - 12 - 29 - 31 - 26 - 4 - 33 - 32 - 11 - 8 - 7 - 4 - 12 - 13 - 30 - 29 - 14 - 1 - 13 - 31 - 28 - 15 - 0 - 16 - 17 - 25 - 22 - 21 - 18 - 17 - 16 - 13 - 1 - 208 - 13 - 1 - 79 - 17 - 143 - 17 - 159 - 17 - 3 - 63 - 17 - 79 - 17 - 2 - 13 - 17 - 13 - 17 - 5 - 24 - 23 - 20 - 19 - 3 - 10 - 9 - 6 - 5 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SRP2 -SLOOP -IP -SRP1 -SRP2 -SLOOP -IP -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -896 885 m 1,0,-1 - 818 516 l 1,1,-1 - 1078 516 l 1,2,-1 - 1078 408 l 1,3,-1 - 795 408 l 1,4,-1 - 707 0 l 1,5,-1 - 597 0 l 1,6,-1 - 683 408 l 1,7,-1 - 320 408 l 1,8,-1 - 236 0 l 1,9,-1 - 126 0 l 1,10,-1 - 210 408 l 1,11,-1 - 9 408 l 1,12,-1 - 9 516 l 1,13,-1 - 234 516 l 1,14,-1 - 312 885 l 1,15,-1 - 60 885 l 1,16,-1 - 60 993 l 1,17,-1 - 334 993 l 1,18,-1 - 423 1401 l 1,19,-1 - 533 1401 l 1,20,-1 - 445 993 l 1,21,-1 - 808 993 l 1,22,-1 - 896 1401 l 1,23,-1 - 1006 1401 l 1,24,-1 - 918 993 l 1,25,-1 - 1129 993 l 1,26,-1 - 1129 885 l 1,27,-1 - 896 885 l 1,0,-1 -425 885 m 1,28,-1 - 345 516 l 1,29,-1 - 707 516 l 1,30,-1 - 785 885 l 1,31,-1 - 425 885 l 1,28,-1 -EndSplineSet -EndChar - -StartChar: dollar -Encoding: 36 36 7 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 140 - 3 - 2 - 45 - 12 - 18 - 26 - 26 - 41 - 41 - 35 - 35 - 36 - 15 - 49 - 49 - 7 - 7 - 36 - 22 - 21 - 37 - 31 - 31 - 21 - 36 - 12 - 2 - 5 - 52 - 53 - 25 - 50 - 15 - 50 - 115 - 89 - 207 - 41 - 1 - 157 - 41 - 1 - 5 - 136 - 41 - 1 - 120 - 7 - 216 - 7 - 2 - 199 - 26 - 215 - 26 - 2 - 182 - 26 - 1 - 135 - 26 - 167 - 26 - 2 - 215 - 49 - 1 - 166 - 49 - 1 - 119 - 49 - 1 - 45 - 12 - 49 - 26 - 7 - 41 - 31 - 37 - 8 - 0 - 125 - 22 - 141 - 22 - 2 - 26 - 22 - 1 - 22 - 18 - 16 - 64 - 19 - 23 - 72 - 16 - 64 - 15 - 15 - 1 - 9 - 3 - 15 - 64 - 11 - 16 - 72 - 15 - 42 - 6 - 0 - 6 - 115 - 89 - 35 - 34 - 148 - 3 - 164 - 3 - 2 - 112 - 3 - 128 - 3 - 2 - 5 - 3 - 21 - 3 - 85 - 3 - 101 - 3 - 4 - 3 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -DELTAP1 -DELTAP1 -DELTAP1 -SHP[rp2] -MDRP[min,rnd,black] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SDS -SDB -DELTAP1 -SMD -MDRP[min,rnd,black] -CALL -SHP[rp1] -SHP[rp1] -DELTAP1 -DELTAP1 -SRP2 -SLOOP -IP -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -518 20 m 1,0,1 - 92 38 92 38 22 379 c 1,2,-1 - 192 416 l 1,3,4 - 217 297 217 297 296.5 237 c 128,-1,5 - 376 177 376 177 518 168 c 1,6,-1 - 518 664 l 1,7,8 - 341 708 341 708 273.5 743 c 128,-1,9 - 206 778 206 778 164.5 823.5 c 128,-1,10 - 123 869 123 869 104.5 921 c 128,-1,11 - 86 973 86 973 86 1046 c 0,12,13 - 86 1201 86 1201 198.5 1288.5 c 128,-1,14 - 311 1376 311 1376 518 1385 c 1,15,-1 - 518 1516 l 1,16,-1 - 642 1516 l 1,17,-1 - 642 1385 l 1,18,19 - 829 1376 829 1376 931 1300.5 c 128,-1,20 - 1033 1225 1033 1225 1075 1065 c 1,21,-1 - 901 1032 l 1,22,23 - 881 1126 881 1126 820 1178.5 c 128,-1,24 - 759 1231 759 1231 642 1242 c 1,25,-1 - 642 797 l 1,26,27 - 821 755 821 755 896.5 720 c 128,-1,28 - 972 685 972 685 1016 641 c 128,-1,29 - 1060 597 1060 597 1083 537 c 128,-1,30 - 1106 477 1106 477 1106 396 c 0,31,32 - 1106 231 1106 231 985 131 c 128,-1,33 - 864 31 864 31 642 20 c 1,34,-1 - 642 -142 l 1,35,-1 - 518 -142 l 1,36,-1 - 518 20 l 1,0,1 -934 394 m 0,37,38 - 934 459 934 459 908 501 c 128,-1,39 - 882 543 882 543 833 570.5 c 128,-1,40 - 784 598 784 598 642 635 c 1,41,-1 - 642 167 l 1,42,43 - 783 176 783 176 858.5 234 c 128,-1,44 - 934 292 934 292 934 394 c 0,37,38 -258 1048 m 0,45,46 - 258 989 258 989 283 948 c 128,-1,47 - 308 907 308 907 357.5 879 c 128,-1,48 - 407 851 407 851 518 823 c 1,49,-1 - 518 1244 l 1,50,51 - 258 1230 258 1230 258 1048 c 0,45,46 -EndSplineSet -EndChar - -StartChar: percent -Encoding: 37 37 8 -Width: 1821 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 53 - 28 - 0 - 34 - 6 - 14 - 15 - 12 - 13 - 40 - 19 - 46 - 25 - 25 - 19 - 13 - 15 - 6 - 0 - 6 - 53 - 52 - 22 - 49 - 182 - 89 - 16 - 22 - 184 - 91 - 16 - 43 - 182 - 89 - 16 - 4 - 14 - 3 - 13 - 18 - 9 - 31 - 182 - 89 - 3 - 9 - 184 - 91 - 3 - 37 - 182 - 89 - 3 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1748 434 m 0,0,1 - 1748 219 1748 219 1667 103.5 c 128,-1,2 - 1586 -12 1586 -12 1428 -12 c 0,3,4 - 1272 -12 1272 -12 1192.5 100.5 c 128,-1,5 - 1113 213 1113 213 1113 434 c 0,6,7 - 1113 662 1113 662 1189.5 773.5 c 128,-1,8 - 1266 885 1266 885 1432 885 c 0,9,10 - 1596 885 1596 885 1672 770.5 c 128,-1,11 - 1748 656 1748 656 1748 434 c 0,0,1 -527 0 m 1,12,-1 - 372 0 l 1,13,-1 - 1294 1409 l 1,14,-1 - 1451 1409 l 1,15,-1 - 527 0 l 1,12,-1 -394 1421 m 0,16,17 - 553 1421 553 1421 630 1309 c 128,-1,18 - 707 1197 707 1197 707 975 c 0,19,20 - 707 758 707 758 627.5 641 c 128,-1,21 - 548 524 548 524 390 524 c 256,22,23 - 232 524 232 524 152.5 640 c 128,-1,24 - 73 756 73 756 73 975 c 0,25,26 - 73 1198 73 1198 150 1309.5 c 128,-1,27 - 227 1421 227 1421 394 1421 c 0,16,17 -1600 434 m 0,28,29 - 1600 613 1600 613 1561.5 693.5 c 128,-1,30 - 1523 774 1523 774 1432 774 c 256,31,32 - 1341 774 1341 774 1300.5 695 c 128,-1,33 - 1260 616 1260 616 1260 434 c 0,34,35 - 1260 263 1260 263 1299.5 180.5 c 128,-1,36 - 1339 98 1339 98 1430 98 c 0,37,38 - 1518 98 1518 98 1559 181.5 c 128,-1,39 - 1600 265 1600 265 1600 434 c 0,28,29 -560 975 m 0,40,41 - 560 1151 560 1151 522 1232 c 128,-1,42 - 484 1313 484 1313 394 1313 c 0,43,44 - 300 1313 300 1313 260 1233.5 c 128,-1,45 - 220 1154 220 1154 220 975 c 0,46,47 - 220 802 220 802 260 719.5 c 128,-1,48 - 300 637 300 637 392 637 c 0,49,50 - 479 637 479 637 519.5 721 c 128,-1,51 - 560 805 560 805 560 975 c 0,40,41 -EndSplineSet -EndChar - -StartChar: ampersand -Encoding: 38 38 9 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 70 - 52 - 8 - 42 - 13 - 36 - 19 - 26 - 27 - 33 - 27 - 19 - 29 - 24 - 2 - 48 - 22 - 44 - 50 - 10 - 13 - 8 - 13 - 58 - 59 - 22 - 50 - 39 - 5 - 16 - 39 - 81 - 89 - 44 - 10 - 16 - 55 - 2 - 48 - 29 - 24 - 4 - 26 - 26 - 5 - 144 - 16 - 1 - 192 - 16 - 1 - 15 - 16 - 63 - 16 - 2 - 9 - 3 - 16 - 5 - 55 - 81 - 89 - 5 - 22 - 0 - 31 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -SRP2 -IP -MDAP[rnd] -SLOOP -IP -SRP1 -SRP2 -IP -IP -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1193 -12 m 0,0,1 - 1016 -12 1016 -12 895 115 c 1,2,3 - 820 50 820 50 724 15 c 128,-1,4 - 628 -20 628 -20 523 -20 c 0,5,6 - 308 -20 308 -20 190 83.5 c 128,-1,7 - 72 187 72 187 72 371 c 0,8,9 - 72 649 72 649 415 800 c 1,10,11 - 382 862 382 862 358 947 c 128,-1,12 - 334 1032 334 1032 334 1102 c 0,13,14 - 334 1252 334 1252 425.5 1334.5 c 128,-1,15 - 517 1417 517 1417 685 1417 c 0,16,17 - 836 1417 836 1417 928.5 1341 c 128,-1,18 - 1021 1265 1021 1265 1021 1133 c 0,19,20 - 1021 1015 1021 1015 929.5 923 c 128,-1,21 - 838 831 838 831 612 741 c 1,22,23 - 723 536 723 536 905 329 c 1,24,25 - 1018 495 1018 495 1076 739 c 1,26,-1 - 1221 696 l 1,27,28 - 1158 447 1158 447 1009 227 c 1,29,30 - 1105 129 1105 129 1217 129 c 0,31,32 - 1288 129 1288 129 1334 145 c 1,33,-1 - 1334 10 l 1,34,35 - 1278 -12 1278 -12 1193 -12 c 0,0,1 -869 1133 m 0,36,37 - 869 1205 869 1205 819 1250.5 c 128,-1,38 - 769 1296 769 1296 683 1296 c 0,39,40 - 587 1296 587 1296 537 1244.5 c 128,-1,41 - 487 1193 487 1193 487 1102 c 0,42,43 - 487 988 487 988 552 858 c 1,44,45 - 683 911 683 911 744.5 950 c 128,-1,46 - 806 989 806 989 837.5 1034 c 128,-1,47 - 869 1079 869 1079 869 1133 c 0,36,37 -795 217 m 1,48,49 - 597 451 597 451 476 674 c 1,50,51 - 240 574 240 574 240 373 c 0,52,53 - 240 252 240 252 317.5 181.5 c 128,-1,54 - 395 111 395 111 529 111 c 0,55,56 - 600 111 600 111 671 138.5 c 128,-1,57 - 742 166 742 166 795 217 c 1,48,49 -EndSplineSet -EndChar - -StartChar: quotesingle -Encoding: 39 39 10 -Width: 391 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 3 - 2 - 2 - 4 - 5 - 32 - 0 - 1 - 0 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -266 966 m 1,0,-1 - 125 966 l 1,1,-1 - 104 1409 l 1,2,-1 - 288 1409 l 1,3,-1 - 266 966 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: parenleft -Encoding: 40 40 11 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 7 - 0 - 11 - 10 - 3 - 4 - 10 - 4 - 0 - 3 - 15 - 16 - 10 - 27 - 3 - 0 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -127 532 m 2,0,1 - 127 821 127 821 217.5 1051 c 128,-1,2 - 308 1281 308 1281 496 1484 c 1,3,-1 - 670 1484 l 1,4,5 - 483 1276 483 1276 395.5 1042 c 128,-1,6 - 308 808 308 808 308 530 c 0,7,8 - 308 253 308 253 394.5 20 c 128,-1,9 - 481 -213 481 -213 670 -424 c 1,10,-1 - 496 -424 l 1,11,12 - 307 -220 307 -220 217 10.5 c 128,-1,13 - 127 241 127 241 127 528 c 2,14,-1 - 127 532 l 2,0,1 -EndSplineSet -EndChar - -StartChar: parenright -Encoding: 41 41 12 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 7 - 0 - 3 - 4 - 11 - 10 - 0 - 4 - 10 - 3 - 15 - 16 - 10 - 0 - 3 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -555 528 m 2,0,1 - 555 239 555 239 464.5 9 c 128,-1,2 - 374 -221 374 -221 186 -424 c 1,3,-1 - 12 -424 l 1,4,5 - 200 -214 200 -214 287 18.5 c 128,-1,6 - 374 251 374 251 374 530 c 256,7,8 - 374 809 374 809 286.5 1042 c 128,-1,9 - 199 1275 199 1275 12 1484 c 1,10,-1 - 186 1484 l 1,11,12 - 375 1280 375 1280 465 1049.5 c 128,-1,13 - 555 819 555 819 555 532 c 2,14,-1 - 555 528 l 2,0,1 -EndSplineSet -EndChar - -StartChar: asterisk -Encoding: 42 42 13 -Width: 797 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 12 - 0 - 3 - 6 - 9 - 5 - 10 - 5 - 4 - 11 - 4 - 1 - 26 - 4 - 42 - 4 - 2 - 7 - 8 - 22 - 8 - 1 - 5 - 8 - 37 - 8 - 2 - 4 - 8 - 10 - 14 - 13 - 13 - 2 - 10 - 10 - 2 - 15 - 16 - 223 - 5 - 1 - 0 - 5 - 240 - 5 - 2 - 5 - 14 - 3 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -IP -IP -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -SRP1 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -456 1114 m 1,0,-1 - 720 1217 l 1,1,-1 - 765 1085 l 1,2,-1 - 483 1012 l 1,3,-1 - 668 762 l 1,4,-1 - 549 690 l 1,5,-1 - 399 948 l 1,6,-1 - 243 692 l 1,7,-1 - 124 764 l 1,8,-1 - 313 1012 l 1,9,-1 - 33 1085 l 1,10,-1 - 78 1219 l 1,11,-1 - 345 1112 l 1,12,-1 - 333 1409 l 1,13,-1 - 469 1409 l 1,14,-1 - 456 1114 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: plus -Encoding: 43 43 14 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 9 - 0 - 0 - 6 - 3 - 3 - 13 - 12 - 169 - 2 - 1 - 3 - 15 - 2 - 95 - 2 - 2 - 12 - 6 - 2 - 0 - 4 - 5 - 4 - 173 - 89 - 9 - 214 - 7 - 1 - 55 - 7 - 135 - 7 - 2 - 7 - 5 - 179 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -DELTAP1 -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SDS -SDB -DELTAP1 -SDS -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -671 608 m 1,0,-1 - 671 180 l 1,1,-1 - 524 180 l 1,2,-1 - 524 608 l 1,3,-1 - 100 608 l 1,4,-1 - 100 754 l 1,5,-1 - 524 754 l 1,6,-1 - 524 1182 l 1,7,-1 - 671 1182 l 1,8,-1 - 671 754 l 1,9,-1 - 1095 754 l 1,10,-1 - 1095 608 l 1,11,-1 - 671 608 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: comma -Encoding: 44 44 15 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 4 - 5 - 0 - 8 - 5 - 8 - 10 - 11 - 0 - 5 - 168 - 91 - 8 - 0 - 155 - 91 - 8 -SVTCA[y-axis] -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -385 219 m 1,0,-1 - 385 51 l 2,1,2 - 385 -55 385 -55 366 -126 c 128,-1,3 - 347 -197 347 -197 307 -262 c 1,4,-1 - 184 -262 l 1,5,6 - 278 -126 278 -126 278 0 c 1,7,-1 - 190 0 l 1,8,-1 - 190 219 l 1,9,-1 - 385 219 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: hyphen -Encoding: 45 45 16 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 0 - 3 - 4 - 5 - 1 - 0 - 187 - 89 - 159 - 1 - 207 - 1 - 2 - 47 - 1 - 1 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -91 464 m 1,0,-1 - 91 624 l 1,1,-1 - 591 624 l 1,2,-1 - 591 464 l 1,3,-1 - 91 464 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: period -Encoding: 46 46 17 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 3 - 0 - 0 - 4 - 5 - 0 - 1 - 155 - 91 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -187 0 m 1,0,-1 - 187 219 l 1,1,-1 - 382 219 l 1,2,-1 - 382 0 l 1,3,-1 - 187 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: slash -Encoding: 47 47 18 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 5 - 0 - 4 - 1 - 0 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -0 -20 m 1,0,-1 - 411 1484 l 1,1,-1 - 569 1484 l 1,2,-1 - 162 -20 l 1,3,-1 - 0 -20 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: zero -Encoding: 48 48 19 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -1103 675 m 0,0,1 - 1103 337 1103 337 978.5 158.5 c 128,-1,2 - 854 -20 854 -20 611 -20 c 256,3,4 - 368 -20 368 -20 246 157.5 c 128,-1,5 - 124 335 124 335 124 675 c 0,6,7 - 124 1024 124 1024 243 1197 c 128,-1,8 - 362 1370 362 1370 617 1370 c 0,9,10 - 866 1370 866 1370 984.5 1195.5 c 128,-1,11 - 1103 1021 1103 1021 1103 675 c 0,0,1 -920 675 m 0,12,13 - 920 965 920 965 849.5 1094.5 c 128,-1,14 - 779 1224 779 1224 617 1224 c 0,15,16 - 451 1224 451 1224 378.5 1096 c 128,-1,17 - 306 968 306 968 306 675 c 0,18,19 - 306 390 306 390 379.5 258.5 c 128,-1,20 - 453 127 453 127 613 127 c 0,21,22 - 772 127 772 127 846 262 c 128,-1,23 - 920 397 920 397 920 675 c 0,12,13 -EndSplineSet -EndChar - -StartChar: one -Encoding: 49 49 20 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -157 0 m 1,0,-1 - 157 145 l 1,1,-1 - 596 145 l 1,2,-1 - 596 1166 l 1,3,4 - 559 1088 559 1088 420.5 1030 c 128,-1,5 - 282 972 282 972 148 972 c 1,6,-1 - 148 1120 l 1,7,8 - 296 1120 296 1120 427.5 1185 c 128,-1,9 - 559 1250 559 1250 611 1349 c 1,10,-1 - 777 1349 l 1,11,-1 - 777 145 l 1,12,-1 - 1130 145 l 1,13,-1 - 1130 0 l 1,14,-1 - 157 0 l 1,0,-1 -EndSplineSet -Kerns2: 20 -152 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: two -Encoding: 50 50 21 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -144 0 m 1,0,-1 - 144 117 l 1,1,2 - 193 226 193 226 296.5 336.5 c 128,-1,3 - 400 447 400 447 578 589 c 0,4,5 - 737 716 737 716 807 810 c 128,-1,6 - 877 904 877 904 877 991 c 0,7,8 - 877 1102 877 1102 808 1162 c 128,-1,9 - 739 1222 739 1222 611 1222 c 0,10,11 - 497 1222 497 1222 426.5 1159.5 c 128,-1,12 - 356 1097 356 1097 343 984 c 1,13,-1 - 159 1001 l 1,14,15 - 179 1171 179 1171 298 1270.5 c 128,-1,16 - 417 1370 417 1370 611 1370 c 0,17,18 - 824 1370 824 1370 943 1274 c 128,-1,19 - 1062 1178 1062 1178 1062 1002 c 0,20,21 - 1062 887 1062 887 986 772.5 c 128,-1,22 - 910 658 910 658 759 538 c 0,23,24 - 553 374 553 374 473.5 296.5 c 128,-1,25 - 394 219 394 219 361 146 c 1,26,-1 - 1084 146 l 1,27,-1 - 1084 0 l 1,28,-1 - 144 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: three -Encoding: 51 51 22 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -1099 370 m 0,0,1 - 1099 184 1099 184 973 82 c 128,-1,2 - 847 -20 847 -20 621 -20 c 0,3,4 - 407 -20 407 -20 279 77 c 128,-1,5 - 151 174 151 174 128 362 c 1,6,-1 - 314 379 l 1,7,8 - 350 129 350 129 621 129 c 0,9,10 - 757 129 757 129 834.5 192 c 128,-1,11 - 912 255 912 255 912 376 c 0,12,13 - 912 451 912 451 866.5 502.5 c 128,-1,14 - 821 554 821 554 743 581.5 c 128,-1,15 - 665 609 665 609 568 609 c 2,16,-1 - 466 609 l 1,17,-1 - 466 765 l 1,18,-1 - 564 765 l 2,19,20 - 650 765 650 765 721.5 793.5 c 128,-1,21 - 793 822 793 822 834 874 c 128,-1,22 - 875 926 875 926 875 997 c 0,23,24 - 875 1103 875 1103 808.5 1162.5 c 128,-1,25 - 742 1222 742 1222 611 1222 c 0,26,27 - 492 1222 492 1222 418.5 1161 c 128,-1,28 - 345 1100 345 1100 333 989 c 1,29,-1 - 152 1003 l 1,30,31 - 172 1176 172 1176 295.5 1273 c 128,-1,32 - 419 1370 419 1370 613 1370 c 0,33,34 - 825 1370 825 1370 942.5 1276.5 c 128,-1,35 - 1060 1183 1060 1183 1060 1016 c 0,36,37 - 1060 897 1060 897 981 809 c 128,-1,38 - 902 721 902 721 765 693 c 1,39,-1 - 765 689 l 1,40,41 - 916 672 916 672 1007.5 583 c 128,-1,42 - 1099 494 1099 494 1099 370 c 0,0,1 -EndSplineSet -EndChar - -StartChar: four -Encoding: 52 52 23 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -937 319 m 1,0,-1 - 937 0 l 1,1,-1 - 757 0 l 1,2,-1 - 757 319 l 1,3,-1 - 103 319 l 1,4,-1 - 103 459 l 1,5,-1 - 738 1349 l 1,6,-1 - 937 1349 l 1,7,-1 - 937 461 l 1,8,-1 - 1125 461 l 1,9,-1 - 1125 319 l 1,10,-1 - 937 319 l 1,0,-1 -757 1154 m 1,11,-1 - 257 461 l 1,12,-1 - 757 461 l 1,13,-1 - 757 1154 l 1,11,-1 -EndSplineSet -EndChar - -StartChar: five -Encoding: 53 53 24 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -1099 444 m 0,0,1 - 1099 305 1099 305 1040 200 c 128,-1,2 - 981 95 981 95 867.5 37.5 c 128,-1,3 - 754 -20 754 -20 599 -20 c 0,4,5 - 402 -20 402 -20 281 66 c 128,-1,6 - 160 152 160 152 128 315 c 1,7,-1 - 310 336 l 1,8,9 - 367 127 367 127 603 127 c 0,10,11 - 744 127 744 127 828 211 c 128,-1,12 - 912 295 912 295 912 440 c 0,13,14 - 912 564 912 564 829 643 c 128,-1,15 - 746 722 746 722 607 722 c 0,16,17 - 534 722 534 722 471 699 c 128,-1,18 - 408 676 408 676 345 621 c 1,19,-1 - 169 621 l 1,20,-1 - 216 1349 l 1,21,-1 - 1017 1349 l 1,22,-1 - 1017 1204 l 1,23,-1 - 382 1204 l 1,24,-1 - 353 779 l 1,25,26 - 470 869 470 869 644 869 c 0,27,28 - 848 869 848 869 973.5 751.5 c 128,-1,29 - 1099 634 1099 634 1099 444 c 0,0,1 -EndSplineSet -EndChar - -StartChar: six -Encoding: 54 54 25 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -1096 446 m 0,0,1 - 1096 234 1096 234 974.5 107 c 128,-1,2 - 853 -20 853 -20 641 -20 c 0,3,4 - 405 -20 405 -20 278 152.5 c 128,-1,5 - 151 325 151 325 151 642 c 0,6,7 - 151 990 151 990 283 1180 c 128,-1,8 - 415 1370 415 1370 655 1370 c 0,9,10 - 974 1370 974 1370 1057 1083 c 1,11,-1 - 885 1052 l 1,12,13 - 832 1224 832 1224 653 1224 c 0,14,15 - 500 1224 500 1224 415 1085 c 128,-1,16 - 330 946 330 946 330 695 c 1,17,18 - 379 786 379 786 468 833.5 c 128,-1,19 - 557 881 557 881 672 881 c 0,20,21 - 864 881 864 881 980 762.5 c 128,-1,22 - 1096 644 1096 644 1096 446 c 0,0,1 -913 438 m 0,23,24 - 913 582 913 582 836.5 662 c 128,-1,25 - 760 742 760 742 629 742 c 0,26,27 - 555 742 555 742 489 708.5 c 128,-1,28 - 423 675 423 675 385.5 615.5 c 128,-1,29 - 348 556 348 556 348 481 c 0,30,31 - 348 329 348 329 428.5 227 c 128,-1,32 - 509 125 509 125 635 125 c 0,33,34 - 762 125 762 125 837.5 209 c 128,-1,35 - 913 293 913 293 913 438 c 0,23,24 -EndSplineSet -EndChar - -StartChar: seven -Encoding: 55 55 26 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -1069 1210 m 1,0,1 - 596 530 596 530 596 0 c 1,2,-1 - 408 0 l 1,3,4 - 408 263 408 263 530.5 567.5 c 128,-1,5 - 653 872 653 872 895 1204 c 1,6,-1 - 158 1204 l 1,7,-1 - 158 1349 l 1,8,-1 - 1069 1349 l 1,9,-1 - 1069 1210 l 1,0,1 -EndSplineSet -EndChar - -StartChar: eight -Encoding: 56 56 27 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -1094 378 m 0,0,1 - 1094 194 1094 194 969.5 87 c 128,-1,2 - 845 -20 845 -20 614 -20 c 0,3,4 - 388 -20 388 -20 260.5 85 c 128,-1,5 - 133 190 133 190 133 376 c 0,6,7 - 133 505 133 505 212 595.5 c 128,-1,8 - 291 686 291 686 414 707 c 1,9,-1 - 414 711 l 1,10,11 - 302 738 302 738 234 825 c 128,-1,12 - 166 912 166 912 166 1024 c 0,13,14 - 166 1122 166 1122 221.5 1202 c 128,-1,15 - 277 1282 277 1282 378 1326 c 128,-1,16 - 479 1370 479 1370 610 1370 c 0,17,18 - 747 1370 747 1370 849 1325.5 c 128,-1,19 - 951 1281 951 1281 1005 1202 c 128,-1,20 - 1059 1123 1059 1123 1059 1022 c 0,21,22 - 1059 909 1059 909 990 822 c 128,-1,23 - 921 735 921 735 809 713 c 1,24,-1 - 809 709 l 1,25,26 - 939 688 939 688 1016.5 599.5 c 128,-1,27 - 1094 511 1094 511 1094 378 c 0,0,1 -872 1012 m 0,28,29 - 872 1123 872 1123 804.5 1179.5 c 128,-1,30 - 737 1236 737 1236 610 1236 c 0,31,32 - 487 1236 487 1236 418.5 1179 c 128,-1,33 - 350 1122 350 1122 350 1012 c 0,34,35 - 350 901 350 901 419 840 c 128,-1,36 - 488 779 488 779 612 779 c 0,37,38 - 872 779 872 779 872 1012 c 0,28,29 -907 395 m 0,39,40 - 907 515 907 515 829 579.5 c 128,-1,41 - 751 644 751 644 610 644 c 0,42,43 - 474 644 474 644 396.5 574.5 c 128,-1,44 - 319 505 319 505 319 391 c 0,45,46 - 319 256 319 256 394.5 185.5 c 128,-1,47 - 470 115 470 115 616 115 c 0,48,49 - 763 115 763 115 835 184 c 128,-1,50 - 907 253 907 253 907 395 c 0,39,40 -EndSplineSet -EndChar - -StartChar: nine -Encoding: 57 57 28 -Width: 1229 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -1087 703 m 0,0,1 - 1087 357 1087 357 954 168.5 c 128,-1,2 - 821 -20 821 -20 577 -20 c 0,3,4 - 412 -20 412 -20 312.5 49.5 c 128,-1,5 - 213 119 213 119 170 274 c 1,6,-1 - 342 301 l 1,7,8 - 396 125 396 125 580 125 c 0,9,10 - 734 125 734 125 820.5 264.5 c 128,-1,11 - 907 404 907 404 909 650 c 1,12,13 - 869 560 869 560 772 505.5 c 128,-1,14 - 675 451 675 451 559 451 c 0,15,16 - 370 451 370 451 255.5 578.5 c 128,-1,17 - 141 706 141 706 141 911 c 0,18,19 - 141 1123 141 1123 266.5 1246.5 c 128,-1,20 - 392 1370 392 1370 610 1370 c 0,21,22 - 1087 1370 1087 1370 1087 703 c 0,0,1 -891 862 m 0,23,24 - 891 1023 891 1023 811 1123.5 c 128,-1,25 - 731 1224 731 1224 604 1224 c 0,26,27 - 474 1224 474 1224 399 1137 c 128,-1,28 - 324 1050 324 1050 324 911 c 0,29,30 - 324 768 324 768 399 680.5 c 128,-1,31 - 474 593 474 593 602 593 c 0,32,33 - 678 593 678 593 745.5 627.5 c 128,-1,34 - 813 662 813 662 852 723.5 c 128,-1,35 - 891 785 891 785 891 862 c 0,23,24 -EndSplineSet -EndChar - -StartChar: colon -Encoding: 58 58 29 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 3 - 7 - 7 - 4 - 0 - 4 - 9 - 8 - 4 - 5 - 156 - 91 - 4 - 1 - 0 - 156 - 91 - 1 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -187 875 m 1,0,-1 - 187 1082 l 1,1,-1 - 382 1082 l 1,2,-1 - 382 875 l 1,3,-1 - 187 875 l 1,0,-1 -187 0 m 1,4,-1 - 187 207 l 1,5,-1 - 382 207 l 1,6,-1 - 382 0 l 1,7,-1 - 187 0 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: semicolon -Encoding: 59 59 30 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 13 - 0 - 0 - 8 - 10 - 8 - 5 - 3 - 14 - 15 - 11 - 10 - 156 - 91 - 11 - 15 - 0 - 5 - 168 - 91 - 8 - 0 - 156 - 91 - 8 -SVTCA[y-axis] -MDAP[rnd] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -385 207 m 1,0,-1 - 385 51 l 2,1,2 - 385 -55 385 -55 366 -126 c 128,-1,3 - 347 -197 347 -197 307 -262 c 1,4,-1 - 184 -262 l 1,5,6 - 278 -126 278 -126 278 0 c 1,7,-1 - 190 0 l 1,8,-1 - 190 207 l 1,9,-1 - 385 207 l 1,0,-1 -190 875 m 1,10,-1 - 190 1082 l 1,11,-1 - 385 1082 l 1,12,-1 - 385 875 l 1,13,-1 - 190 875 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: less -Encoding: 60 60 31 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 3 - 6 - 4 - 0 - 4 - 7 - 8 - 5 - 63 - 6 - 127 - 6 - 143 - 6 - 3 - 6 - 3 - 48 - 2 - 112 - 2 - 128 - 2 - 3 - 2 - 1 - 0 - 15 - 4 - 63 - 4 - 111 - 4 - 159 - 4 - 207 - 4 - 5 - 4 -SVTCA[y-axis] -RTHG -MDAP[rnd] -DELTAP1 -SHP[rp1] -SHP[rp1] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -101 571 m 1,0,-1 - 101 776 l 1,1,-1 - 1096 1194 l 1,2,-1 - 1096 1040 l 1,3,-1 - 238 674 l 1,4,-1 - 1096 307 l 1,5,-1 - 1096 154 l 1,6,-1 - 101 571 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: equal -Encoding: 61 61 32 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 7 - 3 - 0 - 4 - 4 - 8 - 9 - 5 - 4 - 173 - 89 - 15 - 5 - 31 - 5 - 79 - 5 - 95 - 5 - 207 - 5 - 5 - 10 - 3 - 5 - 1 - 64 - 1 - 0 - 173 - 89 - 80 - 1 - 208 - 1 - 2 - 15 - 1 - 1 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,white] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 856 m 1,0,-1 - 100 1004 l 1,1,-1 - 1095 1004 l 1,2,-1 - 1095 856 l 1,3,-1 - 100 856 l 1,0,-1 -100 344 m 1,4,-1 - 100 492 l 1,5,-1 - 1095 492 l 1,6,-1 - 1095 344 l 1,7,-1 - 100 344 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: greater -Encoding: 62 62 33 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 6 - 2 - 0 - 3 - 4 - 7 - 8 - 3 - 48 - 4 - 112 - 4 - 128 - 4 - 3 - 4 - 1 - 63 - 0 - 127 - 0 - 143 - 0 - 3 - 0 - 6 - 5 - 15 - 2 - 63 - 2 - 111 - 2 - 159 - 2 - 207 - 2 - 5 - 2 -SVTCA[y-axis] -RTHG -MDAP[rnd] -DELTAP1 -SHP[rp1] -SHP[rp1] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -101 154 m 1,0,-1 - 101 307 l 1,1,-1 - 959 674 l 1,2,-1 - 101 1040 l 1,3,-1 - 101 1194 l 1,4,-1 - 1096 776 l 1,5,-1 - 1096 571 l 1,6,-1 - 101 154 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: question -Encoding: 63 63 34 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 33 - 32 - 24 - 25 - 8 - 9 - 18 - 0 - 0 - 9 - 32 - 25 - 4 - 35 - 36 - 18 - 28 - 15 - 9 - 63 - 9 - 2 - 14 - 3 - 9 - 32 - 31 - 32 - 156 - 91 - 31 - 12 - 24 - 1 - 13 - 3 - 24 - 28 - 28 - 21 - 95 - 89 - 28 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SDS -SDB -DELTAP1 -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -SDS -SDB -DELTAP1 -SRP1 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1063 1032 m 0,0,1 - 1063 957 1063 957 1041 898 c 128,-1,2 - 1019 839 1019 839 978 789 c 128,-1,3 - 937 739 937 739 844 671 c 2,4,-1 - 764 612 l 2,5,6 - 692 560 692 560 657 502.5 c 128,-1,7 - 622 445 622 445 621 377 c 1,8,-1 - 446 377 l 1,9,10 - 448 446 448 446 467.5 498 c 128,-1,11 - 487 550 487 550 518 590 c 128,-1,12 - 549 630 549 630 588 661.5 c 128,-1,13 - 627 693 627 693 667 721.5 c 128,-1,14 - 707 750 707 750 745.5 778.5 c 128,-1,15 - 784 807 784 807 814 842 c 128,-1,16 - 844 877 844 877 862.5 921 c 128,-1,17 - 881 965 881 965 881 1024 c 0,18,19 - 881 1138 881 1138 803.5 1204 c 128,-1,20 - 726 1270 726 1270 586 1270 c 256,21,22 - 446 1270 446 1270 364 1200 c 128,-1,23 - 282 1130 282 1130 268 1008 c 1,24,-1 - 84 1020 l 1,25,26 - 110 1218 110 1218 240 1324 c 128,-1,27 - 370 1430 370 1430 584 1430 c 0,28,29 - 807 1430 807 1430 935 1324.5 c 128,-1,30 - 1063 1219 1063 1219 1063 1032 c 0,0,1 -438 0 m 1,31,-1 - 438 201 l 1,32,-1 - 633 201 l 1,33,-1 - 633 0 l 1,34,-1 - 438 0 l 1,31,-1 -EndSplineSet -EndChar - -StartChar: at -Encoding: 64 64 35 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 70 - 27 - 7 - 41 - 56 - 71 - 15 - 7 - 64 - 64 - 23 - 23 - 24 - 33 - 0 - 0 - 49 - 24 - 15 - 56 - 5 - 79 - 80 - 4 - 29 - 213 - 89 - 4 - 4 - 12 - 12 - 74 - 214 - 89 - 19 - 67 - 214 - 89 - 23 - 19 - 15 - 12 - 31 - 12 - 2 - 11 - 3 - 12 - 19 - 12 - 19 - 52 - 60 - 60 - 37 - 214 - 89 - 60 - 0 - 2 - 48 - 1 - 18 - 4 - 48 - 52 - 52 - 45 - 214 - 89 - 52 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SDS -SDB -DELTAP1 -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SHP[rp1] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1902 755 m 0,0,1 - 1902 569 1902 569 1844.5 418.5 c 128,-1,2 - 1787 268 1787 268 1684.5 186 c 128,-1,3 - 1582 104 1582 104 1455 104 c 0,4,5 - 1356 104 1356 104 1302 148 c 128,-1,6 - 1248 192 1248 192 1248 280 c 2,7,-1 - 1251 350 l 1,8,-1 - 1245 350 l 1,9,10 - 1179 227 1179 227 1081.5 165.5 c 128,-1,11 - 984 104 984 104 871 104 c 0,12,13 - 714 104 714 104 627.5 206 c 128,-1,14 - 541 308 541 308 541 489 c 0,15,16 - 541 653 541 653 605.5 794 c 128,-1,17 - 670 935 670 935 786 1018 c 128,-1,18 - 902 1101 902 1101 1043 1101 c 0,19,20 - 1262 1101 1262 1101 1344 919 c 1,21,-1 - 1350 919 l 1,22,-1 - 1389 1079 l 1,23,-1 - 1545 1079 l 1,24,-1 - 1429 573 l 2,25,26 - 1392 409 1392 409 1392 320 c 0,27,28 - 1392 226 1392 226 1473 226 c 0,29,30 - 1553 226 1553 226 1620.5 295 c 128,-1,31 - 1688 364 1688 364 1727 485 c 128,-1,32 - 1766 606 1766 606 1766 753 c 0,33,34 - 1766 932 1766 932 1689 1070.5 c 128,-1,35 - 1612 1209 1612 1209 1467 1283.5 c 128,-1,36 - 1322 1358 1322 1358 1128 1358 c 0,37,38 - 886 1358 886 1358 700 1251 c 128,-1,39 - 514 1144 514 1144 408 942.5 c 128,-1,40 - 302 741 302 741 302 491 c 0,41,42 - 302 298 302 298 380.5 150.5 c 128,-1,43 - 459 3 459 3 607.5 -76 c 128,-1,44 - 756 -155 756 -155 954 -155 c 0,45,46 - 1099 -155 1099 -155 1248 -117.5 c 128,-1,47 - 1397 -80 1397 -80 1557 7 c 1,48,-1 - 1612 -105 l 1,49,50 - 1467 -192 1467 -192 1297.5 -237.5 c 128,-1,51 - 1128 -283 1128 -283 954 -283 c 0,52,53 - 713 -283 713 -283 532.5 -187.5 c 128,-1,54 - 352 -92 352 -92 256.5 84.5 c 128,-1,55 - 161 261 161 261 161 491 c 0,56,57 - 161 771 161 771 285.5 1000 c 128,-1,58 - 410 1229 410 1229 631 1356.5 c 128,-1,59 - 852 1484 852 1484 1126 1484 c 0,60,61 - 1367 1484 1367 1484 1542 1393.5 c 128,-1,62 - 1717 1303 1717 1303 1809.5 1138 c 128,-1,63 - 1902 973 1902 973 1902 755 c 0,0,1 -1296 747 m 0,64,65 - 1296 849 1296 849 1230 911.5 c 128,-1,66 - 1164 974 1164 974 1054 974 c 0,67,68 - 953 974 953 974 874.5 910.5 c 128,-1,69 - 796 847 796 847 751 734.5 c 128,-1,70 - 706 622 706 622 706 491 c 0,71,72 - 706 371 706 371 753.5 303 c 128,-1,73 - 801 235 801 235 900 235 c 0,74,75 - 1025 235 1025 235 1129 340 c 128,-1,76 - 1233 445 1233 445 1273 602 c 0,77,78 - 1296 694 1296 694 1296 747 c 0,64,65 -EndSplineSet -EndChar - -StartChar: A -Encoding: 65 65 36 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 54 - 13 - 1 - 0 - 12 - 2 - 3 - 6 - 5 - 8 - 0 - 3 - 4 - 4 - 8 - 7 - 3 - 18 - 17 - 12 - 2 - 95 - 89 - 12 - 12 - 8 - 5 - 3 - 4 - 0 - 18 - 176 - 18 - 1 - 80 - 18 - 1 - 240 - 18 - 1 - 192 - 18 - 1 - 144 - 18 - 1 - 96 - 18 - 1 - 48 - 18 - 1 - 47 - 18 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-24" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1336 1540 basechar 0 -AnchorPoint: "Anchor-20" 1336 -380 basechar 0 -AnchorPoint: "Anchor-19" 740 1300 basechar 0 -AnchorPoint: "Anchor-18" 800 1420 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1167 0 m 1,0,-1 - 1006 412 l 1,1,-1 - 364 412 l 1,2,-1 - 202 0 l 1,3,-1 - 4 0 l 1,4,-1 - 579 1409 l 1,5,-1 - 796 1409 l 1,6,-1 - 1362 0 l 1,7,-1 - 1167 0 l 1,0,-1 -685 1265 m 1,8,-1 - 676 1237 l 2,9,10 - 651 1154 651 1154 602 1024 c 2,11,-1 - 422 561 l 1,12,-1 - 949 561 l 1,13,-1 - 768 1026 l 2,14,15 - 740 1095 740 1095 712 1182 c 2,16,-1 - 685 1265 l 1,8,-1 -EndSplineSet -Kerns2: 2021 -152 "'kern' Horizontal Kerning lookup 17 subtable" 92 -37 "'kern' Horizontal Kerning lookup 17 subtable" 90 -37 "'kern' Horizontal Kerning lookup 17 subtable" 89 -37 "'kern' Horizontal Kerning lookup 17 subtable" 60 -152 "'kern' Horizontal Kerning lookup 17 subtable" 58 -76 "'kern' Horizontal Kerning lookup 17 subtable" 57 -152 "'kern' Horizontal Kerning lookup 17 subtable" 55 -152 "'kern' Horizontal Kerning lookup 17 subtable" 3 -113 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: B -Encoding: 66 66 37 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 58 - 11 - 19 - 8 - 19 - 27 - 27 - 4 - 14 - 8 - 23 - 0 - 0 - 8 - 4 - 3 - 31 - 32 - 11 - 19 - 26 - 19 - 26 - 95 - 89 - 19 - 36 - 19 - 2 - 77 - 15 - 19 - 1 - 3 - 62 - 19 - 1 - 4 - 15 - 19 - 1 - 16 - 5 - 19 - 19 - 4 - 5 - 5 - 18 - 95 - 89 - 5 - 3 - 4 - 27 - 95 - 89 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SDS -DELTAP1 -SDS -DELTAP2 -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 760 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-19" 880 1300 basechar 0 -AnchorPoint: "Anchor-18" 1166 1150 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1258 397 m 0,0,1 - 1258 209 1258 209 1121 104.5 c 128,-1,2 - 984 0 984 0 740 0 c 2,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 680 1409 l 2,6,7 - 1176 1409 1176 1409 1176 1067 c 0,8,9 - 1176 942 1176 942 1106 857 c 128,-1,10 - 1036 772 1036 772 908 743 c 1,11,12 - 1076 723 1076 723 1167 630.5 c 128,-1,13 - 1258 538 1258 538 1258 397 c 0,0,1 -984 1044 m 0,14,15 - 984 1158 984 1158 906 1207 c 128,-1,16 - 828 1256 828 1256 680 1256 c 2,17,-1 - 359 1256 l 1,18,-1 - 359 810 l 1,19,-1 - 680 810 l 2,20,21 - 833 810 833 810 908.5 867.5 c 128,-1,22 - 984 925 984 925 984 1044 c 0,14,15 -1065 412 m 0,23,24 - 1065 661 1065 661 715 661 c 2,25,-1 - 359 661 l 1,26,-1 - 359 153 l 1,27,-1 - 730 153 l 2,28,29 - 905 153 905 153 985 218 c 128,-1,30 - 1065 283 1065 283 1065 412 c 0,23,24 -EndSplineSet -EndChar - -StartChar: C -Encoding: 67 67 38 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 57 - 3 - 16 - 23 - 22 - 8 - 9 - 9 - 22 - 16 - 3 - 26 - 27 - 15 - 23 - 1 - 13 - 3 - 23 - 23 - 19 - 19 - 0 - 95 - 89 - 19 - 4 - 0 - 8 - 16 - 8 - 64 - 8 - 80 - 8 - 144 - 8 - 160 - 8 - 208 - 8 - 224 - 8 - 8 - 12 - 3 - 8 - 8 - 12 - 12 - 6 - 95 - 89 - 12 - 19 - 32 - 27 - 1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 890 0 basechar 0 -AnchorPoint: "Anchor-24" 800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1100 1300 basechar 0 -AnchorPoint: "Anchor-18" 1324 1200 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -792 1274 m 0,0,1 - 558 1274 558 1274 428 1123.5 c 128,-1,2 - 298 973 298 973 298 711 c 0,3,4 - 298 452 298 452 433.5 294.5 c 128,-1,5 - 569 137 569 137 800 137 c 0,6,7 - 1096 137 1096 137 1245 430 c 1,8,-1 - 1401 352 l 1,9,10 - 1314 170 1314 170 1156.5 75 c 128,-1,11 - 999 -20 999 -20 791 -20 c 0,12,13 - 578 -20 578 -20 422.5 68.5 c 128,-1,14 - 267 157 267 157 185.5 321.5 c 128,-1,15 - 104 486 104 486 104 711 c 0,16,17 - 104 1048 104 1048 286 1239 c 128,-1,18 - 468 1430 468 1430 790 1430 c 0,19,20 - 1015 1430 1015 1430 1166 1342 c 128,-1,21 - 1317 1254 1317 1254 1388 1081 c 1,22,-1 - 1207 1021 l 1,23,24 - 1158 1144 1158 1144 1049.5 1209 c 128,-1,25 - 941 1274 941 1274 792 1274 c 0,0,1 -EndSplineSet -EndChar - -StartChar: D -Encoding: 68 68 39 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 15 - 5 - 10 - 0 - 5 - 0 - 20 - 21 - 6 - 14 - 95 - 89 - 6 - 3 - 5 - 15 - 95 - 89 - 5 - 18 - 32 - 21 - 1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 670 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 968 1300 basechar 0 -AnchorPoint: "Anchor-18" 1261 1150 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1381 719 m 0,0,1 - 1381 501 1381 501 1296 337.5 c 128,-1,2 - 1211 174 1211 174 1055 87 c 128,-1,3 - 899 0 899 0 695 0 c 2,4,-1 - 168 0 l 1,5,-1 - 168 1409 l 1,6,-1 - 634 1409 l 2,7,8 - 992 1409 992 1409 1186.5 1229.5 c 128,-1,9 - 1381 1050 1381 1050 1381 719 c 0,0,1 -1189 719 m 0,10,11 - 1189 981 1189 981 1045.5 1118.5 c 128,-1,12 - 902 1256 902 1256 630 1256 c 2,13,-1 - 359 1256 l 1,14,-1 - 359 153 l 1,15,-1 - 673 153 l 2,16,17 - 828 153 828 153 945.5 221 c 128,-1,18 - 1063 289 1063 289 1126 417 c 128,-1,19 - 1189 545 1189 545 1189 719 c 0,10,11 -EndSplineSet -EndChar - -StartChar: E -Encoding: 69 69 40 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 5 - 9 - 9 - 0 - 10 - 3 - 7 - 0 - 4 - 12 - 13 - 5 - 8 - 95 - 89 - 143 - 5 - 1 - 186 - 5 - 1 - 121 - 5 - 137 - 5 - 2 - 15 - 5 - 1 - 8 - 3 - 5 - 5 - 0 - 1 - 1 - 4 - 95 - 89 - 1 - 3 - 0 - 9 - 95 - 89 - 0 - 18 - 32 - 13 - 1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-24" 700 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-19" 1155 1300 basechar 0 -AnchorPoint: "Anchor-18" 1215 1420 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -168 0 m 1,0,-1 - 168 1409 l 1,1,-1 - 1237 1409 l 1,2,-1 - 1237 1253 l 1,3,-1 - 359 1253 l 1,4,-1 - 359 801 l 1,5,-1 - 1177 801 l 1,6,-1 - 1177 647 l 1,7,-1 - 359 647 l 1,8,-1 - 359 156 l 1,9,-1 - 1278 156 l 1,10,-1 - 1278 0 l 1,11,-1 - 168 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: F -Encoding: 70 70 41 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 1 - 5 - 5 - 6 - 8 - 2 - 6 - 3 - 10 - 11 - 1 - 4 - 95 - 89 - 1 - 1 - 5 - 7 - 7 - 0 - 95 - 89 - 7 - 3 - 5 - 18 - 32 - 11 - 1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 190 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-19" 1100 1300 basechar 0 -AnchorPoint: "Anchor-18" 1143 1420 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -359 1253 m 1,0,-1 - 359 729 l 1,1,-1 - 1145 729 l 1,2,-1 - 1145 571 l 1,3,-1 - 359 571 l 1,4,-1 - 359 0 l 1,5,-1 - 168 0 l 1,6,-1 - 168 1409 l 1,7,-1 - 1169 1409 l 1,8,-1 - 1169 1253 l 1,9,-1 - 359 1253 l 1,0,-1 -EndSplineSet -Kerns2: 36 -113 "'kern' Horizontal Kerning lookup 17 subtable" 17 -227 "'kern' Horizontal Kerning lookup 17 subtable" 15 -227 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: G -Encoding: 71 71 42 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 59 - 7 - 6 - 13 - 0 - 19 - 24 - 24 - 6 - 21 - 0 - 4 - 31 - 32 - 22 - 21 - 95 - 89 - 0 - 22 - 1 - 24 - 3 - 22 - 22 - 27 - 3 - 27 - 16 - 95 - 89 - 27 - 19 - 3 - 10 - 95 - 89 - 48 - 7 - 64 - 7 - 2 - 144 - 7 - 224 - 7 - 2 - 7 - 7 - 3 - 4 - 128 - 32 - 1 - 96 - 32 - 1 - 32 - 32 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-24" 820 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-19" 1100 1300 basechar 0 -AnchorPoint: "Anchor-18" 1371 1200 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -103 711 m 0,0,1 - 103 1054 103 1054 287 1242 c 128,-1,2 - 471 1430 471 1430 804 1430 c 0,3,4 - 1038 1430 1038 1430 1184 1351 c 128,-1,5 - 1330 1272 1330 1272 1409 1098 c 1,6,-1 - 1227 1044 l 1,7,8 - 1167 1164 1167 1164 1061.5 1219 c 128,-1,9 - 956 1274 956 1274 799 1274 c 0,10,11 - 555 1274 555 1274 426 1126.5 c 128,-1,12 - 297 979 297 979 297 711 c 0,13,14 - 297 444 297 444 434 289.5 c 128,-1,15 - 571 135 571 135 813 135 c 0,16,17 - 951 135 951 135 1070.5 177 c 128,-1,18 - 1190 219 1190 219 1264 291 c 1,19,-1 - 1264 545 l 1,20,-1 - 843 545 l 1,21,-1 - 843 705 l 1,22,-1 - 1440 705 l 1,23,-1 - 1440 219 l 1,24,25 - 1328 105 1328 105 1165.5 42.5 c 128,-1,26 - 1003 -20 1003 -20 813 -20 c 0,27,28 - 592 -20 592 -20 432 68 c 128,-1,29 - 272 156 272 156 187.5 321.5 c 128,-1,30 - 103 487 103 487 103 711 c 0,0,1 -EndSplineSet -EndChar - -StartChar: H -Encoding: 72 72 43 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 3 - 3 - 4 - 8 - 0 - 0 - 11 - 4 - 11 - 12 - 13 - 7 - 2 - 95 - 89 - 80 - 7 - 1 - 224 - 7 - 1 - 7 -PUSHW_1 - -31 -NPUSHB - 46 - 19 - 73 - 121 - 7 - 137 - 7 - 2 - 15 - 7 - 1 - 8 - 7 - 7 - 9 - 5 - 3 - 4 - 0 - 18 - 32 - 13 - 1 - 192 - 13 - 1 - 176 - 13 - 1 - 160 - 13 - 1 - 128 - 13 - 1 - 112 - 13 - 1 - 96 - 13 - 1 - 80 - 13 - 1 - 32 - 13 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -IP -MDAP[rnd] -SDB -DELTAP1 -DELTAP1 -CALL -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1150 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1199 1300 basechar 0 -AnchorPoint: "Anchor-18" 1300 1420 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1121 0 m 1,0,-1 - 1121 653 l 1,1,-1 - 359 653 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 359 1409 l 1,6,-1 - 359 813 l 1,7,-1 - 1121 813 l 1,8,-1 - 1121 1409 l 1,9,-1 - 1312 1409 l 1,10,-1 - 1312 0 l 1,11,-1 - 1121 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: I -Encoding: 73 73 44 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 97 - 3 - 0 - 0 - 4 - 5 - 1 - 3 - 0 - 18 - 64 - 5 - 1 - 48 - 5 - 1 - 32 - 5 - 1 - 16 - 5 - 1 - 0 - 5 - 1 - 57 - 240 - 5 - 1 - 176 - 5 - 1 - 160 - 5 - 1 - 112 - 5 - 1 - 96 - 5 - 1 - 80 - 5 - 1 - 64 - 5 - 1 - 0 - 5 - 1 - 240 - 5 - 1 - 192 - 5 - 1 - 176 - 5 - 1 - 160 - 5 - 1 - 80 - 5 - 1 - 64 - 5 - 1 - 16 - 5 - 1 - 0 - 5 - 1 - 240 - 5 - 1 - 175 - 5 - 1 - 144 - 5 - 1 - 112 - 5 - 1 - 96 - 5 - 1 - 80 - 5 - 1 - 64 - 5 - 1 - 32 - 5 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-24" 285 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-19" 286 1300 basechar 0 -AnchorPoint: "Anchor-18" 380 1420 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -189 0 m 1,0,-1 - 189 1409 l 1,1,-1 - 380 1409 l 1,2,-1 - 380 0 l 1,3,-1 - 189 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: J -Encoding: 74 74 45 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 3 - 2 - 9 - 14 - 14 - 11 - 2 - 3 - 17 - 18 - 12 - 11 - 95 - 89 - 12 - 3 - 0 - 6 - 95 - 89 - 64 - 3 - 1 - 3 - 3 - 0 - 19 - 32 - 18 - 1 - 96 - 18 - 1 - 80 - 18 - 1 - 64 - 18 - 1 - 32 - 18 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 460 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-19" 781 1300 basechar 0 -AnchorPoint: "Anchor-18" 860 1420 basechar 0 -AnchorPoint: "Anchor-16" 660 1540 basechar 0 -AnchorPoint: "Anchor-15" 880 1540 basechar 0 -AnchorPoint: "Anchor-14" 460 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -457 -20 m 0,0,1 - 99 -20 99 -20 32 350 c 1,2,-1 - 219 381 l 1,3,4 - 237 265 237 265 300 200 c 128,-1,5 - 363 135 363 135 458 135 c 0,6,7 - 562 135 562 135 622 206.5 c 128,-1,8 - 682 278 682 278 682 416 c 2,9,-1 - 682 1253 l 1,10,-1 - 411 1253 l 1,11,-1 - 411 1409 l 1,12,-1 - 872 1409 l 1,13,-1 - 872 420 l 2,14,15 - 872 215 872 215 761 97.5 c 128,-1,16 - 650 -20 650 -20 457 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: K -Encoding: 75 75 46 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 0 - 11 - 8 - 9 - 7 - 3 - 3 - 4 - 11 - 9 - 10 - 4 - 4 - 12 - 13 - 10 - 7 - 1 - 2 - 4 - 4 - 8 - 5 - 3 - 0 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 0 basechar 0 -AnchorPoint: "Anchor-24" 660 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-19" 1067 1300 basechar 0 -AnchorPoint: "Anchor-18" 1179 1420 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1106 0 m 1,0,-1 - 543 680 l 1,1,-1 - 359 540 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 359 1409 l 1,6,-1 - 359 703 l 1,7,-1 - 1038 1409 l 1,8,-1 - 1263 1409 l 1,9,-1 - 663 797 l 1,10,-1 - 1343 0 l 1,11,-1 - 1106 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: L -Encoding: 76 76 47 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 0 - 0 - 4 - 6 - 7 - 1 - 3 - 0 - 3 - 95 - 89 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-24" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 253 1300 basechar 0 -AnchorPoint: "Anchor-18" 360 1420 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -168 0 m 1,0,-1 - 168 1409 l 1,1,-1 - 359 1409 l 1,2,-1 - 359 156 l 1,3,-1 - 1071 156 l 1,4,-1 - 1071 0 l 1,5,-1 - 168 0 l 1,0,-1 -EndSplineSet -Kerns2: 2021 -113 "'kern' Horizontal Kerning lookup 17 subtable" 92 -76 "'kern' Horizontal Kerning lookup 17 subtable" 60 -152 "'kern' Horizontal Kerning lookup 17 subtable" 58 -152 "'kern' Horizontal Kerning lookup 17 subtable" 57 -152 "'kern' Horizontal Kerning lookup 17 subtable" 55 -152 "'kern' Horizontal Kerning lookup 17 subtable" 3 -76 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: M -Encoding: 77 77 48 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 239 - 24 - 0 - 26 - 16 - 13 - 14 - 26 - 14 - 28 - 27 - 3 - 10 - 24 - 10 - 15 - 3 - 0 - 7 - 20 - 3 - 14 - 18 - 144 - 28 - 1 - 132 - 28 - 1 - 112 - 28 - 1 - 100 - 28 - 1 - 68 - 28 - 1 - 52 - 28 - 1 - 32 - 28 - 1 - 20 - 28 - 1 - 244 - 28 - 1 - 208 - 28 - 1 - 196 - 28 - 1 - 164 - 28 - 1 - 132 - 28 - 1 - 116 - 28 - 1 - 96 - 28 - 1 - 84 - 28 - 1 - 52 - 28 - 1 - 16 - 28 - 1 - 4 - 28 - 1 - 103 - 228 - 28 - 1 - 196 - 28 - 1 - 180 - 28 - 1 - 148 - 28 - 1 - 116 - 28 - 1 - 80 - 28 - 1 - 68 - 28 - 1 - 36 - 28 - 1 - 4 - 28 - 1 - 244 - 28 - 1 - 212 - 28 - 1 - 180 - 28 - 1 - 132 - 28 - 1 - 100 - 28 - 1 - 68 - 28 - 1 - 52 - 28 - 1 - 20 - 28 - 1 - 244 - 28 - 1 - 196 - 28 - 1 - 164 - 28 - 1 - 139 - 28 - 1 - 116 - 28 - 1 - 84 - 28 - 1 - 52 - 28 - 1 - 4 - 28 - 1 - 55 - 228 - 28 - 1 - 203 - 28 - 1 - 180 - 28 - 1 - 148 - 28 - 1 - 116 - 28 - 1 - 68 - 28 - 1 - 36 - 28 - 1 - 11 - 28 - 1 - 244 - 28 - 1 - 212 - 28 - 1 - 187 - 28 - 1 - 132 - 28 - 1 - 100 - 28 - 1 - 75 - 28 - 1 - 52 - 28 - 1 - 20 - 28 - 1 - 251 - 28 - 1 - 228 - 28 - 1 - 196 - 28 - 1 - 164 - 28 - 1 - 128 - 28 - 1 - 2 - 112 - 28 - 1 - 80 - 28 - 1 - 64 - 28 - 1 - 63 - 28 - 1 - 32 - 28 - 1 - 0 - 28 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SLOOP -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-19" 1452 1300 basechar 0 -AnchorPoint: "Anchor-18" 1540 1420 basechar 0 -AnchorPoint: "Anchor-16" 860 1540 basechar 0 -AnchorPoint: "Anchor-15" 1540 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1366 0 m 1,0,-1 - 1366 940 l 2,1,2 - 1366 1096 1366 1096 1375 1240 c 1,3,4 - 1326 1061 1326 1061 1287 960 c 2,5,-1 - 923 0 l 1,6,-1 - 789 0 l 1,7,-1 - 420 960 l 1,8,-1 - 364 1130 l 1,9,-1 - 331 1240 l 1,10,-1 - 334 1129 l 1,11,-1 - 338 940 l 1,12,-1 - 338 0 l 1,13,-1 - 168 0 l 1,14,-1 - 168 1409 l 1,15,-1 - 419 1409 l 1,16,-1 - 794 432 l 2,17,18 - 814 373 814 373 832.5 305.5 c 128,-1,19 - 851 238 851 238 857 208 c 1,20,21 - 865 248 865 248 890.5 329.5 c 128,-1,22 - 916 411 916 411 925 432 c 2,23,-1 - 1293 1409 l 1,24,-1 - 1538 1409 l 1,25,-1 - 1538 0 l 1,26,-1 - 1366 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: N -Encoding: 78 78 49 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 47 - 0 - 10 - 10 - 13 - 7 - 4 - 4 - 5 - 13 - 5 - 15 - 14 - 11 - 1 - 6 - 3 - 8 - 0 - 5 - 18 - 32 - 15 - 1 - 192 - 15 - 1 - 176 - 15 - 1 - 160 - 15 - 1 - 128 - 15 - 1 - 112 - 15 - 1 - 96 - 15 - 1 - 80 - 15 - 1 - 32 - 15 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-24" 740 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1210 1300 basechar 0 -AnchorPoint: "Anchor-18" 1300 1420 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1082 0 m 1,0,-1 - 328 1200 l 1,1,-1 - 333 1103 l 1,2,-1 - 338 936 l 1,3,-1 - 338 0 l 1,4,-1 - 168 0 l 1,5,-1 - 168 1409 l 1,6,-1 - 390 1409 l 1,7,-1 - 1152 201 l 1,8,9 - 1140 397 1140 397 1140 485 c 2,10,-1 - 1140 1409 l 1,11,-1 - 1312 1409 l 1,12,-1 - 1312 0 l 1,13,-1 - 1082 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: O -Encoding: 79 79 50 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 21 - 8 - 15 - 0 - 8 - 0 - 27 - 28 - 11 - 18 - 95 - 89 - 11 - 4 - 4 - 24 - 95 - 89 - 4 - 19 - 128 - 28 - 1 - 32 - 28 - 1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-24" 810 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-19" 1100 1300 basechar 0 -AnchorPoint: "Anchor-18" 1400 1150 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1495 711 m 0,0,1 - 1495 490 1495 490 1410.5 324 c 128,-1,2 - 1326 158 1326 158 1168 69 c 128,-1,3 - 1010 -20 1010 -20 795 -20 c 0,4,5 - 578 -20 578 -20 420.5 68 c 128,-1,6 - 263 156 263 156 180 322.5 c 128,-1,7 - 97 489 97 489 97 711 c 0,8,9 - 97 1049 97 1049 282 1239.5 c 128,-1,10 - 467 1430 467 1430 797 1430 c 0,11,12 - 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 - 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 - 1495 933 1495 933 1495 711 c 0,0,1 -1300 711 m 0,15,16 - 1300 974 1300 974 1168.5 1124 c 128,-1,17 - 1037 1274 1037 1274 797 1274 c 0,18,19 - 555 1274 555 1274 423 1126 c 128,-1,20 - 291 978 291 978 291 711 c 0,21,22 - 291 446 291 446 424.5 290.5 c 128,-1,23 - 558 135 558 135 795 135 c 0,24,25 - 1039 135 1039 135 1169.5 285.5 c 128,-1,26 - 1300 436 1300 436 1300 711 c 0,15,16 -EndSplineSet -EndChar - -StartChar: P -Encoding: 80 80 51 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 15 - 5 - 5 - 6 - 11 - 0 - 6 - 0 - 18 - 19 - 15 - 4 - 95 - 89 - 15 - 15 - 5 - 7 - 7 - 14 - 95 - 89 - 7 - 3 - 5 - 18 - 32 - 19 - 1 - 32 - 19 - 1 -DELTAP1 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-19" 1012 1300 basechar 0 -AnchorPoint: "Anchor-18" 1218 1150 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1258 985 m 0,0,1 - 1258 785 1258 785 1127.5 667 c 128,-1,2 - 997 549 997 549 773 549 c 2,3,-1 - 359 549 l 1,4,-1 - 359 0 l 1,5,-1 - 168 0 l 1,6,-1 - 168 1409 l 1,7,-1 - 761 1409 l 2,8,9 - 998 1409 998 1409 1128 1298 c 128,-1,10 - 1258 1187 1258 1187 1258 985 c 0,0,1 -1066 983 m 0,11,12 - 1066 1256 1066 1256 738 1256 c 2,13,-1 - 359 1256 l 1,14,-1 - 359 700 l 1,15,-1 - 746 700 l 2,16,17 - 1066 700 1066 700 1066 983 c 0,11,12 -EndSplineSet -Kerns2: 36 -152 "'kern' Horizontal Kerning lookup 17 subtable" 17 -264 "'kern' Horizontal Kerning lookup 17 subtable" 15 -264 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Q -Encoding: 81 81 52 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 31 - 18 - 25 - 0 - 0 - 8 - 3 - 14 - 18 - 5 - 37 - 38 - 21 - 28 - 95 - 89 - 21 - 4 - 14 - 34 - 95 - 89 - 3 - 14 - 19 - 11 - 6 - 95 - 89 - 11 - 128 - 38 - 1 - 32 - 38 - 1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 640 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-19" 1100 1300 basechar 0 -AnchorPoint: "Anchor-18" 1400 1150 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1495 711 m 0,0,1 - 1495 413 1495 413 1345 221 c 128,-1,2 - 1195 29 1195 29 928 -6 c 1,3,4 - 969 -132 969 -132 1035.5 -188 c 128,-1,5 - 1102 -244 1102 -244 1204 -244 c 0,6,7 - 1259 -244 1259 -244 1319 -231 c 1,8,-1 - 1319 -365 l 1,9,10 - 1226 -387 1226 -387 1141 -387 c 0,11,12 - 990 -387 990 -387 892.5 -301.5 c 128,-1,13 - 795 -216 795 -216 733 -16 c 1,14,15 - 535 -6 535 -6 391.5 84.5 c 128,-1,16 - 248 175 248 175 172.5 336.5 c 128,-1,17 - 97 498 97 498 97 711 c 0,18,19 - 97 1049 97 1049 282 1239.5 c 128,-1,20 - 467 1430 467 1430 797 1430 c 0,21,22 - 1012 1430 1012 1430 1170 1344.5 c 128,-1,23 - 1328 1259 1328 1259 1411.5 1096 c 128,-1,24 - 1495 933 1495 933 1495 711 c 0,0,1 -1300 711 m 0,25,26 - 1300 974 1300 974 1168.5 1124 c 128,-1,27 - 1037 1274 1037 1274 797 1274 c 0,28,29 - 555 1274 555 1274 423 1126 c 128,-1,30 - 291 978 291 978 291 711 c 0,31,32 - 291 446 291 446 424.5 290.5 c 128,-1,33 - 558 135 558 135 795 135 c 0,34,35 - 1039 135 1039 135 1169.5 285.5 c 128,-1,36 - 1300 436 1300 436 1300 711 c 0,25,26 -EndSplineSet -EndChar - -StartChar: R -Encoding: 82 82 53 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 47 - 1 - 12 - 12 - 19 - 9 - 19 - 3 - 3 - 4 - 14 - 9 - 0 - 13 - 13 - 9 - 4 - 3 - 23 - 24 - 12 - 2 - 19 - 2 - 95 - 89 - 19 - 19 - 0 - 5 - 5 - 18 - 95 - 89 - 5 - 3 - 4 - 0 - 18 - 128 - 24 - 1 - 112 - 24 - 1 - 32 - 24 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-24" 690 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1067 1300 basechar 0 -AnchorPoint: "Anchor-18" 1293 1150 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1164 0 m 1,0,-1 - 798 585 l 1,1,-1 - 359 585 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 831 1409 l 2,6,7 - 1069 1409 1069 1409 1198.5 1302.5 c 128,-1,8 - 1328 1196 1328 1196 1328 1006 c 0,9,10 - 1328 849 1328 849 1236.5 742 c 128,-1,11 - 1145 635 1145 635 984 607 c 1,12,-1 - 1384 0 l 1,13,-1 - 1164 0 l 1,0,-1 -1136 1004 m 0,14,15 - 1136 1127 1136 1127 1052.5 1191.5 c 128,-1,16 - 969 1256 969 1256 812 1256 c 2,17,-1 - 359 1256 l 1,18,-1 - 359 736 l 1,19,-1 - 820 736 l 2,20,21 - 971 736 971 736 1053.5 806.5 c 128,-1,22 - 1136 877 1136 877 1136 1004 c 0,14,15 -EndSplineSet -Kerns2: 60 -37 "'kern' Horizontal Kerning lookup 17 subtable" 58 -37 "'kern' Horizontal Kerning lookup 17 subtable" 57 -37 "'kern' Horizontal Kerning lookup 17 subtable" 55 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: S -Encoding: 83 83 54 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 12 - 0 - 29 - 28 - 35 - 22 - 6 - 5 - 5 - 22 - 28 - 0 - 4 - 47 - 46 - 12 - 16 - 19 - 22 - 72 - 73 - 12 - 89 - 12 - 105 - 12 - 3 - 15 - 12 - 1 - 35 -PUSHW_1 - -16 -NPUSHB - 57 - 19 - 22 - 72 - 70 - 35 - 86 - 35 - 102 - 35 - 3 - 13 - 35 - 1 - 12 - 4 - 12 - 35 - 3 - 25 - 25 - 32 - 95 - 89 - 111 - 29 - 1 - 89 - 29 - 1 - 75 - 29 - 1 - 3 - 0 - 29 - 1 - 9 - 5 - 29 - 25 - 4 - 3 - 9 - 95 - 89 - 96 - 6 - 1 - 82 - 6 - 1 - 68 - 6 - 1 - 6 - 3 - 19 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -DELTAP1 -DELTAP1 -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SDS -SDB -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SDS -SDB -DELTAP1 -DELTAP1 -CALL -DELTAP1 -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 0 basechar 0 -AnchorPoint: "Anchor-24" 700 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-19" 1001 1300 basechar 0 -AnchorPoint: "Anchor-18" 1160 1200 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1272 389 m 0,0,1 - 1272 194 1272 194 1119.5 87 c 128,-1,2 - 967 -20 967 -20 690 -20 c 0,3,4 - 175 -20 175 -20 93 338 c 1,5,-1 - 278 375 l 1,6,7 - 310 248 310 248 414 188.5 c 128,-1,8 - 518 129 518 129 697 129 c 0,9,10 - 882 129 882 129 982.5 192.5 c 128,-1,11 - 1083 256 1083 256 1083 379 c 0,12,13 - 1083 448 1083 448 1051.5 491 c 128,-1,14 - 1020 534 1020 534 963 562 c 128,-1,15 - 906 590 906 590 827 609 c 128,-1,16 - 748 628 748 628 652 650 c 0,17,18 - 485 687 485 687 398.5 724 c 128,-1,19 - 312 761 312 761 262 806.5 c 128,-1,20 - 212 852 212 852 185.5 913 c 128,-1,21 - 159 974 159 974 159 1053 c 0,22,23 - 159 1234 159 1234 297.5 1332 c 128,-1,24 - 436 1430 436 1430 694 1430 c 0,25,26 - 934 1430 934 1430 1061 1356.5 c 128,-1,27 - 1188 1283 1188 1283 1239 1106 c 1,28,-1 - 1051 1073 l 1,29,30 - 1020 1185 1020 1185 933 1235.5 c 128,-1,31 - 846 1286 846 1286 692 1286 c 0,32,33 - 523 1286 523 1286 434 1230 c 128,-1,34 - 345 1174 345 1174 345 1063 c 0,35,36 - 345 998 345 998 379.5 955.5 c 128,-1,37 - 414 913 414 913 479 883.5 c 128,-1,38 - 544 854 544 854 738 811 c 0,39,40 - 803 796 803 796 867.5 780.5 c 128,-1,41 - 932 765 932 765 991 743.5 c 128,-1,42 - 1050 722 1050 722 1101.5 693 c 128,-1,43 - 1153 664 1153 664 1191 622 c 128,-1,44 - 1229 580 1229 580 1250.5 523 c 128,-1,45 - 1272 466 1272 466 1272 389 c 0,0,1 -EndSplineSet -EndChar - -StartChar: T -Encoding: 84 84 55 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 217 - 1 - 2 - 4 - 2 - 7 - 3 - 9 - 8 - 0 - 4 - 5 - 4 - 95 - 89 - 5 - 3 - 1 - 18 - 123 - 9 - 1 - 75 - 9 - 1 - 59 - 9 - 1 - 36 - 9 - 1 - 251 - 9 - 1 - 203 - 9 - 1 - 187 - 9 - 1 - 155 - 9 - 1 - 139 - 9 - 1 - 127 - 9 - 1 - 2 - 95 - 9 - 1 - 79 - 9 - 1 - 48 - 9 - 1 - 15 - 9 - 1 - 103 - 223 - 9 - 1 - 207 - 9 - 1 - 176 - 9 - 1 - 143 - 9 - 1 - 95 - 9 - 1 - 79 - 9 - 1 - 15 - 9 - 1 - 240 - 9 - 1 - 223 - 9 - 1 - 207 - 9 - 1 - 175 - 9 - 1 - 159 - 9 - 1 - 112 - 9 - 1 - 95 - 9 - 1 - 64 - 9 - 1 - 31 - 9 - 1 - 239 - 9 - 1 - 223 - 9 - 1 - 159 - 9 - 1 - 111 - 9 - 1 - 95 - 9 - 1 - 63 - 9 - 1 - 31 - 9 - 1 - 0 - 9 - 1 - 55 - 239 - 9 - 1 - 208 - 9 - 1 - 144 - 9 - 1 - 128 - 9 - 1 - 111 - 9 - 1 - 80 - 9 - 1 - 47 - 9 - 1 - 0 - 9 - 1 - 208 - 9 - 1 - 175 - 9 - 1 - 144 - 9 - 1 - 127 - 9 - 1 - 111 - 9 - 1 - 80 - 9 - 1 - 64 - 9 - 1 - 32 - 9 - 1 - 16 - 9 - 1 - 255 - 9 - 1 - 224 - 9 - 1 - 191 - 9 - 1 - 160 - 9 - 1 - 144 - 9 - 1 - 96 - 9 - 1 - 64 - 9 - 1 - 63 - 9 - 1 - 32 - 9 - 1 - 15 - 9 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-24" 620 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-19" 1100 1300 basechar 0 -AnchorPoint: "Anchor-18" 1180 1420 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -720 1253 m 1,0,-1 - 720 0 l 1,1,-1 - 530 0 l 1,2,-1 - 530 1253 l 1,3,-1 - 46 1253 l 1,4,-1 - 46 1409 l 1,5,-1 - 1204 1409 l 1,6,-1 - 1204 1253 l 1,7,-1 - 720 1253 l 1,0,-1 -EndSplineSet -Kerns2: 92 -113 "'kern' Horizontal Kerning lookup 17 subtable" 90 -113 "'kern' Horizontal Kerning lookup 17 subtable" 88 -76 "'kern' Horizontal Kerning lookup 17 subtable" 86 -227 "'kern' Horizontal Kerning lookup 17 subtable" 85 -76 "'kern' Horizontal Kerning lookup 17 subtable" 82 -227 "'kern' Horizontal Kerning lookup 17 subtable" 76 -76 "'kern' Horizontal Kerning lookup 17 subtable" 72 -227 "'kern' Horizontal Kerning lookup 17 subtable" 70 -227 "'kern' Horizontal Kerning lookup 17 subtable" 68 -227 "'kern' Horizontal Kerning lookup 17 subtable" 50 -37 "'kern' Horizontal Kerning lookup 17 subtable" 36 -152 "'kern' Horizontal Kerning lookup 17 subtable" 30 -227 "'kern' Horizontal Kerning lookup 17 subtable" 29 -227 "'kern' Horizontal Kerning lookup 17 subtable" 17 -227 "'kern' Horizontal Kerning lookup 17 subtable" 16 -113 "'kern' Horizontal Kerning lookup 17 subtable" 15 -227 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: U -Encoding: 85 85 56 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 13 - 16 - 7 - 4 - 16 - 4 - 21 - 20 - 14 - 5 - 3 - 0 - 10 - 95 - 89 - 0 - 19 - 32 - 21 - 1 - 192 - 21 - 1 - 176 - 21 - 1 - 160 - 21 - 1 - 128 - 21 - 1 - 112 - 21 - 1 - 96 - 21 - 1 - 80 - 21 - 1 - 32 - 21 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-24" 730 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1260 1300 basechar 0 -AnchorPoint: "Anchor-18" 1300 1420 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -731 -20 m 0,0,1 - 558 -20 558 -20 429 43 c 128,-1,2 - 300 106 300 106 229 226 c 128,-1,3 - 158 346 158 346 158 512 c 2,4,-1 - 158 1409 l 1,5,-1 - 349 1409 l 1,6,-1 - 349 528 l 2,7,8 - 349 335 349 335 447 235 c 128,-1,9 - 545 135 545 135 730 135 c 0,10,11 - 920 135 920 135 1025.5 238.5 c 128,-1,12 - 1131 342 1131 342 1131 541 c 2,13,-1 - 1131 1409 l 1,14,-1 - 1321 1409 l 1,15,-1 - 1321 530 l 2,16,17 - 1321 359 1321 359 1248.5 235 c 128,-1,18 - 1176 111 1176 111 1043.5 45.5 c 128,-1,19 - 911 -20 911 -20 731 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: V -Encoding: 86 86 57 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 7 - 8 - 1 - 0 - 5 - 3 - 2 - 2 - 5 - 8 - 3 - 10 - 9 - 32 - 10 - 80 - 10 - 2 - 48 - 10 - 96 - 10 - 144 - 10 - 192 - 10 - 240 - 10 - 5 - 47 - 10 - 1 - 7 - 2 - 3 - 5 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 620 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-19" 1210 1300 basechar 0 -AnchorPoint: "Anchor-18" 1300 1420 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -782 0 m 1,0,-1 - 584 0 l 1,1,-1 - 9 1409 l 1,2,-1 - 210 1409 l 1,3,-1 - 600 417 l 1,4,-1 - 684 168 l 1,5,-1 - 768 417 l 1,6,-1 - 1156 1409 l 1,7,-1 - 1357 1409 l 1,8,-1 - 782 0 l 1,0,-1 -EndSplineSet -Kerns2: 92 -76 "'kern' Horizontal Kerning lookup 17 subtable" 88 -76 "'kern' Horizontal Kerning lookup 17 subtable" 85 -76 "'kern' Horizontal Kerning lookup 17 subtable" 82 -113 "'kern' Horizontal Kerning lookup 17 subtable" 76 -37 "'kern' Horizontal Kerning lookup 17 subtable" 72 -113 "'kern' Horizontal Kerning lookup 17 subtable" 68 -152 "'kern' Horizontal Kerning lookup 17 subtable" 36 -152 "'kern' Horizontal Kerning lookup 17 subtable" 30 -76 "'kern' Horizontal Kerning lookup 17 subtable" 29 -76 "'kern' Horizontal Kerning lookup 17 subtable" 17 -188 "'kern' Horizontal Kerning lookup 17 subtable" 16 -113 "'kern' Horizontal Kerning lookup 17 subtable" 15 -188 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: W -Encoding: 87 87 58 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 24 - 25 - 8 - 1 - 1 - 1 - 0 - 20 - 7 - 17 - 1 - 8 - 16 - 1 - 17 - 16 - 4 - 8 - 7 - 7 - 1 - 11 - 3 - 7 - 13 - 10 - 9 - 9 - 13 - 4 - 20 - 25 - 5 - 27 - 26 - 139 - 27 - 1 - 27 - 192 - 124 - 127 - 72 - 57 - 27 - 1 - 42 - 27 - 1 - 25 - 27 - 1 - 10 - 27 - 1 - 249 - 27 - 1 - 234 - 27 - 1 - 217 - 27 - 1 - 202 - 27 - 1 - 184 - 27 - 1 - 137 - 27 - 153 - 27 - 169 - 27 - 3 - 120 - 27 - 1 - 105 - 27 - 1 - 58 - 27 - 74 - 27 - 90 - 27 - 3 - 41 - 27 - 1 - 26 - 27 - 1 - 12 - 27 - 1 - 104 - 253 - 27 - 1 - 236 - 27 - 1 - 221 - 27 - 1 - 204 - 27 - 1 - 189 - 27 - 1 - 171 - 27 - 1 - 156 - 27 - 1 - 139 - 27 - 1 - 124 - 27 - 1 - 107 - 27 - 1 - 92 - 27 - 1 - 75 - 27 - 1 - 60 - 27 - 1 - 43 - 27 - 1 - 28 - 27 - 1 - 11 - 27 - 1 - 252 - 27 - 1 - 235 - 27 - 1 - 220 - 27 - 1 - 203 - 27 - 1 - 188 - 27 - 1 - 171 - 27 - 1 - 156 - 27 - 1 - 0 - 141 - 27 - 1 - 127 - 27 - 1 - 109 - 27 - 1 - 95 - 27 - 1 - 77 - 27 - 1 - 47 - 27 - 63 - 27 - 2 - 29 - 27 - 1 - 15 - 27 - 1 - 253 - 27 - 1 - 239 - 27 - 1 - 221 - 27 - 1 - 207 - 27 - 1 - 189 - 27 - 1 - 175 - 27 - 1 - 157 - 27 - 1 - 143 - 27 - 1 - 109 - 27 - 125 - 27 - 2 - 91 - 27 - 1 - 77 - 27 - 1 - 59 - 27 - 1 - 45 - 27 - 1 - 27 - 27 - 1 - 13 - 27 - 1 - 56 - 251 - 27 - 1 - 237 - 27 - 1 - 219 - 27 - 1 - 205 - 27 -NPUSHB - 111 - 1 - 187 - 27 - 1 - 173 - 27 - 1 - 155 - 27 - 1 - 141 - 27 - 1 - 123 - 27 - 1 - 109 - 27 - 1 - 75 - 27 - 91 - 27 - 2 - 57 - 27 - 1 - 43 - 27 - 1 - 25 - 27 - 1 - 11 - 27 - 1 - 249 - 27 - 1 - 235 - 27 - 1 - 221 - 27 - 1 - 203 - 27 - 1 - 189 - 27 - 1 - 171 - 27 - 1 - 157 - 27 - 1 - 139 - 27 - 1 - 125 - 27 - 1 - 107 - 27 - 1 - 93 - 27 - 1 - 75 - 27 - 1 - 61 - 27 - 1 - 1 - 43 - 27 - 1 - 31 - 27 - 1 - 2 - 95 - 27 - 127 - 27 - 159 - 27 - 191 - 27 - 223 - 27 - 255 - 27 - 6 - 0 - 27 - 1 - 8 - 24 - 16 - 4 - 9 - 3 - 20 - 13 - 13 - 1 - 8 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SVTCA[x-axis] -SDB -DELTAP1 -DELTAP1 -SDS -DELTAP2 -DELTAP2 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -CALL -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SDS -SDB -DELTAP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -SHP[rp1] -DELTAP1 -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1300 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1933 1540 basechar 0 -AnchorPoint: "Anchor-20" 1933 -380 basechar 0 -AnchorPoint: "Anchor-19" 1782 1300 basechar 0 -AnchorPoint: "Anchor-18" 1880 1420 basechar 0 -AnchorPoint: "Anchor-16" 970 1540 basechar 0 -AnchorPoint: "Anchor-15" 1900 1540 basechar 0 -AnchorPoint: "Anchor-14" 970 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1511 0 m 1,0,-1 - 1283 0 l 1,1,-1 - 1039 895 l 2,2,3 - 1015 979 1015 979 969 1196 c 1,4,5 - 943 1080 943 1080 925 1002 c 128,-1,6 - 907 924 907 924 652 0 c 1,7,-1 - 424 0 l 1,8,-1 - 9 1409 l 1,9,-1 - 208 1409 l 1,10,-1 - 461 514 l 2,11,12 - 506 346 506 346 544 168 c 1,13,14 - 568 278 568 278 599.5 408 c 128,-1,15 - 631 538 631 538 877 1409 c 1,16,-1 - 1060 1409 l 1,17,-1 - 1305 532 l 2,18,19 - 1361 317 1361 317 1393 168 c 1,20,-1 - 1402 203 l 2,21,22 - 1429 318 1429 318 1446 390.5 c 128,-1,23 - 1463 463 1463 463 1727 1409 c 1,24,-1 - 1926 1409 l 1,25,-1 - 1511 0 l 1,0,-1 -EndSplineSet -Kerns2: 92 -18 "'kern' Horizontal Kerning lookup 17 subtable" 88 -37 "'kern' Horizontal Kerning lookup 17 subtable" 85 -37 "'kern' Horizontal Kerning lookup 17 subtable" 82 -37 "'kern' Horizontal Kerning lookup 17 subtable" 72 -37 "'kern' Horizontal Kerning lookup 17 subtable" 68 -76 "'kern' Horizontal Kerning lookup 17 subtable" 36 -76 "'kern' Horizontal Kerning lookup 17 subtable" 30 -37 "'kern' Horizontal Kerning lookup 17 subtable" 29 -37 "'kern' Horizontal Kerning lookup 17 subtable" 17 -113 "'kern' Horizontal Kerning lookup 17 subtable" 16 -37 "'kern' Horizontal Kerning lookup 17 subtable" 15 -113 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: X -Encoding: 88 88 59 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 197 - 8 - 9 - 6 - 5 - 2 - 3 - 0 - 11 - 3 - 5 - 4 - 10 - 9 - 11 - 6 - 13 - 12 - 27 - 13 - 75 - 13 - 2 - 139 - 13 - 187 - 13 - 235 - 13 - 3 - 4 - 13 - 20 - 13 - 52 - 13 - 68 - 13 - 4 - 106 - 84 - 13 - 100 - 13 - 132 - 13 - 148 - 13 - 180 - 13 - 196 - 13 - 228 - 13 - 244 - 13 - 8 - 59 - 13 - 1 - 36 - 13 - 1 - 11 - 13 - 1 - 244 - 13 - 1 - 219 - 13 - 1 - 196 - 13 - 1 - 171 - 13 - 1 - 148 - 13 - 1 - 123 - 13 - 1 - 100 - 13 - 1 - 48 - 13 - 1 - 36 - 13 - 1 - 0 - 13 - 1 - 244 - 13 - 1 - 208 - 13 - 1 - 196 - 13 - 1 - 160 - 13 - 1 - 148 - 13 - 1 - 112 - 13 - 1 - 100 - 13 - 1 - 64 - 13 - 1 - 52 - 13 - 1 - 16 - 13 - 1 - 4 - 13 - 1 - 57 - 224 - 13 - 1 - 212 - 13 - 1 - 176 - 13 - 1 - 164 - 13 - 1 - 128 - 13 - 1 - 20 - 13 - 68 - 13 - 116 - 13 - 3 - 36 - 13 - 84 - 13 - 132 - 13 - 180 - 13 - 228 - 13 - 5 - 84 - 13 - 100 - 13 - 148 - 13 - 244 - 13 - 4 - 64 - 13 - 1 - 2 - 0 - 13 - 48 - 13 - 2 - 119 - 7 - 1 - 120 - 1 - 1 - 1 - 4 - 10 - 7 - 4 - 8 - 5 - 3 - 3 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -SLOOP -IP -DELTAP1 -DELTAP1 -SVTCA[x-axis] -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-19" 1089 1300 basechar 0 -AnchorPoint: "Anchor-18" 1200 1420 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1112 0 m 1,0,-1 - 689 616 l 1,1,-1 - 257 0 l 1,2,-1 - 46 0 l 1,3,-1 - 582 732 l 1,4,-1 - 87 1409 l 1,5,-1 - 298 1409 l 1,6,-1 - 690 856 l 1,7,-1 - 1071 1409 l 1,8,-1 - 1282 1409 l 1,9,-1 - 800 739 l 1,10,-1 - 1323 0 l 1,11,-1 - 1112 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: Y -Encoding: 89 89 60 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 6 - 1 - 1 - 2 - 2 - 4 - 7 - 8 - 5 - 4 - 8 - 4 - 10 - 9 - 6 - 0 - 3 - 8 - 3 - 24 - 3 - 72 - 3 - 3 - 12 - 3 - 1 - 8 - 4 - 3 - 1 - 18 - 118 - 10 - 1 - 98 - 10 - 1 - 84 - 10 - 1 - 70 - 10 - 1 - 54 - 10 - 1 - 36 - 10 - 1 - 22 - 10 - 1 - 4 - 10 - 1 - 242 - 10 - 1 - 1 - 224 - 10 - 1 - 208 - 10 - 1 - 196 - 10 - 1 - 176 - 10 - 1 - 160 - 10 - 1 - 148 - 10 - 1 - 112 - 10 - 1 - 100 - 10 - 1 - 64 - 10 - 1 - 52 - 10 - 1 - 36 - 10 - 1 - 20 - 10 - 1 - 0 - 10 - 1 - 105 - 244 - 10 - 1 - 228 - 10 - 1 - 208 - 10 - 1 - 196 - 10 - 1 - 180 - 10 - 1 - 164 - 10 - 1 - 144 - 10 - 1 - 128 - 10 - 1 - 116 - 10 - 1 - 96 - 10 - 1 - 80 - 10 - 1 - 68 - 10 - 1 - 32 - 10 - 1 - 20 - 10 - 1 - 4 - 10 - 1 - 244 - 10 - 1 - 224 - 10 - 1 - 212 - 10 - 1 - 196 - 10 - 1 - 176 - 10 - 1 - 164 - 10 - 1 - 148 - 10 - 1 - 116 - 10 - 1 - 100 - 10 - 1 - 84 - 10 - 1 - 64 - 10 - 1 - 48 - 10 - 1 - 36 - 10 - 1 - 0 - 10 - 1 - 244 - 10 - 1 - 196 - 10 - 1 - 144 - 10 - 1 - 132 - 10 - 1 - 116 - 10 - 1 - 84 - 10 - 1 - 68 - 10 - 1 - 36 - 10 - 1 - 20 - 10 - 1 - 4 - 10 - 1 - 57 - 224 - 10 - 1 - 212 - 10 - 1 - 164 - 10 - 1 - 132 - 10 - 1 - 112 - 10 - 1 - 100 - 10 - 1 - 84 - 10 - 1 - 52 - 10 - 1 - 36 - 10 - 1 - 4 - 10 - 1 - 244 - 10 - 1 - 228 - 10 - 1 - 192 -NPUSHB - 51 - 10 - 1 - 180 - 10 - 1 - 144 - 10 - 1 - 132 - 10 - 1 - 84 - 10 - 1 - 52 - 10 - 1 - 20 - 10 - 1 - 4 - 10 - 1 - 228 - 10 - 1 - 212 - 10 - 1 - 187 - 10 - 1 - 164 - 10 - 1 - 112 - 10 - 1 - 2 - 96 - 10 - 1 - 48 - 10 - 1 - 47 - 10 - 1 - 15 - 10 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -SDB -DELTAP1 -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-19" 1133 1300 basechar 0 -AnchorPoint: "Anchor-18" 1251 1420 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -777 584 m 1,0,-1 - 777 0 l 1,1,-1 - 587 0 l 1,2,-1 - 587 584 l 1,3,-1 - 45 1409 l 1,4,-1 - 255 1409 l 1,5,-1 - 684 738 l 1,6,-1 - 1111 1409 l 1,7,-1 - 1321 1409 l 1,8,-1 - 777 584 l 1,0,-1 -EndSplineSet -Kerns2: 89 -113 "'kern' Horizontal Kerning lookup 17 subtable" 88 -113 "'kern' Horizontal Kerning lookup 17 subtable" 84 -188 "'kern' Horizontal Kerning lookup 17 subtable" 83 -152 "'kern' Horizontal Kerning lookup 17 subtable" 82 -188 "'kern' Horizontal Kerning lookup 17 subtable" 76 -76 "'kern' Horizontal Kerning lookup 17 subtable" 72 -188 "'kern' Horizontal Kerning lookup 17 subtable" 68 -152 "'kern' Horizontal Kerning lookup 17 subtable" 36 -152 "'kern' Horizontal Kerning lookup 17 subtable" 30 -133 "'kern' Horizontal Kerning lookup 17 subtable" 29 -113 "'kern' Horizontal Kerning lookup 17 subtable" 17 -264 "'kern' Horizontal Kerning lookup 17 subtable" 16 -188 "'kern' Horizontal Kerning lookup 17 subtable" 15 -264 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Z -Encoding: 90 90 61 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 8 - 2 - 3 - 7 - 9 - 7 - 4 - 2 - 4 - 10 - 11 - 7 - 3 - 4 - 5 - 4 - 95 - 89 - 5 - 3 - 2 - 8 - 1 - 8 - 95 - 89 - 1 - 18 - 128 - 11 - 1 - 112 - 11 - 1 - 96 - 11 - 1 - 80 - 11 - 1 - 64 - 11 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1030 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-19" 1056 1300 basechar 0 -AnchorPoint: "Anchor-18" 1130 1420 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1187 0 m 1,0,-1 - 65 0 l 1,1,-1 - 65 143 l 1,2,-1 - 923 1253 l 1,3,-1 - 138 1253 l 1,4,-1 - 138 1409 l 1,5,-1 - 1140 1409 l 1,6,-1 - 1140 1270 l 1,7,-1 - 282 156 l 1,8,-1 - 1187 156 l 1,9,-1 - 1187 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: bracketleft -Encoding: 91 91 62 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 5 - 0 - 6 - 3 - 0 - 3 - 8 - 9 - 1 - 4 - 245 - 89 - 1 - 0 - 0 - 5 - 245 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -146 -425 m 1,0,-1 - 146 1484 l 1,1,-1 - 553 1484 l 1,2,-1 - 553 1355 l 1,3,-1 - 320 1355 l 1,4,-1 - 320 -296 l 1,5,-1 - 553 -296 l 1,6,-1 - 553 -425 l 1,7,-1 - 146 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: backslash -Encoding: 92 92 63 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 5 - 1 - 4 - 1 - 0 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -407 -20 m 1,0,-1 - 0 1484 l 1,1,-1 - 158 1484 l 1,2,-1 - 569 -20 l 1,3,-1 - 407 -20 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: bracketright -Encoding: 93 93 64 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 2 - 7 - 4 - 1 - 7 - 3 - 9 - 8 - 5 - 4 - 245 - 89 - 5 - 0 - 0 - 1 - 245 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -16 -425 m 1,0,-1 - 16 -296 l 1,1,-1 - 249 -296 l 1,2,-1 - 249 1355 l 1,3,-1 - 16 1355 l 1,4,-1 - 16 1484 l 1,5,-1 - 423 1484 l 1,6,-1 - 423 -425 l 1,7,-1 - 16 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: asciicircum -Encoding: 94 94 65 -Width: 961 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 111 - 5 - 4 - 1 - 0 - 6 - 2 - 3 - 3 - 1 - 6 - 3 - 8 - 7 - 3 - 4 - 3 - 9 - 8 - 25 - 8 - 41 - 8 - 105 - 8 - 201 - 8 - 217 - 8 - 6 - 22 - 6 - 8 - 1 - 126 - 70 - 8 - 86 - 8 - 166 - 8 - 3 - 134 - 8 - 150 - 8 - 246 - 8 - 3 - 6 - 8 - 22 - 8 - 86 - 8 - 102 - 8 - 182 - 8 - 198 - 8 - 6 - 78 - 38 - 8 - 54 - 8 - 102 - 8 - 134 - 8 - 150 - 8 - 166 - 8 - 214 - 8 - 230 - 8 - 8 - 54 - 8 - 118 - 8 - 134 - 8 - 150 - 8 - 230 - 8 - 246 - 8 - 6 - 6 - 8 - 22 - 8 - 70 - 8 - 86 - 8 - 134 - 8 - 150 - 8 - 166 - 8 - 198 - 8 - 8 - 8 - 8 -PUSHW_1 - -64 -PUSHB_4 - 72 - 75 - 72 - 8 -PUSHW_1 - -64 -NPUSHB - 76 - 66 - 69 - 72 - 4 - 8 - 20 - 8 - 68 - 8 - 84 - 8 - 164 - 8 - 180 - 8 - 6 - 117 - 116 - 8 - 132 - 8 - 164 - 8 - 180 - 8 - 212 - 8 - 228 - 8 - 6 - 4 - 8 - 20 - 8 - 164 - 8 - 180 - 8 - 228 - 8 - 244 - 8 - 6 - 4 - 8 - 84 - 8 - 180 - 8 - 244 - 8 - 4 - 65 - 84 - 8 - 148 - 8 - 164 - 8 - 3 - 228 - 8 - 244 - 8 - 2 - 4 - 8 - 20 - 8 - 84 - 8 - 116 - 8 - 4 - 14 - 8 -PUSHW_1 - -128 -PUSHB_4 - 85 - 88 - 72 - 8 -PUSHW_1 - -128 -NPUSHB - 45 - 59 - 62 - 72 - 2 - 8 - 18 - 8 - 114 - 8 - 178 - 8 - 194 - 8 - 210 - 8 - 6 - 112 - 66 - 8 - 82 - 8 - 130 - 8 - 146 - 8 - 162 - 8 - 5 - 2 - 8 - 18 - 8 - 98 - 8 - 114 - 8 - 4 - 57 - 0 - 8 - 96 - 8 - 2 - 100 - 1 -SDS -SDB -DELTAP1 -SDB -DELTAP1 -DELTAP3 -SDB -DELTAP1 -CALL -CALL -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -CALL -CALL -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -SDB -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -787 673 m 1,0,-1 - 478 1306 l 1,1,-1 - 172 673 l 1,2,-1 - 10 673 l 1,3,-1 - 378 1409 l 1,4,-1 - 581 1409 l 1,5,-1 - 951 673 l 1,6,-1 - 787 673 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: underscore -Encoding: 95 95 66 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 5 - 0 - 4 - 1 - 0 - 186 - 89 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --31 -407 m 1,0,-1 - -31 -277 l 1,1,-1 - 1162 -277 l 1,2,-1 - 1162 -407 l 1,3,-1 - -31 -407 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: grave -Encoding: 96 96 67 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 0 - 5 - 3 - 2 - 4 - 2 - 7 - 6 - 0 - 2 - 149 - 91 - 15 - 0 - 47 - 0 - 63 - 0 - 127 - 0 - 239 - 0 - 5 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -436 1201 m 1,0,-1 - 106 1479 l 1,1,-1 - 106 1508 l 1,2,-1 - 313 1508 l 1,3,-1 - 530 1221 l 1,4,-1 - 530 1201 l 1,5,-1 - 436 1201 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: a -Encoding: 97 97 68 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 86 - 32 - 41 - 41 - 7 - 7 - 21 - 14 - 15 - 46 - 3 - 3 - 15 - 21 - 26 - 4 - 50 - 49 - 29 - 24 - 81 - 89 - 29 - 22 - 32 - 0 - 17 - 7 - 41 - 81 - 89 - 7 - 7 - 17 - 0 - 63 - 14 - 1 - 15 - 14 - 111 - 14 - 2 - 11 - 3 - 14 - 14 - 17 - 17 - 11 - 80 - 89 - 17 - 16 - 0 - 36 - 80 - 89 - 0 - 22 - 192 - 50 - 1 - 160 - 50 - 1 - 144 - 50 - 1 - 128 - 50 - 1 - 112 - 50 - 1 - 96 - 50 - 1 - 80 - 50 - 1 - 48 - 50 - 1 - 160 - 50 - 1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-24" 480 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1220 basechar 0 -AnchorPoint: "Anchor-20" 1139 -180 basechar 0 -AnchorPoint: "Anchor-19" 860 800 basechar 0 -AnchorPoint: "Anchor-18" 950 900 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -414 -20 m 0,0,1 - 251 -20 251 -20 169 66 c 128,-1,2 - 87 152 87 152 87 302 c 0,3,4 - 87 470 87 470 197.5 560 c 128,-1,5 - 308 650 308 650 554 656 c 2,6,-1 - 797 660 l 1,7,-1 - 797 719 l 2,8,9 - 797 851 797 851 741 908 c 128,-1,10 - 685 965 685 965 565 965 c 0,11,12 - 444 965 444 965 389 924 c 128,-1,13 - 334 883 334 883 323 793 c 1,14,-1 - 135 810 l 1,15,16 - 181 1102 181 1102 569 1102 c 0,17,18 - 773 1102 773 1102 876 1008.5 c 128,-1,19 - 979 915 979 915 979 738 c 2,20,-1 - 979 272 l 2,21,22 - 979 192 979 192 1000 151.5 c 128,-1,23 - 1021 111 1021 111 1080 111 c 0,24,25 - 1106 111 1106 111 1139 118 c 1,26,-1 - 1139 6 l 1,27,28 - 1071 -10 1071 -10 1000 -10 c 0,29,30 - 900 -10 900 -10 854.5 42.5 c 128,-1,31 - 809 95 809 95 803 207 c 1,32,-1 - 797 207 l 1,33,34 - 728 83 728 83 636.5 31.5 c 128,-1,35 - 545 -20 545 -20 414 -20 c 0,0,1 -455 115 m 0,36,37 - 554 115 554 115 631 160 c 128,-1,38 - 708 205 708 205 752.5 283.5 c 128,-1,39 - 797 362 797 362 797 445 c 2,40,-1 - 797 534 l 1,41,-1 - 600 530 l 2,42,43 - 473 528 473 528 407.5 504 c 128,-1,44 - 342 480 342 480 307 430 c 128,-1,45 - 272 380 272 380 272 299 c 0,46,47 - 272 211 272 211 319.5 163 c 128,-1,48 - 367 115 367 115 455 115 c 0,36,37 -EndSplineSet -EndChar - -StartChar: b -Encoding: 98 98 69 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 30 - 5 - 14 - 14 - 13 - 24 - 0 - 13 - 0 - 36 - 37 - 5 - 17 - 2 - 21 - 21 - 27 - 80 - 89 - 21 - 16 - 13 - 0 - 10 - 21 - 2 - 33 - 80 - 89 - 2 - 22 - 176 - 37 - 1 - 63 - 37 - 1 - 144 - 37 - 1 - 112 - 37 - 1 - 31 - 37 - 1 - 255 - 37 - 1 - 224 - 37 - 1 - 192 - 37 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 880 120 basechar 0 -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -150 basechar 0 -AnchorPoint: "Anchor-19" 930 800 basechar 0 -AnchorPoint: "Anchor-18" 1010 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 -20 1053 -20 655 -20 c 0,2,3 - 532 -20 532 -20 450.5 24.5 c 128,-1,4 - 369 69 369 69 318 168 c 1,5,-1 - 316 168 l 1,6,7 - 316 137 316 137 312 73.5 c 128,-1,8 - 308 10 308 10 306 0 c 1,9,-1 - 132 0 l 1,10,11 - 138 54 138 54 138 223 c 2,12,-1 - 138 1484 l 1,13,-1 - 318 1484 l 1,14,-1 - 318 1061 l 2,15,16 - 318 996 318 996 314 908 c 1,17,-1 - 318 908 l 1,18,19 - 368 1012 368 1012 450.5 1057 c 128,-1,20 - 533 1102 533 1102 655 1102 c 0,21,22 - 860 1102 860 1102 956.5 964 c 128,-1,23 - 1053 826 1053 826 1053 546 c 0,0,1 -864 540 m 0,24,25 - 864 767 864 767 804 865 c 128,-1,26 - 744 963 744 963 609 963 c 0,27,28 - 457 963 457 963 387.5 859 c 128,-1,29 - 318 755 318 755 318 529 c 0,30,31 - 318 316 318 316 386 214.5 c 128,-1,32 - 454 113 454 113 607 113 c 0,33,34 - 743 113 743 113 803.5 213.5 c 128,-1,35 - 864 314 864 314 864 540 c 0,24,25 -EndSplineSet -EndChar - -StartChar: c -Encoding: 99 99 70 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 69 - 0 - 13 - 20 - 19 - 6 - 7 - 7 - 19 - 13 - 3 - 26 - 27 - 16 - 23 - 80 - 89 - 31 - 20 - 127 - 20 - 143 - 20 - 223 - 20 - 4 - 20 - 20 - 16 - 16 - 32 - 6 - 112 - 6 - 128 - 6 - 208 - 6 - 224 - 6 - 5 - 0 - 6 - 16 - 6 - 96 - 6 - 112 - 6 - 128 - 6 - 192 - 6 - 208 - 6 - 7 - 9 - 3 - 6 - 6 - 10 - 10 - 3 - 80 - 89 - 10 - 22 - 31 - 27 - 1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 800 120 basechar 0 -AnchorPoint: "Anchor-25" 580 0 basechar 0 -AnchorPoint: "Anchor-24" 560 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1210 basechar 0 -AnchorPoint: "Anchor-20" 1024 -90 basechar 0 -AnchorPoint: "Anchor-19" 860 800 basechar 0 -AnchorPoint: "Anchor-18" 900 900 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -275 546 m 0,0,1 - 275 330 275 330 343 226 c 128,-1,2 - 411 122 411 122 548 122 c 0,3,4 - 644 122 644 122 708.5 174 c 128,-1,5 - 773 226 773 226 788 334 c 1,6,-1 - 970 322 l 1,7,8 - 949 166 949 166 837 73 c 128,-1,9 - 725 -20 725 -20 553 -20 c 0,10,11 - 326 -20 326 -20 206.5 123.5 c 128,-1,12 - 87 267 87 267 87 542 c 0,13,14 - 87 815 87 815 207 958.5 c 128,-1,15 - 327 1102 327 1102 551 1102 c 0,16,17 - 717 1102 717 1102 826.5 1016 c 128,-1,18 - 936 930 936 930 964 779 c 1,19,-1 - 779 765 l 1,20,21 - 765 855 765 855 708 908 c 128,-1,22 - 651 961 651 961 546 961 c 0,23,24 - 403 961 403 961 339 866 c 128,-1,25 - 275 771 275 771 275 546 c 0,0,1 -EndSplineSet -EndChar - -StartChar: d -Encoding: 100 100 71 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 49 - 29 - 0 - 14 - 14 - 15 - 23 - 6 - 15 - 6 - 36 - 35 - 18 - 21 - 14 - 0 - 0 - 11 - 3 - 8 - 8 - 32 - 80 - 89 - 8 - 16 - 3 - 26 - 80 - 89 - 3 - 22 - 144 - 36 - 1 - 112 - 36 - 1 - 31 - 36 - 1 - 255 - 36 - 1 - 224 - 36 - 1 - 192 - 36 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 920 0 basechar 0 -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -90 basechar 0 -AnchorPoint: "Anchor-19" 904 1400 basechar 0 -AnchorPoint: "Anchor-18" 981 1500 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -821 174 m 1,0,1 - 771 70 771 70 688.5 25 c 128,-1,2 - 606 -20 606 -20 484 -20 c 0,3,4 - 279 -20 279 -20 182.5 118 c 128,-1,5 - 86 256 86 256 86 536 c 0,6,7 - 86 1102 86 1102 484 1102 c 0,8,9 - 607 1102 607 1102 689 1057 c 128,-1,10 - 771 1012 771 1012 821 914 c 1,11,-1 - 823 914 l 1,12,-1 - 821 1035 l 1,13,-1 - 821 1484 l 1,14,-1 - 1001 1484 l 1,15,-1 - 1001 223 l 2,16,17 - 1001 54 1001 54 1007 0 c 1,18,-1 - 835 0 l 1,19,20 - 832 16 832 16 828.5 74 c 128,-1,21 - 825 132 825 132 825 174 c 1,22,-1 - 821 174 l 1,0,1 -275 542 m 0,23,24 - 275 315 275 315 335 217 c 128,-1,25 - 395 119 395 119 530 119 c 0,26,27 - 683 119 683 119 752 225 c 128,-1,28 - 821 331 821 331 821 554 c 0,29,30 - 821 769 821 769 752 869 c 128,-1,31 - 683 969 683 969 532 969 c 0,32,33 - 396 969 396 969 335.5 868.5 c 128,-1,34 - 275 768 275 768 275 542 c 0,23,24 -EndSplineSet -EndChar - -StartChar: e -Encoding: 101 101 72 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 70 - 19 - 17 - 6 - 7 - 25 - 0 - 0 - 12 - 12 - 7 - 17 - 3 - 27 - 26 - 6 - 6 - 0 - 3 - 25 - 0 - 80 - 89 - 13 - 25 - 1 - 20 - 4 - 25 - 25 - 9 - 15 - 15 - 22 - 80 - 89 - 15 - 16 - 9 - 3 - 80 - 89 - 9 - 22 - 208 - 27 - 1 - 192 - 27 - 1 - 160 - 27 - 1 - 144 - 27 - 1 - 128 - 27 - 1 - 112 - 27 - 1 - 96 - 27 - 1 - 80 - 27 - 1 - 48 - 27 - 1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-24" 580 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1180 basechar 0 -AnchorPoint: "Anchor-20" 1139 -90 basechar 0 -AnchorPoint: "Anchor-19" 930 800 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -276 503 m 1,0,1 - 276 317 276 317 353 216 c 128,-1,2 - 430 115 430 115 578 115 c 0,3,4 - 695 115 695 115 765.5 162 c 128,-1,5 - 836 209 836 209 861 281 c 1,6,-1 - 1019 236 l 1,7,8 - 922 -20 922 -20 578 -20 c 0,9,10 - 338 -20 338 -20 212.5 123 c 128,-1,11 - 87 266 87 266 87 548 c 0,12,13 - 87 816 87 816 212.5 959 c 128,-1,14 - 338 1102 338 1102 571 1102 c 0,15,16 - 1048 1102 1048 1102 1048 527 c 2,17,-1 - 1048 503 l 1,18,-1 - 276 503 l 1,0,1 -862 641 m 1,19,20 - 847 812 847 812 775 890.5 c 128,-1,21 - 703 969 703 969 568 969 c 0,22,23 - 437 969 437 969 360.5 881.5 c 128,-1,24 - 284 794 284 794 278 641 c 1,25,-1 - 862 641 l 1,19,20 -EndSplineSet -EndChar - -StartChar: f -Encoding: 102 102 73 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 104 - 13 - 19 - 1 - 6 - 1 - 2 - 2 - 21 - 4 - 21 - 4 - 23 - 22 - 10 - 15 - 80 - 89 - 10 - 0 - 0 - 3 - 6 - 3 - 80 - 89 - 19 - 6 - 15 - 1 - 21 - 31 - 23 - 47 - 23 - 79 - 23 - 95 - 23 - 127 - 23 - 143 - 23 - 159 - 23 - 7 - 15 - 23 - 63 - 23 - 127 - 23 - 175 - 23 - 191 - 23 - 223 - 23 - 239 - 23 - 7 - 59 - 95 - 23 - 191 - 23 - 2 - 127 - 23 - 143 - 23 - 159 - 23 - 3 - 15 - 23 - 47 - 23 - 175 - 23 - 223 - 23 - 239 - 23 - 5 - 23 - 64 - 86 - 100 - 72 - 23 - 64 - 39 - 44 - 72 - 32 - 23 - 48 - 23 - 96 - 23 - 3 - 64 - 23 - 1 -DELTAP1 -DELTAP2 -CALL -CALL -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SHP[rp2] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 270 0 basechar 0 -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -90 basechar 0 -AnchorPoint: "Anchor-19" 450 1400 basechar 0 -AnchorPoint: "Anchor-18" 560 1500 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -361 951 m 1,0,-1 - 361 0 l 1,1,-1 - 181 0 l 1,2,-1 - 181 951 l 1,3,-1 - 29 951 l 1,4,-1 - 29 1082 l 1,5,-1 - 181 1082 l 1,6,-1 - 181 1204 l 2,7,8 - 181 1352 181 1352 246 1417 c 128,-1,9 - 311 1482 311 1482 445 1482 c 0,10,11 - 520 1482 520 1482 572 1470 c 1,12,-1 - 572 1333 l 1,13,14 - 527 1341 527 1341 492 1341 c 0,15,16 - 423 1341 423 1341 392 1306 c 128,-1,17 - 361 1271 361 1271 361 1179 c 2,18,-1 - 361 1082 l 1,19,-1 - 572 1082 l 1,20,-1 - 572 951 l 1,21,-1 - 361 951 l 1,0,-1 -EndSplineSet -Kerns2: 2021 37 "'kern' Horizontal Kerning lookup 17 subtable" 73 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: g -Encoding: 103 103 74 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 100 - 33 - 23 - 9 - 9 - 31 - 4 - 3 - 40 - 17 - 17 - 3 - 31 - 3 - 48 - 47 - 28 - 15 - 23 - 10 - 20 - 14 - 20 - 37 - 80 - 89 - 20 - 16 - 14 - 43 - 80 - 89 - 14 - 22 - 0 - 7 - 80 - 89 - 21 - 4 - 1 - 6 - 4 - 1 - 11 - 4 - 0 - 27 - 64 - 48 - 1 - 32 - 48 - 1 - 207 - 48 - 1 - 176 - 48 - 1 - 144 - 48 - 1 - 32 - 48 - 1 - 0 - 48 - 1 - 80 - 223 - 48 - 1 - 192 - 48 - 1 - 79 - 48 - 1 - 160 - 48 - 1 - 128 - 48 - 1 - 47 - 48 - 1 - 15 - 48 - 1 - 240 - 48 - 1 - 208 - 48 - 1 - 15 - 48 - 1 - 8 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -SDB -DELTAP1 -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 790 -300 basechar 0 -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-24" 550 -420 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1200 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 1000 basechar 0 -AnchorPoint: "Anchor-18" 1000 1100 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -548 -425 m 0,0,1 - 371 -425 371 -425 266 -355.5 c 128,-1,2 - 161 -286 161 -286 131 -158 c 1,3,-1 - 312 -132 l 1,4,5 - 330 -207 330 -207 391.5 -247.5 c 128,-1,6 - 453 -288 453 -288 553 -288 c 0,7,8 - 822 -288 822 -288 822 27 c 2,9,-1 - 822 201 l 1,10,-1 - 820 201 l 1,11,12 - 769 97 769 97 680 44.5 c 128,-1,13 - 591 -8 591 -8 472 -8 c 0,14,15 - 273 -8 273 -8 179.5 124 c 128,-1,16 - 86 256 86 256 86 539 c 0,17,18 - 86 826 86 826 186.5 962.5 c 128,-1,19 - 287 1099 287 1099 492 1099 c 0,20,21 - 607 1099 607 1099 691.5 1046.5 c 128,-1,22 - 776 994 776 994 822 897 c 1,23,-1 - 824 897 l 1,24,25 - 824 927 824 927 828 1001 c 128,-1,26 - 832 1075 832 1075 836 1082 c 1,27,-1 - 1007 1082 l 1,28,29 - 1001 1028 1001 1028 1001 858 c 2,30,-1 - 1001 31 l 2,31,32 - 1001 -425 1001 -425 548 -425 c 0,0,1 -822 541 m 0,33,34 - 822 673 822 673 786 768.5 c 128,-1,35 - 750 864 750 864 684.5 914.5 c 128,-1,36 - 619 965 619 965 536 965 c 0,37,38 - 398 965 398 965 335 865 c 128,-1,39 - 272 765 272 765 272 541 c 0,40,41 - 272 319 272 319 331 222 c 128,-1,42 - 390 125 390 125 533 125 c 0,43,44 - 618 125 618 125 684 175 c 128,-1,45 - 750 225 750 225 786 318.5 c 128,-1,46 - 822 412 822 412 822 541 c 0,33,34 -EndSplineSet -EndChar - -StartChar: h -Encoding: 104 104 75 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 59 - 21 - 17 - 17 - 18 - 8 - 7 - 18 - 7 - 25 - 26 - 19 - 0 - 0 - 3 - 18 - 7 - 21 - 3 - 13 - 80 - 89 - 3 - 16 - 208 - 26 - 1 - 192 - 26 - 1 - 176 - 26 - 1 - 240 - 26 - 1 - 176 - 26 - 1 - 255 - 26 - 1 - 224 - 26 - 1 - 208 - 26 - 1 - 192 - 26 - 1 - 176 - 26 - 1 - 160 - 26 - 1 - 112 - 26 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 910 0 basechar 0 -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -110 basechar 0 -AnchorPoint: "Anchor-19" 915 800 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -317 897 m 1,0,1 - 375 1003 375 1003 456.5 1052.5 c 128,-1,2 - 538 1102 538 1102 663 1102 c 0,3,4 - 839 1102 839 1102 922.5 1014.5 c 128,-1,5 - 1006 927 1006 927 1006 721 c 2,6,-1 - 1006 0 l 1,7,-1 - 825 0 l 1,8,-1 - 825 686 l 2,9,10 - 825 800 825 800 804 855.5 c 128,-1,11 - 783 911 783 911 735 937 c 128,-1,12 - 687 963 687 963 602 963 c 0,13,14 - 475 963 475 963 398.5 875 c 128,-1,15 - 322 787 322 787 322 638 c 2,16,-1 - 322 0 l 1,17,-1 - 142 0 l 1,18,-1 - 142 1484 l 1,19,-1 - 322 1484 l 1,20,-1 - 322 1098 l 2,21,22 - 322 1037 322 1037 318.5 972 c 128,-1,23 - 315 907 315 907 314 897 c 1,24,-1 - 317 897 l 1,0,1 -EndSplineSet -EndChar - -StartChar: i -Encoding: 105 105 76 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 72 - 3 - 7 - 7 - 0 - 4 - 4 - 8 - 9 - 5 - 15 - 4 - 21 - 1 - 0 - 83 - 89 - 1 - 0 - 255 - 9 - 1 - 224 - 9 - 1 - 223 - 9 - 1 - 192 - 9 - 1 - 176 - 9 - 1 - 159 - 9 - 1 - 128 - 9 - 1 - 112 - 9 - 1 - 31 - 9 - 1 - 0 - 9 - 1 - 240 - 9 - 1 - 223 - 9 - 1 - 192 - 9 - 1 - 176 - 9 - 1 - 160 - 9 - 1 - 144 - 9 - 1 - 79 - 9 - 1 - 31 - 9 - 1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-24" 230 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -90 basechar 0 -AnchorPoint: "Anchor-19" 310 1000 basechar 0 -AnchorPoint: "Anchor-18" 320 1100 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -137 1312 m 1,0,-1 - 137 1484 l 1,1,-1 - 317 1484 l 1,2,-1 - 317 1312 l 1,3,-1 - 137 1312 l 1,0,-1 -137 0 m 1,4,-1 - 137 1082 l 1,5,-1 - 317 1082 l 1,6,-1 - 317 0 l 1,7,-1 - 137 0 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: j -Encoding: 106 106 77 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 172 - 10 - 3 - 4 - 4 - 0 - 14 - 14 - 17 - 18 - 15 - 15 - 7 - 11 - 80 - 89 - 7 - 27 - 1 - 0 - 83 - 89 - 1 - 0 - 207 - 18 - 1 - 191 - 18 - 1 - 143 - 18 - 1 - 0 - 18 - 1 - 111 - 239 - 18 - 1 - 208 - 18 - 1 - 143 - 18 - 1 - 63 - 18 - 1 - 255 - 18 - 1 - 175 - 18 - 1 - 159 - 18 - 1 - 143 - 18 - 1 - 111 - 18 - 1 - 80 - 18 - 1 - 64 - 18 - 1 - 48 - 18 - 1 - 32 - 18 - 1 - 223 - 18 - 1 - 176 - 18 - 1 - 160 - 18 - 1 - 144 - 18 - 1 - 79 - 18 - 1 - 63 - 18 - 1 - 47 - 18 - 1 - 0 - 18 - 1 - 61 - 255 - 18 - 1 - 239 - 18 - 1 - 223 - 18 - 1 - 207 - 18 - 1 - 176 - 18 - 1 - 144 - 18 - 1 - 128 - 18 - 1 - 112 - 18 - 1 - 31 - 18 - 1 - 15 - 18 - 1 - 255 - 18 - 1 - 223 - 18 - 1 - 207 - 18 - 1 - 191 - 18 - 1 - 175 - 18 - 1 - 144 - 18 - 1 - 79 - 18 - 1 - 255 - 18 - 1 - 224 - 18 - 1 - 208 - 18 - 1 - 192 - 18 - 1 - 128 - 18 - 1 - 112 - 18 - 1 - 31 - 18 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 220 -260 basechar 0 -AnchorPoint: "Anchor-25" 100 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-19" 310 1000 basechar 0 -AnchorPoint: "Anchor-18" 320 1100 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 140 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -137 1312 m 1,0,-1 - 137 1484 l 1,1,-1 - 317 1484 l 1,2,-1 - 317 1312 l 1,3,-1 - 137 1312 l 1,0,-1 -317 -134 m 2,4,5 - 317 -287 317 -287 257 -356 c 128,-1,6 - 197 -425 197 -425 77 -425 c 0,7,8 - 0 -425 0 -425 -50 -416 c 1,9,-1 - -50 -277 l 1,10,-1 - 12 -283 l 1,11,12 - 81 -283 81 -283 109 -247 c 128,-1,13 - 137 -211 137 -211 137 -107 c 2,14,-1 - 137 1082 l 1,15,-1 - 317 1082 l 1,16,-1 - 317 -134 l 2,4,5 -EndSplineSet -EndChar - -StartChar: k -Encoding: 107 107 78 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 103 - 8 - 9 - 1 - 10 - 9 - 10 - 4 - 0 - 11 - 11 - 7 - 3 - 4 - 4 - 13 - 12 - 31 - 13 - 63 - 13 - 2 - 31 - 13 - 63 - 13 - 95 - 13 - 255 - 13 - 4 - 15 - 13 - 31 - 13 - 63 - 13 - 95 - 13 - 127 - 13 - 5 - 57 - 13 - 64 - 83 - 86 - 72 - 96 - 13 - 128 - 13 - 160 - 13 - 192 - 13 - 208 - 13 - 5 - 223 - 13 - 1 - 0 - 13 - 96 - 13 - 128 - 13 - 160 - 13 - 4 - 0 - 13 - 16 - 13 - 48 - 13 - 64 - 13 - 128 - 13 - 160 - 13 - 192 - 13 - 224 - 13 - 240 - 13 - 9 - 7 - 2 - 1 - 7 - 10 - 4 - 8 - 15 - 5 - 0 - 4 - 21 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -SLOOP -IP -SVTCA[x-axis] -SDB -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP3 -CALL -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 920 0 basechar 0 -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-24" 500 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -100 basechar 0 -AnchorPoint: "Anchor-19" 860 1000 basechar 0 -AnchorPoint: "Anchor-18" 860 1100 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -816 0 m 1,0,-1 - 450 494 l 1,1,-1 - 318 385 l 1,2,-1 - 318 0 l 1,3,-1 - 138 0 l 1,4,-1 - 138 1484 l 1,5,-1 - 318 1484 l 1,6,-1 - 318 557 l 1,7,-1 - 793 1082 l 1,8,-1 - 1004 1082 l 1,9,-1 - 565 617 l 1,10,-1 - 1027 0 l 1,11,-1 - 816 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: l -Encoding: 108 108 79 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 81 - 3 - 0 - 0 - 5 - 4 - 1 - 0 - 0 - 21 - 240 - 5 - 1 - 224 - 5 - 1 - 223 - 5 - 1 - 192 - 5 - 1 - 176 - 5 - 1 - 159 - 5 - 1 - 128 - 5 - 1 - 112 - 5 - 1 - 31 - 5 - 1 - 15 - 5 - 1 - 240 - 5 - 1 - 223 - 5 - 1 - 192 - 5 - 1 - 176 - 5 - 1 - 160 - 5 - 1 - 144 - 5 - 1 - 79 - 5 - 1 - 255 - 5 - 1 - 224 - 5 - 1 - 208 - 5 - 1 - 192 - 5 - 1 - 128 - 5 - 1 - 112 - 5 - 1 - 31 - 5 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 225 0 basechar 0 -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-24" 230 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -80 basechar 0 -AnchorPoint: "Anchor-19" 211 1400 basechar 0 -AnchorPoint: "Anchor-18" 320 1500 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -138 0 m 1,0,-1 - 138 1484 l 1,1,-1 - 318 1484 l 1,2,-1 - 318 0 l 1,3,-1 - 138 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: m -Encoding: 109 109 80 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 24 - 41 - 0 - 0 - 33 - 9 - 33 - 32 - 18 - 8 - 9 - 32 - 9 - 43 - 42 - 28 - 37 - 80 - 89 - 28 - 16 - 24 - 17 - 0 - 21 - 21 - 4 - 80 - 89 - 21 - 16 - 12 - 15 - 33 - 9 - 0 - 21 - 100 - 43 - 1 - 75 - 43 - 1 - 63 - 43 - 1 - 43 - 43 - 1 - 31 - 43 - 1 - 15 - 43 - 1 - 235 - 43 - 1 - 223 - 43 - 1 - 187 - 43 - 1 - 171 - 43 - 1 - 139 - 43 - 1 - 123 - 43 - 1 - 111 - 43 - 1 - 59 - 43 - 1 - 31 - 43 - 1 - 11 - 43 - 1 - 106 - 235 - 43 - 1 - 203 - 43 - 1 - 187 - 43 - 1 - 175 - 43 - 1 - 139 - 43 - 1 - 127 - 43 - 1 - 91 - 43 - 1 - 79 - 43 - 1 - 27 - 43 - 1 - 251 - 43 - 1 - 239 - 43 - 1 - 223 - 43 - 1 - 203 - 43 - 1 - 187 - 43 - 1 - 175 - 43 - 1 - 148 - 43 - 1 - 100 - 43 - 1 - 75 - 43 - 1 - 43 - 43 - 1 - 27 - 43 - 1 - 4 - 43 - 1 - 244 - 43 - 1 - 219 - 43 - 1 - 171 - 43 - 1 - 139 - 43 - 1 - 127 - 43 - 1 - 107 - 43 - 1 - 52 - 43 - 1 - 27 - 43 - 1 - 15 - 43 - 1 - 57 - 251 - 43 - 1 - 219 - 43 - 1 - 187 - 43 - 1 - 160 - 43 - 1 - 148 - 43 - 1 - 116 - 43 - 1 - 91 - 43 - 1 - 75 - 43 - 1 - 43 - 43 - 1 - 31 - 43 - 1 - 11 - 43 - 1 - 251 - 43 - 1 - 235 - 43 - 1 - 203 - 43 - 1 - 164 - 43 - 1 - 123 - 43 - 1 - 91 - 43 - 1 - 75 - 43 - 1 - 27 - 43 - 1 - 244 - 43 - 1 - 208 - 43 - 1 - 2 - 192 - 43 - 1 - 160 - 43 - 1 - 144 - 43 - 1 - 96 - 43 - 1 - 79 - 43 -NPUSHB - 11 - 1 - 48 - 43 - 1 - 47 - 43 - 1 - 0 - 43 - 1 - 8 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -SHP[rp2] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 1490 0 basechar 0 -AnchorPoint: "Anchor-25" 1410 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1260 basechar 0 -AnchorPoint: "Anchor-20" 1706 -80 basechar 0 -AnchorPoint: "Anchor-19" 1500 800 basechar 0 -AnchorPoint: "Anchor-18" 1570 900 basechar 0 -AnchorPoint: "Anchor-16" 860 1540 basechar 0 -AnchorPoint: "Anchor-15" 1540 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -768 0 m 1,0,-1 - 768 686 l 2,1,2 - 768 843 768 843 725 903 c 128,-1,3 - 682 963 682 963 570 963 c 0,4,5 - 455 963 455 963 388 875 c 128,-1,6 - 321 787 321 787 321 627 c 2,7,-1 - 321 0 l 1,8,-1 - 142 0 l 1,9,-1 - 142 851 l 2,10,11 - 142 1040 142 1040 136 1082 c 1,12,-1 - 306 1082 l 1,13,14 - 307 1077 307 1077 308 1055 c 128,-1,15 - 309 1033 309 1033 310.5 1004.5 c 128,-1,16 - 312 976 312 976 314 897 c 1,17,-1 - 317 897 l 1,18,19 - 375 1012 375 1012 450 1057 c 128,-1,20 - 525 1102 525 1102 633 1102 c 0,21,22 - 756 1102 756 1102 827.5 1053 c 128,-1,23 - 899 1004 899 1004 927 897 c 1,24,-1 - 930 897 l 1,25,26 - 986 1006 986 1006 1065.5 1054 c 128,-1,27 - 1145 1102 1145 1102 1258 1102 c 0,28,29 - 1422 1102 1422 1102 1496.5 1013 c 128,-1,30 - 1571 924 1571 924 1571 721 c 2,31,-1 - 1571 0 l 1,32,-1 - 1393 0 l 1,33,-1 - 1393 686 l 2,34,35 - 1393 843 1393 843 1350 903 c 128,-1,36 - 1307 963 1307 963 1195 963 c 0,37,38 - 1077 963 1077 963 1011.5 875.5 c 128,-1,39 - 946 788 946 788 946 627 c 2,40,-1 - 946 0 l 1,41,-1 - 768 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: n -Encoding: 110 110 81 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 60 - 18 - 9 - 9 - 10 - 0 - 26 - 10 - 26 - 27 - 28 - 18 - 22 - 0 - 22 - 5 - 80 - 89 - 22 - 16 - 13 - 15 - 10 - 0 - 21 - 208 - 28 - 1 - 192 - 28 - 1 - 176 - 28 - 1 - 240 - 28 - 1 - 176 - 28 - 1 - 255 - 28 - 1 - 224 - 28 - 1 - 208 - 28 - 1 - 192 - 28 - 1 - 176 - 28 - 1 - 160 - 28 - 1 - 112 - 28 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 910 0 basechar 0 -AnchorPoint: "Anchor-25" 840 0 basechar 0 -AnchorPoint: "Anchor-24" 540 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1220 basechar 0 -AnchorPoint: "Anchor-20" 1139 -80 basechar 0 -AnchorPoint: "Anchor-19" 920 800 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -825 0 m 1,0,-1 - 825 686 l 2,1,2 - 825 793 825 793 804 852 c 128,-1,3 - 783 911 783 911 737 937 c 128,-1,4 - 691 963 691 963 602 963 c 0,5,6 - 472 963 472 963 397 874 c 128,-1,7 - 322 785 322 785 322 627 c 2,8,-1 - 322 0 l 1,9,-1 - 142 0 l 1,10,-1 - 142 851 l 2,11,12 - 142 1040 142 1040 136 1082 c 1,13,-1 - 306 1082 l 1,14,15 - 307 1077 307 1077 308 1055 c 128,-1,16 - 309 1033 309 1033 310.5 1004.5 c 128,-1,17 - 312 976 312 976 314 897 c 1,18,-1 - 317 897 l 1,19,20 - 379 1009 379 1009 460.5 1055.5 c 128,-1,21 - 542 1102 542 1102 663 1102 c 0,22,23 - 841 1102 841 1102 923.5 1013.5 c 128,-1,24 - 1006 925 1006 925 1006 721 c 2,25,-1 - 1006 0 l 1,26,-1 - 825 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: o -Encoding: 111 111 82 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 17 - 6 - 11 - 0 - 6 - 0 - 23 - 24 - 8 - 14 - 80 - 89 - 8 - 16 - 3 - 20 - 80 - 89 - 3 - 22 - 160 - 24 - 1 - 144 - 24 - 1 - 128 - 24 - 1 - 112 - 24 - 1 - 96 - 24 - 1 - 80 - 24 - 1 - 48 - 24 - 1 - 223 - 24 - 1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-24" 570 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1220 basechar 0 -AnchorPoint: "Anchor-20" 1139 -70 basechar 0 -AnchorPoint: "Anchor-19" 910 800 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 560 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 542 m 0,0,1 - 1053 258 1053 258 928 119 c 128,-1,2 - 803 -20 803 -20 565 -20 c 0,3,4 - 328 -20 328 -20 207 124.5 c 128,-1,5 - 86 269 86 269 86 542 c 0,6,7 - 86 1102 86 1102 571 1102 c 0,8,9 - 819 1102 819 1102 936 965.5 c 128,-1,10 - 1053 829 1053 829 1053 542 c 0,0,1 -864 542 m 0,11,12 - 864 766 864 766 797.5 867.5 c 128,-1,13 - 731 969 731 969 574 969 c 0,14,15 - 416 969 416 969 345.5 865.5 c 128,-1,16 - 275 762 275 762 275 542 c 0,17,18 - 275 328 275 328 344.5 220.5 c 128,-1,19 - 414 113 414 113 563 113 c 0,20,21 - 725 113 725 113 794.5 217 c 128,-1,22 - 864 321 864 321 864 542 c 0,11,12 -EndSplineSet -EndChar - -StartChar: p -Encoding: 112 112 83 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 24 - 0 - 31 - 17 - 8 - 8 - 9 - 0 - 9 - 38 - 37 - 17 - 4 - 21 - 2 - 21 - 27 - 80 - 89 - 21 - 16 - 12 - 15 - 8 - 27 - 2 - 34 - 80 - 89 - 2 - 22 - 176 - 38 - 1 - 63 - 38 - 1 - 144 - 38 - 1 - 112 - 38 - 1 - 31 - 38 - 1 - 255 - 38 - 1 - 224 - 38 - 1 - 192 - 38 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 880 120 basechar 0 -AnchorPoint: "Anchor-25" 160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1220 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 800 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 -20 1053 -20 655 -20 c 0,2,3 - 405 -20 405 -20 319 168 c 1,4,-1 - 314 168 l 1,5,6 - 318 160 318 160 318 -2 c 2,7,-1 - 318 -425 l 1,8,-1 - 138 -425 l 1,9,-1 - 138 861 l 2,10,11 - 138 1028 138 1028 132 1082 c 1,12,-1 - 306 1082 l 1,13,14 - 307 1078 307 1078 309 1053.5 c 128,-1,15 - 311 1029 311 1029 313.5 978 c 128,-1,16 - 316 927 316 927 316 908 c 1,17,-1 - 320 908 l 1,18,19 - 368 1008 368 1008 447 1054.5 c 128,-1,20 - 526 1101 526 1101 655 1101 c 0,21,22 - 855 1101 855 1101 954 967 c 128,-1,23 - 1053 833 1053 833 1053 546 c 0,0,1 -864 542 m 0,24,25 - 864 768 864 768 803 865 c 128,-1,26 - 742 962 742 962 609 962 c 0,27,28 - 502 962 502 962 441.5 917 c 128,-1,29 - 381 872 381 872 349.5 776.5 c 128,-1,30 - 318 681 318 681 318 528 c 0,31,32 - 318 315 318 315 386 214 c 128,-1,33 - 454 113 454 113 607 113 c 0,34,35 - 741 113 741 113 802.5 211.5 c 128,-1,36 - 864 310 864 310 864 542 c 0,24,25 -EndSplineSet -EndChar - -StartChar: q -Encoding: 113 113 84 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 84 - 23 - 8 - 17 - 17 - 16 - 29 - 3 - 16 - 3 - 36 - 35 - 16 - 27 - 12 - 16 - 8 - 19 - 5 - 0 - 5 - 26 - 80 - 89 - 5 - 16 - 0 - 32 - 80 - 89 - 0 - 22 - 64 - 36 - 1 - 32 - 36 - 1 - 207 - 36 - 1 - 176 - 36 - 1 - 144 - 36 - 1 - 32 - 36 - 1 - 0 - 36 - 1 - 80 - 223 - 36 - 1 - 192 - 36 - 1 - 79 - 36 - 1 - 160 - 36 - 1 - 128 - 36 - 1 - 47 - 36 - 1 - 15 - 36 - 1 - 240 - 36 - 1 - 208 - 36 - 1 - 15 - 36 - 1 - 8 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 910 -300 basechar 0 -AnchorPoint: "Anchor-25" 840 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1220 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 1000 basechar 0 -AnchorPoint: "Anchor-18" 990 1100 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -484 -20 m 0,0,1 - 278 -20 278 -20 182 119 c 128,-1,2 - 86 258 86 258 86 536 c 0,3,4 - 86 1102 86 1102 484 1102 c 0,5,6 - 607 1102 607 1102 687 1058.5 c 128,-1,7 - 767 1015 767 1015 821 914 c 1,8,-1 - 823 914 l 1,9,10 - 823 944 823 944 827 1017.5 c 128,-1,11 - 831 1091 831 1091 835 1096 c 1,12,-1 - 1008 1096 l 1,13,14 - 1001 1037 1001 1037 1001 801 c 2,15,-1 - 1001 -425 l 1,16,-1 - 821 -425 l 1,17,-1 - 821 14 l 1,18,-1 - 825 178 l 1,19,-1 - 823 178 l 1,20,21 - 769 71 769 71 690 25.5 c 128,-1,22 - 611 -20 611 -20 484 -20 c 0,0,1 -821 554 m 0,23,24 - 821 765 821 765 752 867 c 128,-1,25 - 683 969 683 969 532 969 c 0,26,27 - 395 969 395 969 335 867 c 128,-1,28 - 275 765 275 765 275 542 c 0,29,30 - 275 315 275 315 335.5 217 c 128,-1,31 - 396 119 396 119 530 119 c 0,32,33 - 683 119 683 119 752 228 c 128,-1,34 - 821 337 821 337 821 554 c 0,23,24 -EndSplineSet -EndChar - -StartChar: r -Encoding: 114 114 85 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 6 - 19 - 19 - 0 - 0 - 12 - 20 - 21 - 15 - 6 - 10 - 16 - 4 - 15 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 230 0 basechar 0 -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-24" 230 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1220 basechar 0 -AnchorPoint: "Anchor-20" 682 -90 basechar 0 -AnchorPoint: "Anchor-19" 530 1000 basechar 0 -AnchorPoint: "Anchor-18" 640 1100 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -142 0 m 1,0,-1 - 142 830 l 2,1,2 - 142 944 142 944 136 1082 c 1,3,-1 - 306 1082 l 1,4,5 - 314 898 314 898 314 861 c 1,6,-1 - 318 861 l 1,7,8 - 361 1000 361 1000 417 1051 c 128,-1,9 - 473 1102 473 1102 575 1102 c 0,10,11 - 611 1102 611 1102 648 1092 c 1,12,-1 - 648 927 l 1,13,14 - 612 937 612 937 552 937 c 0,15,16 - 440 937 440 937 381 840.5 c 128,-1,17 - 322 744 322 744 322 564 c 2,18,-1 - 322 0 l 1,19,-1 - 142 0 l 1,0,-1 -EndSplineSet -Kerns2: 2021 76 "'kern' Horizontal Kerning lookup 17 subtable" 17 -113 "'kern' Horizontal Kerning lookup 17 subtable" 15 -113 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: s -Encoding: 115 115 86 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 60 - 7 - 6 - 34 - 21 - 28 - 27 - 13 - 0 - 0 - 27 - 21 - 6 - 4 - 43 - 44 - 13 - 34 - 3 - 24 - 24 - 31 - 80 - 89 - 28 - 24 - 16 - 3 - 10 - 80 - 89 - 7 - 3 - 22 - 16 - 44 - 1 - 0 - 44 - 1 - 240 - 44 - 1 - 224 - 44 - 1 - 192 - 44 - 1 - 96 - 44 - 1 - 128 - 44 - 1 - 63 - 44 - 1 - 16 - 44 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 810 120 basechar 0 -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-24" 490 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1170 basechar 0 -AnchorPoint: "Anchor-20" 1024 -90 basechar 0 -AnchorPoint: "Anchor-19" 820 800 basechar 0 -AnchorPoint: "Anchor-18" 861 950 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -950 299 m 0,0,1 - 950 146 950 146 834.5 63 c 128,-1,2 - 719 -20 719 -20 511 -20 c 0,3,4 - 309 -20 309 -20 199.5 46.5 c 128,-1,5 - 90 113 90 113 57 254 c 1,6,-1 - 216 285 l 1,7,8 - 239 198 239 198 311 157.5 c 128,-1,9 - 383 117 383 117 511 117 c 0,10,11 - 648 117 648 117 711.5 159 c 128,-1,12 - 775 201 775 201 775 285 c 0,13,14 - 775 349 775 349 731 389 c 128,-1,15 - 687 429 687 429 589 455 c 2,16,-1 - 460 489 l 2,17,18 - 305 529 305 529 239.5 567.5 c 128,-1,19 - 174 606 174 606 137 661 c 128,-1,20 - 100 716 100 716 100 796 c 0,21,22 - 100 944 100 944 205.5 1021.5 c 128,-1,23 - 311 1099 311 1099 513 1099 c 0,24,25 - 692 1099 692 1099 797.5 1036 c 128,-1,26 - 903 973 903 973 931 834 c 1,27,-1 - 769 814 l 1,28,29 - 754 886 754 886 688.5 924.5 c 128,-1,30 - 623 963 623 963 513 963 c 0,31,32 - 391 963 391 963 333 926 c 128,-1,33 - 275 889 275 889 275 814 c 0,34,35 - 275 768 275 768 299 738 c 128,-1,36 - 323 708 323 708 370 687 c 128,-1,37 - 417 666 417 666 568 629 c 0,38,39 - 711 593 711 593 774 562.5 c 128,-1,40 - 837 532 837 532 873.5 495 c 128,-1,41 - 910 458 910 458 930 409.5 c 128,-1,42 - 950 361 950 361 950 299 c 0,0,1 -EndSplineSet -EndChar - -StartChar: t -Encoding: 116 116 87 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 13 - 20 - 20 - 11 - 15 - 15 - 9 - 4 - 4 - 22 - 21 - 14 - 5 - 8 - 5 - 80 - 89 - 11 - 15 - 9 - 1 - 12 - 3 - 9 - 64 - 8 - 15 - 2 - 18 - 80 - 89 - 2 - 22 - 128 - 22 - 1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,black] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 470 0 basechar 0 -AnchorPoint: "Anchor-25" 380 0 basechar 0 -AnchorPoint: "Anchor-24" 360 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -110 basechar 0 -AnchorPoint: "Anchor-19" 250 1280 basechar 0 -AnchorPoint: "Anchor-18" 501 1100 basechar 0 -AnchorPoint: "Anchor-16" 260 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -554 8 m 1,0,1 - 465 -16 465 -16 372 -16 c 0,2,3 - 156 -16 156 -16 156 229 c 2,4,-1 - 156 951 l 1,5,-1 - 31 951 l 1,6,-1 - 31 1082 l 1,7,-1 - 163 1082 l 1,8,-1 - 216 1324 l 1,9,-1 - 336 1324 l 1,10,-1 - 336 1082 l 1,11,-1 - 536 1082 l 1,12,-1 - 536 951 l 1,13,-1 - 336 951 l 1,14,-1 - 336 268 l 2,15,16 - 336 190 336 190 361.5 158.5 c 128,-1,17 - 387 127 387 127 450 127 c 0,18,19 - 486 127 486 127 554 141 c 1,20,-1 - 554 8 l 1,0,1 -EndSplineSet -EndChar - -StartChar: u -Encoding: 117 117 88 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 59 - 18 - 8 - 8 - 11 - 1 - 25 - 11 - 25 - 28 - 27 - 18 - 5 - 22 - 5 - 80 - 89 - 22 - 22 - 13 - 21 - 9 - 0 - 15 - 208 - 28 - 1 - 192 - 28 - 1 - 176 - 28 - 1 - 240 - 28 - 1 - 176 - 28 - 1 - 255 - 28 - 1 - 224 - 28 - 1 - 208 - 28 - 1 - 192 - 28 - 1 - 176 - 28 - 1 - 160 - 28 - 1 - 112 - 28 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 920 0 basechar 0 -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-24" 500 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1170 basechar 0 -AnchorPoint: "Anchor-20" 1139 -90 basechar 0 -AnchorPoint: "Anchor-19" 910 1000 basechar 0 -AnchorPoint: "Anchor-18" 980 1100 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -314 1082 m 1,0,-1 - 314 396 l 2,1,2 - 314 289 314 289 335 230 c 128,-1,3 - 356 171 356 171 402 145 c 128,-1,4 - 448 119 448 119 537 119 c 0,5,6 - 667 119 667 119 742 208 c 128,-1,7 - 817 297 817 297 817 455 c 2,8,-1 - 817 1082 l 1,9,-1 - 997 1082 l 1,10,-1 - 997 231 l 2,11,12 - 997 42 997 42 1003 0 c 1,13,-1 - 833 0 l 1,14,15 - 832 5 832 5 831 27 c 128,-1,16 - 830 49 830 49 828.5 77.5 c 128,-1,17 - 827 106 827 106 825 185 c 1,18,-1 - 822 185 l 1,19,20 - 760 73 760 73 678.5 26.5 c 128,-1,21 - 597 -20 597 -20 476 -20 c 0,22,23 - 298 -20 298 -20 215.5 68.5 c 128,-1,24 - 133 157 133 157 133 361 c 2,25,-1 - 133 1082 l 1,26,-1 - 314 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: v -Encoding: 118 118 89 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 248 - 1 - 0 - 6 - 9 - 10 - 3 - 2 - 2 - 6 - 10 - 3 - 11 - 12 - 9 - 2 - 15 - 6 - 1 - 21 - 155 - 12 - 1 - 132 - 12 - 1 - 96 - 12 - 1 - 84 - 12 - 1 - 68 - 12 - 1 - 32 - 12 - 1 - 20 - 12 - 1 - 4 - 12 - 1 - 224 - 12 - 1 - 212 - 12 - 1 - 196 - 12 - 1 - 160 - 12 - 1 - 148 - 12 - 1 - 132 - 12 - 1 - 96 - 12 - 1 - 84 - 12 - 1 - 68 - 12 - 1 - 20 - 12 - 1 - 4 - 12 - 1 - 103 - 212 - 12 - 1 - 196 - 12 - 1 - 148 - 12 - 1 - 132 - 12 - 1 - 84 - 12 - 1 - 68 - 12 - 1 - 20 - 12 - 1 - 4 - 12 - 1 - 219 - 12 - 1 - 196 - 12 - 1 - 155 - 12 - 1 - 132 - 12 - 1 - 91 - 12 - 1 - 68 - 12 - 1 - 27 - 12 - 1 - 4 - 12 - 1 - 219 - 12 - 1 - 196 - 12 - 1 - 155 - 12 - 1 - 139 - 12 - 1 - 91 - 12 - 1 - 75 - 12 - 1 - 27 - 12 - 1 - 11 - 12 - 1 - 55 - 219 - 12 - 1 - 203 - 12 - 1 - 155 - 12 - 1 - 139 - 12 - 1 - 91 - 12 - 1 - 75 - 12 - 1 - 63 - 12 - 1 - 32 - 12 - 1 - 20 - 12 - 1 - 4 - 12 - 1 - 224 - 12 - 1 - 212 - 12 - 1 - 196 - 12 - 1 - 160 - 12 - 1 - 148 - 12 - 1 - 132 - 12 - 1 - 96 - 12 - 1 - 84 - 12 - 1 - 68 - 12 - 1 - 32 - 12 - 1 - 20 - 12 - 1 - 4 - 12 - 1 - 212 - 12 - 1 - 196 - 12 - 1 - 160 - 12 - 1 - 148 - 12 - 1 - 132 - 12 - 1 - 96 - 12 - 1 - 2 - 80 - 12 - 1 - 47 - 12 - 1 - 16 - 12 - 1 - 0 - 12 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 510 0 basechar 0 -AnchorPoint: "Anchor-25" 440 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1200 basechar 0 -AnchorPoint: "Anchor-20" 1024 -80 basechar 0 -AnchorPoint: "Anchor-19" 860 1000 basechar 0 -AnchorPoint: "Anchor-18" 950 1100 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -613 0 m 1,0,-1 - 400 0 l 1,1,-1 - 7 1082 l 1,2,-1 - 199 1082 l 1,3,-1 - 437 378 l 2,4,5 - 450 338 450 338 506 141 c 1,6,-1 - 541 258 l 1,7,-1 - 580 376 l 1,8,-1 - 826 1082 l 1,9,-1 - 1017 1082 l 1,10,-1 - 613 0 l 1,0,-1 -EndSplineSet -Kerns2: 17 -152 "'kern' Horizontal Kerning lookup 17 subtable" 15 -152 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: w -Encoding: 119 119 90 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 1 - 0 - 17 - 7 - 6 - 12 - 15 - 14 - 3 - 19 - 9 - 12 - 3 - 17 - 3 - 20 - 8 - 7 - 20 - 1 - 20 - 22 - 8 - 8 - 1 - 11 - 8 - 21 - 3 - 14 - 19 - 3 - 8 - 15 - 1 - 12 - 17 - 3 - 7 - 21 - 118 - 22 - 1 - 102 - 22 - 1 - 84 - 22 - 1 - 70 - 22 - 1 - 54 - 22 - 1 - 36 - 22 - 1 - 22 - 22 - 1 - 4 - 22 - 1 - 244 - 22 - 1 - 230 - 22 - 1 - 196 - 22 - 1 - 178 - 22 - 1 - 164 - 22 - 1 - 150 - 22 - 1 - 134 - 22 - 1 - 102 - 22 - 1 - 84 - 22 - 1 - 68 - 22 - 1 - 54 - 22 - 1 - 20 - 22 - 1 - 6 - 22 - 1 - 105 - 246 - 22 - 1 - 226 - 22 - 1 - 212 - 22 - 1 - 198 - 22 - 1 - 182 - 22 - 1 - 150 - 22 - 1 - 132 - 22 - 1 - 116 - 22 - 1 - 102 - 22 - 1 - 70 - 22 - 1 - 54 - 22 - 1 - 36 - 22 - 1 - 22 - 22 - 1 - 6 - 22 - 1 - 244 - 22 - 1 - 230 - 22 - 1 - 182 - 22 - 1 - 164 - 22 - 1 - 148 - 22 - 1 - 134 - 22 - 1 - 105 - 22 - 1 - 86 - 22 - 1 - 68 - 22 - 1 - 54 - 22 - 1 - 6 - 22 - 1 - 228 - 22 - 1 - 214 - 22 - 1 - 196 - 22 - 1 - 182 - 22 - 1 - 166 - 22 - 1 - 137 - 22 - 1 - 114 - 22 - 1 - 1 - 96 - 22 - 1 - 84 - 22 - 1 - 36 - 22 - 1 - 4 - 22 - 1 - 56 - 244 - 22 - 1 - 212 - 22 - 1 - 196 - 22 - 1 - 164 - 22 - 1 - 128 - 22 - 1 - 116 - 22 - 1 - 75 - 22 - 1 - 48 - 22 - 1 - 36 - 22 - 1 - 20 - 22 - 1 - 251 - 22 - 1 - 196 - 22 - 1 - 160 - 22 - 1 - 148 - 22 -NPUSHB - 48 - 1 - 123 - 22 - 1 - 100 - 22 - 1 - 68 - 22 - 1 - 52 - 22 - 1 - 27 - 22 - 1 - 240 - 22 - 1 - 228 - 22 - 1 - 203 - 22 - 1 - 180 - 22 - 1 - 148 - 22 - 1 - 132 - 22 - 1 - 100 - 22 - 1 - 63 - 22 - 1 - 2 - 16 - 22 - 1 - 0 - 22 - 1 - 8 -SDB -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SLOOP -SHP[rp1] -MIAP[rnd] -SLOOP -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SDB -DELTAP1 -SRP1 -SHP[rp1] -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 1070 0 basechar 0 -AnchorPoint: "Anchor-25" 1000 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1170 basechar 0 -AnchorPoint: "Anchor-20" 1479 -90 basechar 0 -AnchorPoint: "Anchor-19" 1350 1000 basechar 0 -AnchorPoint: "Anchor-18" 1420 1100 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1174 0 m 1,0,-1 - 965 0 l 1,1,-1 - 776 765 l 1,2,-1 - 740 934 l 1,3,4 - 731 889 731 889 712 804.5 c 128,-1,5 - 693 720 693 720 508 0 c 1,6,-1 - 300 0 l 1,7,-1 - -3 1082 l 1,8,-1 - 175 1082 l 1,9,-1 - 358 347 l 2,10,11 - 365 323 365 323 401 149 c 1,12,-1 - 418 223 l 1,13,-1 - 644 1082 l 1,14,-1 - 837 1082 l 1,15,-1 - 1026 339 l 1,16,-1 - 1072 149 l 1,17,-1 - 1103 288 l 1,18,-1 - 1308 1082 l 1,19,-1 - 1484 1082 l 1,20,-1 - 1174 0 l 1,0,-1 -EndSplineSet -Kerns2: 17 -113 "'kern' Horizontal Kerning lookup 17 subtable" 15 -113 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: x -Encoding: 120 120 91 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 160 - 0 - 11 - 8 - 9 - 10 - 4 - 1 - 7 - 6 - 5 - 2 - 3 - 3 - 5 - 7 - 9 - 11 - 5 - 13 - 12 - 132 - 13 - 1 - 118 - 13 - 1 - 68 - 13 - 84 - 13 - 100 - 13 - 3 - 54 - 13 - 1 - 36 - 13 - 1 - 22 - 13 - 1 - 4 - 13 - 1 - 246 - 13 - 1 - 228 - 13 - 1 - 214 - 13 - 1 - 196 - 13 - 1 - 182 - 13 - 1 - 164 - 13 - 1 - 118 - 13 - 134 - 13 - 150 - 13 - 3 - 100 - 13 - 1 - 6 - 13 - 22 - 13 - 38 - 13 - 70 - 13 - 86 - 13 - 5 - 103 - 6 - 13 - 70 - 13 - 86 - 13 - 134 - 13 - 150 - 13 - 198 - 13 - 214 - 13 - 230 - 13 - 8 - 153 - 13 - 217 - 13 - 2 - 100 - 13 - 1 - 86 - 13 - 1 - 68 - 13 - 1 - 54 - 13 - 1 - 36 - 13 - 1 - 22 - 13 - 1 - 4 - 13 - 1 - 214 - 13 - 230 - 13 - 246 - 13 - 3 - 196 - 13 - 1 - 6 - 13 - 38 - 13 - 54 - 13 - 70 - 13 - 4 - 55 - 102 - 13 - 166 - 13 - 182 - 13 - 230 - 13 - 246 - 13 - 5 - 13 -PUSHW_1 - -64 -NPUSHB - 54 - 61 - 66 - 72 - 57 - 13 - 1 - 34 - 13 - 1 - 1 - 0 - 13 - 16 - 13 - 2 - 244 - 13 - 1 - 192 - 13 - 208 - 13 - 224 - 13 - 3 - 180 - 13 - 1 - 128 - 13 - 144 - 13 - 160 - 13 - 3 - 116 - 13 - 1 - 96 - 13 - 1 - 84 - 13 - 1 - 64 - 13 - 1 - 52 - 13 - 1 - 32 - 13 - 1 - 13 -PUSHW_1 - -64 -NPUSHB - 34 - 18 - 24 - 72 - 160 - 13 - 1 - 2 - 0 - 13 - 16 - 13 - 80 - 13 - 112 - 13 - 128 - 13 - 144 - 13 - 6 - 7 - 10 - 4 - 1 - 4 - 7 - 3 - 2 - 8 - 6 - 15 - 0 - 2 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SVTCA[x-axis] -SDB -DELTAP1 -SDS -DELTAP1 -CALL -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -SDS -DELTAP3 -DELTAP3 -CALL -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 820 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1180 basechar 0 -AnchorPoint: "Anchor-20" 1024 -90 basechar 0 -AnchorPoint: "Anchor-19" 820 1000 basechar 0 -AnchorPoint: "Anchor-18" 880 1100 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -801 0 m 1,0,-1 - 510 444 l 1,1,-1 - 217 0 l 1,2,-1 - 23 0 l 1,3,-1 - 408 556 l 1,4,-1 - 41 1082 l 1,5,-1 - 240 1082 l 1,6,-1 - 510 661 l 1,7,-1 - 778 1082 l 1,8,-1 - 979 1082 l 1,9,-1 - 612 558 l 1,10,-1 - 1002 0 l 1,11,-1 - 801 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: y -Encoding: 121 121 92 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 19 - 8 - 15 - 17 - 18 - 10 - 9 - 9 - 3 - 15 - 18 - 4 - 24 - 23 - 8 - 19 - 15 - 19 - 23 - 17 - 9 - 15 - 0 - 5 - 80 - 89 - 0 - 27 - 146 - 24 - 1 - 130 - 24 - 1 - 116 - 24 - 1 - 100 - 24 - 1 - 82 - 24 - 1 - 66 - 24 - 1 - 52 - 24 - 1 - 36 - 24 - 1 - 18 - 24 - 1 - 2 - 24 - 1 - 244 - 24 - 1 - 228 - 24 - 1 - 210 - 24 - 1 - 194 - 24 - 1 - 180 - 24 - 1 - 164 - 24 - 1 - 146 - 24 - 1 - 130 - 24 - 1 - 116 - 24 - 1 - 100 - 24 - 1 - 86 - 24 - 1 - 66 - 24 - 1 - 52 - 24 - 1 - 36 - 24 - 1 - 22 - 24 - 1 - 2 - 24 - 1 - 103 - 244 - 24 - 1 - 228 - 24 - 1 - 214 - 24 - 1 - 194 - 24 - 1 - 180 - 24 - 1 - 164 - 24 - 1 - 150 - 24 - 1 - 130 - 24 - 1 - 116 - 24 - 1 - 100 - 24 - 1 - 86 - 24 - 1 - 66 - 24 - 1 - 52 - 24 - 1 - 36 - 24 - 1 - 22 - 24 - 1 - 2 - 24 - 1 - 244 - 24 - 1 - 228 - 24 - 1 - 214 - 24 - 1 - 194 - 24 - 1 - 1 - 176 - 24 - 1 - 160 - 24 - 1 - 148 - 24 - 1 - 132 - 24 - 1 - 112 - 24 - 1 - 96 - 24 - 1 - 84 - 24 - 1 - 68 - 24 - 1 - 48 - 24 - 1 - 32 - 24 - 1 - 20 - 24 - 1 - 4 - 24 - 1 - 240 - 24 - 1 - 224 - 24 - 1 - 212 - 24 - 1 - 196 - 24 - 1 - 176 - 24 - 1 - 160 - 24 - 1 - 148 - 24 - 1 - 132 - 24 - 1 - 112 - 24 - 1 - 96 - 24 - 1 - 84 - 24 - 1 - 68 - 24 - 1 - 48 - 24 - 1 - 32 - 24 - 1 - 20 - 24 - 1 - 4 - 24 - 1 - 55 - 224 - 24 -NPUSHB - 90 - 1 - 212 - 24 - 1 - 196 - 24 - 1 - 160 - 24 - 1 - 148 - 24 - 1 - 132 - 24 - 1 - 96 - 24 - 1 - 84 - 24 - 1 - 68 - 24 - 1 - 32 - 24 - 1 - 20 - 24 - 1 - 4 - 24 - 1 - 224 - 24 - 1 - 212 - 24 - 1 - 196 - 24 - 1 - 160 - 24 - 1 - 148 - 24 - 1 - 132 - 24 - 1 - 96 - 24 - 1 - 2 - 80 - 24 - 1 - 48 - 24 - 1 - 32 - 24 - 1 - 0 - 24 - 1 - 192 - 24 - 1 - 144 - 24 - 1 - 128 - 24 - 1 - 80 - 24 - 1 - 47 - 24 - 1 - 16 - 24 - 1 - 0 - 24 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1170 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-19" 860 1000 basechar 0 -AnchorPoint: "Anchor-18" 960 1100 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 460 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -191 -425 m 0,0,1 - 117 -425 117 -425 67 -414 c 1,2,-1 - 67 -279 l 1,3,4 - 105 -285 105 -285 151 -285 c 0,5,6 - 319 -285 319 -285 417 -38 c 2,7,-1 - 434 5 l 1,8,-1 - 5 1082 l 1,9,-1 - 197 1082 l 1,10,-1 - 425 484 l 2,11,12 - 430 470 430 470 437 450.5 c 128,-1,13 - 444 431 444 431 482 320 c 128,-1,14 - 520 209 520 209 523 196 c 1,15,-1 - 593 393 l 1,16,-1 - 830 1082 l 1,17,-1 - 1020 1082 l 1,18,-1 - 604 0 l 2,19,20 - 537 -173 537 -173 479 -257.5 c 128,-1,21 - 421 -342 421 -342 350.5 -383.5 c 128,-1,22 - 280 -425 280 -425 191 -425 c 0,0,1 -EndSplineSet -Kerns2: 17 -152 "'kern' Horizontal Kerning lookup 17 subtable" 15 -152 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: z -Encoding: 122 122 93 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 252 - 2 - 6 - 7 - 1 - 1 - 3 - 6 - 8 - 4 - 11 - 10 - 6 - 3 - 4 - 3 - 80 - 89 - 4 - 15 - 1 - 7 - 0 - 7 - 80 - 89 - 0 - 21 - 212 - 11 - 1 - 196 - 11 - 1 - 180 - 11 - 1 - 164 - 11 - 1 - 148 - 11 - 1 - 132 - 11 - 1 - 116 - 11 - 1 - 100 - 11 - 1 - 84 - 11 - 1 - 64 - 11 - 1 - 52 - 11 - 1 - 32 - 11 - 1 - 20 - 11 - 1 - 0 - 11 - 1 - 244 - 11 - 1 - 224 - 11 - 1 - 212 - 11 - 1 - 192 - 11 - 1 - 180 - 11 - 1 - 164 - 11 - 1 - 148 - 11 - 1 - 132 - 11 - 1 - 116 - 11 - 1 - 100 - 11 - 1 - 84 - 11 - 1 - 68 - 11 - 1 - 52 - 11 - 1 - 36 - 11 - 1 - 4 - 11 - 1 - 228 - 11 - 1 - 196 - 11 - 1 - 180 - 11 - 1 - 160 - 11 - 1 - 148 - 11 - 1 - 128 - 11 - 1 - 116 - 11 - 1 - 100 - 11 - 1 - 84 - 11 - 1 - 68 - 11 - 1 - 52 - 11 - 1 - 36 - 11 - 1 - 20 - 11 - 1 - 4 - 11 - 1 - 55 - 244 - 11 - 1 - 228 - 11 - 1 - 212 - 11 - 1 - 196 - 11 - 1 - 164 - 11 - 1 - 132 - 11 - 1 - 100 - 11 - 1 - 68 - 11 - 1 - 4 - 11 - 1 - 244 - 11 - 1 - 228 - 11 - 1 - 212 - 11 - 1 - 196 - 11 - 1 - 180 - 11 - 1 - 164 - 11 - 1 - 148 - 11 - 1 - 132 - 11 - 1 - 100 - 11 - 1 - 68 - 11 - 1 - 36 - 11 - 1 - 4 - 11 - 1 - 224 - 11 - 1 - 2 - 208 - 11 - 1 - 192 - 11 - 1 - 176 - 11 - 1 - 160 - 11 - 1 - 144 - 11 - 1 - 112 - 11 - 1 - 80 - 11 - 1 - 32 - 11 - 1 - 0 - 11 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 830 0 basechar 0 -AnchorPoint: "Anchor-25" 740 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1160 basechar 0 -AnchorPoint: "Anchor-20" 1024 -90 basechar 0 -AnchorPoint: "Anchor-19" 800 1000 basechar 0 -AnchorPoint: "Anchor-18" 880 1100 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -83 0 m 1,0,-1 - 83 137 l 1,1,-1 - 688 943 l 1,2,-1 - 117 943 l 1,3,-1 - 117 1082 l 1,4,-1 - 901 1082 l 1,5,-1 - 901 945 l 1,6,-1 - 295 139 l 1,7,-1 - 922 139 l 1,8,-1 - 922 0 l 1,9,-1 - 83 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: braceleft -Encoding: 123 123 94 -Width: 684 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 58 - 22 - 30 - 30 - 11 - 3 - 17 - 34 - 3 - 7 - 4 - 36 - 37 - 25 - 8 - 7 - 8 - 7 - 245 - 89 - 15 - 8 - 79 - 8 - 2 - 47 - 8 - 191 - 8 - 207 - 8 - 3 - 15 - 8 - 47 - 8 - 79 - 8 - 239 - 8 - 4 - 11 - 3 - 8 - 8 - 15 - 0 - 15 - 18 - 245 - 89 - 15 - 0 - 0 - 33 - 245 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP3 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -513 -425 m 2,0,1 - 386 -425 386 -425 317.5 -348 c 128,-1,2 - 249 -271 249 -271 249 -132 c 2,3,-1 - 249 229 l 2,4,5 - 249 346 249 346 196.5 403.5 c 128,-1,6 - 144 461 144 461 34 466 c 1,7,-1 - 34 593 l 1,8,9 - 143 597 143 597 196 654.5 c 128,-1,10 - 249 712 249 712 249 829 c 2,11,-1 - 249 1191 l 2,12,13 - 249 1332 249 1332 315.5 1408 c 128,-1,14 - 382 1484 382 1484 513 1484 c 2,15,-1 - 648 1484 l 1,16,-1 - 648 1355 l 1,17,-1 - 585 1355 l 2,18,19 - 494 1355 494 1355 455.5 1301.5 c 128,-1,20 - 417 1248 417 1248 417 1140 c 2,21,-1 - 417 784 l 2,22,23 - 417 690 417 690 364 621.5 c 128,-1,24 - 311 553 311 553 223 532 c 1,25,-1 - 223 530 l 1,26,27 - 312 509 312 509 364.5 441 c 128,-1,28 - 417 373 417 373 417 276 c 2,29,-1 - 417 -81 l 2,30,31 - 417 -187 417 -187 455.5 -241.5 c 128,-1,32 - 494 -296 494 -296 585 -296 c 2,33,-1 - 648 -296 l 1,34,-1 - 648 -425 l 1,35,-1 - 513 -425 l 2,0,1 -EndSplineSet -EndChar - -StartChar: bar -Encoding: 124 124 95 -Width: 532 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 232 - 0 - 4 - 5 - 1 - 0 - 0 - 132 - 5 - 1 - 116 - 5 - 1 - 96 - 5 - 1 - 84 - 5 - 1 - 68 - 5 - 1 - 52 - 5 - 1 - 36 - 5 - 1 - 224 - 5 - 1 - 212 - 5 - 1 - 196 - 5 - 1 - 180 - 5 - 1 - 164 - 5 - 1 - 132 - 5 - 1 - 116 - 5 - 1 - 100 - 5 - 1 - 32 - 5 - 1 - 20 - 5 - 1 - 4 - 5 - 1 - 104 - 244 - 5 - 1 - 228 - 5 - 1 - 180 - 5 - 1 - 112 - 5 - 1 - 100 - 5 - 1 - 84 - 5 - 1 - 68 - 5 - 1 - 52 - 5 - 1 - 192 - 5 - 1 - 176 - 5 - 1 - 164 - 5 - 1 - 148 - 5 - 1 - 132 - 5 - 1 - 116 - 5 - 1 - 59 - 5 - 1 - 43 - 5 - 1 - 16 - 5 - 1 - 0 - 5 - 1 - 2 - 240 - 5 - 1 - 224 - 5 - 1 - 208 - 5 - 1 - 192 - 5 - 1 - 127 - 5 - 1 - 111 - 5 - 1 - 80 - 5 - 1 - 64 - 5 - 1 - 48 - 5 - 1 - 32 - 5 - 1 - 16 - 5 - 1 - 0 - 5 - 1 - 56 - 207 - 5 - 1 - 176 - 5 - 1 - 160 - 5 - 1 - 112 - 5 - 1 - 96 - 5 - 1 - 31 - 5 - 1 - 0 - 5 - 1 - 240 - 5 - 1 - 224 - 5 - 1 - 160 - 5 - 1 - 80 - 5 - 1 - 64 - 5 - 1 - 48 - 5 - 1 - 32 - 5 - 1 - 239 - 5 - 1 - 223 - 5 - 1 - 207 - 5 - 1 - 191 - 5 - 1 - 175 - 5 - 1 - 144 - 5 - 1 - 128 - 5 - 1 - 112 - 5 - 1 - 64 - 5 - 1 - 47 - 5 - 1 - 31 - 5 - 1 - 15 - 5 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -183 -434 m 1,0,-1 - 183 1484 l 1,1,-1 - 349 1484 l 1,2,-1 - 349 -434 l 1,3,-1 - 183 -434 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: braceright -Encoding: 125 125 96 -Width: 684 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 58 - 11 - 22 - 22 - 4 - 29 - 26 - 29 - 35 - 16 - 4 - 36 - 37 - 7 - 25 - 26 - 25 - 26 - 245 - 89 - 15 - 25 - 79 - 25 - 2 - 47 - 25 - 191 - 25 - 207 - 25 - 3 - 15 - 25 - 47 - 25 - 79 - 25 - 239 - 25 - 4 - 11 - 3 - 25 - 25 - 17 - 34 - 34 - 35 - 245 - 89 - 34 - 27 - 17 - 16 - 245 - 89 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP3 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -94 -296 m 2,0,1 - 185 -296 185 -296 224.5 -241.5 c 128,-1,2 - 264 -187 264 -187 264 -81 c 2,3,-1 - 264 276 l 2,4,5 - 264 374 264 374 316 442 c 128,-1,6 - 368 510 368 510 457 530 c 1,7,-1 - 457 532 l 1,8,9 - 371 552 371 552 317.5 619.5 c 128,-1,10 - 264 687 264 687 264 784 c 2,11,-1 - 264 1140 l 2,12,13 - 264 1248 264 1248 224.5 1301.5 c 128,-1,14 - 185 1355 185 1355 94 1355 c 2,15,-1 - 34 1355 l 1,16,-1 - 34 1484 l 1,17,-1 - 166 1484 l 2,18,19 - 297 1484 297 1484 363.5 1408 c 128,-1,20 - 430 1332 430 1332 430 1191 c 2,21,-1 - 430 829 l 2,22,23 - 430 713 430 713 483 655 c 128,-1,24 - 536 597 536 597 647 593 c 1,25,-1 - 647 466 l 1,26,27 - 535 462 535 462 482.5 404 c 128,-1,28 - 430 346 430 346 430 229 c 2,29,-1 - 430 -132 l 2,30,31 - 430 -270 430 -270 361.5 -347.5 c 128,-1,32 - 293 -425 293 -425 166 -425 c 2,33,-1 - 34 -425 l 1,34,-1 - 34 -296 l 1,35,-1 - 94 -296 l 2,0,1 -EndSplineSet -EndChar - -StartChar: asciitilde -Encoding: 126 126 97 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 8 - 19 - 23 - 24 - 0 - 17 - 173 - 89 - 8 -PUSHW_1 - -64 -PUSHB_5 - 38 - 60 - 72 - 8 - 0 -PUSHW_1 - -64 -PUSHB_4 - 23 - 28 - 72 - 0 -PUSHW_1 - -64 -PUSHB_4 - 14 - 20 - 72 - 0 -PUSHW_1 - -64 -NPUSHB - 44 - 9 - 12 - 72 - 0 - 64 - 19 - 64 - 41 - 60 - 72 - 19 - 11 - 11 - 5 - 173 - 89 - 31 - 11 - 79 - 11 - 159 - 11 - 3 - 111 - 11 - 127 - 11 - 159 - 11 - 175 - 11 - 207 - 11 - 239 - 11 - 255 - 11 - 7 - 11 - 64 - 9 - 13 - 72 - 11 -SVTCA[y-axis] -MDAP[rnd] -CALL -DELTAP1 -DELTAP2 -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SMD -MDRP[rp0,min,rnd,black] -CALL -CALL -CALL -MDRP[rnd,grey] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -844 553 m 0,0,1 - 775 553 775 553 702.5 575 c 128,-1,2 - 630 597 630 597 557 623 c 0,3,4 - 428 668 428 668 340 668 c 0,5,6 - 273 668 273 668 215 647.5 c 128,-1,7 - 157 627 157 627 92 580 c 1,8,-1 - 92 723 l 1,9,10 - 203 807 203 807 355 807 c 0,11,12 - 407 807 407 807 470.5 794 c 128,-1,13 - 534 781 534 781 664 735 c 0,14,15 - 695 723 695 723 755 706.5 c 128,-1,16 - 815 690 815 690 860 690 c 0,17,18 - 990 690 990 690 1104 782 c 1,19,-1 - 1104 633 l 1,20,21 - 1046 591 1046 591 987.5 572 c 128,-1,22 - 929 553 929 553 844 553 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni00A0 -Encoding: 160 160 98 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 3 32 N 1 0 0 1 0 0 2 -EndChar - -StartChar: exclamdown -Encoding: 161 161 99 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 2 - 3 - 3 - 5 - 6 - 6 - 8 - 9 - 0 - 6 - 64 - 7 - 6 - 156 - 91 - 7 - 15 - 6 - 3 - 1 - 9 - 3 - 144 - 9 - 1 - 130 - 9 - 1 - 114 - 9 - 1 - 96 - 9 - 1 - 82 - 9 - 1 - 66 - 9 - 1 - 50 - 9 - 1 - 34 - 9 - 1 - 18 - 9 - 1 - 2 - 9 - 1 - 242 - 9 - 1 - 226 - 9 - 1 - 208 - 9 - 1 - 194 - 9 - 1 - 178 - 9 - 1 - 162 - 9 - 1 - 146 - 9 - 1 - 130 - 9 - 1 - 114 - 9 - 1 - 100 - 9 - 1 - 84 - 9 - 1 - 66 - 9 - 1 - 50 - 9 - 1 - 34 - 9 - 1 - 18 - 9 - 1 - 2 - 9 - 1 - 103 - 242 - 9 - 1 - 226 - 9 - 1 - 212 - 9 - 1 - 196 - 9 - 1 - 180 - 9 - 1 - 166 - 9 - 1 - 150 - 9 - 1 - 132 - 9 - 1 - 118 - 9 - 1 - 98 - 9 - 1 - 82 - 9 - 1 - 68 - 9 - 1 - 52 - 9 - 1 - 36 - 9 - 1 - 22 - 9 - 1 - 6 - 9 - 1 - 246 - 9 - 1 - 210 - 9 - 1 - 194 - 9 - 1 - 1 - 176 - 9 - 1 - 160 - 9 - 1 - 144 - 9 - 1 - 132 - 9 - 1 - 116 - 9 - 1 - 100 - 9 - 1 - 64 - 9 - 1 - 48 - 9 - 1 - 32 - 9 - 1 - 16 - 9 - 1 - 0 - 9 - 1 - 244 - 9 - 1 - 228 - 9 - 1 - 212 - 9 - 1 - 176 - 9 - 1 - 160 - 9 - 1 - 148 - 9 - 1 - 132 - 9 - 1 - 116 - 9 - 1 - 100 - 9 - 1 - 84 - 9 - 1 - 68 - 9 - 1 - 32 - 9 - 1 - 16 - 9 - 1 - 4 - 9 - 1 - 55 - 244 - 9 - 1 - 228 - 9 - 1 - 180 - 9 - 1 - 144 - 9 - 1 - 128 - 9 - 1 - 116 - 9 - 1 - 100 - 9 -NPUSHB - 66 - 1 - 84 - 9 - 1 - 27 - 9 - 1 - 0 - 9 - 1 - 240 - 9 - 1 - 228 - 9 - 1 - 212 - 9 - 1 - 196 - 9 - 1 - 132 - 9 - 1 - 116 - 9 - 1 - 100 - 9 - 1 - 84 - 9 - 1 - 68 - 9 - 1 - 52 - 9 - 1 - 244 - 9 - 1 - 228 - 9 - 1 - 212 - 9 - 1 - 164 - 9 - 1 - 100 - 9 - 1 - 84 - 9 - 1 - 64 - 9 - 1 - 2 - 15 - 9 - 1 - 7 -SDB -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,white] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -266 685 m 1,0,-1 - 414 685 l 1,1,-1 - 438 -327 l 1,2,-1 - 242 -327 l 1,3,-1 - 266 685 l 1,0,-1 -440 1082 m 1,4,-1 - 440 881 l 1,5,-1 - 246 881 l 1,6,-1 - 246 1082 l 1,7,-1 - 440 1082 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: cent -Encoding: 162 162 100 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 23 - 22 - 22 - 4 - 19 - 8 - 8 - 16 - 9 - 9 - 13 - 3 - 3 - 4 - 29 - 13 - 4 - 13 - 33 - 32 - 19 - 26 - 80 - 89 - 23 - 16 - 0 - 19 - 192 - 19 - 208 - 19 - 3 - 19 - 3 - 19 - 64 - 17 - 3 - 10 - 3 - 7 - 7 - 0 - 80 - 89 - 7 - 8 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,black] -SDS -SDB -DELTAP1 -SHP[rp2] -SHP[rp2] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -596 277 m 0,0,1 - 692 277 692 277 756.5 329 c 128,-1,2 - 821 381 821 381 836 489 c 1,3,-1 - 1018 477 l 1,4,5 - 999 333 999 333 904 242 c 128,-1,6 - 809 151 809 151 662 137 c 1,7,-1 - 662 -31 l 1,8,-1 - 538 -31 l 1,9,-1 - 538 137 l 1,10,11 - 339 155 339 155 237 297.5 c 128,-1,12 - 135 440 135 440 135 697 c 0,13,14 - 135 950 135 950 237 1093.5 c 128,-1,15 - 339 1237 339 1237 538 1254 c 1,16,-1 - 538 1409 l 1,17,-1 - 662 1409 l 1,18,-1 - 662 1254 l 1,19,20 - 805 1239 805 1239 895 1156 c 128,-1,21 - 985 1073 985 1073 1012 934 c 1,22,-1 - 827 920 l 1,23,24 - 813 1010 813 1010 756 1063 c 128,-1,25 - 699 1116 699 1116 594 1116 c 0,26,27 - 451 1116 451 1116 387 1021 c 128,-1,28 - 323 926 323 926 323 701 c 0,29,30 - 323 485 323 485 391 381 c 128,-1,31 - 459 277 459 277 596 277 c 0,0,1 -EndSplineSet -EndChar - -StartChar: sterling -Encoding: 163 163 101 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 84 - 34 - 11 - 4 - 20 - 19 - 28 - 19 - 0 - 27 - 31 - 31 - 12 - 8 - 8 - 4 - 37 - 0 - 4 - 0 - 38 - 39 - 30 - 9 - 12 - 9 - 81 - 89 - 27 - 15 - 12 - 31 - 12 - 175 - 12 - 3 - 15 - 12 - 63 - 12 - 111 - 12 - 127 - 12 - 159 - 12 - 175 - 12 - 207 - 12 - 223 - 12 - 8 - 8 - 3 - 12 - 64 - 37 - 42 - 72 - 12 - 64 - 27 - 32 - 72 - 12 - 12 - 34 - 16 - 16 - 23 - 115 - 89 - 20 - 16 - 7 - 5 - 34 - 4 - 34 - 116 - 89 - 37 - 4 - 24 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -CALL -SDS -SDB -DELTAP1 -DELTAP2 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1104 311 m 1,0,1 - 1087 161 1087 161 999 80.5 c 128,-1,2 - 911 0 911 0 767 0 c 2,3,-1 - 69 0 l 1,4,-1 - 69 154 l 1,5,6 - 158 200 158 200 201 280 c 128,-1,7 - 244 360 244 360 244 481 c 2,8,-1 - 244 625 l 1,9,-1 - 58 625 l 1,10,-1 - 58 754 l 1,11,-1 - 244 754 l 1,12,-1 - 244 1034 l 2,13,14 - 244 1229 244 1229 347 1329.5 c 128,-1,15 - 450 1430 450 1430 646 1430 c 0,16,17 - 793 1430 793 1430 893 1369.5 c 128,-1,18 - 993 1309 993 1309 1027 1200 c 1,19,-1 - 853 1143 l 1,20,21 - 832 1207 832 1207 776.5 1244.5 c 128,-1,22 - 721 1282 721 1282 650 1282 c 0,23,24 - 536 1282 536 1282 480 1224.5 c 128,-1,25 - 424 1167 424 1167 424 1042 c 2,26,-1 - 424 754 l 1,27,-1 - 832 754 l 1,28,-1 - 832 625 l 1,29,-1 - 424 625 l 1,30,-1 - 424 499 l 2,31,32 - 424 380 424 380 378 287 c 128,-1,33 - 332 194 332 194 255 153 c 1,34,-1 - 738 153 l 2,35,36 - 912 153 912 153 941 329 c 1,37,-1 - 1104 311 l 1,0,1 -EndSplineSet -EndChar - -StartChar: currency -Encoding: 164 164 102 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 28 - 25 - 3 - 0 - 34 - 17 - 11 - 14 - 0 - 14 - 40 - 41 - 15 - 41 - 1 - 11 - 3 - 21 - 31 - 176 - 89 - 24 - 18 - 21 - 7 - 64 - 7 - 37 - 176 - 89 - 10 - 4 - 7 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -SHP[rp2] -SHP[rp2] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -137 684 m 256,0,1 - 137 822 137 822 215 936 c 1,2,-1 - 115 1036 l 1,3,-1 - 219 1139 l 1,4,-1 - 318 1038 l 1,5,6 - 432 1120 432 1120 572 1120 c 0,7,8 - 709 1120 709 1120 823 1040 c 1,9,-1 - 920 1137 l 1,10,-1 - 1024 1032 l 1,11,-1 - 928 936 l 1,12,13 - 1008 819 1008 819 1008 684 c 0,14,15 - 1008 546 1008 546 926 432 c 1,16,-1 - 1026 332 l 1,17,-1 - 924 227 l 1,18,-1 - 823 328 l 1,19,20 - 709 250 709 250 572 250 c 0,21,22 - 429 250 429 250 320 330 c 1,23,-1 - 215 225 l 1,24,-1 - 113 330 l 1,25,-1 - 215 432 l 1,26,27 - 137 546 137 546 137 684 c 256,0,1 -291 686 m 0,28,29 - 291 569 291 569 374 487.5 c 128,-1,30 - 457 406 457 406 572 406 c 0,31,32 - 686 406 686 406 769 487 c 128,-1,33 - 852 568 852 568 852 686 c 0,34,35 - 852 803 852 803 768.5 885 c 128,-1,36 - 685 967 685 967 572 967 c 256,37,38 - 459 967 459 967 375 885.5 c 128,-1,39 - 291 804 291 804 291 686 c 0,28,29 -EndSplineSet -EndChar - -StartChar: yen -Encoding: 165 165 103 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 79 - 2 - 6 - 8 - 15 - 11 - 21 - 22 - 22 - 24 - 20 - 9 - 4 - 0 - 8 - 8 - 17 - 13 - 9 - 9 - 24 - 23 - 19 - 18 - 18 - 23 - 3 - 15 - 16 - 15 - 81 - 89 - 7 - 11 - 12 - 11 - 81 - 89 - 4 - 47 - 12 - 159 - 12 - 175 - 12 - 3 - 12 - 64 - 41 - 45 - 72 - 0 - 12 - 16 - 12 - 32 - 12 - 160 - 12 - 4 - 12 - 20 - 0 - 15 - 16 - 175 - 16 - 2 - 8 - 240 - 16 - 1 - 16 - 16 - 8 - 21 - 18 - 3 - 8 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -DELTAP1 -SDB -DELTAP1 -SHP[rp1] -SHP[rp1] -MDRP[min,rnd,white] -DELTAP1 -CALL -DELTAP2 -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -720 709 m 1,0,-1 - 1041 709 l 1,1,-1 - 1041 584 l 1,2,-1 - 658 584 l 1,3,-1 - 658 430 l 1,4,-1 - 1041 430 l 1,5,-1 - 1041 303 l 1,6,-1 - 658 303 l 1,7,-1 - 658 0 l 1,8,-1 - 480 0 l 1,9,-1 - 480 303 l 1,10,-1 - 99 303 l 1,11,-1 - 99 430 l 1,12,-1 - 480 430 l 1,13,-1 - 482 584 l 1,14,-1 - 99 584 l 1,15,-1 - 99 709 l 1,16,-1 - 419 709 l 1,17,-1 - -2 1409 l 1,18,-1 - 197 1409 l 1,19,-1 - 568 762 l 1,20,-1 - 943 1409 l 1,21,-1 - 1142 1409 l 1,22,-1 - 720 709 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: brokenbar -Encoding: 166 166 104 -Width: 532 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 242 - 3 - 7 - 7 - 0 - 4 - 4 - 8 - 9 - 5 - 0 - 5 - 0 - 1 - 4 - 1 - 0 - 132 - 9 - 1 - 116 - 9 - 1 - 96 - 9 - 1 - 84 - 9 - 1 - 68 - 9 - 1 - 52 - 9 - 1 - 36 - 9 - 1 - 224 - 9 - 1 - 212 - 9 - 1 - 196 - 9 - 1 - 180 - 9 - 1 - 164 - 9 - 1 - 132 - 9 - 1 - 116 - 9 - 1 - 100 - 9 - 1 - 32 - 9 - 1 - 20 - 9 - 1 - 4 - 9 - 1 - 104 - 244 - 9 - 1 - 228 - 9 - 1 - 180 - 9 - 1 - 112 - 9 - 1 - 100 - 9 - 1 - 84 - 9 - 1 - 68 - 9 - 1 - 52 - 9 - 1 - 192 - 9 - 1 - 176 - 9 - 1 - 164 - 9 - 1 - 148 - 9 - 1 - 132 - 9 - 1 - 116 - 9 - 1 - 59 - 9 - 1 - 43 - 9 - 1 - 16 - 9 - 1 - 0 - 9 - 1 - 2 - 240 - 9 - 1 - 224 - 9 - 1 - 208 - 9 - 1 - 192 - 9 - 1 - 127 - 9 - 1 - 111 - 9 - 1 - 80 - 9 - 1 - 64 - 9 - 1 - 48 - 9 - 1 - 32 - 9 - 1 - 16 - 9 - 1 - 0 - 9 - 1 - 56 - 207 - 9 - 1 - 176 - 9 - 1 - 160 - 9 - 1 - 112 - 9 - 1 - 96 - 9 - 1 - 31 - 9 - 1 - 0 - 9 - 1 - 240 - 9 - 1 - 224 - 9 - 1 - 160 - 9 - 1 - 80 - 9 - 1 - 64 - 9 - 1 - 48 - 9 - 1 - 32 - 9 - 1 - 239 - 9 - 1 - 223 - 9 - 1 - 207 - 9 - 1 - 191 - 9 - 1 - 175 - 9 - 1 - 144 - 9 - 1 - 128 - 9 - 1 - 112 - 9 - 1 - 64 - 9 - 1 - 47 - 9 - 1 - 31 - 9 - 1 - 15 - 9 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -183 706 m 1,0,-1 - 183 1484 l 1,1,-1 - 349 1484 l 1,2,-1 - 349 706 l 1,3,-1 - 183 706 l 1,0,-1 -183 -434 m 1,4,-1 - 183 345 l 1,5,-1 - 349 345 l 1,6,-1 - 349 -434 l 1,7,-1 - 183 -434 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: section -Encoding: 167 167 105 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 95 - 36 - 23 - 23 - 4 - 3 - 3 - 52 - 9 - 49 - 49 - 43 - 30 - 29 - 29 - 46 - 20 - 17 - 58 - 43 - 17 - 43 - 66 - 65 - 121 - 36 - 1 - 107 - 36 - 1 - 92 - 36 - 1 - 56 - 36 - 1 - 149 - 62 - 1 - 134 - 62 - 1 - 53 - 62 - 1 - 25 - 55 - 1 - 10 - 55 - 1 - 122 - 55 - 1 - 59 - 55 - 1 - 132 - 9 - 148 - 9 - 2 - 70 - 9 - 1 - 3 - 16 - 9 - 32 - 9 - 2 - 15 - 9 - 1 - 15 - 6 - 9 - 55 - 62 - 36 - 4 - 26 - 0 - 26 - 33 - 81 - 89 - 30 - 26 - 0 - 6 - 81 - 89 - 4 - 0 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SDS -SDB -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -588 1484 m 0,0,1 - 761 1484 761 1484 867.5 1417.5 c 128,-1,2 - 974 1351 974 1351 1001 1224 c 1,3,-1 - 840 1204 l 1,4,5 - 813 1354 813 1354 588 1354 c 0,6,7 - 463 1354 463 1354 398.5 1314.5 c 128,-1,8 - 334 1275 334 1275 334 1204 c 0,9,10 - 334 1156 334 1156 364 1121 c 128,-1,11 - 394 1086 394 1086 449.5 1060 c 128,-1,12 - 505 1034 505 1034 635 1003 c 0,13,14 - 782 968 782 968 860 926.5 c 128,-1,15 - 938 885 938 885 981 826 c 128,-1,16 - 1024 767 1024 767 1024 686 c 0,17,18 - 1024 587 1024 587 964.5 512 c 128,-1,19 - 905 437 905 437 805 413 c 1,20,21 - 917 365 917 365 967.5 300.5 c 128,-1,22 - 1018 236 1018 236 1018 145 c 0,23,24 - 1018 -3 1018 -3 902.5 -87.5 c 128,-1,25 - 787 -172 787 -172 577 -172 c 0,26,27 - 368 -172 368 -172 258.5 -105.5 c 128,-1,28 - 149 -39 149 -39 115 100 c 1,29,-1 - 276 131 l 1,30,31 - 296 41 296 41 364 0 c 128,-1,32 - 432 -41 432 -41 577 -41 c 0,33,34 - 713 -41 713 -41 785.5 3 c 128,-1,35 - 858 47 858 47 858 129 c 0,36,37 - 858 186 858 186 825 224.5 c 128,-1,38 - 792 263 792 263 730.5 292 c 128,-1,39 - 669 321 669 321 518 358 c 0,40,41 - 324 403 324 403 238.5 481 c 128,-1,42 - 153 559 153 559 153 671 c 0,43,44 - 153 760 153 760 214.5 834 c 128,-1,45 - 276 908 276 908 381 938 c 1,46,47 - 285 970 285 970 229.5 1037 c 128,-1,48 - 174 1104 174 1104 174 1190 c 0,49,50 - 174 1329 174 1329 279.5 1406.5 c 128,-1,51 - 385 1484 385 1484 588 1484 c 0,0,1 -866 663 m 0,52,53 - 866 735 866 735 796.5 787 c 128,-1,54 - 727 839 727 839 551 880 c 1,55,56 - 442 874 442 874 377.5 821 c 128,-1,57 - 313 768 313 768 313 684 c 0,58,59 - 313 635 313 635 342.5 598.5 c 128,-1,60 - 372 562 372 562 427.5 535 c 128,-1,61 - 483 508 483 508 612 475 c 1,62,63 - 731 477 731 477 798.5 527.5 c 128,-1,64 - 866 578 866 578 866 663 c 0,52,53 -EndSplineSet -EndChar - -StartChar: dieresis -Encoding: 168 168 106 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 7 - 4 - 0 - 3 - 4 - 3 - 8 - 9 - 1 - 5 - 4 - 5 - 145 - 89 - 0 - 4 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -439 1219 m 1,0,-1 - 439 1403 l 1,1,-1 - 602 1403 l 1,2,-1 - 602 1219 l 1,3,-1 - 439 1219 l 1,0,-1 -45 1219 m 1,4,-1 - 45 1403 l 1,5,-1 - 210 1403 l 1,6,-1 - 210 1219 l 1,7,-1 - 45 1219 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: copyright -Encoding: 169 169 107 -Width: 1509 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 80 - 24 - 32 - 44 - 49 - 38 - 44 - 38 - 8 - 16 - 0 - 8 - 0 - 56 - 57 - 37 - 41 - 41 - 35 - 201 - 89 - 47 - 53 - 201 - 89 - 50 - 47 - 15 - 41 - 127 - 41 - 2 - 15 - 41 - 31 - 41 - 127 - 41 - 143 - 41 - 159 - 41 - 255 - 41 - 6 - 0 - 47 - 1 - 0 - 47 - 16 - 47 - 112 - 47 - 128 - 47 - 144 - 47 - 240 - 47 - 6 - 9 - 3 - 41 - 47 - 41 - 47 - 4 - 12 - 12 - 20 - 200 - 89 - 12 - 4 - 4 - 28 - 200 - 89 - 4 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -SRP1 -SHP[rp1] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1477 707 m 0,0,1 - 1477 514 1477 514 1380.5 345.5 c 128,-1,2 - 1284 177 1284 177 1115.5 80.5 c 128,-1,3 - 947 -16 947 -16 754 -16 c 0,4,5 - 557 -16 557 -16 387.5 84.5 c 128,-1,6 - 218 185 218 185 124.5 351.5 c 128,-1,7 - 31 518 31 518 31 707 c 0,8,9 - 31 900 31 900 128 1068 c 128,-1,10 - 225 1236 225 1236 393 1333 c 128,-1,11 - 561 1430 561 1430 754 1430 c 0,12,13 - 948 1430 948 1430 1116.5 1332.5 c 128,-1,14 - 1285 1235 1285 1235 1381 1068 c 128,-1,15 - 1477 901 1477 901 1477 707 c 0,0,1 -1385 707 m 256,16,17 - 1385 876 1385 876 1301 1020.5 c 128,-1,18 - 1217 1165 1217 1165 1070.5 1250 c 128,-1,19 - 924 1335 924 1335 754 1335 c 0,20,21 - 586 1335 586 1335 440 1250.5 c 128,-1,22 - 294 1166 294 1166 210 1020 c 128,-1,23 - 126 874 126 874 126 707 c 0,24,25 - 126 538 126 538 210.5 392 c 128,-1,26 - 295 246 295 246 440 162 c 128,-1,27 - 585 78 585 78 754 78 c 256,28,29 - 923 78 923 78 1070 162 c 128,-1,30 - 1217 246 1217 246 1301 392 c 128,-1,31 - 1385 538 1385 538 1385 707 c 256,16,17 -498 709 m 0,32,33 - 498 554 498 554 569 468.5 c 128,-1,34 - 640 383 640 383 765 383 c 0,35,36 - 923 383 923 383 998 539 c 1,37,-1 - 1113 504 l 1,38,39 - 1051 383 1051 383 966.5 331 c 128,-1,40 - 882 279 882 279 765 279 c 0,41,42 - 577 279 577 279 473 392 c 128,-1,43 - 369 505 369 505 369 709 c 0,44,45 - 369 912 369 912 469 1022.5 c 128,-1,46 - 569 1133 569 1133 758 1133 c 0,47,48 - 1002 1133 1002 1133 1098 924 c 1,49,-1 - 984 891 l 1,50,51 - 952 960 952 960 894 994 c 128,-1,52 - 836 1028 836 1028 760 1028 c 0,53,54 - 633 1028 633 1028 565.5 947.5 c 128,-1,55 - 498 867 498 867 498 709 c 0,32,33 -EndSplineSet -EndChar - -StartChar: ordfeminine -Encoding: 170 170 108 -Width: 758 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 81 - 14 - 15 - 15 - 44 - 3 - 33 - 7 - 39 - 39 - 28 - 22 - 3 - 22 - 46 - 47 - 7 - 40 - 228 - 89 - 14 - 24 - 15 - 21 - 72 - 14 - 32 - 10 - 14 - 72 - 14 - 7 - 7 - 0 - 18 - 25 - 36 - 0 - 36 - 228 - 89 - 30 - 30 - 0 - 0 - 32 - 0 - 80 - 0 - 3 - 9 - 3 - 0 - 0 - 18 - 18 - 11 - 228 - 89 - 18 - 222 - 192 - 47 - 1 - 144 - 47 - 1 - 128 - 47 - 1 - 112 - 47 - 1 - 96 - 47 - 1 - 80 - 47 - 1 - 64 - 47 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -260 651 m 0,0,1 - 152 651 152 651 89 709 c 128,-1,2 - 26 767 26 767 26 870 c 0,3,4 - 26 986 26 986 104.5 1048 c 128,-1,5 - 183 1110 183 1110 338 1112 c 2,6,-1 - 516 1116 l 1,7,-1 - 516 1176 l 2,8,9 - 516 1257 516 1257 481 1294 c 128,-1,10 - 446 1331 446 1331 365 1331 c 0,11,12 - 298 1331 298 1331 257.5 1301.5 c 128,-1,13 - 217 1272 217 1272 208 1196 c 1,14,-1 - 59 1206 l 1,15,16 - 75 1312 75 1312 154.5 1372 c 128,-1,17 - 234 1432 234 1432 363 1432 c 0,18,19 - 508 1432 508 1432 583.5 1369.5 c 128,-1,20 - 659 1307 659 1307 659 1182 c 2,21,-1 - 659 874 l 2,22,23 - 659 816 659 816 673 791 c 128,-1,24 - 687 766 687 766 722 766 c 0,25,26 - 741 766 741 766 765 774 c 1,27,-1 - 765 670 l 1,28,29 - 716 657 716 657 682 657 c 0,30,31 - 609 657 609 657 568.5 695 c 128,-1,32 - 528 733 528 733 524 798 c 1,33,-1 - 520 798 l 1,34,35 - 447 651 447 651 260 651 c 0,0,1 -299 762 m 0,36,37 - 389 762 389 762 452.5 821 c 128,-1,38 - 516 880 516 880 516 959 c 2,39,-1 - 516 1024 l 1,40,-1 - 378 1020 l 2,41,42 - 260 1014 260 1014 218 981 c 128,-1,43 - 176 948 176 948 176 883 c 0,44,45 - 176 762 176 762 299 762 c 0,36,37 -EndSplineSet -EndChar - -StartChar: guillemotleft -Encoding: 171 171 109 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 5 - 8 - 6 - 1 - 15 - 10 - 14 - 17 - 10 - 1 - 17 - 8 - 4 - 19 - 18 - 9 - 0 - 3 - 0 - 239 - 91 - 12 - 15 - 3 - 47 - 3 - 111 - 3 - 127 - 3 - 4 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -886 141 m 1,0,-1 - 548 506 l 1,1,-1 - 548 569 l 1,2,-1 - 886 940 l 1,3,-1 - 1054 940 l 1,4,-1 - 1054 909 l 1,5,-1 - 716 537 l 1,6,-1 - 1056 170 l 1,7,-1 - 1056 141 l 1,8,-1 - 886 141 l 1,0,-1 -419 141 m 1,9,-1 - 83 506 l 1,10,-1 - 83 569 l 1,11,-1 - 419 940 l 1,12,-1 - 586 940 l 1,13,-1 - 586 909 l 1,14,-1 - 251 537 l 1,15,-1 - 588 170 l 1,16,-1 - 588 141 l 1,17,-1 - 419 141 l 1,9,-1 -EndSplineSet -EndChar - -StartChar: logicalnot -Encoding: 172 172 110 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 0 - 5 - 2 - 5 - 6 - 7 - 3 - 2 - 173 - 89 - 0 - 3 - 179 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -950 180 m 1,0,-1 - 950 608 l 1,1,-1 - 100 608 l 1,2,-1 - 100 754 l 1,3,-1 - 1095 754 l 1,4,-1 - 1095 180 l 1,5,-1 - 950 180 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni00AD -Encoding: 173 173 111 -Width: 682 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 16 45 N 1 0 0 1 0 0 2 -EndChar - -StartChar: registered -Encoding: 174 174 112 -Width: 1509 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 74 - 16 - 0 - 46 - 41 - 41 - 32 - 45 - 33 - 44 - 44 - 51 - 45 - 51 - 35 - 35 - 36 - 24 - 8 - 8 - 36 - 45 - 0 - 4 - 56 - 55 - 32 - 32 - 36 - 44 - 34 - 51 - 34 - 201 - 89 - 37 - 50 - 201 - 89 - 15 - 36 - 31 - 36 - 2 - 223 - 37 - 1 - 0 - 37 - 16 - 37 - 2 - 9 - 3 - 36 - 51 - 37 - 37 - 51 - 36 - 3 - 4 - 12 - 12 - 20 - 200 - 89 - 12 - 4 - 4 - 28 - 200 - 89 - 4 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP1 -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1477 707 m 0,0,1 - 1477 514 1477 514 1380.5 345.5 c 128,-1,2 - 1284 177 1284 177 1115.5 80.5 c 128,-1,3 - 947 -16 947 -16 754 -16 c 0,4,5 - 557 -16 557 -16 387.5 84.5 c 128,-1,6 - 218 185 218 185 124.5 351.5 c 128,-1,7 - 31 518 31 518 31 707 c 0,8,9 - 31 900 31 900 128 1068 c 128,-1,10 - 225 1236 225 1236 393 1333 c 128,-1,11 - 561 1430 561 1430 754 1430 c 0,12,13 - 948 1430 948 1430 1116.5 1332.5 c 128,-1,14 - 1285 1235 1285 1235 1381 1068 c 128,-1,15 - 1477 901 1477 901 1477 707 c 0,0,1 -1385 707 m 256,16,17 - 1385 876 1385 876 1301 1020.5 c 128,-1,18 - 1217 1165 1217 1165 1070.5 1250 c 128,-1,19 - 924 1335 924 1335 754 1335 c 0,20,21 - 586 1335 586 1335 440 1250.5 c 128,-1,22 - 294 1166 294 1166 210 1020 c 128,-1,23 - 126 874 126 874 126 707 c 0,24,25 - 126 538 126 538 210.5 392 c 128,-1,26 - 295 246 295 246 440 162 c 128,-1,27 - 585 78 585 78 754 78 c 256,28,29 - 923 78 923 78 1070 162 c 128,-1,30 - 1217 246 1217 246 1301 392 c 128,-1,31 - 1385 538 1385 538 1385 707 c 256,16,17 -955 289 m 1,32,-1 - 756 625 l 1,33,-1 - 595 625 l 1,34,-1 - 595 289 l 1,35,-1 - 468 289 l 1,36,-1 - 468 1120 l 1,37,-1 - 775 1120 l 2,38,39 - 917 1120 917 1120 992.5 1057 c 128,-1,40 - 1068 994 1068 994 1068 883 c 0,41,42 - 1068 781 1068 781 1016 719.5 c 128,-1,43 - 964 658 964 658 879 639 c 1,44,-1 - 1100 289 l 1,45,-1 - 955 289 l 1,32,-1 -941 881 m 0,46,47 - 941 950 941 950 893.5 986 c 128,-1,48 - 846 1022 846 1022 765 1022 c 2,49,-1 - 595 1022 l 1,50,-1 - 595 721 l 1,51,-1 - 777 721 l 2,52,53 - 857 721 857 721 899 763.5 c 128,-1,54 - 941 806 941 806 941 881 c 0,46,47 -EndSplineSet -EndChar - -StartChar: overscore -Encoding: 175 175 113 -Width: 1131 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 0 - 5 - 1 - 4 - 1 - 2 - 140 - 89 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1148 1452 m 1,0,-1 - -17 1452 l 1,1,-1 - -17 1546 l 1,2,-1 - 1148 1546 l 1,3,-1 - 1148 1452 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: degree -Encoding: 176 176 114 -Width: 819 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 12 - 0 - 18 - 6 - 0 - 6 - 25 - 24 - 3 - 21 - 175 - 89 - 3 - 9 - 64 - 9 - 15 - 175 - 89 - 9 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -696 1145 m 256,0,1 - 696 1026 696 1026 611.5 943 c 128,-1,2 - 527 860 527 860 409 860 c 256,3,4 - 291 860 291 860 206.5 944 c 128,-1,5 - 122 1028 122 1028 122 1145 c 256,6,7 - 122 1262 122 1262 205.5 1346 c 128,-1,8 - 289 1430 289 1430 409 1430 c 256,9,10 - 529 1430 529 1430 612.5 1347 c 128,-1,11 - 696 1264 696 1264 696 1145 c 256,0,1 -587 1145 m 0,12,13 - 587 1221 587 1221 535.5 1273 c 128,-1,14 - 484 1325 484 1325 409 1325 c 256,15,16 - 334 1325 334 1325 282.5 1272 c 128,-1,17 - 231 1219 231 1219 231 1145 c 256,18,19 - 231 1071 231 1071 283.5 1018 c 128,-1,20 - 336 965 336 965 409 965 c 0,21,22 - 483 965 483 965 535 1017.5 c 128,-1,23 - 587 1070 587 1070 587 1145 c 0,12,13 -EndSplineSet -EndChar - -StartChar: plusminus -Encoding: 177 177 115 -Width: 1124 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 13 - 4 - 9 - 1 - 1 - 6 - 2 - 14 - 11 - 11 - 2 - 4 - 3 - 16 - 17 - 12 - 13 - 173 - 89 - 12 - 0 - 2 - 1 - 18 - 6 - 2 - 0 - 4 - 5 - 4 - 173 - 89 - 9 - 152 - 7 - 1 - 7 - 239 - 5 - 1 - 80 - 5 - 128 - 5 - 160 - 5 - 208 - 5 - 4 - 5 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHP[rp1] -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SDS -SDB -DELTAP1 -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -636 680 m 1,0,-1 - 636 285 l 1,1,-1 - 489 285 l 1,2,-1 - 489 680 l 1,3,-1 - 65 680 l 1,4,-1 - 65 825 l 1,5,-1 - 489 825 l 1,6,-1 - 489 1219 l 1,7,-1 - 636 1219 l 1,8,-1 - 636 825 l 1,9,-1 - 1060 825 l 1,10,-1 - 1060 680 l 1,11,-1 - 636 680 l 1,0,-1 -65 0 m 1,12,-1 - 65 145 l 1,13,-1 - 1060 145 l 1,14,-1 - 1060 0 l 1,15,-1 - 65 0 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: twosuperior -Encoding: 178 178 116 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 13 - 14 - 14 - 25 - 0 - 26 - 7 - 20 - 0 - 20 - 28 - 29 - 7 - 25 - 13 - 17 - 17 - 10 - 228 - 89 - 17 - 222 - 1 - 25 - 0 - 25 - 229 - 89 - 0 - 223 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -43 563 m 1,0,-1 - 41 666 l 1,1,2 - 72 735 72 735 136.5 800.5 c 128,-1,3 - 201 866 201 866 308 940 c 0,4,5 - 405 1008 405 1008 449 1064 c 128,-1,6 - 493 1120 493 1120 493 1178 c 0,7,8 - 493 1240 493 1240 457.5 1277.5 c 128,-1,9 - 422 1315 422 1315 348 1315 c 0,10,11 - 280 1315 280 1315 236 1278.5 c 128,-1,12 - 192 1242 192 1242 184 1174 c 1,13,-1 - 51 1182 l 1,14,15 - 64 1289 64 1289 144.5 1355 c 128,-1,16 - 225 1421 225 1421 354 1421 c 0,17,18 - 481 1421 481 1421 555.5 1359.5 c 128,-1,19 - 630 1298 630 1298 630 1188 c 0,20,21 - 630 1041 630 1041 442 903 c 0,22,23 - 320 813 320 813 270 767 c 128,-1,24 - 220 721 220 721 200 676 c 1,25,-1 - 643 676 l 1,26,-1 - 643 563 l 1,27,-1 - 43 563 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: threesuperior -Encoding: 179 179 117 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 79 - 24 - 25 - 25 - 6 - 5 - 34 - 13 - 18 - 31 - 31 - 0 - 13 - 10 - 5 - 10 - 0 - 5 - 0 - 38 - 39 - 35 - 14 - 13 - 14 - 13 - 228 - 89 - 168 - 14 - 184 - 14 - 200 - 14 - 3 - 63 - 14 - 79 - 14 - 2 - 3 - 14 - 14 - 3 - 47 - 24 - 63 - 24 - 79 - 24 - 3 - 13 - 24 - 29 - 24 - 2 - 11 - 4 - 24 - 28 - 28 - 21 - 228 - 89 - 28 - 222 - 3 - 8 - 228 - 89 - 37 - 6 - 53 - 6 - 69 - 6 - 3 - 6 - 3 - 221 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SDS -SDB -DELTAP1 -DELTAP1 -SRP2 -IP -RTG -MDAP[rnd] -SDS -DELTAP1 -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -642 795 m 0,0,1 - 642 679 642 679 564.5 615 c 128,-1,2 - 487 551 487 551 345 551 c 0,3,4 - 59 551 59 551 27 778 c 1,5,-1 - 163 791 l 1,6,7 - 181 655 181 655 345 655 c 0,8,9 - 505 655 505 655 505 803 c 0,10,11 - 505 940 505 940 316 940 c 2,12,-1 - 255 940 l 1,13,-1 - 255 1049 l 1,14,-1 - 312 1049 l 2,15,16 - 392 1049 392 1049 438 1085 c 128,-1,17 - 484 1121 484 1121 484 1186 c 0,18,19 - 484 1246 484 1246 447 1280.5 c 128,-1,20 - 410 1315 410 1315 339 1315 c 0,21,22 - 271 1315 271 1315 229 1280 c 128,-1,23 - 187 1245 187 1245 181 1180 c 1,24,-1 - 46 1192 l 1,25,26 - 59 1301 59 1301 137.5 1361 c 128,-1,27 - 216 1421 216 1421 343 1421 c 0,28,29 - 473 1421 473 1421 547 1361.5 c 128,-1,30 - 621 1302 621 1302 621 1204 c 0,31,32 - 621 1129 621 1129 578 1074 c 128,-1,33 - 535 1019 535 1019 445 999 c 1,34,-1 - 445 997 l 1,35,36 - 536 988 536 988 589 935.5 c 128,-1,37 - 642 883 642 883 642 795 c 0,0,1 -EndSplineSet -EndChar - -StartChar: acute -Encoding: 180 180 118 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 3 - 0 - 7 - 6 - 0 - 2 - 149 - 91 - 15 - 0 - 47 - 0 - 63 - 0 - 127 - 0 - 239 - 0 - 5 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -72 1201 m 1,0,-1 - 72 1221 l 1,1,-1 - 289 1508 l 1,2,-1 - 496 1508 l 1,3,-1 - 496 1479 l 1,4,-1 - 166 1201 l 1,5,-1 - 72 1201 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: mu1 -Encoding: 181 181 119 -Width: 1180 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 23 - 10 - 10 - 17 - 11 - 30 - 2 - 2 - 1 - 11 - 1 - 32 - 31 - 23 - 6 - 26 - 6 - 80 - 89 - 26 - 22 - 20 - 15 - 80 - 89 - 20 - 22 - 10 - 1 - 15 - 0 - 27 - 224 - 32 - 1 - 208 - 32 - 1 - 192 - 32 - 1 - 176 - 32 - 1 - 128 - 32 - 1 - 96 - 32 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -140 -425 m 1,0,-1 - 140 1082 l 1,1,-1 - 321 1082 l 1,2,-1 - 321 396 l 2,3,4 - 321 258 321 258 374.5 188.5 c 128,-1,5 - 428 119 428 119 547 119 c 0,6,7 - 675 119 675 119 748 206 c 128,-1,8 - 821 293 821 293 821 455 c 2,9,-1 - 821 1082 l 1,10,-1 - 1001 1082 l 1,11,-1 - 1001 266 l 2,12,13 - 1001 190 1001 190 1019 155.5 c 128,-1,14 - 1037 121 1037 121 1079 121 c 0,15,16 - 1104 121 1104 121 1133 129 c 1,17,-1 - 1133 0 l 1,18,19 - 1068 -20 1068 -20 1020 -20 c 0,20,21 - 929 -20 929 -20 881.5 27 c 128,-1,22 - 834 74 834 74 829 174 c 1,23,-1 - 826 174 l 1,24,25 - 720 -20 720 -20 527 -20 c 0,26,27 - 460 -20 460 -20 405.5 0.5 c 128,-1,28 - 351 21 351 21 320 59 c 1,29,-1 - 320 -425 l 1,30,-1 - 140 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: paragraph -Encoding: 182 182 120 -Width: 1100 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 5 - 6 - 15 - 2 - 1 - 1 - 6 - 10 - 3 - 16 - 17 - 7 - 7 - 1 - 0 - 4 - 13 - 3 - 6 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -MDRP[min,rnd,black] -SHP[rp2] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -884 1307 m 1,0,-1 - 884 -264 l 1,1,-1 - 772 -264 l 1,2,-1 - 772 1307 l 1,3,-1 - 555 1307 l 1,4,-1 - 555 -264 l 1,5,-1 - 442 -264 l 1,6,-1 - 442 694 l 1,7,8 - 274 694 274 694 177 786.5 c 128,-1,9 - 80 879 80 879 80 1049 c 0,10,11 - 80 1218 80 1218 178.5 1313.5 c 128,-1,12 - 277 1409 277 1409 450 1409 c 2,13,-1 - 1013 1409 l 1,14,-1 - 1013 1307 l 1,15,-1 - 884 1307 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: middot -Encoding: 183 183 121 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 0 - 95 - 0 - 111 - 0 - 127 - 0 - 3 -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 2116 8729 N 1 0 0 1 56 0 2 -EndChar - -StartChar: cedilla -Encoding: 184 184 122 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 9 - 0 - 15 - 16 - 16 - 14 - 13 - 13 - 4 - 0 - 0 - 4 - 20 - 19 - 11 - 64 - 16 - 64 - 9 - 13 - 72 - 16 - 16 - 2 - 14 - 2 - 7 - 140 - 89 - 32 - 2 - 80 - 2 - 96 - 2 - 112 - 2 - 176 - 2 - 192 - 2 - 6 - 2 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -483 -253 m 0,0,1 - 483 -434 483 -434 209 -434 c 0,2,3 - 152 -434 152 -434 119 -430 c 1,4,-1 - 119 -332 l 1,5,6 - 168 -338 168 -338 205 -338 c 0,7,8 - 352 -338 352 -338 352 -257 c 0,9,10 - 352 -180 352 -180 219 -180 c 0,11,12 - 176 -180 176 -180 162 -182 c 1,13,-1 - 227 0 l 1,14,-1 - 334 0 l 1,15,-1 - 295 -100 l 1,16,17 - 389 -103 389 -103 436 -143.5 c 128,-1,18 - 483 -184 483 -184 483 -253 c 0,0,1 -EndSplineSet -EndChar - -StartChar: onesuperior -Encoding: 185 185 123 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 9 - 8 - 8 - 7 - 6 - 4 - 0 - 2 - 2 - 11 - 12 - 0 - 5 - 16 - 5 - 2 - 11 - 3 - 5 - 4 - 4 - 3 - 6 - 220 - 9 - 1 - 0 - 1 - 228 - 89 - 0 - 223 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -80 563 m 1,0,-1 - 80 670 l 1,1,-1 - 291 670 l 1,2,-1 - 291 1290 l 1,3,-1 - 89 1152 l 1,4,-1 - 89 1272 l 1,5,-1 - 299 1409 l 1,6,-1 - 422 1409 l 1,7,-1 - 422 670 l 1,8,-1 - 637 670 l 1,9,-1 - 637 563 l 1,10,-1 - 80 563 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: ordmasculine -Encoding: 186 186 124 -Width: 748 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 17 - 6 - 11 - 0 - 6 - 0 - 23 - 24 - 3 - 20 - 228 - 89 - 0 - 3 - 32 - 3 - 80 - 3 - 3 - 9 - 3 - 3 - 3 - 9 - 9 - 14 - 228 - 89 - 9 - 222 - 239 - 24 - 1 - 128 - 24 - 1 - 112 - 24 - 1 - 47 - 24 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -723 1042 m 0,0,1 - 723 854 723 854 635 752.5 c 128,-1,2 - 547 651 547 651 372 651 c 0,3,4 - 204 651 204 651 115.5 751.5 c 128,-1,5 - 27 852 27 852 27 1042 c 0,6,7 - 27 1231 27 1231 116 1331.5 c 128,-1,8 - 205 1432 205 1432 376 1432 c 0,9,10 - 723 1432 723 1432 723 1042 c 0,0,1 -574 1042 m 0,11,12 - 574 1196 574 1196 528.5 1261.5 c 128,-1,13 - 483 1327 483 1327 379 1327 c 0,14,15 - 271 1327 271 1327 225 1259.5 c 128,-1,16 - 179 1192 179 1192 179 1042 c 0,17,18 - 179 897 179 897 224.5 826.5 c 128,-1,19 - 270 756 270 756 371 756 c 0,20,21 - 482 756 482 756 528 825 c 128,-1,22 - 574 894 574 894 574 1042 c 0,11,12 -EndSplineSet -EndChar - -StartChar: guillemotright -Encoding: 187 187 125 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 3 - 8 - 12 - 17 - 4 - 1 - 13 - 10 - 10 - 17 - 1 - 8 - 4 - 19 - 18 - 10 - 0 - 5 - 0 - 239 - 91 - 14 - 15 - 5 - 47 - 5 - 111 - 5 - 127 - 5 - 4 - 5 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -718 141 m 1,0,-1 - 550 141 l 1,1,-1 - 550 170 l 1,2,-1 - 888 537 l 1,3,-1 - 552 909 l 1,4,-1 - 552 940 l 1,5,-1 - 718 940 l 1,6,-1 - 1056 569 l 1,7,-1 - 1056 506 l 1,8,-1 - 718 141 l 1,0,-1 -253 141 m 1,9,-1 - 83 141 l 1,10,-1 - 83 170 l 1,11,-1 - 421 537 l 1,12,-1 - 85 909 l 1,13,-1 - 85 940 l 1,14,-1 - 253 940 l 1,15,-1 - 588 569 l 1,16,-1 - 588 506 l 1,17,-1 - 253 141 l 1,9,-1 -EndSplineSet -EndChar - -StartChar: onequarter -Encoding: 188 188 126 -Width: 1708 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 1 - 12 - 191 - 12 - 1 - 16 - 12 - 96 - 12 - 112 - 12 - 3 - 3 - 2 - 17 - 24 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 123 185 N 1 0 0 1 -24 0 2 -Refer: 2046 8260 N 1 0 0 1 761 0 2 -Refer: 2054 8308 N 1 0 0 1 952 -561 2 -EndChar - -StartChar: onehalf -Encoding: 189 189 127 -Width: 1708 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 2 - 15 - 47 - 15 - 111 - 15 - 2 - 1 - 12 - 191 - 12 - 1 - 16 - 12 - 96 - 12 - 112 - 12 - 3 - 47 - 44 - 1 - 2 - 15 - 24 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -DELTAP1 -SRP1 -SHC[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 123 185 N 1 0 0 1 -24 0 2 -Refer: 2046 8260 N 1 0 0 1 761 0 2 -Refer: 116 178 N 1 0 0 1 1010 -561 2 -EndChar - -StartChar: threequarters -Encoding: 190 190 128 -Width: 1708 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 0 - 0 - 95 - 0 - 1 - 16 - 0 - 96 - 0 - 112 - 0 - 3 - 47 - 60 - 1 - 1 - 2 - 6 - 24 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 2046 8260 N 1 0 0 1 781 0 2 -Refer: 2054 8308 N 1 0 0 1 952 -561 2 -Refer: 117 179 N 1 0 0 1 46 0 2 -EndChar - -StartChar: questiondown -Encoding: 191 191 129 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 52 - 9 - 8 - 8 - 32 - 33 - 33 - 0 - 24 - 24 - 25 - 18 - 0 - 25 - 0 - 36 - 35 - 18 - 28 - 8 - 33 - 64 - 34 - 33 - 156 - 91 - 34 - 15 - 3 - 24 - 1 - 13 - 3 - 24 - 28 - 28 - 21 - 95 - 89 - 47 - 28 - 63 - 28 - 2 - 111 - 28 - 207 - 28 - 2 - 28 - 32 - 36 - 1 -DELTAP1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SDS -SDB -DELTAP1 -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,white] -SRP1 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -131 50 m 0,0,1 - 131 125 131 125 153 184 c 128,-1,2 - 175 243 175 243 216 293 c 128,-1,3 - 257 343 257 343 350 411 c 2,4,-1 - 431 470 l 2,5,6 - 502 522 502 522 537 579.5 c 128,-1,7 - 572 637 572 637 573 705 c 1,8,-1 - 748 705 l 1,9,10 - 746 636 746 636 726.5 584 c 128,-1,11 - 707 532 707 532 676 492 c 128,-1,12 - 645 452 645 452 606 420.5 c 128,-1,13 - 567 389 567 389 527 360.5 c 128,-1,14 - 487 332 487 332 448.5 303.5 c 128,-1,15 - 410 275 410 275 380 240 c 128,-1,16 - 350 205 350 205 331.5 161 c 128,-1,17 - 313 117 313 117 313 58 c 0,18,19 - 313 -56 313 -56 390.5 -122 c 128,-1,20 - 468 -188 468 -188 608 -188 c 256,21,22 - 748 -188 748 -188 830 -118 c 128,-1,23 - 912 -48 912 -48 926 74 c 1,24,-1 - 1110 62 l 1,25,26 - 1084 -136 1084 -136 954 -242 c 128,-1,27 - 824 -348 824 -348 610 -348 c 0,28,29 - 387 -348 387 -348 259 -242.5 c 128,-1,30 - 131 -137 131 -137 131 50 c 0,0,1 -756 1082 m 1,31,-1 - 756 881 l 1,32,-1 - 561 881 l 1,33,-1 - 561 1082 l 1,34,-1 - 756 1082 l 1,31,-1 -EndSplineSet -EndChar - -StartChar: Agrave -Encoding: 192 192 130 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 17 - 17 - 5 - 38 - 2 - 18 -PUSHW_1 - -31 -PUSHB_5 - 18 - 21 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 334 0 2 -EndChar - -StartChar: Aacute -Encoding: 193 193 131 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 17 - 5 - 38 - 2 - 17 - 76 - 17 - 20 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 475 0 2 -EndChar - -StartChar: Acircumflex -Encoding: 194 194 132 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 18 - 18 - 5 - 38 - 2 - 23 - 0 - 23 - 17 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 352 0 2 -EndChar - -StartChar: Atilde -Encoding: 195 195 133 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 17 - 17 - 5 - 38 - 2 - 26 - 2 - 26 - 38 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 350 0 2 -EndChar - -StartChar: Adieresis -Encoding: 196 196 134 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 17 - 17 - 5 - 38 - 3 - 2 - 21 - 4 - 21 - 19 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 364 0 2 -EndChar - -StartChar: Aring -Encoding: 197 197 135 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 3 - 2 - 38 - 3 - 3 - 2 - 23 - 54 - 23 - 1 - 69 - 23 - 1 - 83 - 23 - 115 - 23 - 2 - 34 - 23 - 98 - 23 - 2 - 3 - 23 - 17 - 4 - 7 - 37 -CALL -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 668 730 N 1 0 0 1 393 136 2 -EndChar - -StartChar: AE -Encoding: 198 198 136 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 59 - 2 - 19 - 3 - 17 - 3 - 4 - 17 - 9 - 13 - 13 - 20 - 5 - 11 - 7 - 0 - 14 - 14 - 0 - 4 - 3 - 21 - 22 - 19 - 2 - 95 - 89 - 19 - 19 - 5 - 4 - 9 - 12 - 95 - 89 - 15 - 9 - 1 - 8 - 3 - 9 - 9 - 0 - 5 - 16 - 8 - 5 - 8 - 95 - 89 - 5 - 3 - 4 - 18 - 0 - 13 - 95 - 89 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SRP2 -IP -IP -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1780 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2048 1840 basechar 0 -AnchorPoint: "Anchor-20" 2048 -380 basechar 0 -AnchorPoint: "Anchor-16" 1300 1540 basechar 0 -AnchorPoint: "Anchor-15" 1880 1540 basechar 0 -AnchorPoint: "Anchor-14" 1060 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -969 0 m 1,0,-1 - 969 412 l 1,1,-1 - 421 412 l 1,2,-1 - 223 0 l 1,3,-1 - 24 0 l 1,4,-1 - 710 1409 l 1,5,-1 - 1919 1409 l 1,6,-1 - 1919 1253 l 1,7,-1 - 1160 1253 l 1,8,-1 - 1160 801 l 1,9,-1 - 1859 801 l 1,10,-1 - 1859 647 l 1,11,-1 - 1160 647 l 1,12,-1 - 1160 156 l 1,13,-1 - 1960 156 l 1,14,-1 - 1960 0 l 1,15,-1 - 969 0 l 1,0,-1 -969 1262 m 1,16,-1 - 818 1262 l 1,17,-1 - 790 1199 l 1,18,-1 - 491 561 l 1,19,-1 - 969 561 l 1,20,-1 - 969 1262 l 1,16,-1 -EndSplineSet -EndChar - -StartChar: Ccedilla -Encoding: 199 199 137 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 30 - 58 - 30 - 26 - 16 - 9 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 780 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 38 67 N 1 0 0 1 0 0 3 -Refer: 122 184 N 1 0 0 1 510 0 2 -EndChar - -StartChar: Egrave -Encoding: 200 200 138 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 12 - 12 - 5 - 38 - 1 - 13 -PUSHW_1 - -86 -PUSHB_5 - 13 - 16 - 0 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 319 0 2 -EndChar - -StartChar: Eacute -Encoding: 201 201 139 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 12 - 5 - 38 - 1 - 12 - 40 - 12 - 15 - 0 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 479 0 2 -EndChar - -StartChar: Ecircumflex -Encoding: 202 202 140 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 13 - 13 - 5 - 38 - 1 - 18 -PUSHW_1 - -17 -PUSHB_5 - 18 - 12 - 0 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 375 0 2 -EndChar - -StartChar: Edieresis -Encoding: 203 203 141 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 12 - 12 - 5 - 38 - 2 - 1 - 16 -PUSHW_1 - -22 -PUSHB_5 - 16 - 14 - 0 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 377 0 2 -EndChar - -StartChar: Igrave -Encoding: 204 204 142 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 4 - 4 - 5 - 38 - 1 - 5 -PUSHW_1 - -63 -PUSHB_5 - 5 - 8 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 -97 0 2 -EndChar - -StartChar: Iacute -Encoding: 205 205 143 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 4 - 5 - 38 - 1 - 4 - 69 - 4 - 7 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 70 0 2 -EndChar - -StartChar: Icircumflex -Encoding: 206 206 144 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 5 - 5 - 5 - 38 - 1 - 10 - 0 - 10 - 4 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-24" 290 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 -46 0 2 -EndChar - -StartChar: Idieresis -Encoding: 207 207 145 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 4 - 4 - 5 - 38 - 2 - 1 - 8 - 1 - 8 - 6 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 -38 0 2 -EndChar - -StartChar: Eth -Encoding: 208 208 146 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 21 - 14 - 23 - 14 - 6 - 19 - 23 - 23 - 13 - 1 - 11 - 6 - 11 - 29 - 28 - 22 - 13 - 0 - 13 - 95 - 89 - 19 - 15 - 0 - 1 - 32 - 3 - 0 - 0 - 23 - 2 - 11 - 23 - 95 - 89 - 11 - 18 - 2 - 18 - 95 - 89 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 670 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -14 801 m 1,0,-1 - 168 801 l 1,1,-1 - 168 1409 l 1,2,-1 - 634 1409 l 2,3,4 - 992 1409 992 1409 1186.5 1229.5 c 128,-1,5 - 1381 1050 1381 1050 1381 719 c 0,6,7 - 1381 501 1381 501 1296 337.5 c 128,-1,8 - 1211 174 1211 174 1055 87 c 128,-1,9 - 899 0 899 0 695 0 c 2,10,-1 - 168 0 l 1,11,-1 - 168 647 l 1,12,-1 - 14 647 l 1,13,-1 - 14 801 l 1,0,-1 -1189 719 m 0,14,15 - 1189 981 1189 981 1045.5 1118.5 c 128,-1,16 - 902 1256 902 1256 630 1256 c 2,17,-1 - 359 1256 l 1,18,-1 - 359 801 l 1,19,-1 - 765 801 l 1,20,-1 - 765 647 l 1,21,-1 - 359 647 l 1,22,-1 - 359 153 l 1,23,-1 - 673 153 l 2,24,25 - 828 153 828 153 945.5 221 c 128,-1,26 - 1063 289 1063 289 1126 417 c 128,-1,27 - 1189 545 1189 545 1189 719 c 0,14,15 -EndSplineSet -EndChar - -StartChar: Ntilde -Encoding: 209 209 147 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 14 - 14 - 5 - 38 - 1 - 23 - 12 - 23 - 35 - 5 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 417 0 2 -EndChar - -StartChar: Ograve -Encoding: 210 210 148 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 27 - 27 - 5 - 38 - 2 - 28 -PUSHW_1 - -40 -PUSHB_5 - 28 - 31 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-19" 1180 1300 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 438 0 2 -EndChar - -StartChar: Oacute -Encoding: 211 211 149 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 27 - 5 - 38 - 2 - 27 - 37 - 27 - 30 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-19" 1180 1300 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 549 0 2 -EndChar - -StartChar: Ocircumflex -Encoding: 212 212 150 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 28 - 28 - 5 - 38 - 2 - 33 - 4 - 33 - 27 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 469 0 2 -EndChar - -StartChar: Otilde -Encoding: 213 213 151 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 27 - 27 - 5 - 38 - 2 - 36 -PUSHW_1 - -11 -PUSHB_5 - 36 - 48 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-19" 1180 1300 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 449 0 2 -EndChar - -StartChar: Odieresis -Encoding: 214 214 152 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 27 - 27 - 5 - 38 - 3 - 2 - 31 -PUSHW_1 - -1 -PUSHB_5 - 31 - 29 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 471 0 2 -EndChar - -StartChar: multiply -Encoding: 215 215 153 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 4 - 10 - 6 - 8 - 2 - 0 - 0 - 10 - 8 - 3 - 13 - 12 - 0 - 7 - 1 - 7 -SVTCA[y-axis] -RTHG -MDAP[rnd] -DELTAP2 -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -142 330 m 1,0,-1 - 496 684 l 1,1,-1 - 144 1036 l 1,2,-1 - 248 1139 l 1,3,-1 - 598 786 l 1,4,-1 - 948 1137 l 1,5,-1 - 1053 1032 l 1,6,-1 - 703 684 l 1,7,-1 - 1055 332 l 1,8,-1 - 953 227 l 1,9,-1 - 600 580 l 1,10,-1 - 244 225 l 1,11,-1 - 142 330 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: Oslash -Encoding: 216 216 154 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 24 - 32 - 29 - 21 - 21 - 18 - 0 - 29 - 8 - 11 - 0 - 11 - 38 - 37 - 31 - 23 - 26 - 34 - 14 - 34 - 95 - 89 - 17 - 14 - 4 - 4 - 26 - 95 - 89 - 7 - 4 - 19 - 32 - 38 - 1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1495 711 m 0,0,1 - 1495 490 1495 490 1410.5 324 c 128,-1,2 - 1326 158 1326 158 1168 69 c 128,-1,3 - 1010 -20 1010 -20 795 -20 c 0,4,5 - 549 -20 549 -20 381 92 c 1,6,-1 - 261 -53 l 1,7,-1 - 71 -53 l 1,8,-1 - 271 188 l 1,9,10 - 97 380 97 380 97 711 c 0,11,12 - 97 1049 97 1049 282 1239.5 c 128,-1,13 - 467 1430 467 1430 797 1430 c 0,14,15 - 1044 1430 1044 1430 1211 1320 c 1,16,-1 - 1332 1466 l 1,17,-1 - 1524 1466 l 1,18,-1 - 1323 1224 l 1,19,20 - 1495 1034 1495 1034 1495 711 c 0,0,1 -1300 711 m 0,21,22 - 1300 935 1300 935 1202 1079 c 1,23,-1 - 493 226 l 1,24,25 - 615 135 615 135 795 135 c 0,26,27 - 1039 135 1039 135 1169.5 285.5 c 128,-1,28 - 1300 436 1300 436 1300 711 c 0,21,22 -291 711 m 0,29,30 - 291 482 291 482 392 333 c 1,31,-1 - 1099 1186 l 1,32,33 - 975 1274 975 1274 797 1274 c 0,34,35 - 555 1274 555 1274 423 1126 c 128,-1,36 - 291 978 291 978 291 711 c 0,29,30 -EndSplineSet -EndChar - -StartChar: Ugrave -Encoding: 217 217 155 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 20 - 20 - 5 - 38 - 1 - 21 -PUSHW_1 - -24 -PUSHB_5 - 21 - 24 - 4 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1260 1300 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 397 0 2 -EndChar - -StartChar: Uacute -Encoding: 218 218 156 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 20 - 5 - 38 - 1 - 20 - 37 - 20 - 23 - 4 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-24" 730 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1260 1300 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 493 0 2 -EndChar - -StartChar: Ucircumflex -Encoding: 219 219 157 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 21 - 21 - 5 - 38 - 1 - 26 - 0 - 26 - 20 - 4 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-24" 730 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 408 0 2 -EndChar - -StartChar: Udieresis -Encoding: 220 220 158 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 20 - 20 - 5 - 38 - 2 - 1 - 24 -PUSHW_1 - -2 -PUSHB_5 - 24 - 22 - 4 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 414 0 2 -EndChar - -StartChar: Yacute -Encoding: 221 221 159 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 9 - 5 - 38 - 1 - 9 - 65 - 9 - 12 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 464 0 2 -EndChar - -StartChar: Thorn -Encoding: 222 222 160 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 19 - 10 - 6 - 6 - 7 - 14 - 0 - 7 - 0 - 23 - 24 - 5 - 19 - 95 - 89 - 10 - 18 - 95 - 89 - 5 - 10 - 5 - 10 - 6 - 8 - 3 - 6 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 550 1580 basechar 0 -AnchorPoint: "Anchor-15" 1120 1260 basechar 0 -AnchorPoint: "Anchor-14" 650 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1258 735 m 0,0,1 - 1258 607 1258 607 1200 507.5 c 128,-1,2 - 1142 408 1142 408 1032.5 352.5 c 128,-1,3 - 923 297 923 297 773 297 c 2,4,-1 - 359 297 l 1,5,-1 - 359 0 l 1,6,-1 - 168 0 l 1,7,-1 - 168 1409 l 1,8,-1 - 359 1409 l 1,9,-1 - 359 1157 l 1,10,-1 - 761 1157 l 2,11,12 - 1000 1157 1000 1157 1129 1046 c 128,-1,13 - 1258 935 1258 935 1258 735 c 0,0,1 -1066 731 m 0,14,15 - 1066 865 1066 865 984 939.5 c 128,-1,16 - 902 1014 902 1014 738 1014 c 2,17,-1 - 359 1014 l 1,18,-1 - 359 438 l 1,19,-1 - 746 438 l 2,20,21 - 899 438 899 438 982.5 515.5 c 128,-1,22 - 1066 593 1066 593 1066 731 c 0,14,15 -EndSplineSet -EndChar - -StartChar: germandbls -Encoding: 223 223 161 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 65 - 31 - 18 - 44 - 24 - 39 - 6 - 32 - 12 - 12 - 0 - 0 - 39 - 44 - 32 - 4 - 50 - 51 - 36 - 24 - 1 - 21 - 24 - 1 - 6 - 24 - 1 - 43 - 12 - 1 - 26 - 12 - 1 - 3 - 15 - 12 - 1 - 20 - 5 - 24 - 12 - 36 - 3 - 36 - 27 - 80 - 89 - 36 - 0 - 32 - 21 - 3 - 9 - 80 - 89 - 3 - 22 - 112 - 51 - 1 - 79 - 51 - 1 - 63 - 51 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SDS -SDB -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1167 295 m 0,0,1 - 1167 145 1167 145 1073 62.5 c 128,-1,2 - 979 -20 979 -20 809 -20 c 0,3,4 - 638 -20 638 -20 526 29 c 1,5,-1 - 524 193 l 1,6,7 - 576 164 576 164 656 144 c 128,-1,8 - 736 124 736 124 805 124 c 0,9,10 - 897 124 897 124 946 167 c 128,-1,11 - 995 210 995 210 995 289 c 0,12,13 - 995 353 995 353 952.5 404 c 128,-1,14 - 910 455 910 455 813 513 c 0,15,16 - 721 567 721 567 675.5 633 c 128,-1,17 - 630 699 630 699 630 785 c 0,18,19 - 630 846 630 846 658.5 896 c 128,-1,20 - 687 946 687 946 741 991 c 0,21,22 - 799 1039 799 1039 825.5 1081 c 128,-1,23 - 852 1123 852 1123 852 1173 c 0,24,25 - 852 1250 852 1250 785 1296.5 c 128,-1,26 - 718 1343 718 1343 609 1343 c 0,27,28 - 461 1343 461 1343 391.5 1263 c 128,-1,29 - 322 1183 322 1183 322 1021 c 2,30,-1 - 322 0 l 1,31,-1 - 142 0 l 1,32,-1 - 142 1027 l 2,33,34 - 142 1254 142 1254 259.5 1369 c 128,-1,35 - 377 1484 377 1484 609 1484 c 0,36,37 - 799 1484 799 1484 911.5 1403.5 c 128,-1,38 - 1024 1323 1024 1323 1024 1187 c 0,39,40 - 1024 1044 1024 1044 911 941 c 0,41,42 - 832 869 832 869 815 844.5 c 128,-1,43 - 798 820 798 820 798 791 c 0,44,45 - 798 753 798 753 825.5 723.5 c 128,-1,46 - 853 694 853 694 894 665.5 c 128,-1,47 - 935 637 935 637 983 605 c 0,48,49 - 1167 481 1167 481 1167 295 c 0,0,1 -EndSplineSet -EndChar - -StartChar: agrave -Encoding: 224 224 162 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 49 - 49 - 17 - 38 - 2 - 50 -PUSHW_1 - -107 -PUSHB_5 - 50 - 53 - 3 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 950 900 basechar 0 -AnchorPoint: "Anchor-16" 460 1580 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 550 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 188 0 2 -EndChar - -StartChar: aacute -Encoding: 225 225 163 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 49 - 17 - 38 - 2 - 49 - 11 - 49 - 52 - 3 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 950 900 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 340 0 2 -EndChar - -StartChar: acircumflex -Encoding: 226 226 164 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 50 - 50 - 17 - 38 - 2 - 55 -PUSHW_1 - -64 -PUSHB_5 - 55 - 49 - 3 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 950 900 basechar 0 -AnchorPoint: "Anchor-16" 460 1580 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 550 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 218 0 2 -EndChar - -StartChar: atilde -Encoding: 227 227 165 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 49 - 49 - 17 - 38 - 2 - 58 -PUSHW_1 - -32 -PUSHB_5 - 58 - 70 - 3 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 950 900 basechar 0 -AnchorPoint: "Anchor-16" 460 1580 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 550 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 245 0 2 -EndChar - -StartChar: adieresis -Encoding: 228 228 166 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 49 - 49 - 17 - 38 - 3 - 2 - 53 -PUSHW_1 - -54 -PUSHB_5 - 53 - 51 - 3 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 950 900 basechar 0 -AnchorPoint: "Anchor-16" 460 1580 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 550 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 235 0 2 -EndChar - -StartChar: aring -Encoding: 229 229 167 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 52 - 52 - 17 - 38 - 3 - 2 - 55 -PUSHW_1 - -56 -PUSHB_5 - 55 - 49 - 3 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 950 900 basechar 0 -AnchorPoint: "Anchor-16" 460 1580 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 550 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 668 730 N 1 0 0 1 264 0 2 -EndChar - -StartChar: ae -Encoding: 230 230 168 -Width: 1821 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 94 - 29 - 30 - 30 - 45 - 18 - 12 - 34 - 52 - 59 - 1 - 1 - 22 - 52 - 52 - 53 - 18 - 53 - 38 - 7 - 8 - 8 - 38 - 18 - 38 - 60 - 61 - 53 - 39 - 80 - 89 - 13 - 53 - 1 - 20 - 4 - 53 - 53 - 12 - 34 - 10 - 36 - 36 - 56 - 80 - 89 - 36 - 16 - 22 - 40 - 81 - 89 - 22 - 22 - 15 - 32 - 63 - 29 - 1 - 15 - 29 - 111 - 29 - 2 - 11 - 3 - 29 - 29 - 32 - 32 - 26 - 80 - 89 - 32 - 16 - 15 - 48 - 80 - 89 - 15 - 22 - 10 - 4 - 80 - 89 - 239 - 7 - 1 - 128 - 7 - 1 - 7 - 7 - 10 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1360 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1821 1540 basechar 0 -AnchorPoint: "Anchor-20" 1821 -380 basechar 0 -AnchorPoint: "Anchor-18" 1680 900 basechar 0 -AnchorPoint: "Anchor-16" 860 1540 basechar 0 -AnchorPoint: "Anchor-15" 1540 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -968 503 m 1,0,-1 - 968 486 l 2,1,2 - 970 305 970 305 1045 210 c 128,-1,3 - 1120 115 1120 115 1260 115 c 0,4,5 - 1377 115 1377 115 1447.5 162 c 128,-1,6 - 1518 209 1518 209 1543 281 c 1,7,-1 - 1701 236 l 1,8,9 - 1604 -20 1604 -20 1260 -20 c 0,10,11 - 939 -20 939 -20 837 237 c 1,12,13 - 758 97 758 97 653 38.5 c 128,-1,14 - 548 -20 548 -20 402 -20 c 0,15,16 - 235 -20 235 -20 150.5 66 c 128,-1,17 - 66 152 66 152 66 302 c 0,18,19 - 66 476 66 476 185 564 c 128,-1,20 - 304 652 304 652 546 656 c 2,21,-1 - 786 660 l 1,22,-1 - 786 719 l 2,23,24 - 786 854 786 854 730.5 909.5 c 128,-1,25 - 675 965 675 965 554 965 c 0,26,27 - 428 965 428 965 371.5 925 c 128,-1,28 - 315 885 315 885 302 793 c 1,29,-1 - 114 810 l 1,30,31 - 160 1102 160 1102 558 1102 c 0,32,33 - 808 1102 808 1102 907 963 c 1,34,35 - 1025 1102 1025 1102 1253 1102 c 0,36,37 - 1730 1102 1730 1102 1730 527 c 2,38,-1 - 1730 503 l 1,39,-1 - 968 503 l 1,0,-1 -786 534 m 1,40,-1 - 591 530 l 2,41,42 - 458 527 458 527 387.5 500.5 c 128,-1,43 - 317 474 317 474 284 423.5 c 128,-1,44 - 251 373 251 373 251 299 c 0,45,46 - 251 212 251 212 301 163.5 c 128,-1,47 - 351 115 351 115 444 115 c 0,48,49 - 546 115 546 115 622.5 159.5 c 128,-1,50 - 699 204 699 204 742.5 281.5 c 128,-1,51 - 786 359 786 359 786 445 c 2,52,-1 - 786 534 l 1,40,-1 -1544 641 m 1,53,54 - 1529 812 1529 812 1457 890.5 c 128,-1,55 - 1385 969 1385 969 1250 969 c 0,56,57 - 1123 969 1123 969 1049.5 883.5 c 128,-1,58 - 976 798 976 798 970 641 c 1,59,-1 - 1544 641 l 1,53,54 -EndSplineSet -EndChar - -StartChar: ccedilla -Encoding: 231 231 169 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 30 - 40 - 30 - 26 - 13 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 550 1200 basechar 0 -AnchorPoint: "Anchor-15" 860 1200 basechar 0 -AnchorPoint: "Anchor-14" 550 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 70 99 N 1 0 0 1 0 0 3 -Refer: 122 184 N 1 0 0 1 268 0 2 -EndChar - -StartChar: egrave -Encoding: 232 232 170 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 26 - 26 - 17 - 38 - 2 - 27 -PUSHW_1 - -28 -PUSHB_5 - 27 - 30 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 221 0 2 -EndChar - -StartChar: eacute -Encoding: 233 233 171 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 26 - 17 - 38 - 2 - 26 - 84 - 26 - 29 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 368 0 2 -EndChar - -StartChar: ecircumflex -Encoding: 234 234 172 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 27 - 27 - 17 - 38 - 2 - 32 - 8 - 32 - 26 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 245 0 2 -EndChar - -StartChar: edieresis -Encoding: 235 235 173 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 26 - 26 - 17 - 38 - 3 - 2 - 30 - 4 - 30 - 28 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 248 0 2 -EndChar - -StartChar: igrave -Encoding: 236 236 174 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 4 - 4 - 17 - 38 - 1 - 5 -PUSHW_1 - -62 -PUSHB_5 - 5 - 8 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-18" 350 1100 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 -96 0 2 -EndChar - -StartChar: iacute -Encoding: 237 237 175 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 4 - 17 - 38 - 1 - 4 - 63 - 4 - 7 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-24" 290 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-18" 390 1100 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 63 0 2 -EndChar - -StartChar: icircumflex -Encoding: 238 238 176 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 5 - 5 - 17 - 38 - 1 - 10 - 2 - 10 - 4 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-24" 290 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-18" 350 1100 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 -45 0 2 -EndChar - -StartChar: idieresis -Encoding: 239 239 177 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 4 - 4 - 17 - 38 - 2 - 1 - 8 - 2 - 8 - 6 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-18" 350 1100 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -37 0 2 -EndChar - -StartChar: eth -Encoding: 240 240 178 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 28 - 15 - 16 - 13 - 10 - 18 - 21 - 20 - 11 - 8 - 9 - 24 - 34 - 3 - 3 - 25 - 40 - 41 - 18 - 13 - 21 - 10 - 4 - 11 - 19 - 19 - 15 - 6 - 31 - 80 - 89 - 8 - 80 - 6 - 1 - 6 -PUSHW_1 - -64 -NPUSHB - 32 - 7 - 10 - 72 - 36 - 11 - 52 - 11 - 68 - 11 - 3 - 2 - 11 - 18 - 11 - 82 - 11 - 3 - 9 - 3 - 6 - 11 - 6 - 11 - 37 - 15 - 0 - 0 - 37 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -566 -20 m 0,0,1 - 334 -20 334 -20 210 109 c 128,-1,2 - 86 238 86 238 86 481 c 0,3,4 - 86 725 86 725 210 852 c 128,-1,5 - 334 979 334 979 573 979 c 0,6,7 - 710 979 710 979 804 920 c 1,8,9 - 695 1137 695 1137 570 1251 c 1,10,-1 - 269 1118 l 1,11,-1 - 269 1232 l 1,12,-1 - 487 1326 l 1,13,14 - 378 1413 378 1413 245 1484 c 1,15,-1 - 454 1484 l 1,16,17 - 534 1448 534 1448 624 1382 c 1,18,-1 - 930 1514 l 1,19,-1 - 929 1402 l 1,20,-1 - 718 1310 l 1,21,22 - 889 1154 889 1154 976 951 c 128,-1,23 - 1063 748 1063 748 1063 516 c 2,24,-1 - 1063 510 l 2,25,26 - 1063 249 1063 249 938.5 114.5 c 128,-1,27 - 814 -20 814 -20 566 -20 c 0,0,1 -874 481 m 0,28,29 - 874 673 874 673 803.5 759.5 c 128,-1,30 - 733 846 733 846 577 846 c 0,31,32 - 420 846 420 846 347.5 759 c 128,-1,33 - 275 672 275 672 275 481 c 0,34,35 - 275 291 275 291 347 202 c 128,-1,36 - 419 113 419 113 564 113 c 0,37,38 - 725 113 725 113 799.5 200.5 c 128,-1,39 - 874 288 874 288 874 481 c 0,28,29 -EndSplineSet -EndChar - -StartChar: ntilde -Encoding: 241 241 179 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 27 - 27 - 17 - 38 - 1 - 36 - 5 - 36 - 48 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 840 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 460 1580 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 550 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 4 0 3 -Refer: 670 732 N 1 0 0 1 245 0 2 -EndChar - -StartChar: ograve -Encoding: 242 242 180 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 23 - 23 - 17 - 38 - 2 - 24 -PUSHW_1 - -28 -PUSHB_5 - 24 - 27 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 800 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 223 0 2 -EndChar - -StartChar: oacute -Encoding: 243 243 181 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 23 - 17 - 38 - 2 - 23 - 73 - 23 - 26 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 800 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 359 0 2 -EndChar - -StartChar: ocircumflex -Encoding: 244 244 182 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 24 - 24 - 17 - 38 - 2 - 29 - 1 - 29 - 23 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 240 0 2 -EndChar - -StartChar: otilde -Encoding: 245 245 183 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 23 - 23 - 17 - 38 - 2 - 32 - 13 - 32 - 44 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 800 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 247 0 2 -EndChar - -StartChar: odieresis -Encoding: 246 246 184 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 23 - 23 - 17 - 38 - 3 - 2 - 27 - 4 - 27 - 25 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 250 0 2 -EndChar - -StartChar: divide -Encoding: 247 247 185 -Width: 1124 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 3 - 11 - 11 - 0 - 8 - 8 - 4 - 6 - 4 - 6 - 12 - 13 - 8 - 9 - 174 - 89 - 0 - 8 - 80 - 8 - 2 - 13 - 3 - 8 - 4 - 64 - 5 - 4 - 173 - 89 - 1 - 0 - 174 - 89 - 79 - 1 - 159 - 1 - 2 - 1 - 5 - 179 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,white] -DELTAP1 -CALL -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,white] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -478 958 m 1,0,-1 - 478 1141 l 1,1,-1 - 646 1141 l 1,2,-1 - 646 958 l 1,3,-1 - 478 958 l 1,0,-1 -65 608 m 1,4,-1 - 65 754 l 1,5,-1 - 1060 754 l 1,6,-1 - 1060 608 l 1,7,-1 - 65 608 l 1,4,-1 -478 223 m 1,8,-1 - 478 406 l 1,9,-1 - 646 406 l 1,10,-1 - 646 223 l 1,11,-1 - 478 223 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: oslash -Encoding: 248 248 186 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 78 - 22 - 30 - 27 - 19 - 19 - 0 - 27 - 10 - 0 - 10 - 36 - 35 - 29 - 21 - 24 - 32 - 12 - 32 - 80 - 89 - 15 - 12 - 16 - 3 - 24 - 80 - 89 - 6 - 3 - 22 - 240 - 36 - 1 - 160 - 36 - 1 - 144 - 36 - 1 - 224 - 36 - 1 - 223 - 36 - 1 - 192 - 36 - 1 - 176 - 36 - 1 - 160 - 36 - 1 - 144 - 36 - 1 - 128 - 36 - 1 - 112 - 36 - 1 - 96 - 36 - 1 - 80 - 36 - 1 - 64 - 36 - 1 - 32 - 36 - 1 - 0 - 36 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 1040 900 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1112 542 m 0,0,1 - 1112 258 1112 258 987 119 c 128,-1,2 - 862 -20 862 -20 624 -20 c 0,3,4 - 429 -20 429 -20 311 78 c 1,5,-1 - 211 -38 l 1,6,-1 - 44 -38 l 1,7,-1 - 228 176 l 1,8,9 - 145 314 145 314 145 542 c 0,10,11 - 145 1102 145 1102 630 1102 c 0,12,13 - 831 1102 831 1102 946 1011 c 1,14,-1 - 1037 1116 l 1,15,-1 - 1204 1116 l 1,16,-1 - 1031 915 l 1,17,18 - 1112 782 1112 782 1112 542 c 0,0,1 -923 542 m 0,19,20 - 923 671 923 671 900 763 c 1,21,-1 - 417 201 l 1,22,23 - 485 113 485 113 622 113 c 0,24,25 - 784 113 784 113 853.5 217 c 128,-1,26 - 923 321 923 321 923 542 c 0,19,20 -334 542 m 0,27,28 - 334 412 334 412 358 327 c 1,29,-1 - 840 888 l 1,30,31 - 773 969 773 969 633 969 c 0,32,33 - 475 969 475 969 404.5 865.5 c 128,-1,34 - 334 762 334 762 334 542 c 0,27,28 -EndSplineSet -EndChar - -StartChar: ugrave -Encoding: 249 249 187 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 27 - 27 - 17 - 38 - 1 - 28 -PUSHW_1 - -20 -PUSHB_5 - 28 - 31 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 1000 basechar 0 -AnchorPoint: "Anchor-18" 980 1100 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 6 0 3 -Refer: 67 96 N 1 0 0 1 236 0 2 -EndChar - -StartChar: uacute -Encoding: 250 250 188 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 27 - 17 - 38 - 1 - 27 - 53 - 27 - 30 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-24" 500 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 1000 basechar 0 -AnchorPoint: "Anchor-18" 980 1100 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 6 0 3 -Refer: 118 180 N 1 0 0 1 343 0 2 -EndChar - -StartChar: ucircumflex -Encoding: 251 251 189 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 28 - 28 - 17 - 38 - 1 - 33 -PUSHW_1 - -4 -PUSHB_5 - 33 - 27 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-24" 500 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 980 1100 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 6 0 3 -Refer: 648 710 N 1 0 0 1 239 0 2 -EndChar - -StartChar: udieresis -Encoding: 252 252 190 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 27 - 27 - 17 - 38 - 2 - 1 - 31 -PUSHW_1 - -13 -PUSHB_5 - 31 - 29 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 980 1100 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 6 0 3 -Refer: 106 168 N 1 0 0 1 237 0 2 -EndChar - -StartChar: yacute -Encoding: 253 253 191 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 23 - 17 - 38 - 1 - 23 - 54 - 23 - 26 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-18" 940 1100 basechar 0 -AnchorPoint: "Anchor-16" 520 1580 basechar 0 -AnchorPoint: "Anchor-15" 1000 1260 basechar 0 -AnchorPoint: "Anchor-14" 400 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 283 0 2 -EndChar - -StartChar: thorn -Encoding: 254 254 192 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 28 - 4 - 19 - 19 - 20 - 21 - 11 - 20 - 11 - 34 - 35 - 19 - 27 - 4 - 15 - 8 - 13 - 13 - 31 - 80 - 89 - 13 - 22 - 8 - 24 - 80 - 89 - 8 - 16 - 0 - 0 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -138 1484 m 1,0,-1 - 318 1484 l 1,1,-1 - 318 1061 l 2,2,3 - 318 996 318 996 314 908 c 1,4,-1 - 320 908 l 1,5,6 - 368 1008 368 1008 447 1054.5 c 128,-1,7 - 526 1101 526 1101 655 1101 c 0,8,9 - 855 1101 855 1101 954 967 c 128,-1,10 - 1053 833 1053 833 1053 546 c 0,11,12 - 1053 -20 1053 -20 655 -20 c 0,13,14 - 405 -20 405 -20 319 168 c 1,15,-1 - 314 168 l 1,16,17 - 318 160 318 160 318 -2 c 2,18,-1 - 318 -425 l 1,19,-1 - 138 -425 l 1,20,-1 - 138 1484 l 1,0,-1 -864 542 m 0,21,22 - 864 768 864 768 803 865 c 128,-1,23 - 742 962 742 962 609 962 c 0,24,25 - 502 962 502 962 441.5 917 c 128,-1,26 - 381 872 381 872 349.5 776.5 c 128,-1,27 - 318 681 318 681 318 528 c 0,28,29 - 318 315 318 315 386 214 c 128,-1,30 - 454 113 454 113 607 113 c 0,31,32 - 741 113 741 113 802.5 211.5 c 128,-1,33 - 864 310 864 310 864 542 c 0,21,22 -EndSplineSet -EndChar - -StartChar: ydieresis -Encoding: 255 255 193 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 23 - 23 - 17 - 38 - 2 - 1 - 27 -PUSHW_1 - -2 -PUSHB_5 - 27 - 25 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-18" 940 1100 basechar 0 -AnchorPoint: "Anchor-16" 520 1580 basechar 0 -AnchorPoint: "Anchor-15" 1000 1260 basechar 0 -AnchorPoint: "Anchor-14" 400 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 187 0 2 -EndChar - -StartChar: Amacron -Encoding: 256 256 194 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 17 - 17 - 5 - 38 - 2 - 18 - 2 - 18 - 17 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 360 329 2 -EndChar - -StartChar: amacron -Encoding: 257 257 195 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 49 - 49 - 17 - 38 - 2 - 50 -PUSHW_1 - -54 -PUSHB_5 - 50 - 49 - 3 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 233 0 2 -EndChar - -StartChar: Abreve -Encoding: 258 258 196 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 17 - 17 - 5 - 38 - 2 - 20 - 3 - 20 - 28 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 377 0 2 -EndChar - -StartChar: abreve -Encoding: 259 259 197 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 49 - 49 - 17 - 38 - 2 - 52 -PUSHW_1 - -52 -PUSHB_5 - 52 - 58 - 3 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 263 0 2 -EndChar - -StartChar: Aogonek -Encoding: 260 260 198 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 26 -PUSHW_1 - -49 -PUSHB_5 - 26 - 26 - 7 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1240 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 949 11 2 -EndChar - -StartChar: aogonek -Encoding: 261 261 199 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 58 -PUSHW_1 - -62 -PUSHB_5 - 58 - 58 - 26 - 26 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 980 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 709 0 2 -EndChar - -StartChar: Cacute -Encoding: 262 262 200 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 26 - 5 - 38 - 1 - 26 - 126 - 26 - 29 - 16 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 890 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 38 67 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 595 0 2 -EndChar - -StartChar: cacute -Encoding: 263 263 201 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 26 - 17 - 38 - 1 - 26 - 114 - 26 - 29 - 13 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 70 99 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 359 0 2 -EndChar - -StartChar: Ccircumflex -Encoding: 264 264 202 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 27 - 27 - 5 - 38 - 1 - 32 - 38 - 32 - 26 - 16 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 890 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 38 67 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 460 0 2 -EndChar - -StartChar: ccircumflex -Encoding: 265 265 203 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 27 - 27 - 17 - 38 - 1 - 32 - 10 - 32 - 26 - 13 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 70 99 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 208 0 2 -EndChar - -StartChar: Cdotaccent -Encoding: 266 266 204 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 26 - 5 - 38 - 1 - 26 - 39 - 26 - 28 - 16 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 890 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 38 67 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 546 293 2 -EndChar - -StartChar: cdotaccent -Encoding: 267 267 205 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 26 - 17 - 38 - 1 - 26 - 17 - 26 - 28 - 13 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 70 99 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 300 0 2 -EndChar - -StartChar: Ccaron -Encoding: 268 268 206 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 26 - 26 - 5 - 38 - 1 - 28 - 38 - 28 - 34 - 16 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 890 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 38 67 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 460 0 2 -EndChar - -StartChar: ccaron -Encoding: 269 269 207 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 26 - 26 - 17 - 38 - 1 - 28 - 16 - 28 - 34 - 13 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 70 99 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 214 0 2 -EndChar - -StartChar: Dcaron -Encoding: 270 270 208 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 20 - 20 - 5 - 38 - 2 - 22 -PUSHW_1 - -85 -PUSHB_5 - 22 - 28 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 670 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 358 0 2 -EndChar - -StartChar: dcaron -Encoding: 271 271 209 -Width: 1259 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 2 - 43 - 0 - 2 - 43 - 83 - 43 - 43 - 15 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1259 1540 basechar 0 -AnchorPoint: "Anchor-20" 1259 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 71 100 N 1 0 0 1 0 0 2 -Refer: 2300 -1 N 1 0 0 1 954 75 2 -EndChar - -StartChar: Dcroat -Encoding: 272 272 210 -Width: 1479 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 670 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 146 208 N 1 0 0 1 0 0 3 -EndChar - -StartChar: dcroat -Encoding: 273 273 211 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 31 - 16 - 6 - 37 - 17 - 0 - 14 - 14 - 21 - 23 - 6 - 23 - 43 - 44 - 26 - 21 - 23 - 15 - 16 - 15 - 81 - 89 - 20 - 15 - 16 - 31 - 16 - 47 - 16 - 3 - 23 - 3 - 16 - 16 - 18 - 0 - 11 - 0 - 8 - 3 - 8 - 40 - 80 - 89 - 8 -PUSHW_1 - -64 -NPUSHB - 17 - 9 - 13 - 72 - 8 - 16 - 3 - 34 - 80 - 89 - 3 - 22 - 63 - 44 - 1 - 143 - 44 - 1 -DELTAP1 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP2 -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -821 174 m 1,0,1 - 771 70 771 70 688.5 25 c 128,-1,2 - 606 -20 606 -20 484 -20 c 0,3,4 - 279 -20 279 -20 182.5 118 c 128,-1,5 - 86 256 86 256 86 536 c 0,6,7 - 86 1102 86 1102 484 1102 c 0,8,9 - 607 1102 607 1102 689 1057 c 128,-1,10 - 771 1012 771 1012 821 914 c 1,11,-1 - 823 914 l 1,12,-1 - 821 1035 l 1,13,-1 - 821 1206 l 1,14,-1 - 521 1206 l 1,15,-1 - 521 1337 l 1,16,-1 - 821 1337 l 1,17,-1 - 821 1484 l 1,18,-1 - 1001 1484 l 1,19,-1 - 1001 1337 l 1,20,-1 - 1133 1337 l 1,21,-1 - 1133 1206 l 1,22,-1 - 1001 1206 l 1,23,-1 - 1001 223 l 2,24,25 - 1001 54 1001 54 1007 0 c 1,26,-1 - 835 0 l 1,27,28 - 832 16 832 16 828.5 74 c 128,-1,29 - 825 132 825 132 825 174 c 1,30,-1 - 821 174 l 1,0,1 -275 542 m 0,31,32 - 275 315 275 315 335 217 c 128,-1,33 - 395 119 395 119 530 119 c 0,34,35 - 683 119 683 119 752 225 c 128,-1,36 - 821 331 821 331 821 554 c 0,37,38 - 821 769 821 769 752 869 c 128,-1,39 - 683 969 683 969 532 969 c 0,40,41 - 396 969 396 969 335.5 868.5 c 128,-1,42 - 275 768 275 768 275 542 c 0,31,32 -EndSplineSet -EndChar - -StartChar: Emacron -Encoding: 274 274 212 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 12 - 12 - 5 - 38 - 1 - 13 -PUSHW_1 - -19 -PUSHB_5 - 13 - 12 - 0 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 378 329 2 -EndChar - -StartChar: emacron -Encoding: 275 275 213 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 26 - 26 - 17 - 38 - 2 - 27 - 3 - 27 - 26 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 245 0 2 -EndChar - -StartChar: Ebreve -Encoding: 276 276 214 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 12 - 12 - 5 - 38 - 1 - 15 -PUSHW_1 - -21 -PUSHB_5 - 15 - 23 - 0 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 393 0 2 -EndChar - -StartChar: ebreve -Encoding: 277 277 215 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 26 - 26 - 17 - 38 - 2 - 29 - 2 - 29 - 35 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 272 0 2 -EndChar - -StartChar: Edotaccent -Encoding: 278 278 216 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 12 - 5 - 38 - 1 - 12 -PUSHW_1 - -20 -PUSHB_5 - 12 - 14 - 0 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 457 293 2 -EndChar - -StartChar: edotaccent -Encoding: 279 279 217 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 26 - 17 - 38 - 2 - 26 - 2 - 26 - 28 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 324 0 2 -EndChar - -StartChar: Eogonek -Encoding: 280 280 218 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 21 -PUSHW_1 - -62 -PUSHB_5 - 21 - 21 - 11 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 848 0 2 -EndChar - -StartChar: eogonek -Encoding: 281 281 219 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 35 -PUSHW_1 - -270 -PUSHB_5 - 35 - 35 - 7 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 381 0 2 -EndChar - -StartChar: Ecaron -Encoding: 282 282 220 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 12 - 12 - 5 - 38 - 1 - 14 -PUSHW_1 - -25 -PUSHB_5 - 14 - 20 - 0 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 367 0 2 -EndChar - -StartChar: ecaron -Encoding: 283 283 221 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 26 - 26 - 17 - 38 - 2 - 28 -PUSHW_1 - -2 -PUSHB_5 - 28 - 34 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 234 0 2 -EndChar - -StartChar: Gcircumflex -Encoding: 284 284 222 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 32 - 32 - 5 - 38 - 1 - 37 - 34 - 37 - 31 - 0 - 23 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 42 71 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 475 0 2 -EndChar - -StartChar: gcircumflex -Encoding: 285 285 223 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 48 - 48 - 17 - 38 - 2 - 53 - 0 - 53 - 47 - 17 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 74 103 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 216 0 2 -EndChar - -StartChar: Gbreve -Encoding: 286 286 224 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 31 - 31 - 5 - 38 - 1 - 34 - 39 - 34 - 42 - 0 - 23 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 42 71 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 502 0 2 -EndChar - -StartChar: gbreve -Encoding: 287 287 225 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 47 - 47 - 17 - 38 - 2 - 50 - 0 - 50 - 56 - 17 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 74 103 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 249 0 2 -EndChar - -StartChar: Gdotaccent -Encoding: 288 288 226 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 31 - 5 - 38 - 1 - 31 - 39 - 31 - 33 - 0 - 23 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 42 71 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 565 293 2 -EndChar - -StartChar: gdotaccent -Encoding: 289 289 227 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 47 - 17 - 38 - 2 - 47 - 0 - 47 - 49 - 17 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 74 103 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 301 0 2 -EndChar - -StartChar: Gcommaaccent -Encoding: 290 290 228 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 35 - 46 - 35 - 31 - 0 - 23 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 780 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 820 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 42 71 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 590 0 2 -EndChar - -StartChar: gcommaaccent -Encoding: 291 291 229 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 55 - 55 - 17 - 38 - 2 - 47 -PUSHW_1 - -4 -PUSHB_5 - 47 - 51 - 17 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 74 103 N 1 0 0 1 0 0 2 -Refer: 2301 -1 N 1 0 0 1 312 0 2 -EndChar - -StartChar: Hcircumflex -Encoding: 292 292 230 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 13 - 13 - 5 - 38 - 1 - 18 - 0 - 18 - 12 - 4 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1150 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 409 0 2 -EndChar - -StartChar: hcircumflex -Encoding: 293 293 231 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 26 - 26 - 2 - 38 - 1 - 31 -PUSHW_1 - -1 -PUSHB_5 - 31 - 25 - 18 - 6 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 75 104 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 242 64 2 -EndChar - -StartChar: Hbar -Encoding: 294 294 232 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 23 - 11 - 3 - 3 - 8 - 7 - 4 - 20 - 12 - 0 - 0 - 16 - 15 - 19 - 5 - 19 - 1 - 10 - 4 - 1 - 4 - 19 - 24 - 25 - 0 - 25 - 1 - 128 - 25 - 144 - 25 - 160 - 25 - 3 - 25 -PUSHW_1 - -64 -NPUSHB - 40 - 14 - 17 - 72 - 15 - 25 - 1 - 11 - 3 - 23 - 2 - 95 - 89 - 22 - 18 - 6 - 7 - 6 - 95 - 89 - 15 - 11 - 7 - 64 - 23 - 1 - 160 - 23 - 208 - 23 - 2 - 23 - 7 - 23 - 7 - 13 - 9 - 3 - 4 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -IP -IP -MDAP[rnd] -MDAP[rnd] -DELTAP1 -DELTAP2 -SRP1 -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -CALL -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -IP -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1150 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1126 0 m 1,0,-1 - 1126 653 l 1,1,-1 - 359 653 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1025 l 1,5,-1 - 14 1025 l 1,6,-1 - 14 1179 l 1,7,-1 - 168 1179 l 1,8,-1 - 168 1409 l 1,9,-1 - 359 1409 l 1,10,-1 - 359 1179 l 1,11,-1 - 1126 1179 l 1,12,-1 - 1126 1409 l 1,13,-1 - 1312 1409 l 1,14,-1 - 1312 1179 l 1,15,-1 - 1465 1179 l 1,16,-1 - 1465 1025 l 1,17,-1 - 1312 1025 l 1,18,-1 - 1312 0 l 1,19,-1 - 1126 0 l 1,0,-1 -1126 813 m 1,20,-1 - 1126 1025 l 1,21,-1 - 359 1025 l 1,22,-1 - 359 813 l 1,23,-1 - 1126 813 l 1,20,-1 -EndSplineSet -EndChar - -StartChar: hbar -Encoding: 295 295 233 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 29 - 25 - 17 - 17 - 22 - 21 - 18 - 7 - 26 - 18 - 3 - 33 - 8 - 34 - 64 - 34 - 80 - 34 - 96 - 34 - 3 - 64 - 34 - 128 - 34 - 2 - 143 - 34 - 1 - 0 - 34 - 1 - 16 - 3 - 34 -PUSHW_1 - -64 -NPUSHB - 24 - 19 - 23 - 72 - 28 - 20 - 21 - 20 - 81 - 89 - 25 - 21 - 21 - 23 - 0 - 0 - 3 - 18 - 7 - 21 - 3 - 13 - 80 - 89 - 3 -PUSHW_1 - -64 -PUSHB_5 - 9 - 12 - 72 - 3 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MIAP[rnd] -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -317 857 m 1,0,1 - 375 963 375 963 456.5 1012.5 c 128,-1,2 - 538 1062 538 1062 663 1062 c 0,3,4 - 839 1062 839 1062 922.5 974.5 c 128,-1,5 - 1006 887 1006 887 1006 681 c 2,6,-1 - 1006 0 l 1,7,-1 - 825 0 l 1,8,-1 - 825 646 l 2,9,10 - 825 760 825 760 804 815.5 c 128,-1,11 - 783 871 783 871 735 897 c 128,-1,12 - 687 923 687 923 602 923 c 0,13,14 - 475 923 475 923 398.5 835 c 128,-1,15 - 322 747 322 747 322 598 c 2,16,-1 - 322 0 l 1,17,-1 - 142 0 l 1,18,-1 - 142 1206 l 1,19,-1 - 10 1206 l 1,20,-1 - 10 1337 l 1,21,-1 - 142 1337 l 1,22,-1 - 142 1484 l 1,23,-1 - 322 1484 l 1,24,-1 - 322 1337 l 1,25,-1 - 622 1337 l 1,26,-1 - 622 1206 l 1,27,-1 - 322 1206 l 1,28,-1 - 322 1058 l 2,29,30 - 322 997 322 997 318.5 932 c 128,-1,31 - 315 867 315 867 314 857 c 1,32,-1 - 317 857 l 1,0,1 -EndSplineSet -EndChar - -StartChar: Itilde -Encoding: 296 296 234 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 4 - 4 - 5 - 38 - 1 - 13 - 2 - 13 - 25 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 -49 0 2 -EndChar - -StartChar: itilde -Encoding: 297 297 235 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 1 - 4 - 4 - 17 - 38 - 1 - 13 - 0 - 13 - 16 - 13 - 2 - 2 - 13 - 25 - 0 - 2 - 37 -CALL -DELTAP2 -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 -49 0 2 -EndChar - -StartChar: Imacron -Encoding: 298 298 236 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 4 - 4 - 5 - 38 - 1 - 5 - 2 - 5 - 4 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 -39 329 2 -EndChar - -StartChar: imacron -Encoding: 299 299 237 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 4 - 4 - 17 - 38 - 1 - 5 - 2 - 5 - 4 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 -39 0 2 -EndChar - -StartChar: Ibreve -Encoding: 300 300 238 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 4 - 4 - 5 - 38 - 1 - 7 - 2 - 7 - 15 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 -22 0 2 -EndChar - -StartChar: ibreve -Encoding: 301 301 239 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 4 - 4 - 17 - 38 - 1 - 7 - 3 - 7 - 13 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 -11 0 2 -EndChar - -StartChar: Iogonek -Encoding: 302 302 240 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 13 - 0 - 13 - 13 - 3 - 3 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 320 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 12 0 2 -EndChar - -StartChar: iogonek -Encoding: 303 303 241 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 23 - 19 - 1 - 2 - 17 - 0 - 17 - 17 - 7 - 7 - 37 -CALL -SRP1 -SHC[rp1] -DELTAP1 -EndTTInstrs -AnchorPoint: "Anchor-25" 240 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 76 105 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 -49 0 2 -EndChar - -StartChar: Idotaccent -Encoding: 304 304 242 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 4 - 5 - 38 - 1 - 4 - 0 - 4 - 6 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 39 293 2 -EndChar - -StartChar: dotlessi -Encoding: 305 305 243 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 190 - 3 - 0 - 0 - 4 - 5 - 1 - 15 - 0 - 21 - 36 - 5 - 1 - 228 - 5 - 1 - 212 - 5 - 1 - 196 - 5 - 1 - 180 - 5 - 1 - 132 - 5 - 1 - 116 - 5 - 1 - 52 - 5 - 1 - 36 - 5 - 1 - 20 - 5 - 1 - 4 - 5 - 1 - 110 - 228 - 5 - 1 - 212 - 5 - 1 - 196 - 5 - 1 - 180 - 5 - 1 - 64 - 5 - 1 - 52 - 5 - 1 - 36 - 5 - 1 - 20 - 5 - 1 - 144 - 5 - 1 - 132 - 5 - 1 - 116 - 5 - 1 - 100 - 5 - 1 - 228 - 5 - 1 - 212 - 5 - 1 - 196 - 5 - 1 - 180 - 5 - 1 - 107 - 5 - 1 - 52 - 5 - 1 - 36 - 5 - 1 - 20 - 5 - 1 - 4 - 5 - 1 - 56 - 219 - 5 - 1 - 203 - 5 - 1 - 148 - 5 - 1 - 132 - 5 - 1 - 116 - 5 - 1 - 100 - 5 - 1 - 43 - 5 - 1 - 27 - 5 - 1 - 228 - 5 - 1 - 212 - 5 - 1 - 196 - 5 - 1 - 123 - 5 - 1 - 107 - 5 - 1 - 64 - 5 - 1 - 2 - 48 - 5 - 1 - 32 - 5 - 1 - 16 - 5 - 1 - 207 - 5 - 1 - 191 - 5 - 1 - 144 - 5 - 1 - 128 - 5 - 1 - 112 - 5 - 1 - 96 - 5 - 1 - 64 - 5 - 1 - 32 - 5 - 1 - 31 - 5 - 1 - 15 - 5 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 210 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-18" 380 1100 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -194 0 m 1,0,-1 - 194 1082 l 1,1,-1 - 374 1082 l 1,2,-1 - 374 0 l 1,3,-1 - 194 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: IJ -Encoding: 306 306 244 -Width: 1505 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 1000 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1505 1540 basechar 0 -AnchorPoint: "Anchor-20" 1505 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 -19 0 2 -Refer: 45 74 N 1 0 0 1 481 0 2 -EndChar - -StartChar: ij -Encoding: 307 307 245 -Width: 909 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 3 - 2 - 8 - 111 - 8 - 1 - 16 - 8 - 48 - 8 - 2 - 1 - 0 - 16 - 0 - 1 -DELTAP1 -SHC[rp1] -SHC[rp1] -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 540 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 909 1580 basechar 0 -AnchorPoint: "Anchor-20" 909 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 460 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 76 105 N 1 0 0 1 0 0 2 -Refer: 77 106 N 1 0 0 1 454 0 2 -EndChar - -StartChar: Jcircumflex -Encoding: 308 308 246 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 18 - 18 - 5 - 38 - 1 - 23 - 190 - 23 - 17 - 2 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 460 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 660 1540 basechar 0 -AnchorPoint: "Anchor-15" 880 1540 basechar 0 -AnchorPoint: "Anchor-14" 460 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 45 74 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 311 0 2 -EndChar - -StartChar: jcircumflex -Encoding: 309 309 247 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 196 - 22 - 21 - 17 - 17 - 14 - 19 - 14 - 10 - 10 - 3 - 19 - 7 - 7 - 24 - 23 - 19 - 21 - 148 - 91 - 15 - 19 - 47 - 19 - 63 - 19 - 127 - 19 - 239 - 19 - 5 - 9 - 3 - 19 - 8 - 15 - 0 - 4 - 80 - 89 - 0 - 27 - 207 - 24 - 1 - 191 - 24 - 1 - 143 - 24 - 1 - 63 - 24 - 1 - 47 - 24 - 1 - 31 - 24 - 1 - 0 - 24 - 1 - 111 - 239 - 24 - 1 - 208 - 24 - 1 - 63 - 24 - 1 - 255 - 24 - 1 - 175 - 24 - 1 - 159 - 24 - 1 - 143 - 24 - 1 - 111 - 24 - 1 - 80 - 24 - 1 - 64 - 24 - 1 - 48 - 24 - 1 - 32 - 24 - 1 - 223 - 24 - 1 - 176 - 24 - 1 - 160 - 24 - 1 - 144 - 24 - 1 - 79 - 24 - 1 - 63 - 24 - 1 - 47 - 24 - 1 - 0 - 24 - 1 - 61 - 255 - 24 - 1 - 239 - 24 - 1 - 223 - 24 - 1 - 207 - 24 - 1 - 176 - 24 - 1 - 144 - 24 - 1 - 128 - 24 - 1 - 112 - 24 - 1 - 31 - 24 - 1 - 15 - 24 - 1 - 255 - 24 - 1 - 223 - 24 - 1 - 207 - 24 - 1 - 191 - 24 - 1 - 175 - 24 - 1 - 144 - 24 - 1 - 79 - 24 - 1 - 255 - 24 - 1 - 224 - 24 - 1 - 208 - 24 - 1 - 192 - 24 - 1 - 128 - 24 - 1 - 112 - 24 - 1 - 31 - 24 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 100 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 140 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -77 -425 m 0,0,1 - 0 -425 0 -425 -50 -416 c 1,2,-1 - -50 -277 l 1,3,-1 - 12 -283 l 1,4,5 - 81 -283 81 -283 109 -247 c 128,-1,6 - 137 -211 137 -211 137 -107 c 2,7,-1 - 137 1082 l 1,8,-1 - 317 1082 l 1,9,-1 - 317 -134 l 2,10,11 - 317 -287 317 -287 257 -356 c 128,-1,12 - 197 -425 197 -425 77 -425 c 0,0,1 -559 1221 m 1,13,-1 - 559 1201 l 1,14,-1 - 454 1201 l 1,15,-1 - 235 1370 l 1,16,-1 - 233 1370 l 1,17,-1 - 1 1201 l 1,18,-1 - -103 1201 l 1,19,-1 - -103 1221 l 1,20,-1 - 131 1491 l 1,21,-1 - 335 1491 l 1,22,-1 - 559 1221 l 1,13,-1 -EndSplineSet -EndChar - -StartChar: Kcommaaccent -Encoding: 310 310 248 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 16 -PUSHW_1 - -51 -PUSHB_5 - 16 - 12 - 4 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 46 75 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 477 0 2 -EndChar - -StartChar: kcommaaccent -Encoding: 311 311 249 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 16 -PUSHW_1 - -21 -PUSHB_5 - 16 - 12 - 4 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 900 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 78 107 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 334 0 2 -EndChar - -StartChar: kgreenlandic -Encoding: 312 312 250 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 0 - 13 - 7 - 3 - 3 - 4 - 8 - 9 - 9 - 10 - 4 - 3 - 12 - 11 - 13 - 128 - 13 - 192 - 13 - 224 - 13 - 3 - 63 - 13 - 1 - 2 - 1 - 7 - 10 - 4 - 8 - 8 - 5 - 15 - 4 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -SRP1 -SLOOP -IP -SVTCA[x-axis] -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -816 0 m 1,0,-1 - 450 494 l 1,1,-1 - 318 386 l 1,2,-1 - 318 0 l 1,3,-1 - 138 0 l 1,4,-1 - 138 1082 l 1,5,-1 - 318 1082 l 1,6,-1 - 318 557 l 1,7,-1 - 793 1082 l 1,8,-1 - 1004 1082 l 1,9,-1 - 565 617 l 1,10,-1 - 1027 0 l 1,11,-1 - 816 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: Lacute -Encoding: 313 313 251 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 6 - 5 - 38 - 1 - 6 -PUSHW_1 - -162 -PUSHB_5 - 6 - 9 - 0 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 173 0 2 -EndChar - -StartChar: lacute -Encoding: 314 314 252 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 4 - 2 - 38 - 1 - 4 - 75 - 4 - 7 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-24" 230 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1840 basechar 0 -AnchorPoint: "Anchor-20" 440 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 19 78 2 -EndChar - -StartChar: Lcommaaccent -Encoding: 315 315 253 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 10 -PUSHW_1 - -3 -PUSHB_5 - 10 - 6 - 0 - 4 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 560 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 389 0 2 -EndChar - -StartChar: lcommaaccent -Encoding: 316 316 254 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 8 -PUSHW_1 - -1 -PUSHB_5 - 8 - 4 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 -1 0 2 -EndChar - -StartChar: Lcaron -Encoding: 317 317 255 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 1 - 14 - 3 - 1 - 10 - 138 - 10 - 6 - 0 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 3 -Refer: 2300 -1 N 1 0 0 1 533 0 2 -EndChar - -StartChar: lcaron -Encoding: 318 318 256 -Width: 597 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 79 - 15 - 1 - 47 - 15 - 159 - 15 - 223 - 15 - 3 - 112 - 15 - 128 - 15 - 2 - 1 - 12 - 0 - 1 - 8 -PUSHW_1 - 288 -PUSHB_5 - 8 - 4 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -DELTAP2 -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 597 1540 basechar 0 -AnchorPoint: "Anchor-20" 730 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 2 -Refer: 2300 -1 N 1 0 0 1 292 75 2 -EndChar - -StartChar: Ldot -Encoding: 319 319 257 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 6 - 95 - 6 - 8 - 0 - 4 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 469 -625 2 -EndChar - -StartChar: ldot -Encoding: 320 320 258 -Width: 684 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 4 -PUSHW_1 - 340 -PUSHB_5 - 4 - 6 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 684 1540 basechar 0 -AnchorPoint: "Anchor-20" 820 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 2 -Refer: 667 729 N 1 0 0 1 322 -625 2 -EndChar - -StartChar: Lslash -Encoding: 321 321 259 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 12 - 0 - 2 - 2 - 9 - 7 - 5 - 3 - 5 - 15 - 14 - 6 - 1 - 9 - 12 - 4 - 16 - 7 - 1 - 7 - 64 - 0 - 13 - 1 - 9 - 3 - 13 - 13 - 5 - 10 - 3 - 5 - 2 - 95 - 89 - 5 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -SMD -MDRP[min,rnd,black] -DELTAP1 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -616 797 m 1,0,-1 - 359 648 l 1,1,-1 - 359 156 l 1,2,-1 - 1071 156 l 1,3,-1 - 1071 0 l 1,4,-1 - 168 0 l 1,5,-1 - 168 538 l 1,6,-1 - 20 453 l 1,7,-1 - 20 611 l 1,8,-1 - 168 696 l 1,9,-1 - 168 1409 l 1,10,-1 - 359 1409 l 1,11,-1 - 359 806 l 1,12,-1 - 616 954 l 1,13,-1 - 616 797 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: lslash -Encoding: 322 322 260 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 8 - 7 - 11 - 11 - 4 - 2 - 0 - 0 - 12 - 13 - 1 - 10 - 4 - 7 - 4 - 2 - 79 - 8 - 1 - 8 - 8 - 5 - 0 - 0 - 21 - 255 - 13 - 1 - 208 - 13 - 1 - 192 - 13 - 1 - 128 - 13 - 1 - 112 - 13 - 1 - 31 - 13 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -DELTAP1 -MDRP[min,rnd,black] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -138 0 m 1,0,-1 - 138 542 l 1,1,-1 - 16 474 l 1,2,-1 - 16 632 l 1,3,-1 - 138 700 l 1,4,-1 - 138 1484 l 1,5,-1 - 318 1484 l 1,6,-1 - 318 804 l 1,7,-1 - 442 876 l 1,8,-1 - 442 717 l 1,9,-1 - 318 646 l 1,10,-1 - 318 0 l 1,11,-1 - 138 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: Nacute -Encoding: 323 323 261 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 14 - 5 - 38 - 1 - 14 - 73 - 14 - 17 - 5 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1840 basechar 0 -AnchorPoint: "Anchor-20" 1460 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 529 0 2 -EndChar - -StartChar: nacute -Encoding: 324 324 262 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 27 - 17 - 38 - 1 - 27 - 97 - 27 - 30 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 840 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1120 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 4 0 3 -Refer: 118 180 N 1 0 0 1 388 0 2 -EndChar - -StartChar: Ncommaaccent -Encoding: 325 325 263 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 18 -PUSHW_1 - -4 -PUSHB_5 - 18 - 14 - 5 - 12 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 720 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 508 0 2 -EndChar - -StartChar: ncommaaccent -Encoding: 326 326 264 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 31 - 0 - 31 - 27 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 900 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 4 0 3 -Refer: 2298 -1 N 1 0 0 1 347 0 2 -EndChar - -StartChar: Ncaron -Encoding: 327 327 265 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 14 - 14 - 5 - 38 - 1 - 16 -PUSHW_1 - -6 -PUSHB_5 - 16 - 22 - 5 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1840 basechar 0 -AnchorPoint: "Anchor-20" 1460 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 403 0 2 -EndChar - -StartChar: ncaron -Encoding: 328 328 266 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 27 - 27 - 17 - 38 - 1 - 29 -PUSHW_1 - -2 -PUSHB_5 - 29 - 35 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 840 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1120 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 4 0 3 -Refer: 649 711 N 1 0 0 1 242 0 2 -EndChar - -StartChar: napostrophe -Encoding: 329 329 267 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 36 - 3 - 1 - 36 -PUSHW_1 - -41 -PUSHB_5 - 36 - 36 - 10 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 955 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1237 1540 basechar 0 -AnchorPoint: "Anchor-20" 1237 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 98 0 2 -Refer: 2021 8217 N 1 0 0 1 -129 0 2 -EndChar - -StartChar: Eng -Encoding: 330 330 268 -Width: 1481 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 10 - 33 - 25 - 19 - 19 - 20 - 20 - 3 - 33 - 3 - 38 - 37 - 25 - 29 - 0 - 29 - 14 - 95 - 89 - 29 - 4 - 22 - 3 - 19 - 18 - 0 - 6 - 95 - 89 - 4 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1481 1540 basechar 0 -AnchorPoint: "Anchor-20" 1481 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -941 -20 m 0,0,1 - 846 -20 846 -20 764 17 c 128,-1,2 - 682 54 682 54 623 128 c 1,3,-1 - 750 243 l 1,4,5 - 840 133 840 133 946 133 c 0,6,7 - 1019 133 1019 133 1061.5 172.5 c 128,-1,8 - 1104 212 1104 212 1123 293 c 128,-1,9 - 1142 374 1142 374 1142 546 c 2,10,-1 - 1142 868 l 2,11,12 - 1142 1081 1142 1081 1063.5 1177.5 c 128,-1,13 - 985 1274 985 1274 808 1274 c 0,14,15 - 689 1274 689 1274 585 1222 c 128,-1,16 - 481 1170 481 1170 420.5 1081 c 128,-1,17 - 360 992 360 992 360 891 c 2,18,-1 - 360 0 l 1,19,-1 - 169 0 l 1,20,-1 - 169 1092 l 1,21,-1 - 165 1409 l 1,22,-1 - 349 1409 l 1,23,24 - 356 1255 356 1255 356 1158 c 1,25,-1 - 360 1158 l 1,26,27 - 432 1287 432 1287 567.5 1358 c 128,-1,28 - 703 1429 703 1429 866 1429 c 0,29,30 - 1112 1429 1112 1429 1222 1300 c 128,-1,31 - 1332 1171 1332 1171 1332 889 c 2,32,-1 - 1332 542 l 2,33,34 - 1332 320 1332 320 1293.5 206.5 c 128,-1,35 - 1255 93 1255 93 1170 36.5 c 128,-1,36 - 1085 -20 1085 -20 941 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: eng -Encoding: 331 331 269 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 7 - 33 - 25 - 16 - 16 - 17 - 17 - 2 - 33 - 3 - 37 - 36 - 25 - 29 - 16 - 29 - 12 - 80 - 89 - 29 - 16 - 20 - 15 - 16 - 21 - 0 - 4 - 80 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 810 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -769 -425 m 0,0,1 - 692 -425 692 -425 642 -416 c 1,2,-1 - 642 -277 l 1,3,-1 - 704 -283 l 1,4,5 - 773 -283 773 -283 801 -247 c 128,-1,6 - 829 -211 829 -211 829 -107 c 2,7,-1 - 829 686 l 2,8,9 - 829 793 829 793 808 852 c 128,-1,10 - 787 911 787 911 741 937 c 128,-1,11 - 695 963 695 963 606 963 c 0,12,13 - 476 963 476 963 401 874 c 128,-1,14 - 326 785 326 785 326 627 c 2,15,-1 - 326 0 l 1,16,-1 - 146 0 l 1,17,-1 - 146 851 l 2,18,19 - 146 1040 146 1040 140 1082 c 1,20,-1 - 310 1082 l 1,21,22 - 311 1077 311 1077 312 1055 c 128,-1,23 - 313 1033 313 1033 314.5 1004.5 c 128,-1,24 - 316 976 316 976 318 897 c 1,25,-1 - 321 897 l 1,26,27 - 383 1009 383 1009 464.5 1055.5 c 128,-1,28 - 546 1102 546 1102 667 1102 c 0,29,30 - 845 1102 845 1102 927.5 1013.5 c 128,-1,31 - 1010 925 1010 925 1010 721 c 2,32,-1 - 1010 -134 l 2,33,34 - 1010 -285 1010 -285 950 -355 c 128,-1,35 - 890 -425 890 -425 769 -425 c 0,0,1 -EndSplineSet -EndChar - -StartChar: Omacron -Encoding: 332 332 270 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 27 - 27 - 5 - 38 - 2 - 28 - 0 - 28 - 27 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 470 329 2 -EndChar - -StartChar: omacron -Encoding: 333 333 271 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 23 - 23 - 17 - 38 - 2 - 24 - 0 - 24 - 23 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 244 0 2 -EndChar - -StartChar: Obreve -Encoding: 334 334 272 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 27 - 27 - 5 - 38 - 2 - 30 - 0 - 30 - 38 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 487 0 2 -EndChar - -StartChar: obreve -Encoding: 335 335 273 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 23 - 23 - 17 - 38 - 2 - 26 - 0 - 26 - 32 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 272 0 2 -EndChar - -StartChar: Ohungarumlaut -Encoding: 336 336 274 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 2 - 27 - 5 - 38 - 3 - 2 - 27 - 93 - 27 - 36 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2308 -1 N 1 0 0 1 482 0 2 -EndChar - -StartChar: ohungarumlaut -Encoding: 337 337 275 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 2 - 23 - 17 - 38 - 3 - 2 - 23 - 103 - 23 - 32 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 671 733 N 1 0 0 1 265 0 2 -EndChar - -StartChar: OE -Encoding: 338 338 276 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 52 - 30 - 5 - 0 - 10 - 14 - 18 - 18 - 16 - 12 - 23 - 19 - 19 - 23 - 5 - 3 - 33 - 34 - 14 - 17 - 95 - 89 - 14 - 14 - 19 - 11 - 20 - 19 - 95 - 89 - 20 - 18 - 11 - 12 - 95 - 89 - 11 - 3 - 8 - 27 - 95 - 89 - 8 - 4 - 2 - 21 - 95 - 89 - 2 - 19 - 127 - 34 - 1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SRP2 -IP -IP -SHP[rp2] -SRP1 -SHP[rp1] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2048 1840 basechar 0 -AnchorPoint: "Anchor-20" 2048 -380 basechar 0 -AnchorPoint: "Anchor-16" 1100 1540 basechar 0 -AnchorPoint: "Anchor-15" 1860 1540 basechar 0 -AnchorPoint: "Anchor-14" 1020 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -999 0 m 1,0,1 - 932 -10 932 -10 789 -10 c 0,2,3 - 466 -10 466 -10 281.5 183 c 128,-1,4 - 97 376 97 376 97 711 c 0,5,6 - 97 1043 97 1043 281 1231.5 c 128,-1,7 - 465 1420 465 1420 791 1420 c 0,8,9 - 898 1420 898 1420 1003 1409 c 1,10,-1 - 1917 1409 l 1,11,-1 - 1917 1253 l 1,12,-1 - 1114 1253 l 1,13,-1 - 1114 801 l 1,14,-1 - 1857 801 l 1,15,-1 - 1857 647 l 1,16,-1 - 1114 647 l 1,17,-1 - 1114 156 l 1,18,-1 - 1958 156 l 1,19,-1 - 1958 0 l 1,20,-1 - 999 0 l 1,0,1 -789 145 m 0,21,22 - 871 145 871 145 923 149 c 1,23,-1 - 923 1260 l 1,24,25 - 879 1264 879 1264 842.5 1264 c 128,-1,26 - 806 1264 806 1264 791 1264 c 0,27,28 - 546 1264 546 1264 418.5 1121 c 128,-1,29 - 291 978 291 978 291 711 c 0,30,31 - 291 443 291 443 422.5 294 c 128,-1,32 - 554 145 554 145 789 145 c 0,21,22 -EndSplineSet -EndChar - -StartChar: oe -Encoding: 339 339 277 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 69 - 33 - 16 - 11 - 21 - 27 - 44 - 0 - 0 - 27 - 6 - 7 - 7 - 38 - 25 - 25 - 27 - 16 - 3 - 45 - 46 - 44 - 0 - 80 - 89 - 13 - 44 - 1 - 20 - 4 - 44 - 44 - 9 - 23 - 23 - 41 - 80 - 89 - 23 - 16 - 21 - 11 - 19 - 13 - 19 - 30 - 80 - 89 - 19 - 16 - 13 - 35 - 80 - 89 - 13 - 22 - 9 - 3 - 80 - 89 - 239 - 6 - 1 - 128 - 6 - 1 - 6 - 6 - 9 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1460 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1933 1540 basechar 0 -AnchorPoint: "Anchor-20" 1933 -380 basechar 0 -AnchorPoint: "Anchor-18" 1780 900 basechar 0 -AnchorPoint: "Anchor-16" 920 1200 basechar 0 -AnchorPoint: "Anchor-15" 1780 1260 basechar 0 -AnchorPoint: "Anchor-14" 980 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1070 503 m 1,0,1 - 1070 317 1070 317 1147 216 c 128,-1,2 - 1224 115 1224 115 1372 115 c 0,3,4 - 1489 115 1489 115 1559.5 162 c 128,-1,5 - 1630 209 1630 209 1655 281 c 1,6,-1 - 1813 236 l 1,7,8 - 1716 -20 1716 -20 1372 -20 c 0,9,10 - 1097 -20 1097 -20 976 163 c 1,11,12 - 852 -20 852 -20 575 -20 c 0,13,14 - 337 -20 337 -20 211.5 124.5 c 128,-1,15 - 86 269 86 269 86 542 c 0,16,17 - 86 821 86 821 212.5 961.5 c 128,-1,18 - 339 1102 339 1102 581 1102 c 0,19,20 - 862 1102 862 1102 979 925 c 1,21,22 - 1105 1102 1105 1102 1365 1102 c 0,23,24 - 1842 1102 1842 1102 1842 527 c 2,25,-1 - 1842 503 l 1,26,-1 - 1070 503 l 1,0,1 -881 542 m 0,27,28 - 881 761 881 761 812 865 c 128,-1,29 - 743 969 743 969 584 969 c 0,30,31 - 422 969 422 969 348.5 862.5 c 128,-1,32 - 275 756 275 756 275 542 c 0,33,34 - 275 113 275 113 573 113 c 0,35,36 - 737 113 737 113 809 217 c 128,-1,37 - 881 321 881 321 881 542 c 0,27,28 -1656 641 m 1,38,39 - 1641 812 1641 812 1569 890.5 c 128,-1,40 - 1497 969 1497 969 1362 969 c 0,41,42 - 1231 969 1231 969 1154.5 881.5 c 128,-1,43 - 1078 794 1078 794 1072 641 c 1,44,-1 - 1656 641 l 1,38,39 -EndSplineSet -EndChar - -StartChar: Racute -Encoding: 340 340 278 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 23 - 5 - 38 - 2 - 23 -PUSHW_1 - -11 -PUSHB_5 - 23 - 26 - 4 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 481 0 2 -EndChar - -StartChar: racute -Encoding: 341 341 279 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 20 - 17 - 38 - 1 - 20 - 74 - 20 - 23 - 3 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 85 114 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 182 0 2 -EndChar - -StartChar: Rcommaaccent -Encoding: 342 342 280 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 27 -PUSHW_1 - -31 -PUSHB_5 - 27 - 23 - 4 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 517 0 2 -EndChar - -StartChar: rcommaaccent -Encoding: 343 343 281 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 24 -PUSHW_1 - -162 -PUSHB_5 - 24 - 20 - 3 - 12 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 180 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 400 1200 basechar 0 -AnchorPoint: "Anchor-15" 600 1260 basechar 0 -AnchorPoint: "Anchor-14" 240 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 85 114 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 2 0 2 -EndChar - -StartChar: Rcaron -Encoding: 344 344 282 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 23 - 23 - 5 - 38 - 2 - 25 -PUSHW_1 - -87 -PUSHB_5 - 25 - 31 - 4 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 358 0 2 -EndChar - -StartChar: rcaron -Encoding: 345 345 283 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 20 - 20 - 17 - 38 - 1 - 22 -PUSHW_1 - -5 -PUSHB_5 - 22 - 28 - 3 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 85 114 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 56 0 2 -EndChar - -StartChar: Sacute -Encoding: 346 346 284 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 46 - 5 - 38 - 1 - 46 - 91 - 46 - 49 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 490 329 2 -EndChar - -StartChar: sacute -Encoding: 347 347 285 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 43 - 17 - 38 - 1 - 43 - 93 - 43 - 46 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 313 0 2 -EndChar - -StartChar: Scircumflex -Encoding: 348 348 286 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 47 - 47 - 5 - 38 - 1 - 52 - 18 - 52 - 46 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 370 0 2 -EndChar - -StartChar: scircumflex -Encoding: 349 349 287 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 44 - 44 - 17 - 38 - 1 - 49 - 0 - 49 - 43 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 172 0 2 -EndChar - -StartChar: Scedilla -Encoding: 350 350 288 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 50 - 40 - 50 - 46 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 730 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 689 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 122 184 N 1 0 0 1 422 0 2 -EndChar - -StartChar: scedilla -Encoding: 351 351 289 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 47 - 15 - 47 - 43 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 520 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 122 184 N 1 0 0 1 218 0 2 -EndChar - -StartChar: Scaron -Encoding: 352 352 290 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 46 - 46 - 5 - 38 - 1 - 48 - 19 - 48 - 54 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 371 0 2 -EndChar - -StartChar: scaron -Encoding: 353 353 291 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 43 - 43 - 17 - 38 - 1 - 45 - 0 - 45 - 51 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 173 0 2 -EndChar - -StartChar: Tcommaaccent -Encoding: 354 354 292 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 12 - 26 - 12 - 8 - 3 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 650 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1300 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 55 84 N 1 0 0 1 0 0 3 -Refer: 122 184 N 1 0 0 1 350 0 2 -EndChar - -StartChar: tcommaaccent -Encoding: 355 355 293 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 137 - 15 - 41 - 31 - 41 - 47 - 41 - 95 - 41 - 111 - 41 - 5 - 226 - 15 - 41 - 63 - 41 - 79 - 41 - 95 - 41 - 111 - 41 - 127 - 41 - 191 - 41 - 7 - 15 - 41 - 31 - 41 - 47 - 41 - 95 - 41 - 143 - 41 - 159 - 41 - 191 - 41 - 207 - 41 - 8 - 15 - 41 - 31 - 41 - 47 - 41 - 63 - 41 - 111 - 41 - 127 - 41 - 207 - 41 - 223 - 41 - 239 - 41 - 9 - 178 - 15 - 41 - 31 - 41 - 95 - 41 - 111 - 41 - 127 - 41 - 143 - 41 - 191 - 41 - 207 - 41 - 8 - 15 - 41 - 31 - 41 - 47 - 41 - 63 - 41 - 111 - 41 - 175 - 41 - 191 - 41 - 207 - 41 - 223 - 41 - 239 - 41 - 10 - 15 - 41 - 31 - 41 - 63 - 41 - 79 - 41 - 111 - 41 - 127 - 41 - 143 - 41 - 191 - 41 - 207 - 41 - 239 - 41 - 255 - 41 - 11 - 130 - 128 - 41 - 1 - 1 - 25 - 17 - 25 - 21 - 4 - 20 - 37 -CALL -SRP1 -SHC[rp1] -DELTAP1 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -EndTTInstrs -AnchorPoint: "Anchor-25" 320 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 620 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 87 116 N 1 0 0 1 0 0 2 -Refer: 122 184 N 1 0 0 1 80 0 2 -EndChar - -StartChar: Tcaron -Encoding: 356 356 294 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 8 - 8 - 5 - 38 - 1 - 10 -PUSHW_1 - -5 -PUSHB_5 - 10 - 16 - 4 - 6 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1300 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 55 84 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 289 0 2 -EndChar - -StartChar: tcaron -Encoding: 357 357 295 -Width: 768 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 1 - 25 -PUSHW_1 - 392 -PUSHB_5 - 25 - 21 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 768 1540 basechar 0 -AnchorPoint: "Anchor-20" 880 -380 basechar 0 -AnchorPoint: "Anchor-16" 260 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 87 116 N 1 0 0 1 0 0 2 -Refer: 2300 -1 N 1 0 0 1 460 75 2 -EndChar - -StartChar: Tbar -Encoding: 358 358 296 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 1 - 5 - 5 - 10 - 6 - 6 - 9 - 12 - 14 - 2 - 5 - 17 - 16 - 0 - 12 - 13 - 12 - 95 - 89 - 4 - 8 - 9 - 8 - 95 - 89 - 1 - 9 - 9 - 5 - 13 - 3 - 5 - 18 - 32 - 17 - 1 - 16 - 17 - 1 - 0 - 17 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -720 1253 m 1,0,-1 - 720 801 l 1,1,-1 - 1001 801 l 1,2,-1 - 1001 647 l 1,3,-1 - 720 647 l 1,4,-1 - 720 0 l 1,5,-1 - 530 0 l 1,6,-1 - 530 647 l 1,7,-1 - 251 647 l 1,8,-1 - 251 801 l 1,9,-1 - 530 801 l 1,10,-1 - 530 1253 l 1,11,-1 - 46 1253 l 1,12,-1 - 46 1409 l 1,13,-1 - 1204 1409 l 1,14,-1 - 1204 1253 l 1,15,-1 - 720 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: tbar -Encoding: 359 359 297 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 64 - 6 - 27 - 18 - 13 - 13 - 11 - 23 - 27 - 27 - 26 - 22 - 1 - 1 - 19 - 15 - 11 - 11 - 29 - 30 - 15 - 30 - 1 - 11 - 0 - 30 - 1 - 17 - 3 - 25 - 17 - 18 - 17 - 80 - 89 - 0 - 13 - 14 - 13 - 80 - 89 - 26 - 15 - 14 - 79 - 14 - 95 - 14 - 3 - 16 - 3 - 14 - 14 - 9 - 22 - 20 - 64 - 18 - 15 - 9 - 4 - 80 - 89 - 9 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,white] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SDB -DELTAP1 -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 260 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -336 516 m 1,0,-1 - 336 268 l 2,1,2 - 336 190 336 190 361.5 158.5 c 128,-1,3 - 387 127 387 127 450 127 c 0,4,5 - 486 127 486 127 554 141 c 1,6,-1 - 554 8 l 1,7,8 - 465 -16 465 -16 372 -16 c 0,9,10 - 156 -16 156 -16 156 229 c 2,11,-1 - 156 516 l 1,12,-1 - 31 516 l 1,13,-1 - 31 647 l 1,14,-1 - 156 647 l 1,15,-1 - 156 951 l 1,16,-1 - 31 951 l 1,17,-1 - 31 1082 l 1,18,-1 - 163 1082 l 1,19,-1 - 216 1324 l 1,20,-1 - 336 1324 l 1,21,-1 - 336 1082 l 1,22,-1 - 536 1082 l 1,23,-1 - 536 951 l 1,24,-1 - 336 951 l 1,25,-1 - 336 647 l 1,26,-1 - 536 647 l 1,27,-1 - 536 516 l 1,28,-1 - 336 516 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: Utilde -Encoding: 360 360 298 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 20 - 20 - 5 - 38 - 1 - 29 - 0 - 29 - 41 - 4 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1260 1300 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 404 0 2 -EndChar - -StartChar: utilde -Encoding: 361 361 299 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 27 - 27 - 17 - 38 - 1 - 36 - 13 - 36 - 48 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 980 1000 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 246 0 2 -EndChar - -StartChar: Umacron -Encoding: 362 362 300 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 20 - 20 - 5 - 38 - 1 - 21 - 1 - 21 - 20 - 4 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 415 329 2 -EndChar - -StartChar: umacron -Encoding: 363 363 301 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 27 - 27 - 17 - 38 - 1 - 28 -PUSHW_1 - -2 -PUSHB_5 - 28 - 27 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 240 0 2 -EndChar - -StartChar: Ubreve -Encoding: 364 364 302 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 20 - 20 - 5 - 38 - 1 - 23 - 0 - 23 - 31 - 4 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 430 0 2 -EndChar - -StartChar: ubreve -Encoding: 365 365 303 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 27 - 27 - 17 - 38 - 1 - 30 -PUSHW_1 - -3 -PUSHB_5 - 30 - 36 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 267 0 2 -EndChar - -StartChar: Uring -Encoding: 366 366 304 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 2 - 1 - 0 - 23 - 96 - 23 - 112 - 23 - 128 - 23 - 240 - 23 - 5 - 23 - 3 - 2 - 1 - 26 - 103 - 26 - 1 - 38 - 26 - 54 - 26 - 70 - 26 - 3 - 83 - 26 - 115 - 26 - 2 - 0 - 26 - 20 - 4 - 15 - 37 -CALL -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 668 730 N 1 0 0 1 447 203 2 -EndChar - -StartChar: uring -Encoding: 367 367 305 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 30 - 30 - 17 - 38 - 2 - 1 - 33 - 1 - 33 - 27 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 668 730 N 1 0 0 1 276 0 2 -EndChar - -StartChar: Uhungarumlaut -Encoding: 368 368 306 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 20 - 5 - 38 - 2 - 1 - 20 - 81 - 20 - 29 - 4 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2308 -1 N 1 0 0 1 413 0 2 -EndChar - -StartChar: uhungarumlaut -Encoding: 369 369 307 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 27 - 17 - 38 - 2 - 1 - 27 - 100 - 27 - 36 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 671 733 N 1 0 0 1 261 0 2 -EndChar - -StartChar: Uogonek -Encoding: 370 370 308 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 30 -PUSHW_1 - -409 -NPUSHB - 25 - 30 - 30 - 16 - 16 - 37 - 32 - 41 - 1 - 32 - 41 - 80 - 41 - 96 - 41 - 112 - 41 - 128 - 41 - 160 - 41 - 176 - 41 - 192 - 41 - 8 -DELTAP1 -DELTAP2 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 860 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 720 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 2 -Refer: 669 731 N 1 0 0 1 544 0 2 -EndChar - -StartChar: uogonek -Encoding: 371 371 309 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 36 -PUSHW_1 - -30 -PUSHB_5 - 36 - 36 - 11 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 880 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 599 0 2 -EndChar - -StartChar: Wcircumflex -Encoding: 372 372 310 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 27 - 27 - 5 - 38 - 1 - 32 -PUSHW_1 - -3 -PUSHB_5 - 32 - 26 - 9 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1300 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1933 1540 basechar 0 -AnchorPoint: "Anchor-20" 1933 -380 basechar 0 -AnchorPoint: "Anchor-16" 970 1540 basechar 0 -AnchorPoint: "Anchor-15" 1900 1540 basechar 0 -AnchorPoint: "Anchor-14" 970 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 58 87 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 633 0 2 -EndChar - -StartChar: wcircumflex -Encoding: 373 373 311 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 22 - 22 - 17 - 38 - 1 - 27 -PUSHW_1 - -5 -PUSHB_5 - 27 - 21 - 8 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1000 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 90 119 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 404 0 2 -EndChar - -StartChar: Ycircumflex -Encoding: 374 374 312 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 10 - 10 - 5 - 38 - 1 - 15 -PUSHW_1 - -5 -PUSHB_5 - 15 - 9 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 347 0 2 -EndChar - -StartChar: ycircumflex -Encoding: 375 375 313 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 24 - 24 - 17 - 38 - 1 - 29 - 0 - 29 - 23 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 460 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 182 0 2 -EndChar - -StartChar: Ydieresis -Encoding: 376 376 314 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 9 - 9 - 5 - 38 - 2 - 1 - 13 - 0 - 13 - 11 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 360 0 2 -EndChar - -StartChar: Zacute -Encoding: 377 377 315 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 10 - 5 - 38 - 1 - 10 - 74 - 10 - 13 - 1 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1030 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 61 90 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 416 0 2 -EndChar - -StartChar: zacute -Encoding: 378 378 316 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 10 - 17 - 38 - 1 - 10 - 93 - 10 - 13 - 0 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 740 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 93 122 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 309 0 2 -EndChar - -StartChar: Zdotaccent -Encoding: 379 379 317 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 10 - 5 - 38 - 1 - 10 - 0 - 10 - 12 - 1 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1030 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 61 90 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 380 293 2 -EndChar - -StartChar: zdotaccent -Encoding: 380 380 318 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 10 - 0 - 10 - 12 - 0 - 8 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 740 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 93 122 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 253 0 2 -EndChar - -StartChar: Zcaron -Encoding: 381 381 319 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 10 - 10 - 5 - 38 - 1 - 12 - 17 - 12 - 18 - 1 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1030 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 61 90 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 312 0 2 -EndChar - -StartChar: zcaron -Encoding: 382 382 320 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 10 - 10 - 17 - 38 - 1 - 12 -PUSHW_1 - -12 -PUSHB_5 - 12 - 18 - 0 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 740 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 93 122 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 156 0 2 -EndChar - -StartChar: longs -Encoding: 383 383 321 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 7 - 0 - 0 - 1 - 1 - 15 - 14 - 239 - 15 - 1 - 208 - 15 - 1 - 207 - 15 - 1 - 160 - 15 - 176 - 15 - 2 - 143 - 15 - 1 - 96 - 15 - 112 - 15 - 2 - 15 - 15 - 1 - 224 - 15 - 240 - 15 - 2 - 207 - 15 - 1 - 15 -PUSHW_1 - -64 -NPUSHB - 22 - 34 - 37 - 72 - 63 - 15 - 1 - 96 - 15 - 1 - 15 - 15 - 1 - 10 - 3 - 5 - 10 - 80 - 89 - 5 - 0 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -CALL -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -318 0 m 1,0,-1 - 138 0 l 1,1,-1 - 138 1204 l 2,2,3 - 138 1352 138 1352 203 1417 c 128,-1,4 - 268 1482 268 1482 402 1482 c 0,5,6 - 477 1482 477 1482 529 1470 c 1,7,-1 - 529 1333 l 1,8,9 - 484 1341 484 1341 449 1341 c 0,10,11 - 380 1341 380 1341 349 1306 c 128,-1,12 - 318 1271 318 1271 318 1179 c 2,13,-1 - 318 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0180 -Encoding: 384 384 322 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 49 - 22 - 7 - 4 - 38 - 38 - 1 - 29 - 17 - 5 - 29 - 3 - 44 - 45 - 27 - 21 - 10 - 22 - 14 - 19 - 19 - 41 - 80 - 89 - 19 - 22 - 7 - 31 - 0 - 31 - 81 - 89 - 4 - 0 - 0 - 14 - 2 - 14 - 35 - 80 - 89 - 0 - 14 - 1 - 224 - 14 - 240 - 14 - 2 - 14 -PUSHW_1 - -64 -PUSHB_7 - 9 - 12 - 72 - 14 - 16 - 2 - 0 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -11 1337 m 1,0,-1 - 138 1337 l 1,1,-1 - 138 1484 l 1,2,-1 - 318 1484 l 1,3,-1 - 318 1337 l 1,4,-1 - 623 1337 l 1,5,-1 - 623 1206 l 1,6,-1 - 318 1206 l 1,7,-1 - 318 1061 l 2,8,9 - 318 996 318 996 314 908 c 1,10,-1 - 318 908 l 1,11,12 - 368 1012 368 1012 450.5 1057 c 128,-1,13 - 533 1102 533 1102 655 1102 c 0,14,15 - 860 1102 860 1102 956.5 964 c 128,-1,16 - 1053 826 1053 826 1053 546 c 0,17,18 - 1053 -20 1053 -20 655 -20 c 0,19,20 - 532 -20 532 -20 450.5 24.5 c 128,-1,21 - 369 69 369 69 318 168 c 1,22,-1 - 316 168 l 1,23,24 - 316 137 316 137 312 73.5 c 128,-1,25 - 308 10 308 10 306 0 c 1,26,-1 - 132 0 l 1,27,28 - 138 54 138 54 138 223 c 2,29,-1 - 138 1206 l 1,30,-1 - 11 1206 l 1,31,-1 - 11 1337 l 1,0,-1 -864 540 m 0,32,33 - 864 767 864 767 804 865 c 128,-1,34 - 744 963 744 963 609 963 c 0,35,36 - 457 963 457 963 387.5 859 c 128,-1,37 - 318 755 318 755 318 529 c 0,38,39 - 318 316 318 316 386 214.5 c 128,-1,40 - 454 113 454 113 607 113 c 0,41,42 - 743 113 743 113 803.5 213.5 c 128,-1,43 - 864 314 864 314 864 540 c 0,32,33 -EndSplineSet -EndChar - -StartChar: uni0181 -Encoding: 385 385 323 -Width: 1553 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 47 - 9 - 14 - 23 - 20 - 39 - 39 - 30 - 30 - 4 - 34 - 20 - 20 - 26 - 0 - 0 - 4 - 14 - 3 - 43 - 44 - 23 - 39 - 29 - 39 - 29 - 95 - 89 - 39 - 12 - 39 - 12 - 4 - 17 - 38 - 6 - 17 - 6 - 96 - 89 - 17 - 3 - 4 - 30 - 95 - 89 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1553 1540 basechar 0 -AnchorPoint: "Anchor-20" 1553 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1260 1540 basechar 0 -AnchorPoint: "Anchor-14" 840 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1436 397 m 0,0,1 - 1436 209 1436 209 1299 104.5 c 128,-1,2 - 1162 0 1162 0 918 0 c 2,3,-1 - 346 0 l 1,4,-1 - 346 1261 l 1,5,-1 - 317 1261 l 2,6,7 - 240 1261 240 1261 207 1227 c 128,-1,8 - 174 1193 174 1193 174 1122 c 0,9,10 - 174 1073 174 1073 192 1017 c 1,11,-1 - 37 1000 l 1,12,13 - 20 1074 20 1074 20 1135 c 0,14,15 - 20 1265 20 1265 106 1337 c 128,-1,16 - 192 1409 192 1409 346 1409 c 2,17,-1 - 858 1409 l 2,18,19 - 1354 1409 1354 1409 1354 1067 c 0,20,21 - 1354 942 1354 942 1284 857 c 128,-1,22 - 1214 772 1214 772 1086 743 c 1,23,24 - 1254 723 1254 723 1345 630.5 c 128,-1,25 - 1436 538 1436 538 1436 397 c 0,0,1 -1243 412 m 0,26,27 - 1243 661 1243 661 893 661 c 2,28,-1 - 537 661 l 1,29,-1 - 537 153 l 1,30,-1 - 908 153 l 2,31,32 - 1083 153 1083 153 1163 218 c 128,-1,33 - 1243 283 1243 283 1243 412 c 0,26,27 -1162 1044 m 0,34,35 - 1162 1158 1162 1158 1084 1207 c 128,-1,36 - 1006 1256 1006 1256 858 1256 c 2,37,-1 - 537 1256 l 1,38,-1 - 537 810 l 1,39,-1 - 858 810 l 2,40,41 - 1011 810 1011 810 1086.5 867.5 c 128,-1,42 - 1162 925 1162 925 1162 1044 c 0,34,35 -EndSplineSet -EndChar - -StartChar: uni0182 -Encoding: 386 386 324 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 9 - 18 - 18 - 4 - 7 - 13 - 13 - 0 - 4 - 0 - 22 - 23 - 96 - 23 - 1 - 23 -PUSHW_1 - -64 -NPUSHB - 28 - 30 - 35 - 72 - 15 - 23 - 1 - 22 - 3 - 9 - 17 - 95 - 89 - 9 - 9 - 4 - 5 - 5 - 8 - 95 - 89 - 5 - 3 - 4 - 18 - 95 - 89 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -CALL -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 760 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1344 1540 basechar 0 -AnchorPoint: "Anchor-20" 1344 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1263 413 m 0,0,1 - 1263 226 1263 226 1134 113 c 128,-1,2 - 1005 0 1005 0 778 0 c 2,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 1119 1409 l 1,6,-1 - 1119 1253 l 1,7,-1 - 359 1253 l 1,8,-1 - 359 813 l 1,9,-1 - 766 813 l 2,10,11 - 1002 813 1002 813 1132.5 708 c 128,-1,12 - 1263 603 1263 603 1263 413 c 0,0,1 -1071 411 m 0,13,14 - 1071 532 1071 532 989 596.5 c 128,-1,15 - 907 661 907 661 743 661 c 2,16,-1 - 359 661 l 1,17,-1 - 359 151 l 1,18,-1 - 751 151 l 2,19,20 - 915 151 915 151 993 219 c 128,-1,21 - 1071 287 1071 287 1071 411 c 0,13,14 -EndSplineSet -EndChar - -StartChar: uni0183 -Encoding: 387 387 325 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 16 - 5 - 32 - 32 - 12 - 15 - 26 - 26 - 0 - 12 - 0 - 38 - 39 - 19 - 5 - 23 - 2 - 23 - 29 - 80 - 89 - 23 - 16 - 13 - 16 - 83 - 89 - 13 - 0 - 10 - 21 - 2 - 35 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 -20 1053 -20 655 -20 c 0,2,3 - 532 -20 532 -20 450.5 24.5 c 128,-1,4 - 369 69 369 69 318 168 c 1,5,-1 - 316 168 l 1,6,7 - 316 137 316 137 312 73.5 c 128,-1,8 - 308 10 308 10 306 0 c 1,9,-1 - 132 0 l 1,10,11 - 138 54 138 54 138 223 c 2,12,-1 - 138 1484 l 1,13,-1 - 882 1484 l 1,14,-1 - 882 1325 l 1,15,-1 - 318 1325 l 1,16,-1 - 318 1061 l 2,17,18 - 318 996 318 996 314 908 c 1,19,-1 - 318 908 l 1,20,21 - 368 1012 368 1012 450.5 1057 c 128,-1,22 - 533 1102 533 1102 655 1102 c 0,23,24 - 860 1102 860 1102 956.5 964 c 128,-1,25 - 1053 826 1053 826 1053 546 c 0,0,1 -864 540 m 0,26,27 - 864 767 864 767 804 865 c 128,-1,28 - 744 963 744 963 609 963 c 0,29,30 - 457 963 457 963 387.5 859 c 128,-1,31 - 318 755 318 755 318 529 c 0,32,33 - 318 316 318 316 386 214.5 c 128,-1,34 - 454 113 454 113 607 113 c 0,35,36 - 743 113 743 113 803.5 213.5 c 128,-1,37 - 864 314 864 314 864 540 c 0,26,27 -EndSplineSet -EndChar - -StartChar: uni0184 -Encoding: 388 388 326 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 15 - 0 - 11 - 20 - 20 - 7 - 5 - 0 - 5 - 25 - 24 - 11 - 19 - 95 - 89 - 11 - 11 - 5 - 9 - 3 - 5 - 20 - 95 - 89 - 5 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 760 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1344 1540 basechar 0 -AnchorPoint: "Anchor-20" 1344 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1263 418 m 0,0,1 - 1263 295 1263 295 1204.5 200 c 128,-1,2 - 1146 105 1146 105 1036.5 52.5 c 128,-1,3 - 927 0 927 0 778 0 c 2,4,-1 - 168 0 l 1,5,-1 - 168 1011 l 1,6,-1 - 10 1176 l 1,7,-1 - 10 1209 l 1,8,-1 - 303 1409 l 1,9,-1 - 359 1409 l 1,10,-1 - 359 823 l 1,11,-1 - 766 823 l 2,12,13 - 1003 823 1003 823 1133 715.5 c 128,-1,14 - 1263 608 1263 608 1263 418 c 0,0,1 -1071 416 m 0,15,16 - 1071 536 1071 536 988.5 603.5 c 128,-1,17 - 906 671 906 671 743 671 c 2,18,-1 - 359 671 l 1,19,-1 - 359 151 l 1,20,-1 - 751 151 l 2,21,22 - 915 151 915 151 993 221.5 c 128,-1,23 - 1071 292 1071 292 1071 416 c 0,15,16 -EndSplineSet -EndChar - -StartChar: uni0185 -Encoding: 389 389 327 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 18 - 4 - 33 - 33 - 0 - 25 - 27 - 13 - 25 - 13 - 39 - 40 - 23 - 21 - 6 - 18 - 10 - 15 - 15 - 36 - 80 - 89 - 15 - 22 - 10 - 30 - 80 - 89 - 10 - 16 - 2 - 0 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -10 1266 m 1,0,-1 - 10 1299 l 1,1,-1 - 267 1484 l 1,2,-1 - 318 1484 l 1,3,-1 - 318 1061 l 2,4,5 - 318 996 318 996 314 908 c 1,6,-1 - 318 908 l 1,7,8 - 368 1012 368 1012 450.5 1057 c 128,-1,9 - 533 1102 533 1102 655 1102 c 0,10,11 - 860 1102 860 1102 956.5 964 c 128,-1,12 - 1053 826 1053 826 1053 546 c 0,13,14 - 1053 -20 1053 -20 655 -20 c 0,15,16 - 532 -20 532 -20 450.5 24.5 c 128,-1,17 - 369 69 369 69 318 168 c 1,18,-1 - 316 168 l 1,19,20 - 316 137 316 137 312 73.5 c 128,-1,21 - 308 10 308 10 306 0 c 1,22,-1 - 132 0 l 1,23,24 - 138 54 138 54 138 223 c 2,25,-1 - 138 1086 l 1,26,-1 - 10 1266 l 1,0,-1 -864 540 m 0,27,28 - 864 767 864 767 804 865 c 128,-1,29 - 744 963 744 963 609 963 c 0,30,31 - 457 963 457 963 387.5 859 c 128,-1,32 - 318 755 318 755 318 529 c 0,33,34 - 318 316 318 316 386 214.5 c 128,-1,35 - 454 113 454 113 607 113 c 0,36,37 - 743 113 743 113 803.5 213.5 c 128,-1,38 - 864 314 864 314 864 540 c 0,27,28 -EndSplineSet -EndChar - -StartChar: uni0186 -Encoding: 390 390 328 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 21 - 20 - 20 - 9 - 3 - 15 - 9 - 15 - 24 - 25 - 21 - 8 - 21 - 8 - 18 - 12 - 18 - 0 - 95 - 89 - 18 - 19 - 12 - 6 - 95 - 89 - 12 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -697 136 m 0,0,1 - 930 136 930 136 1059 285 c 128,-1,2 - 1188 434 1188 434 1188 699 c 0,3,4 - 1188 959 1188 959 1053.5 1116 c 128,-1,5 - 919 1273 919 1273 689 1273 c 0,6,7 - 398 1273 398 1273 247 980 c 1,8,-1 - 91 1058 l 1,9,10 - 179 1240 179 1240 334.5 1335 c 128,-1,11 - 490 1430 490 1430 698 1430 c 0,12,13 - 1020 1430 1020 1430 1201 1234 c 128,-1,14 - 1382 1038 1382 1038 1382 699 c 0,15,16 - 1382 361 1382 361 1201 170.5 c 128,-1,17 - 1020 -20 1020 -20 699 -20 c 0,18,19 - 247 -20 247 -20 104 329 c 1,20,-1 - 285 389 l 1,21,22 - 330 269 330 269 438 202.5 c 128,-1,23 - 546 136 546 136 697 136 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0187 -Encoding: 391 391 329 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 8 - 9 - 9 - 35 - 27 - 21 - 34 - 3 - 16 - 34 - 16 - 39 - 38 - 25 - 30 - 95 - 89 - 25 - 19 - 21 - 35 - 19 - 8 - 35 - 8 - 35 - 12 - 19 - 19 - 0 - 95 - 89 - 19 - 4 - 12 - 6 - 95 - 89 - 12 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -SRP0 -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 890 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -792 1274 m 0,0,1 - 558 1274 558 1274 428 1123.5 c 128,-1,2 - 298 973 298 973 298 711 c 0,3,4 - 298 452 298 452 433.5 294.5 c 128,-1,5 - 569 137 569 137 800 137 c 0,6,7 - 1096 137 1096 137 1245 430 c 1,8,-1 - 1401 352 l 1,9,10 - 1314 170 1314 170 1156.5 75 c 128,-1,11 - 999 -20 999 -20 791 -20 c 0,12,13 - 578 -20 578 -20 422.5 68.5 c 128,-1,14 - 267 157 267 157 185.5 321.5 c 128,-1,15 - 104 486 104 486 104 711 c 0,16,17 - 104 1048 104 1048 286 1239 c 128,-1,18 - 468 1430 468 1430 790 1430 c 0,19,20 - 1065 1430 1065 1430 1230 1297 c 1,21,-1 - 1230 1320 l 2,22,23 - 1230 1458 1230 1458 1298.5 1537 c 128,-1,24 - 1367 1616 1367 1616 1489 1616 c 0,25,26 - 1543 1616 1543 1616 1609 1601 c 1,27,-1 - 1609 1444 l 1,28,29 - 1553 1462 1553 1462 1521 1462 c 0,30,31 - 1450 1462 1450 1462 1419 1426.5 c 128,-1,32 - 1388 1391 1388 1391 1388 1314 c 2,33,-1 - 1388 1081 l 1,34,-1 - 1207 1021 l 1,35,36 - 1158 1144 1158 1144 1049.5 1209 c 128,-1,37 - 941 1274 941 1274 792 1274 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0188 -Encoding: 392 392 330 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 6 - 7 - 7 - 31 - 24 - 18 - 30 - 0 - 13 - 30 - 13 - 38 - 37 - 21 - 26 - 80 - 89 - 21 - 16 - 18 - 31 - 16 - 6 - 31 - 6 - 31 - 10 - 16 - 16 - 34 - 80 - 89 - 16 - 16 - 10 - 3 - 80 - 89 - 10 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -SRP0 -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -275 546 m 0,0,1 - 275 330 275 330 343 226 c 128,-1,2 - 411 122 411 122 548 122 c 0,3,4 - 644 122 644 122 708.5 174 c 128,-1,5 - 773 226 773 226 788 334 c 1,6,-1 - 970 322 l 1,7,8 - 949 166 949 166 837 73 c 128,-1,9 - 725 -20 725 -20 553 -20 c 0,10,11 - 326 -20 326 -20 206.5 123.5 c 128,-1,12 - 87 267 87 267 87 542 c 0,13,14 - 87 815 87 815 207 958.5 c 128,-1,15 - 327 1102 327 1102 551 1102 c 0,16,17 - 701 1102 701 1102 807 1030 c 1,18,19 - 816 1151 816 1151 881.5 1217 c 128,-1,20 - 947 1283 947 1283 1065 1283 c 0,21,22 - 1112 1283 1112 1283 1164 1271 c 1,23,-1 - 1164 1121 l 1,24,25 - 1128 1137 1128 1137 1085 1137 c 0,26,27 - 1019 1137 1019 1137 991.5 1101.5 c 128,-1,28 - 964 1066 964 1066 964 989 c 2,29,-1 - 964 779 l 1,30,-1 - 779 765 l 1,31,32 - 765 855 765 855 708 908 c 128,-1,33 - 651 961 651 961 546 961 c 0,34,35 - 403 961 403 961 339 866 c 128,-1,36 - 275 771 275 771 275 546 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0189 -Encoding: 393 393 331 -Width: 1479 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 670 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 146 208 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni018A -Encoding: 394 394 332 -Width: 1658 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 22 - 0 - 27 - 5 - 10 - 15 - 15 - 5 - 0 - 3 - 33 - 32 - 13 - 13 - 5 - 18 - 26 - 7 - 18 - 7 - 96 - 89 - 18 - 3 - 5 - 27 - 95 - 89 - 5 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 870 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1658 1540 basechar 0 -AnchorPoint: "Anchor-20" 1658 -380 basechar 0 -AnchorPoint: "Anchor-16" 860 1540 basechar 0 -AnchorPoint: "Anchor-15" 1540 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1559 719 m 0,0,1 - 1559 501 1559 501 1474 337.5 c 128,-1,2 - 1389 174 1389 174 1233 87 c 128,-1,3 - 1077 0 1077 0 873 0 c 2,4,-1 - 346 0 l 1,5,-1 - 346 1261 l 1,6,-1 - 317 1261 l 2,7,8 - 240 1261 240 1261 207 1227 c 128,-1,9 - 174 1193 174 1193 174 1122 c 0,10,11 - 174 1073 174 1073 192 1017 c 1,12,-1 - 37 1000 l 1,13,14 - 20 1074 20 1074 20 1135 c 0,15,16 - 20 1265 20 1265 106 1337 c 128,-1,17 - 192 1409 192 1409 346 1409 c 2,18,-1 - 812 1409 l 2,19,20 - 1170 1409 1170 1409 1364.5 1229.5 c 128,-1,21 - 1559 1050 1559 1050 1559 719 c 0,0,1 -1367 719 m 0,22,23 - 1367 981 1367 981 1223.5 1118.5 c 128,-1,24 - 1080 1256 1080 1256 808 1256 c 2,25,-1 - 537 1256 l 1,26,-1 - 537 153 l 1,27,-1 - 851 153 l 2,28,29 - 1006 153 1006 153 1123.5 221 c 128,-1,30 - 1241 289 1241 289 1304 417 c 128,-1,31 - 1367 545 1367 545 1367 719 c 0,22,23 -EndSplineSet -EndChar - -StartChar: uni018B -Encoding: 395 395 333 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 6 - 13 - 13 - 0 - 4 - 17 - 17 - 9 - 0 - 9 - 22 - 23 - 3 - 19 - 95 - 89 - 3 - 3 - 10 - 7 - 10 - 16 - 95 - 89 - 10 - 18 - 7 - 6 - 95 - 89 - 7 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 840 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1344 1540 basechar 0 -AnchorPoint: "Anchor-20" 1344 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1880 basechar 0 -AnchorPoint: "Anchor-15" 1210 1540 basechar 0 -AnchorPoint: "Anchor-14" 720 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -81 413 m 0,0,1 - 81 603 81 603 211.5 708 c 128,-1,2 - 342 813 342 813 578 813 c 2,3,-1 - 985 813 l 1,4,-1 - 985 1253 l 1,5,-1 - 225 1253 l 1,6,-1 - 225 1409 l 1,7,-1 - 1176 1409 l 1,8,-1 - 1176 0 l 1,9,-1 - 566 0 l 2,10,11 - 340 0 340 0 210.5 113 c 128,-1,12 - 81 226 81 226 81 413 c 0,0,1 -273 411 m 0,13,14 - 273 287 273 287 351 219 c 128,-1,15 - 429 151 429 151 593 151 c 2,16,-1 - 985 151 l 1,17,-1 - 985 661 l 1,18,-1 - 601 661 l 2,19,20 - 437 661 437 661 355 596.5 c 128,-1,21 - 273 532 273 532 273 411 c 0,13,14 -EndSplineSet -EndChar - -StartChar: uni018C -Encoding: 396 396 334 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 20 - 9 - 32 - 32 - 14 - 11 - 26 - 26 - 0 - 14 - 0 - 39 - 38 - 24 - 29 - 80 - 89 - 24 - 22 - 20 - 21 - 7 - 21 - 7 - 3 - 17 - 21 - 12 - 11 - 83 - 89 - 12 - 0 - 3 - 35 - 80 - 89 - 3 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -82 546 m 0,0,1 - 82 826 82 826 178.5 964 c 128,-1,2 - 275 1102 275 1102 480 1102 c 0,3,4 - 602 1102 602 1102 684.5 1057 c 128,-1,5 - 767 1012 767 1012 817 908 c 1,6,-1 - 821 908 l 1,7,8 - 817 996 817 996 817 1061 c 2,9,-1 - 817 1325 l 1,10,-1 - 253 1325 l 1,11,-1 - 253 1484 l 1,12,-1 - 997 1484 l 1,13,-1 - 997 223 l 2,14,15 - 997 54 997 54 1003 0 c 1,16,-1 - 829 0 l 1,17,18 - 827 9 827 9 823 73 c 128,-1,19 - 819 137 819 137 819 168 c 1,20,-1 - 817 168 l 1,21,22 - 766 69 766 69 684.5 24.5 c 128,-1,23 - 603 -20 603 -20 480 -20 c 0,24,25 - 82 -20 82 -20 82 546 c 0,0,1 -271 540 m 0,26,27 - 271 315 271 315 331.5 214 c 128,-1,28 - 392 113 392 113 528 113 c 0,29,30 - 679 113 679 113 748 214 c 128,-1,31 - 817 315 817 315 817 529 c 0,32,33 - 817 753 817 753 748 858 c 128,-1,34 - 679 963 679 963 526 963 c 0,35,36 - 391 963 391 963 331 864.5 c 128,-1,37 - 271 766 271 766 271 540 c 0,26,27 -EndSplineSet -EndChar - -StartChar: uni018D -Encoding: 397 397 335 -Width: 1140 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 15 - 1 - 0 - 17 - 0 - 25 - 7 - 17 - 19 - 13 - 7 - 13 - 32 - 33 - 18 - 0 - 80 - 89 - 18 - 27 - 15 - 28 - 80 - 89 - 15 - 21 - 10 - 22 - 80 - 89 - 10 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 760 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1140 1540 basechar 0 -AnchorPoint: "Anchor-20" 1140 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -189 -280 m 1,0,-1 - 708 -280 l 1,1,2 - 608 -191 608 -191 498 -104 c 2,3,-1 - 281 71 l 2,4,5 - 176 159 176 159 131 274 c 128,-1,6 - 86 389 86 389 86 557 c 0,7,8 - 86 836 86 836 207.5 969 c 128,-1,9 - 329 1102 329 1102 571 1102 c 0,10,11 - 822 1102 822 1102 937.5 971 c 128,-1,12 - 1053 840 1053 840 1053 557 c 0,13,14 - 1053 30 1053 30 609 5 c 1,15,-1 - 965 -293 l 1,16,-1 - 965 -425 l 1,17,-1 - 189 -425 l 1,18,-1 - 189 -280 l 1,0,-1 -864 557 m 0,19,20 - 864 777 864 777 799 873 c 128,-1,21 - 734 969 734 969 574 969 c 0,22,23 - 413 969 413 969 344 871 c 128,-1,24 - 275 773 275 773 275 557 c 0,25,26 - 275 345 275 345 343.5 241 c 128,-1,27 - 412 137 412 137 563 137 c 0,28,29 - 676 137 676 137 738.5 179.5 c 128,-1,30 - 801 222 801 222 832.5 314.5 c 128,-1,31 - 864 407 864 407 864 557 c 0,19,20 -EndSplineSet -EndChar - -StartChar: uni018E -Encoding: 398 398 336 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 6 - 2 - 2 - 11 - 0 - 9 - 5 - 11 - 4 - 13 - 12 - 5 - 4 - 95 - 89 - 5 - 5 - 0 - 9 - 9 - 8 - 95 - 89 - 9 - 3 - 0 - 1 - 95 - 89 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1000 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -89 0 m 1,0,-1 - 89 156 l 1,1,-1 - 1008 156 l 1,2,-1 - 1008 647 l 1,3,-1 - 190 647 l 1,4,-1 - 190 801 l 1,5,-1 - 1008 801 l 1,6,-1 - 1008 1253 l 1,7,-1 - 130 1253 l 1,8,-1 - 130 1409 l 1,9,-1 - 1199 1409 l 1,10,-1 - 1199 0 l 1,11,-1 - 89 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni018F -Encoding: 399 399 337 -Width: 1541 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 7 - 3 - 3 - 21 - 13 - 14 - 14 - 4 - 29 - 21 - 29 - 33 - 32 - 31 - 4 - 95 - 89 - 31 - 13 - 31 - 13 - 25 - 17 - 25 - 0 - 96 - 89 - 25 - 19 - 17 - 10 - 95 - 89 - 17 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 890 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1541 1540 basechar 0 -AnchorPoint: "Anchor-20" 1541 -380 basechar 0 -AnchorPoint: "Anchor-17" 780 1540 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -772 126 m 0,0,1 - 999 126 999 126 1124.5 263.5 c 128,-1,2 - 1250 401 1250 401 1261 652 c 1,3,-1 - 276 652 l 1,4,5 - 293 405 293 405 423 265.5 c 128,-1,6 - 553 126 553 126 772 126 c 0,0,1 -1254 810 m 1,7,8 - 1229 1028 1229 1028 1101 1151 c 128,-1,9 - 973 1274 973 1274 774 1274 c 0,10,11 - 619 1274 619 1274 512.5 1207.5 c 128,-1,12 - 406 1141 406 1141 349 1020 c 1,13,-1 - 167 1077 l 1,14,15 - 245 1245 245 1245 398.5 1337.5 c 128,-1,16 - 552 1430 552 1430 774 1430 c 0,17,18 - 982 1430 982 1430 1134 1343 c 128,-1,19 - 1286 1256 1286 1256 1366.5 1092.5 c 128,-1,20 - 1447 929 1447 929 1447 711 c 0,21,22 - 1447 492 1447 492 1365 325.5 c 128,-1,23 - 1283 159 1283 159 1130 69.5 c 128,-1,24 - 977 -20 977 -20 772 -20 c 0,25,26 - 563 -20 563 -20 409.5 69 c 128,-1,27 - 256 158 256 158 175 324.5 c 128,-1,28 - 94 491 94 491 94 711 c 0,29,30 - 94 748 94 748 99 810 c 1,31,-1 - 1254 810 l 1,7,8 -EndSplineSet -EndChar - -StartChar: uni0190 -Encoding: 400 400 338 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 7 - 25 - 15 - 22 - 9 - 9 - 30 - 4 - 16 - 15 - 15 - 35 - 36 - 4 - 36 - 39 - 40 - 7 - 24 - 27 - 24 - 27 - 96 - 89 - 35 - 24 - 16 - 16 - 24 - 35 - 3 - 0 - 12 - 12 - 19 - 95 - 89 - 12 - 4 - 0 - 33 - 95 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 700 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1237 1540 basechar 0 -AnchorPoint: "Anchor-20" 1237 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -608 -20 m 0,0,1 - 455 -20 455 -20 336.5 31.5 c 128,-1,2 - 218 83 218 83 153 177.5 c 128,-1,3 - 88 272 88 272 88 391 c 0,4,5 - 88 533 88 533 170 622.5 c 128,-1,6 - 252 712 252 712 410 736 c 1,7,8 - 130 791 130 791 130 1051 c 0,9,10 - 130 1221 130 1221 259.5 1325 c 128,-1,11 - 389 1429 389 1429 599 1429 c 0,12,13 - 798 1429 798 1429 930.5 1345 c 128,-1,14 - 1063 1261 1063 1261 1133 1088 c 1,15,-1 - 955 1027 l 1,16,17 - 905 1156 905 1156 818.5 1215 c 128,-1,18 - 732 1274 732 1274 606 1274 c 0,19,20 - 476 1274 476 1274 398.5 1216 c 128,-1,21 - 321 1158 321 1158 321 1057 c 0,22,23 - 321 802 321 802 675 802 c 2,24,-1 - 746 802 l 1,25,-1 - 746 654 l 1,26,-1 - 675 654 l 2,27,28 - 473 654 473 654 377 595 c 128,-1,29 - 281 536 281 536 281 403 c 0,30,31 - 281 275 281 275 370.5 204 c 128,-1,32 - 460 133 460 133 615 133 c 0,33,34 - 878 133 878 133 997 405 c 1,35,-1 - 1162 328 l 1,36,37 - 1077 142 1077 142 944 61 c 128,-1,38 - 811 -20 811 -20 608 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0191 -Encoding: 401 401 339 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 1 - 5 - 5 - 10 - 15 - 15 - 3 - 17 - 3 - 20 - 19 - 1 - 4 - 95 - 89 - 1 - 1 - 8 - 16 - 16 - 0 - 95 - 89 - 16 - 3 - 8 - 13 - 95 - 89 - 8 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 100 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -359 1253 m 1,0,-1 - 359 729 l 1,1,-1 - 1145 729 l 1,2,-1 - 1145 571 l 1,3,-1 - 359 571 l 1,4,-1 - 359 -130 l 2,5,6 - 359 -273 359 -273 287.5 -349 c 128,-1,7 - 216 -425 216 -425 85 -425 c 0,8,9 - 24 -425 24 -425 -58 -405 c 1,10,-1 - -23 -249 l 1,11,12 - 28 -266 28 -266 64 -266 c 0,13,14 - 168 -266 168 -266 168 -109 c 2,15,-1 - 168 1409 l 1,16,-1 - 1169 1409 l 1,17,-1 - 1169 1253 l 1,18,-1 - 359 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: florin -Encoding: 402 402 340 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 7 - 5 - 10 - 10 - 16 - 14 - 11 - 11 - 21 - 22 - 23 - 9 - 13 - 14 - 13 - 80 - 89 - 6 - 14 - 14 - 10 - 19 - 19 - 2 - 81 - 89 - 15 - 19 - 127 - 19 - 175 - 19 - 3 - 19 - 10 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 260 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 920 1540 basechar 0 -AnchorPoint: "Anchor-14" 260 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -932 1312 m 1,0,1 - 881 1327 881 1327 822 1327 c 0,2,3 - 762 1327 762 1327 730 1290 c 128,-1,4 - 698 1253 698 1253 679 1159 c 2,5,-1 - 653 1022 l 1,6,-1 - 864 1022 l 1,7,-1 - 839 891 l 1,8,-1 - 626 891 l 1,9,-1 - 372 -434 l 1,10,-1 - 192 -434 l 1,11,-1 - 446 891 l 1,12,-1 - 294 891 l 1,13,-1 - 321 1022 l 1,14,-1 - 472 1022 l 1,15,-1 - 501 1174 l 2,16,17 - 532 1327 532 1327 606.5 1390.5 c 128,-1,18 - 681 1454 681 1454 814 1454 c 0,19,20 - 893 1454 893 1454 963 1434 c 1,21,-1 - 932 1312 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0193 -Encoding: 403 403 341 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 35 - 30 - 0 - 42 - 42 - 12 - 17 - 6 - 24 - 24 - 15 - 17 - 3 - 44 - 43 - 33 - 38 - 95 - 89 - 33 - 27 - 15 - 14 - 95 - 89 - 29 - 0 - 27 - 15 - 0 - 15 - 0 - 20 - 27 - 27 - 3 - 95 - 89 - 27 - 4 - 20 - 9 - 95 - 89 - 20 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 980 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1720 1540 basechar 0 -AnchorPoint: "Anchor-14" 830 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1227 1044 m 1,0,1 - 1167 1164 1167 1164 1061.5 1219 c 128,-1,2 - 956 1274 956 1274 799 1274 c 0,3,4 - 555 1274 555 1274 426 1126.5 c 128,-1,5 - 297 979 297 979 297 711 c 0,6,7 - 297 444 297 444 434 289.5 c 128,-1,8 - 571 135 571 135 813 135 c 0,9,10 - 951 135 951 135 1070.5 177 c 128,-1,11 - 1190 219 1190 219 1264 291 c 1,12,-1 - 1264 545 l 1,13,-1 - 843 545 l 1,14,-1 - 843 705 l 1,15,-1 - 1440 705 l 1,16,-1 - 1440 219 l 1,17,18 - 1328 105 1328 105 1165.5 42.5 c 128,-1,19 - 1003 -20 1003 -20 813 -20 c 0,20,21 - 592 -20 592 -20 432 68 c 128,-1,22 - 272 156 272 156 187.5 321.5 c 128,-1,23 - 103 487 103 487 103 711 c 0,24,25 - 103 1054 103 1054 287 1242 c 128,-1,26 - 471 1430 471 1430 804 1430 c 0,27,28 - 1093 1430 1093 1430 1251 1307 c 1,29,-1 - 1251 1337 l 2,30,31 - 1251 1475 1251 1475 1319.5 1554 c 128,-1,32 - 1388 1633 1388 1633 1510 1633 c 0,33,34 - 1564 1633 1564 1633 1630 1618 c 1,35,-1 - 1630 1461 l 1,36,37 - 1574 1479 1574 1479 1542 1479 c 0,38,39 - 1471 1479 1471 1479 1440 1443.5 c 128,-1,40 - 1409 1408 1409 1408 1409 1331 c 2,41,-1 - 1409 1098 l 1,42,-1 - 1227 1044 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0194 -Encoding: 404 404 342 -Width: 1278 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 9 - 8 - 25 - 13 - 22 - 10 - 7 - 4 - 3 - 19 - 16 - 11 - 12 - 12 - 16 - 3 - 8 - 4 - 31 - 32 - 10 - 7 - 13 - 22 - 4 - 0 - 11 - 8 - 3 - 0 - 28 - 95 - 89 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1278 1540 basechar 0 -AnchorPoint: "Anchor-20" 1278 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1260 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -641 -425 m 0,0,1 - 526 -425 526 -425 459 -353.5 c 128,-1,2 - 392 -282 392 -282 392 -160 c 0,3,4 - 392 -115 392 -115 405.5 -62.5 c 128,-1,5 - 419 -10 419 -10 440 42.5 c 128,-1,6 - 461 95 461 95 540 247 c 1,7,-1 - 10 1409 l 1,8,-1 - 211 1409 l 1,9,-1 - 640 408 l 1,10,-1 - 1067 1409 l 1,11,-1 - 1268 1409 l 1,12,-1 - 738 247 l 1,13,14 - 827 85 827 85 858.5 -5 c 128,-1,15 - 890 -95 890 -95 890 -160 c 0,16,17 - 890 -281 890 -281 823.5 -353 c 128,-1,18 - 757 -425 757 -425 641 -425 c 0,0,1 -727 -163 m 0,19,20 - 727 -106 727 -106 701 -23.5 c 128,-1,21 - 675 59 675 59 641 130 c 1,22,23 - 607 59 607 59 581 -23 c 128,-1,24 - 555 -105 555 -105 555 -163 c 0,25,26 - 555 -216 555 -216 578 -245.5 c 128,-1,27 - 601 -275 601 -275 641 -275 c 256,28,29 - 681 -275 681 -275 704 -246 c 128,-1,30 - 727 -217 727 -217 727 -163 c 0,19,20 -EndSplineSet -EndChar - -StartChar: uni0195 -Encoding: 405 405 343 -Width: 1804 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 18 - 15 - 11 - 11 - 12 - 25 - 3 - 31 - 34 - 34 - 3 - 12 - 3 - 37 - 38 - 32 - 15 - 18 - 21 - 0 - 21 - 7 - 80 - 89 - 21 - 16 - 13 - 0 - 12 - 21 - 0 - 28 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1340 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1804 1540 basechar 0 -AnchorPoint: "Anchor-20" 1804 -380 basechar 0 -AnchorPoint: "Anchor-16" 950 1840 basechar 0 -AnchorPoint: "Anchor-15" 1930 1540 basechar 0 -AnchorPoint: "Anchor-14" 960 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1256 -20 m 256,0,1 - 1057 -20 1057 -20 951 80.5 c 128,-1,2 - 845 181 845 181 845 361 c 2,3,-1 - 845 686 l 2,4,5 - 845 839 845 839 787.5 901 c 128,-1,6 - 730 963 730 963 602 963 c 0,7,8 - 475 963 475 963 398.5 875 c 128,-1,9 - 322 787 322 787 322 638 c 2,10,-1 - 322 0 l 1,11,-1 - 142 0 l 1,12,-1 - 142 1484 l 1,13,-1 - 322 1484 l 1,14,-1 - 322 1098 l 2,15,16 - 322 1037 322 1037 318.5 972 c 128,-1,17 - 315 907 315 907 314 897 c 1,18,-1 - 317 897 l 1,19,20 - 416 1102 416 1102 663 1102 c 0,21,22 - 846 1102 846 1102 936 1009 c 128,-1,23 - 1026 916 1026 916 1026 721 c 2,24,-1 - 1026 394 l 2,25,26 - 1026 238 1026 238 1081 177.5 c 128,-1,27 - 1136 117 1136 117 1257 117 c 0,28,29 - 1379 117 1379 117 1433 177.5 c 128,-1,30 - 1487 238 1487 238 1487 394 c 2,31,-1 - 1487 1082 l 1,32,-1 - 1668 1082 l 1,33,-1 - 1668 365 l 2,34,35 - 1668 185 1668 185 1561.5 82.5 c 128,-1,36 - 1455 -20 1455 -20 1256 -20 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni0196 -Encoding: 406 406 344 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 0 - 0 - 4 - 5 - 1 - 0 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -138 0 m 1,0,-1 - 138 1484 l 1,1,-1 - 318 1484 l 1,2,-1 - 318 0 l 1,3,-1 - 138 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0197 -Encoding: 407 407 345 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 11 - 11 - 4 - 0 - 0 - 13 - 12 - 10 - 2 - 3 - 2 - 96 - 89 - 7 - 3 - 3 - 5 - 0 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 230 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -196 0 m 1,0,-1 - 196 672 l 1,1,-1 - 30 672 l 1,2,-1 - 30 813 l 1,3,-1 - 196 813 l 1,4,-1 - 196 1484 l 1,5,-1 - 376 1484 l 1,6,-1 - 376 813 l 1,7,-1 - 545 813 l 1,8,-1 - 545 672 l 1,9,-1 - 376 672 l 1,10,-1 - 376 0 l 1,11,-1 - 196 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0198 -Encoding: 408 408 346 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 1 - 10 - 19 - 3 - 18 - 15 - 15 - 3 - 3 - 4 - 17 - 18 - 18 - 0 - 20 - 4 - 20 - 21 - 22 - 2 - 1 - 16 - 16 - 19 - 4 - 17 - 3 - 8 - 13 - 95 - 89 - 8 - 4 - 0 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1106 0 m 1,0,-1 - 543 680 l 1,1,-1 - 359 540 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1129 l 2,5,6 - 168 1272 168 1272 244 1348.5 c 128,-1,7 - 320 1425 320 1425 460 1425 c 0,8,9 - 526 1425 526 1425 592 1410 c 1,10,-1 - 592 1245 l 1,11,12 - 542 1263 542 1263 485 1263 c 0,13,14 - 359 1263 359 1263 359 1115 c 2,15,-1 - 359 703 l 1,16,-1 - 1038 1409 l 1,17,-1 - 1263 1409 l 1,18,-1 - 663 797 l 1,19,-1 - 1343 0 l 1,20,-1 - 1106 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0199 -Encoding: 409 409 347 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 2 - 14 - 5 - 3 - 20 - 1 - 20 - 7 - 7 - 8 - 8 - 22 - 21 - 0 - 1 - 1 - 4 - 3 - 3 - 22 - 15 - 15 - 0 - 12 - 12 - 17 - 83 - 89 - 12 - 1 - 2 - 5 - 81 - 89 - 20 - 2 - 20 - 2 - 4 - 8 - 21 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -793 1082 m 1,0,-1 - 1004 1082 l 1,1,-1 - 565 617 l 1,2,-1 - 1027 0 l 1,3,-1 - 816 0 l 1,4,-1 - 450 494 l 1,5,-1 - 318 385 l 1,6,-1 - 318 0 l 1,7,-1 - 138 0 l 1,8,-1 - 138 1202 l 2,9,10 - 138 1345 138 1345 214 1421.5 c 128,-1,11 - 290 1498 290 1498 430 1498 c 0,12,13 - 496 1498 496 1498 562 1483 c 1,14,-1 - 562 1318 l 1,15,16 - 512 1336 512 1336 446 1336 c 0,17,18 - 318 1336 318 1336 318 1188 c 2,19,-1 - 318 557 l 1,20,-1 - 793 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni019A -Encoding: 410 410 348 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 11 - 11 - 4 - 0 - 0 - 12 - 13 - 10 - 2 - 3 - 2 - 80 - 89 - 7 - 3 - 3 - 5 - 0 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -132 0 m 1,0,-1 - 132 672 l 1,1,-1 - 20 672 l 1,2,-1 - 20 813 l 1,3,-1 - 132 813 l 1,4,-1 - 132 1484 l 1,5,-1 - 312 1484 l 1,6,-1 - 312 813 l 1,7,-1 - 421 813 l 1,8,-1 - 421 672 l 1,9,-1 - 312 672 l 1,10,-1 - 312 0 l 1,11,-1 - 132 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni019B -Encoding: 411 411 349 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 9 - 10 - 17 - 16 - 16 - 6 - 11 - 3 - 2 - 2 - 11 - 10 - 3 - 20 - 21 - 6 - 10 - 18 - 15 - 1 - 12 - 4 - 19 - 13 - 19 - 13 - 19 - 10 - 16 - 0 - 3 - 10 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP2 -SLOOP -IP -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 858 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 420 1580 basechar 0 -AnchorPoint: "Anchor-15" 600 1540 basechar 0 -AnchorPoint: "Anchor-14" 520 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -714 1275 m 1,0,-1 - 555 1217 l 1,1,-1 - 1006 0 l 1,2,-1 - 816 0 l 1,3,-1 - 609 577 l 2,4,5 - 568 689 568 689 544 791 c 1,6,7 - 529 745 529 745 507.5 691.5 c 128,-1,8 - 486 638 486 638 201 0 c 1,9,-1 - 14 0 l 1,10,-1 - 463 970 l 1,11,-1 - 395 1159 l 1,12,-1 - 211 1092 l 1,13,-1 - 165 1210 l 1,14,-1 - 353 1279 l 1,15,-1 - 280 1484 l 1,16,-1 - 457 1484 l 1,17,-1 - 511 1337 l 1,18,-1 - 668 1394 l 1,19,-1 - 714 1275 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni019C -Encoding: 412 412 350 -Width: 1824 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 31 - 24 - 24 - 27 - 19 - 2 - 16 - 9 - 6 - 6 - 16 - 27 - 3 - 35 - 34 - 30 - 18 - 2 - 31 - 4 - 25 - 17 - 7 - 3 - 4 - 13 - 95 - 89 - 4 - 19 - 0 - 22 - 95 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1520 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1824 1540 basechar 0 -AnchorPoint: "Anchor-20" 1824 -380 basechar 0 -AnchorPoint: "Anchor-16" 900 1540 basechar 0 -AnchorPoint: "Anchor-15" 1640 1540 basechar 0 -AnchorPoint: "Anchor-14" 890 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1195 -20 m 0,0,1 - 987 -20 987 -20 895 147 c 1,2,3 - 775 -20 775 -20 571 -20 c 0,4,5 - 158 -20 158 -20 158 472 c 2,6,-1 - 158 1409 l 1,7,-1 - 346 1409 l 1,8,-1 - 346 488 l 2,9,10 - 346 360 346 360 370 283 c 128,-1,11 - 394 206 394 206 443.5 170.5 c 128,-1,12 - 493 135 493 135 581 135 c 0,13,14 - 700 135 700 135 755.5 212 c 128,-1,15 - 811 289 811 289 811 440 c 2,16,-1 - 811 1409 l 1,17,-1 - 1000 1409 l 1,18,-1 - 1000 456 l 2,19,20 - 1000 293 1000 293 1050 214 c 128,-1,21 - 1100 135 1100 135 1219 135 c 0,22,23 - 1466 135 1466 135 1466 458 c 2,24,-1 - 1466 1409 l 1,25,-1 - 1655 1409 l 1,26,-1 - 1655 231 l 2,27,28 - 1655 85 1655 85 1665 0 c 1,29,-1 - 1495 0 l 1,30,-1 - 1488 146 l 1,31,32 - 1438 65 1438 65 1363 22.5 c 128,-1,33 - 1288 -20 1288 -20 1195 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni019D -Encoding: 413 413 351 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 8 - 4 - 4 - 7 - 1 - 12 - 12 - 22 - 7 - 22 - 24 - 23 - 15 - 20 - 95 - 89 - 15 - 2 - 9 - 8 - 18 - 5 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -IP -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -168 1409 m 1,0,-1 - 390 1409 l 1,1,-1 - 1152 201 l 1,2,3 - 1140 397 1140 397 1140 485 c 2,4,-1 - 1140 1409 l 1,5,-1 - 1312 1409 l 1,6,-1 - 1312 0 l 1,7,-1 - 1082 0 l 1,8,-1 - 328 1200 l 1,9,-1 - 333 1103 l 1,10,-1 - 338 936 l 1,11,-1 - 338 -130 l 2,12,13 - 338 -274 338 -274 270.5 -349.5 c 128,-1,14 - 203 -425 203 -425 73 -425 c 0,15,16 - 1 -425 1 -425 -48 -414 c 1,17,-1 - -48 -252 l 1,18,19 - -4 -266 -4 -266 52 -266 c 0,20,21 - 167 -266 167 -266 167 -109 c 2,22,-1 - 168 1409 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni019E -Encoding: 414 414 352 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 0 - 26 - 18 - 9 - 9 - 13 - 10 - 26 - 10 - 28 - 27 - 18 - 22 - 10 - 22 - 5 - 80 - 89 - 22 - 16 - 13 - 15 - 10 - 21 - 0 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -825 -426 m 1,0,-1 - 825 686 l 2,1,2 - 825 793 825 793 804 852 c 128,-1,3 - 783 911 783 911 737 937 c 128,-1,4 - 691 963 691 963 602 963 c 0,5,6 - 472 963 472 963 397 874 c 128,-1,7 - 322 785 322 785 322 627 c 2,8,-1 - 322 0 l 1,9,-1 - 142 0 l 1,10,-1 - 142 851 l 2,11,12 - 142 1040 142 1040 136 1082 c 1,13,-1 - 306 1082 l 1,14,15 - 307 1077 307 1077 308 1055 c 128,-1,16 - 309 1033 309 1033 310.5 1004.5 c 128,-1,17 - 312 976 312 976 314 897 c 1,18,-1 - 317 897 l 1,19,20 - 379 1009 379 1009 460.5 1055.5 c 128,-1,21 - 542 1102 542 1102 663 1102 c 0,22,23 - 841 1102 841 1102 923.5 1013.5 c 128,-1,24 - 1006 925 1006 925 1006 721 c 2,25,-1 - 1006 -426 l 1,26,-1 - 825 -426 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni019F -Encoding: 415 415 353 -Width: 1593 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 1177 1256 N 1 0 0 1 0 0 3 -EndChar - -StartChar: Ohorn -Encoding: 416 416 354 -Width: 1756 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 32 - 8 - 18 - 17 - 21 - 21 - 26 - 24 - 14 - 0 - 8 - 0 - 38 - 39 - 14 - 24 - 96 - 89 - 14 - 18 - 14 - 18 - 4 - 19 - 3 - 11 - 29 - 95 - 89 - 11 - 4 - 4 - 35 - 95 - 89 - 4 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1756 1540 basechar 0 -AnchorPoint: "Anchor-20" 1756 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1495 711 m 0,0,1 - 1495 490 1495 490 1410.5 324 c 128,-1,2 - 1326 158 1326 158 1168 69 c 128,-1,3 - 1010 -20 1010 -20 795 -20 c 0,4,5 - 578 -20 578 -20 420.5 68 c 128,-1,6 - 263 156 263 156 180 322.5 c 128,-1,7 - 97 489 97 489 97 711 c 0,8,9 - 97 1049 97 1049 282 1239.5 c 128,-1,10 - 467 1430 467 1430 797 1430 c 0,11,12 - 1041 1430 1041 1430 1207 1322.5 c 128,-1,13 - 1373 1215 1373 1215 1445 1019 c 1,14,15 - 1533 1063 1533 1063 1567.5 1116 c 128,-1,16 - 1602 1169 1602 1169 1602 1242 c 1,17,-1 - 1514 1242 l 1,18,-1 - 1514 1409 l 1,19,-1 - 1709 1409 l 1,20,-1 - 1709 1303 l 2,21,22 - 1709 1180 1709 1180 1651.5 1088.5 c 128,-1,23 - 1594 997 1594 997 1469 936 c 1,24,25 - 1495 830 1495 830 1495 711 c 0,0,1 -1300 711 m 0,26,27 - 1300 974 1300 974 1168.5 1124 c 128,-1,28 - 1037 1274 1037 1274 797 1274 c 0,29,30 - 555 1274 555 1274 423 1126 c 128,-1,31 - 291 978 291 978 291 711 c 0,32,33 - 291 446 291 446 424.5 290.5 c 128,-1,34 - 558 135 558 135 795 135 c 0,35,36 - 1039 135 1039 135 1169.5 285.5 c 128,-1,37 - 1300 436 1300 436 1300 711 c 0,26,27 -EndSplineSet -EndChar - -StartChar: ohorn -Encoding: 417 417 355 -Width: 1343 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 27 - 6 - 11 - 21 - 21 - 0 - 14 - 13 - 17 - 17 - 20 - 0 - 6 - 0 - 33 - 34 - 11 - 14 - 11 - 14 - 3 - 15 - 15 - 8 - 24 - 80 - 89 - 8 - 16 - 3 - 30 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1343 1540 basechar 0 -AnchorPoint: "Anchor-20" 1343 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 542 m 1,0,1 - 1053 258 1053 258 928 119 c 128,-1,2 - 803 -20 803 -20 565 -20 c 0,3,4 - 328 -20 328 -20 207 124.5 c 128,-1,5 - 86 269 86 269 86 542 c 0,6,7 - 86 1102 86 1102 571 1102 c 0,8,9 - 784 1102 784 1102 898.5 1002 c 128,-1,10 - 1013 902 1013 902 1042 702 c 1,11,12 - 1176 767 1176 767 1176 921 c 1,13,-1 - 1088 921 l 1,14,-1 - 1088 1088 l 1,15,-1 - 1283 1088 l 1,16,-1 - 1283 982 l 2,17,18 - 1283 853 1283 853 1223 757 c 128,-1,19 - 1163 661 1163 661 1051 613 c 1,20,-1 - 1053 542 l 1,0,1 -864 542 m 0,21,22 - 864 766 864 766 797.5 867.5 c 128,-1,23 - 731 969 731 969 574 969 c 0,24,25 - 416 969 416 969 345.5 865.5 c 128,-1,26 - 275 762 275 762 275 542 c 0,27,28 - 275 328 275 328 344.5 220.5 c 128,-1,29 - 414 113 414 113 563 113 c 0,30,31 - 725 113 725 113 794.5 217 c 128,-1,32 - 864 321 864 321 864 542 c 0,21,22 -EndSplineSet -EndChar - -StartChar: uni01A2 -Encoding: 418 418 356 -Width: 1778 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 25 - 7 - 0 - 30 - 17 - 16 - 16 - 30 - 7 - 3 - 31 - 32 - 17 - 18 - 14 - 4 - 19 - 13 - 13 - 11 - 3 - 11 - 22 - 95 - 89 - 11 - 4 - 3 - 28 - 95 - 89 - 3 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1470 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1778 1540 basechar 0 -AnchorPoint: "Anchor-20" 1778 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1206 85 m 1,0,1 - 1097 33 1097 33 1001.5 6.5 c 128,-1,2 - 906 -20 906 -20 787 -20 c 0,3,4 - 574 -20 574 -20 418 69 c 128,-1,5 - 262 158 262 158 179.5 324 c 128,-1,6 - 97 490 97 490 97 711 c 0,7,8 - 97 931 97 931 180 1094.5 c 128,-1,9 - 263 1258 263 1258 420 1344 c 128,-1,10 - 577 1430 577 1430 789 1430 c 0,11,12 - 952 1430 952 1430 1155 1359 c 1,13,-1 - 1569 1423 l 1,14,-1 - 1612 1423 l 1,15,-1 - 1612 -424 l 1,16,-1 - 1432 -424 l 1,17,-1 - 1432 1221 l 1,18,-1 - 1206 1223 l 1,19,-1 - 1206 85 l 1,0,1 -1026 1228 m 1,20,21 - 926 1274 926 1274 789 1274 c 0,22,23 - 553 1274 553 1274 422 1124 c 128,-1,24 - 291 974 291 974 291 711 c 0,25,26 - 291 447 291 447 423.5 291 c 128,-1,27 - 556 135 556 135 787 135 c 0,28,29 - 925 135 925 135 1026 181 c 1,30,-1 - 1026 1228 l 1,20,21 -EndSplineSet -EndChar - -StartChar: uni01A3 -Encoding: 419 419 357 -Width: 1367 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 21 - 9 - 3 - 26 - 0 - 17 - 17 - 26 - 9 - 3 - 29 - 30 - 1 - 15 - 16 - 2 - 14 - 14 - 6 - 11 - 11 - 18 - 80 - 89 - 11 - 16 - 6 - 24 - 80 - 89 - 6 - 22 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1078 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1367 1540 basechar 0 -AnchorPoint: "Anchor-20" 1367 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1045 -425 m 1,0,-1 - 1045 918 l 1,1,-1 - 856 918 l 1,2,-1 - 856 63 l 1,3,4 - 799 24 799 24 722.5 2 c 128,-1,5 - 646 -20 646 -20 565 -20 c 0,6,7 - 328 -20 328 -20 207 124.5 c 128,-1,8 - 86 269 86 269 86 542 c 0,9,10 - 86 1102 86 1102 571 1102 c 0,11,12 - 653 1102 653 1102 727.5 1080.5 c 128,-1,13 - 802 1059 802 1059 853 1028 c 1,14,-1 - 1177 1093 l 1,15,-1 - 1220 1093 l 1,16,-1 - 1220 -425 l 1,17,-1 - 1045 -425 l 1,0,-1 -574 969 m 0,18,19 - 416 969 416 969 345.5 865.5 c 128,-1,20 - 275 762 275 762 275 542 c 0,21,22 - 275 328 275 328 344.5 220.5 c 128,-1,23 - 414 113 414 113 563 113 c 0,24,25 - 627 113 627 113 683 135 c 1,26,-1 - 682 949 l 1,27,28 - 630 969 630 969 574 969 c 0,18,19 -EndSplineSet -EndChar - -StartChar: uni01A4 -Encoding: 420 420 358 -Width: 1545 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 14 - 19 - 27 - 8 - 8 - 9 - 23 - 3 - 3 - 9 - 19 - 3 - 30 - 31 - 27 - 7 - 95 - 89 - 27 - 17 - 27 - 17 - 9 - 22 - 26 - 11 - 22 - 11 - 96 - 89 - 22 - 3 - 9 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 360 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1545 1540 basechar 0 -AnchorPoint: "Anchor-20" 1545 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1260 1540 basechar 0 -AnchorPoint: "Anchor-14" 840 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -932 1409 m 2,0,1 - 1169 1409 1169 1409 1299 1298 c 128,-1,2 - 1429 1187 1429 1187 1429 985 c 0,3,4 - 1429 785 1429 785 1298.5 667 c 128,-1,5 - 1168 549 1168 549 944 549 c 2,6,-1 - 530 549 l 1,7,-1 - 530 0 l 1,8,-1 - 339 0 l 1,9,-1 - 339 1261 l 1,10,-1 - 317 1261 l 2,11,12 - 240 1261 240 1261 207 1227 c 128,-1,13 - 174 1193 174 1193 174 1122 c 0,14,15 - 174 1073 174 1073 192 1017 c 1,16,-1 - 37 1000 l 1,17,18 - 20 1074 20 1074 20 1135 c 0,19,20 - 20 1265 20 1265 106 1337 c 128,-1,21 - 192 1409 192 1409 346 1409 c 2,22,-1 - 932 1409 l 2,0,1 -1237 983 m 0,23,24 - 1237 1256 1237 1256 909 1256 c 2,25,-1 - 530 1256 l 1,26,-1 - 530 700 l 1,27,-1 - 917 700 l 2,28,29 - 1237 700 1237 700 1237 983 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni01A5 -Encoding: 421 421 359 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 29 - 0 - 36 - 21 - 8 - 8 - 9 - 9 - 17 - 0 - 3 - 43 - 42 - 4 - 22 - 2 - 26 - 26 - 32 - 80 - 89 - 26 - 16 - 13 - 19 - 83 - 89 - 13 - 1 - 9 - 27 - 2 - 39 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 180 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 -20 1053 -20 655 -20 c 0,2,3 - 405 -20 405 -20 319 168 c 1,4,-1 - 314 168 l 1,5,6 - 318 160 318 160 318 -2 c 2,7,-1 - 318 -425 l 1,8,-1 - 138 -425 l 1,9,-1 - 138 1202 l 2,10,11 - 138 1347 138 1347 211 1422.5 c 128,-1,12 - 284 1498 284 1498 427 1498 c 0,13,14 - 481 1498 481 1498 520 1490 c 2,15,-1 - 557 1482 l 1,16,-1 - 557 1316 l 1,17,18 - 501 1336 501 1336 441 1336 c 0,19,20 - 316 1336 316 1336 316 1188 c 2,21,-1 - 316 908 l 1,22,-1 - 320 908 l 1,23,24 - 368 1008 368 1008 447 1054.5 c 128,-1,25 - 526 1101 526 1101 655 1101 c 0,26,27 - 855 1101 855 1101 954 967 c 128,-1,28 - 1053 833 1053 833 1053 546 c 0,0,1 -864 542 m 0,29,30 - 864 768 864 768 803 865 c 128,-1,31 - 742 962 742 962 609 962 c 0,32,33 - 502 962 502 962 441.5 917 c 128,-1,34 - 381 872 381 872 349.5 776.5 c 128,-1,35 - 318 681 318 681 318 528 c 0,36,37 - 318 315 318 315 386 214 c 128,-1,38 - 454 113 454 113 607 113 c 0,39,40 - 741 113 741 113 802.5 211.5 c 128,-1,41 - 864 310 864 310 864 542 c 0,29,30 -EndSplineSet -EndChar - -StartChar: uni01A6 -Encoding: 422 422 360 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 0 - 15 - 15 - 16 - 14 - 1 - 11 - 21 - 21 - 7 - 3 - 3 - 4 - 11 - 4 - 26 - 25 - 14 - 2 - 21 - 2 - 95 - 89 - 7 - 20 - 95 - 89 - 21 - 7 - 21 - 7 - 4 - 5 - 3 - 4 - 18 - 0 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 -300 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1127 -319 m 1,0,-1 - 740 431 l 1,1,-1 - 359 431 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 355 1409 l 1,6,-1 - 355 1255 l 1,7,-1 - 773 1255 l 2,8,9 - 1011 1255 1011 1255 1140.5 1148.5 c 128,-1,10 - 1270 1042 1270 1042 1270 852 c 0,11,12 - 1270 695 1270 695 1178.5 588 c 128,-1,13 - 1087 481 1087 481 926 453 c 1,14,-1 - 1347 -319 l 1,15,-1 - 1127 -319 l 1,0,-1 -1078 850 m 0,16,17 - 1078 973 1078 973 994.5 1037.5 c 128,-1,18 - 911 1102 911 1102 754 1102 c 2,19,-1 - 359 1102 l 1,20,-1 - 359 582 l 1,21,-1 - 762 582 l 2,22,23 - 913 582 913 582 995.5 652.5 c 128,-1,24 - 1078 723 1078 723 1078 850 c 0,16,17 -EndSplineSet -EndChar - -StartChar: uni01A7 -Encoding: 423 423 361 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 37 - 9 - 21 - 30 - 15 - 0 - 21 - 0 - 44 - 43 - 36 - 9 - 30 - 18 - 40 - 40 - 32 - 95 - 89 - 40 - 19 - 14 - 18 - 18 - 11 - 96 - 89 - 18 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -98 382 m 0,0,1 - 98 472 98 472 129 541.5 c 128,-1,2 - 160 611 160 611 220 662.5 c 128,-1,3 - 280 714 280 714 375 751.5 c 128,-1,4 - 470 789 470 789 626 818 c 0,5,6 - 785 848 785 848 862 879 c 128,-1,7 - 939 910 939 910 979 954.5 c 128,-1,8 - 1019 999 1019 999 1019 1063 c 0,9,10 - 1019 1286 1019 1286 679 1286 c 0,11,12 - 524 1286 524 1286 434.5 1226.5 c 128,-1,13 - 345 1167 345 1167 314 1038 c 1,14,-1 - 126 1071 l 1,15,16 - 177 1262 177 1262 303.5 1346 c 128,-1,17 - 430 1430 430 1430 677 1430 c 0,18,19 - 935 1430 935 1430 1070 1332 c 128,-1,20 - 1205 1234 1205 1234 1205 1053 c 0,21,22 - 1205 976 1205 976 1180 917.5 c 128,-1,23 - 1155 859 1155 859 1108 816.5 c 128,-1,24 - 1061 774 1061 774 979.5 740 c 128,-1,25 - 898 706 898 706 712 666 c 0,26,27 - 523 625 523 625 442.5 588.5 c 128,-1,28 - 362 552 362 552 324.5 500.5 c 128,-1,29 - 287 449 287 449 287 372 c 0,30,31 - 287 129 287 129 661 129 c 0,32,33 - 789 129 789 129 874 162 c 128,-1,34 - 959 195 959 195 1010 260 c 128,-1,35 - 1061 325 1061 325 1091 451 c 1,36,-1 - 1276 414 l 1,37,38 - 1224 188 1224 188 1074 84 c 128,-1,39 - 924 -20 924 -20 668 -20 c 0,40,41 - 391 -20 391 -20 244.5 83.5 c 128,-1,42 - 98 187 98 187 98 382 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni01A8 -Encoding: 424 424 362 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 28 - 14 - 0 - 33 - 8 - 20 - 0 - 20 - 38 - 39 - 32 - 8 - 28 - 17 - 35 - 35 - 30 - 80 - 89 - 35 - 22 - 13 - 17 - 17 - 10 - 80 - 89 - 17 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -79 299 m 0,0,1 - 79 390 79 390 119.5 451.5 c 128,-1,2 - 160 513 160 513 233 553.5 c 128,-1,3 - 306 594 306 594 459 629 c 0,4,5 - 611 664 611 664 657 685.5 c 128,-1,6 - 703 707 703 707 727.5 737.5 c 128,-1,7 - 752 768 752 768 752 814 c 0,8,9 - 752 963 752 963 538 963 c 0,10,11 - 427 963 427 963 362 920 c 128,-1,12 - 297 877 297 877 277 781 c 1,13,-1 - 115 801 l 1,14,15 - 146 952 146 952 251 1025.5 c 128,-1,16 - 356 1099 356 1099 539 1099 c 256,17,18 - 722 1099 722 1099 824.5 1021 c 128,-1,19 - 927 943 927 943 927 796 c 0,20,21 - 927 714 927 714 889 657.5 c 128,-1,22 - 851 601 851 601 781.5 562 c 128,-1,23 - 712 523 712 523 567 489 c 0,24,25 - 405 450 405 450 355 426.5 c 128,-1,26 - 305 403 305 403 279.5 369.5 c 128,-1,27 - 254 336 254 336 254 285 c 0,28,29 - 254 117 254 117 498 117 c 0,30,31 - 746 117 746 117 804 325 c 1,32,-1 - 963 294 l 1,33,34 - 887 -20 887 -20 498 -20 c 0,35,36 - 304 -20 304 -20 191.5 63.5 c 128,-1,37 - 79 147 79 147 79 299 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni01A9 -Encoding: 425 425 363 -Width: 1266 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 1030 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1266 1540 basechar 0 -AnchorPoint: "Anchor-20" 1266 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 853 931 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni01AA -Encoding: 426 426 364 -Width: 779 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 31 - 7 - 18 - 25 - 0 - 0 - 18 - 12 - 3 - 38 - 37 - 28 - 22 - 81 - 89 - 28 - 28 - 15 - 3 - 15 - 10 - 83 - 89 - 15 - 27 - 3 - 34 - 81 - 89 - 3 - 1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 779 1540 basechar 0 -AnchorPoint: "Anchor-20" 779 -380 basechar 0 -AnchorPoint: "Anchor-16" 550 1200 basechar 0 -AnchorPoint: "Anchor-15" 860 1200 basechar 0 -AnchorPoint: "Anchor-14" 550 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -67 1302 m 0,0,1 - 67 1392 67 1392 122.5 1442.5 c 128,-1,2 - 178 1493 178 1493 272 1493 c 0,3,4 - 406 1493 406 1493 472 1417 c 128,-1,5 - 538 1341 538 1341 538 1204 c 2,6,-1 - 538 -124 l 2,7,8 - 538 -192 538 -192 567.5 -229.5 c 128,-1,9 - 597 -267 597 -267 655 -267 c 0,10,11 - 709 -267 709 -267 761 -254 c 1,12,-1 - 761 -412 l 1,13,14 - 692 -425 692 -425 627 -425 c 0,15,16 - 499 -425 499 -425 428.5 -348.5 c 128,-1,17 - 358 -272 358 -272 358 -129 c 2,18,-1 - 358 1148 l 1,19,20 - 343 1137 343 1137 312.5 1128 c 128,-1,21 - 282 1119 282 1119 255 1119 c 0,22,23 - 171 1119 171 1119 119 1170.5 c 128,-1,24 - 67 1222 67 1222 67 1302 c 0,0,1 -144 1307 m 0,25,26 - 144 1258 144 1258 174 1228 c 128,-1,27 - 204 1198 204 1198 252 1198 c 0,28,29 - 301 1198 301 1198 331 1228 c 128,-1,30 - 361 1258 361 1258 361 1307 c 0,31,32 - 361 1355 361 1355 331.5 1385 c 128,-1,33 - 302 1415 302 1415 252 1415 c 0,34,35 - 204 1415 204 1415 174 1385 c 128,-1,36 - 144 1355 144 1355 144 1307 c 0,25,26 -EndSplineSet -EndChar - -StartChar: uni01AB -Encoding: 427 427 365 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 10 - 0 - 21 - 25 - 25 - 18 - 4 - 14 - 14 - 23 - 0 - 3 - 32 - 31 - 24 - 16 - 17 - 16 - 81 - 89 - 21 - 19 - 17 - 15 - 11 - 28 - 80 - 89 - 11 - 22 - 2 - 7 - 83 - 89 - 2 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MDRP[rnd,white] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 350 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -554 -143 m 2,0,1 - 554 -425 554 -425 301 -425 c 0,2,3 - 234 -425 234 -425 166 -408 c 1,4,-1 - 166 -248 l 1,5,6 - 222 -266 222 -266 272 -266 c 0,7,8 - 332 -266 332 -266 359 -233 c 128,-1,9 - 386 -200 386 -200 386 -129 c 2,10,-1 - 386 -16 l 1,11,-1 - 372 -16 l 2,12,13 - 156 -16 156 -16 156 229 c 2,14,-1 - 156 951 l 1,15,-1 - 31 951 l 1,16,-1 - 31 1082 l 1,17,-1 - 163 1082 l 1,18,-1 - 216 1324 l 1,19,-1 - 336 1324 l 1,20,-1 - 336 1082 l 1,21,-1 - 536 1082 l 1,22,-1 - 536 951 l 1,23,-1 - 336 951 l 1,24,-1 - 336 268 l 2,25,26 - 336 190 336 190 361.5 158.5 c 128,-1,27 - 387 127 387 127 450 127 c 0,28,29 - 486 127 486 127 554 141 c 1,30,-1 - 554 -143 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni01AC -Encoding: 428 428 366 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 1 - 2 - 9 - 7 - 12 - 12 - 2 - 16 - 3 - 19 - 18 - 10 - 10 - 2 - 15 - 0 - 4 - 15 - 4 - 95 - 89 - 15 - 3 - 2 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -720 1253 m 1,0,-1 - 720 0 l 1,1,-1 - 530 0 l 1,2,-1 - 530 1253 l 1,3,-1 - 317 1253 l 2,4,5 - 240 1253 240 1253 207 1223 c 128,-1,6 - 174 1193 174 1193 174 1122 c 0,7,8 - 174 1073 174 1073 192 1017 c 1,9,-1 - 37 1000 l 1,10,11 - 20 1074 20 1074 20 1135 c 0,12,13 - 20 1269 20 1269 97.5 1339 c 128,-1,14 - 175 1409 175 1409 326 1409 c 2,15,-1 - 1204 1409 l 1,16,-1 - 1204 1253 l 1,17,-1 - 720 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01AD -Encoding: 429 429 367 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 21 - 25 - 25 - 8 - 4 - 30 - 23 - 14 - 4 - 14 - 31 - 32 - 12 - 17 - 83 - 89 - 12 - 1 - 24 - 6 - 7 - 6 - 81 - 89 - 21 - 7 - 15 - 2 - 28 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 360 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 260 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -554 8 m 1,0,1 - 465 -16 465 -16 372 -16 c 0,2,3 - 156 -16 156 -16 156 229 c 2,4,-1 - 156 951 l 1,5,-1 - 31 951 l 1,6,-1 - 31 1082 l 1,7,-1 - 163 1082 l 1,8,-1 - 163 1192 l 2,9,10 - 163 1344 163 1344 233 1421 c 128,-1,11 - 303 1498 303 1498 437 1498 c 0,12,13 - 503 1498 503 1498 557 1484 c 1,14,-1 - 557 1316 l 1,15,16 - 501 1336 501 1336 455 1336 c 0,17,18 - 392 1336 392 1336 364 1299.5 c 128,-1,19 - 336 1263 336 1263 336 1188 c 2,20,-1 - 336 1082 l 1,21,-1 - 536 1082 l 1,22,-1 - 536 951 l 1,23,-1 - 336 951 l 1,24,-1 - 336 268 l 2,25,26 - 336 190 336 190 361.5 158.5 c 128,-1,27 - 387 127 387 127 450 127 c 0,28,29 - 486 127 486 127 554 141 c 1,30,-1 - 554 8 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni01AE -Encoding: 430 430 368 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 10 - 5 - 16 - 2 - 16 - 0 - 3 - 18 - 19 - 13 - 8 - 95 - 89 - 13 - 4 - 0 - 1 - 0 - 95 - 89 - 1 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 781 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -46 1253 m 1,0,-1 - 46 1409 l 1,1,-1 - 1204 1409 l 1,2,-1 - 1204 1253 l 1,3,-1 - 720 1253 l 1,4,-1 - 720 -109 l 2,5,6 - 720 -190 720 -190 744 -228 c 128,-1,7 - 768 -266 768 -266 820 -266 c 0,8,9 - 880 -266 880 -266 930 -250 c 1,10,-1 - 930 -408 l 1,11,12 - 860 -425 860 -425 798 -425 c 0,13,14 - 669 -425 669 -425 599.5 -351 c 128,-1,15 - 530 -277 530 -277 530 -141 c 2,16,-1 - 530 1253 l 1,17,-1 - 46 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: Uhorn -Encoding: 431 431 369 -Width: 1749 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 7 - 4 - 20 - 19 - 23 - 23 - 16 - 13 - 27 - 4 - 27 - 31 - 32 - 16 - 26 - 96 - 89 - 16 - 20 - 16 - 20 - 0 - 21 - 14 - 5 - 3 - 0 - 10 - 95 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1749 1540 basechar 0 -AnchorPoint: "Anchor-20" 1749 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -731 -20 m 0,0,1 - 558 -20 558 -20 429 43 c 128,-1,2 - 300 106 300 106 229 226 c 128,-1,3 - 158 346 158 346 158 512 c 2,4,-1 - 158 1409 l 1,5,-1 - 349 1409 l 1,6,-1 - 349 528 l 2,7,8 - 349 335 349 335 447 235 c 128,-1,9 - 545 135 545 135 730 135 c 0,10,11 - 920 135 920 135 1025.5 238.5 c 128,-1,12 - 1131 342 1131 342 1131 541 c 2,13,-1 - 1131 1409 l 1,14,-1 - 1321 1409 l 1,15,-1 - 1321 1006 l 1,16,17 - 1442 1031 1442 1031 1499.5 1089 c 128,-1,18 - 1557 1147 1557 1147 1557 1242 c 1,19,-1 - 1469 1242 l 1,20,-1 - 1469 1409 l 1,21,-1 - 1664 1409 l 1,22,-1 - 1664 1303 l 2,23,24 - 1664 1141 1664 1141 1579.5 1041 c 128,-1,25 - 1495 941 1495 941 1321 915 c 1,26,-1 - 1321 530 l 2,27,28 - 1321 359 1321 359 1248.5 235 c 128,-1,29 - 1176 111 1176 111 1043.5 45.5 c 128,-1,30 - 911 -20 911 -20 731 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uhorn -Encoding: 432 432 370 -Width: 1371 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 1 - 36 - 15 - 14 - 18 - 18 - 22 - 25 - 8 - 8 - 11 - 22 - 36 - 22 - 38 - 39 - 29 - 30 - 11 - 21 - 81 - 89 - 30 - 11 - 15 - 15 - 11 - 30 - 3 - 25 - 16 - 9 - 37 - 15 - 33 - 5 - 80 - 89 - 33 - 22 - 25 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1371 1540 basechar 0 -AnchorPoint: "Anchor-20" 1371 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -314 1082 m 1,0,-1 - 314 396 l 2,1,2 - 314 289 314 289 335 230 c 128,-1,3 - 356 171 356 171 402 145 c 128,-1,4 - 448 119 448 119 537 119 c 0,5,6 - 667 119 667 119 742 208 c 128,-1,7 - 817 297 817 297 817 455 c 2,8,-1 - 817 1082 l 1,9,-1 - 997 1082 l 1,10,-1 - 997 668 l 1,11,12 - 1112 703 1112 703 1156.5 758.5 c 128,-1,13 - 1201 814 1201 814 1201 915 c 1,14,-1 - 1113 915 l 1,15,-1 - 1113 1082 l 1,16,-1 - 1308 1082 l 1,17,-1 - 1308 976 l 2,18,19 - 1308 817 1308 817 1236 720.5 c 128,-1,20 - 1164 624 1164 624 997 577 c 1,21,-1 - 997 231 l 2,22,23 - 997 42 997 42 1003 0 c 1,24,-1 - 833 0 l 1,25,26 - 832 5 832 5 831 27 c 128,-1,27 - 830 49 830 49 828.5 77.5 c 128,-1,28 - 827 106 827 106 825 185 c 1,29,-1 - 822 185 l 1,30,31 - 760 73 760 73 678.5 26.5 c 128,-1,32 - 597 -20 597 -20 476 -20 c 0,33,34 - 298 -20 298 -20 215.5 68.5 c 128,-1,35 - 133 157 133 157 133 361 c 2,36,-1 - 133 1082 l 1,37,-1 - 314 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01B1 -Encoding: 433 433 371 -Width: 1531 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 27 - 21 - 12 - 6 - 30 - 24 - 6 - 24 - 33 - 15 - 9 - 3 - 33 - 3 - 37 - 36 - 24 - 12 - 26 - 0 - 26 - 28 - 95 - 89 - 26 - 3 - 10 - 9 - 95 - 89 - 10 - 3 - 0 - 18 - 95 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 836 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1531 1540 basechar 0 -AnchorPoint: "Anchor-20" 1531 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -765 -21 m 256,0,1 - 462 -21 462 -21 288.5 146.5 c 128,-1,2 - 115 314 115 314 115 608 c 0,3,4 - 115 809 115 809 222.5 979 c 128,-1,5 - 330 1149 330 1149 539 1264 c 1,6,7 - 385 1253 385 1253 331 1253 c 2,8,-1 - 87 1253 l 1,9,-1 - 87 1409 l 1,10,-1 - 676 1409 l 1,11,-1 - 676 1185 l 1,12,13 - 497 1090 497 1090 403.5 947.5 c 128,-1,14 - 310 805 310 805 310 621 c 0,15,16 - 310 389 310 389 429 262 c 128,-1,17 - 548 135 548 135 764 135 c 0,18,19 - 982 135 982 135 1101 262 c 128,-1,20 - 1220 389 1220 389 1220 621 c 0,21,22 - 1220 804 1220 804 1127 946.5 c 128,-1,23 - 1034 1089 1034 1089 854 1185 c 1,24,-1 - 854 1409 l 1,25,-1 - 1443 1409 l 1,26,-1 - 1443 1253 l 1,27,-1 - 1199 1253 l 2,28,29 - 1145 1253 1145 1253 991 1264 c 1,30,31 - 1199 1151 1199 1151 1307 980.5 c 128,-1,32 - 1415 810 1415 810 1415 608 c 0,33,34 - 1415 314 1415 314 1241.5 146.5 c 128,-1,35 - 1068 -21 1068 -21 765 -21 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni01B2 -Encoding: 434 434 372 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 4 - 19 - 13 - 24 - 4 - 24 - 28 - 29 - 21 - 16 - 95 - 89 - 21 - 4 - 5 - 3 - 0 - 10 - 95 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 715 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -703 -20 m 0,0,1 - 538 -20 538 -20 415.5 45.5 c 128,-1,2 - 293 111 293 111 225.5 236.5 c 128,-1,3 - 158 362 158 362 158 542 c 2,4,-1 - 158 1409 l 1,5,-1 - 349 1409 l 1,6,-1 - 349 558 l 2,7,8 - 349 358 349 358 445.5 246.5 c 128,-1,9 - 542 135 542 135 719 135 c 0,10,11 - 919 135 919 135 1023.5 337 c 128,-1,12 - 1128 539 1128 539 1128 949 c 0,13,14 - 1128 1118 1128 1118 1089 1190 c 128,-1,15 - 1050 1262 1050 1262 959 1262 c 0,16,17 - 901 1262 901 1262 851 1252 c 1,18,-1 - 844 1409 l 1,19,20 - 911 1421 911 1421 989 1421 c 0,21,22 - 1150 1421 1150 1421 1234 1309 c 128,-1,23 - 1318 1197 1318 1197 1318 980 c 0,24,25 - 1318 605 1318 605 1250.5 395.5 c 128,-1,26 - 1183 186 1183 186 1046 83 c 128,-1,27 - 909 -20 909 -20 703 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni01B3 -Encoding: 435 435 373 -Width: 1582 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 16 - 15 - 12 - 13 - 3 - 13 - 15 - 3 - 21 - 22 - 17 - 13 - 15 - 3 - 13 - 18 - 0 - 7 - 95 - 89 - 0 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1582 1540 basechar 0 -AnchorPoint: "Anchor-20" 1582 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1281 1421 m 0,0,1 - 1341 1421 1341 1421 1407.5 1398.5 c 128,-1,2 - 1474 1376 1474 1376 1533 1325 c 1,3,-1 - 1449 1189 l 1,4,5 - 1423 1213 1423 1213 1376 1235.5 c 128,-1,6 - 1329 1258 1329 1258 1292 1258 c 0,7,8 - 1256 1258 1256 1258 1231.5 1243.5 c 128,-1,9 - 1207 1229 1207 1229 1175 1181 c 2,10,-1 - 777 584 l 1,11,-1 - 777 0 l 1,12,-1 - 587 0 l 1,13,-1 - 587 584 l 1,14,-1 - 45 1409 l 1,15,-1 - 259 1409 l 1,16,-1 - 687 738 l 1,17,-1 - 1027 1264 l 2,18,19 - 1082 1350 1082 1350 1142 1385.5 c 128,-1,20 - 1202 1421 1202 1421 1281 1421 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni01B4 -Encoding: 436 436 374 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 15 - 8 - 23 - 9 - 23 - 33 - 10 - 9 - 9 - 2 - 32 - 33 - 21 - 26 - 83 - 89 - 21 - 1 - 15 - 0 - 9 - 15 - 0 - 5 - 80 - 89 - 0 - 3 - 80 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 460 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -191 -425 m 0,0,1 - 117 -425 117 -425 67 -414 c 1,2,-1 - 67 -279 l 1,3,4 - 105 -285 105 -285 151 -285 c 0,5,6 - 319 -285 319 -285 417 -38 c 2,7,-1 - 434 5 l 1,8,-1 - 5 1082 l 1,9,-1 - 197 1082 l 1,10,-1 - 425 484 l 2,11,12 - 430 470 430 470 437 450.5 c 128,-1,13 - 444 431 444 431 482 320 c 128,-1,14 - 520 209 520 209 523 196 c 1,15,-1 - 593 393 l 1,16,-1 - 891 1249 l 2,17,18 - 923 1338 923 1338 961.5 1391 c 128,-1,19 - 1000 1444 1000 1444 1049.5 1468 c 128,-1,20 - 1099 1492 1099 1492 1180 1492 c 0,21,22 - 1310 1492 1310 1492 1418 1399 c 1,23,-1 - 1336 1271 l 1,24,25 - 1268 1333 1268 1333 1196 1333 c 0,26,27 - 1099 1333 1099 1333 1048 1196 c 2,28,-1 - 604 0 l 1,29,30 - 511 -239 511 -239 417.5 -332 c 128,-1,31 - 324 -425 324 -425 191 -425 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni01B5 -Encoding: 437 437 375 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 17 - 11 - 15 - 2 - 6 - 9 - 12 - 12 - 6 - 3 - 15 - 4 - 18 - 19 - 10 - 17 - 0 - 17 - 96 - 89 - 7 - 0 - 0 - 14 - 4 - 14 - 11 - 95 - 89 - 14 - 18 - 4 - 3 - 95 - 89 - 4 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1030 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -62 814 m 1,0,-1 - 584 814 l 1,1,-1 - 923 1253 l 1,2,-1 - 138 1253 l 1,3,-1 - 138 1409 l 1,4,-1 - 1140 1409 l 1,5,-1 - 1140 1270 l 1,6,-1 - 789 814 l 1,7,-1 - 1188 814 l 1,8,-1 - 1188 681 l 1,9,-1 - 686 681 l 1,10,-1 - 282 156 l 1,11,-1 - 1187 156 l 1,12,-1 - 1187 0 l 1,13,-1 - 65 0 l 1,14,-1 - 65 143 l 1,15,-1 - 481 681 l 1,16,-1 - 62 681 l 1,17,-1 - 62 814 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01B6 -Encoding: 438 438 376 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 8 - 2 - 6 - 17 - 11 - 15 - 15 - 3 - 6 - 12 - 4 - 19 - 18 - 10 - 17 - 0 - 17 - 80 - 89 - 7 - 0 - 0 - 14 - 4 - 14 - 11 - 80 - 89 - 14 - 21 - 4 - 3 - 80 - 89 - 4 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 740 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -47 617 m 1,0,-1 - 442 617 l 1,1,-1 - 710 943 l 1,2,-1 - 89 943 l 1,3,-1 - 89 1082 l 1,4,-1 - 913 1082 l 1,5,-1 - 913 945 l 1,6,-1 - 643 617 l 1,7,-1 - 951 617 l 1,8,-1 - 951 484 l 1,9,-1 - 534 484 l 1,10,-1 - 251 139 l 1,11,-1 - 950 139 l 1,12,-1 - 950 0 l 1,13,-1 - 49 0 l 1,14,-1 - 49 137 l 1,15,-1 - 333 484 l 1,16,-1 - 47 484 l 1,17,-1 - 47 617 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01B7 -Encoding: 439 439 377 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 1 - 5 - 5 - 22 - 9 - 6 - 0 - 17 - 2 - 16 - 16 - 0 - 9 - 3 - 28 - 27 - 6 - 26 - 96 - 89 - 17 - 6 - 6 - 13 - 3 - 13 - 19 - 95 - 89 - 13 - 5 - 2 - 3 - 2 - 95 - 89 - 3 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 616 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -418 759 m 1,0,-1 - 918 1253 l 1,1,-1 - 113 1253 l 1,2,-1 - 113 1409 l 1,3,-1 - 1131 1409 l 1,4,-1 - 1131 1248 l 1,5,-1 - 626 758 l 1,6,7 - 896 740 896 740 1038.5 590.5 c 128,-1,8 - 1181 441 1181 441 1181 171 c 0,9,10 - 1181 -3 1181 -3 1109.5 -139.5 c 128,-1,11 - 1038 -276 1038 -276 907 -351 c 128,-1,12 - 776 -426 776 -426 613 -426 c 0,13,14 - 405 -426 405 -426 266.5 -343 c 128,-1,15 - 128 -260 128 -260 45 -78 c 1,16,-1 - 207 -6 l 1,17,18 - 325 -277 325 -277 606 -277 c 0,19,20 - 787 -277 787 -277 890 -159.5 c 128,-1,21 - 993 -42 993 -42 993 171 c 0,22,23 - 993 386 993 386 863.5 502 c 128,-1,24 - 734 618 734 618 489 618 c 2,25,-1 - 418 618 l 1,26,-1 - 418 759 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01B8 -Encoding: 440 440 378 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 25 - 21 - 21 - 4 - 17 - 20 - 0 - 10 - 11 - 11 - 24 - 0 - 17 - 4 - 27 - 28 - 21 - 25 - 22 - 25 - 95 - 89 - 20 - 1 - 96 - 89 - 10 - 20 - 20 - 14 - 22 - 3 - 14 - 8 - 95 - 89 - 14 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 700 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -833 618 m 1,0,-1 - 762 618 l 2,1,2 - 518 618 518 618 388 502.5 c 128,-1,3 - 258 387 258 387 258 171 c 0,4,5 - 258 32 258 32 307.5 -68.5 c 128,-1,6 - 357 -169 357 -169 444.5 -223 c 128,-1,7 - 532 -277 532 -277 645 -277 c 0,8,9 - 926 -277 926 -277 1044 -6 c 1,10,-1 - 1206 -78 l 1,11,12 - 1123 -260 1123 -260 984 -343 c 128,-1,13 - 845 -426 845 -426 638 -426 c 0,14,15 - 381 -426 381 -426 225.5 -265.5 c 128,-1,16 - 70 -105 70 -105 70 171 c 0,17,18 - 70 422 70 422 216.5 575.5 c 128,-1,19 - 363 729 363 729 625 758 c 1,20,-1 - 120 1248 l 1,21,-1 - 120 1409 l 1,22,-1 - 1138 1409 l 1,23,-1 - 1138 1253 l 1,24,-1 - 333 1253 l 1,25,-1 - 833 759 l 1,26,-1 - 833 618 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01B9 -Encoding: 441 441 379 -Width: 1116 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 1 - 26 - 26 - 7 - 22 - 25 - 2 - 14 - 0 - 15 - 15 - 2 - 22 - 3 - 29 - 30 - 25 - 4 - 81 - 89 - 14 - 25 - 25 - 18 - 27 - 27 - 1 - 80 - 89 - 27 - 15 - 18 - 11 - 80 - 89 - 18 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1012 942 m 1,0,-1 - 319 942 l 1,1,-1 - 702 555 l 1,2,-1 - 702 411 l 1,3,-1 - 620 411 l 2,4,5 - 464 411 464 411 369 319 c 128,-1,6 - 274 227 274 227 274 75 c 0,7,8 - 274 -17 274 -17 314.5 -102.5 c 128,-1,9 - 355 -188 355 -188 423.5 -237 c 128,-1,10 - 492 -286 492 -286 573 -286 c 0,11,12 - 712 -286 712 -286 788 -226 c 128,-1,13 - 864 -166 864 -166 882 -36 c 1,14,-1 - 1060 -48 l 1,15,16 - 1037 -235 1037 -235 909.5 -331 c 128,-1,17 - 782 -427 782 -427 567 -427 c 0,18,19 - 426 -427 426 -427 318 -362.5 c 128,-1,20 - 210 -298 210 -298 151.5 -184 c 128,-1,21 - 93 -70 93 -70 93 69 c 0,22,23 - 93 262 93 262 201 388.5 c 128,-1,24 - 309 515 309 515 498 540 c 1,25,-1 - 129 905 l 1,26,-1 - 129 1083 l 1,27,-1 - 1012 1083 l 1,28,-1 - 1012 942 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01BA -Encoding: 442 442 380 -Width: 1116 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 19 - 23 - 23 - 40 - 0 - 14 - 27 - 24 - 18 - 35 - 20 - 7 - 7 - 18 - 27 - 0 - 4 - 42 - 41 - 23 - 20 - 21 - 20 - 80 - 89 - 24 - 17 - 80 - 89 - 35 - 14 - 24 - 24 - 3 - 21 - 15 - 40 - 3 - 3 - 38 - 80 - 89 - 3 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -IP -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1055 -101 m 1,0,1 - 1015 -256 1015 -256 880.5 -341 c 128,-1,2 - 746 -426 746 -426 536 -426 c 0,3,4 - 398 -426 398 -426 290.5 -388 c 128,-1,5 - 183 -350 183 -350 130.5 -281.5 c 128,-1,6 - 78 -213 78 -213 78 -121 c 0,7,8 - 78 -42 78 -42 120.5 13 c 128,-1,9 - 163 68 163 68 237.5 107 c 128,-1,10 - 312 146 312 146 481 189 c 0,11,12 - 652 231 652 231 709 271.5 c 128,-1,13 - 766 312 766 312 766 370 c 0,14,15 - 766 444 766 444 668.5 474.5 c 128,-1,16 - 571 505 571 505 378 505 c 1,17,-1 - 378 644 l 1,18,-1 - 734 942 l 1,19,-1 - 108 942 l 1,20,-1 - 108 1082 l 1,21,-1 - 976 1082 l 1,22,-1 - 976 963 l 1,23,-1 - 580 641 l 1,24,25 - 758 628 758 628 849 558.5 c 128,-1,26 - 940 489 940 489 940 370 c 0,27,28 - 940 288 940 288 900.5 234 c 128,-1,29 - 861 180 861 180 792 144 c 128,-1,30 - 723 108 723 108 547 65 c 0,31,32 - 410 31 410 31 361.5 8 c 128,-1,33 - 313 -15 313 -15 287 -47.5 c 128,-1,34 - 261 -80 261 -80 261 -128 c 0,35,36 - 261 -201 261 -201 331 -242 c 128,-1,37 - 401 -283 401 -283 537 -283 c 0,38,39 - 811 -283 811 -283 877 -82 c 1,40,-1 - 1055 -101 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni01BB -Encoding: 443 443 381 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 28 - 20 - 4 - 17 - 10 - 11 - 11 - 27 - 31 - 0 - 31 - 17 - 3 - 38 - 37 - 22 - 36 - 0 - 36 - 96 - 89 - 19 - 0 - 0 - 30 - 14 - 30 - 27 - 95 - 89 - 30 - 18 - 10 - 14 - 14 - 7 - 96 - 89 - 14 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -90 750 m 1,0,-1 - 682 750 l 1,1,2 - 756 819 756 819 792.5 889 c 128,-1,3 - 829 959 829 959 829 1038 c 0,4,5 - 829 1154 829 1154 761 1218 c 128,-1,6 - 693 1282 693 1282 572 1282 c 0,7,8 - 457 1282 457 1282 382.5 1219.5 c 128,-1,9 - 308 1157 308 1157 295 1044 c 1,10,-1 - 111 1061 l 1,11,12 - 131 1230 131 1230 254.5 1330 c 128,-1,13 - 378 1430 378 1430 572 1430 c 0,14,15 - 785 1430 785 1430 899.5 1329.5 c 128,-1,16 - 1014 1229 1014 1229 1014 1044 c 0,17,18 - 1014 898 1014 898 891 750 c 1,19,-1 - 1032 750 l 1,20,-1 - 1032 614 l 1,21,-1 - 756 614 l 1,22,23 - 691 556 691 556 621.5 500 c 128,-1,24 - 552 444 552 444 489.5 388 c 128,-1,25 - 427 332 427 332 377 274 c 128,-1,26 - 327 216 327 216 301 153 c 1,27,-1 - 1036 153 l 1,28,-1 - 1036 0 l 1,29,-1 - 103 0 l 1,30,-1 - 103 127 l 1,31,32 - 140 214 140 214 194 289 c 128,-1,33 - 248 364 248 364 314.5 432 c 128,-1,34 - 381 500 381 500 522 614 c 1,35,-1 - 90 614 l 1,36,-1 - 90 750 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01BC -Encoding: 444 444 382 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 22 - 13 - 0 - 24 - 17 - 19 - 7 - 6 - 6 - 17 - 0 - 3 - 29 - 28 - 23 - 19 - 20 - 19 - 95 - 89 - 24 - 17 - 95 - 89 - 7 - 24 - 24 - 3 - 20 - 3 - 3 - 10 - 96 - 89 - 3 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 605 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1062 479 m 0,0,1 - 1062 243 1062 243 929.5 111.5 c 128,-1,2 - 797 -20 797 -20 562 -20 c 0,3,4 - 371 -20 371 -20 247 77 c 128,-1,5 - 123 174 123 174 89 345 c 1,6,-1 - 268 366 l 1,7,8 - 303 240 303 240 377.5 181.5 c 128,-1,9 - 452 123 452 123 565 123 c 0,10,11 - 713 123 713 123 794 213 c 128,-1,12 - 875 303 875 303 875 475 c 0,13,14 - 875 635 875 635 788.5 715 c 128,-1,15 - 702 795 702 795 539 795 c 2,16,-1 - 310 795 l 1,17,-1 - 310 1253 l 1,18,-1 - 138 1253 l 1,19,-1 - 138 1409 l 1,20,-1 - 980 1409 l 1,21,-1 - 980 1253 l 1,22,-1 - 494 1253 l 1,23,-1 - 494 950 l 1,24,-1 - 572 950 l 2,25,26 - 803 950 803 950 932.5 824 c 128,-1,27 - 1062 698 1062 698 1062 479 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni01BD -Encoding: 445 445 383 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 8 - 0 - 14 - 10 - 3 - 21 - 5 - 20 - 20 - 3 - 14 - 3 - 27 - 26 - 10 - 3 - 80 - 89 - 21 - 10 - 10 - 17 - 6 - 17 - 24 - 80 - 89 - 17 - 22 - 9 - 5 - 6 - 5 - 80 - 89 - 6 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 939 1540 basechar 0 -AnchorPoint: "Anchor-20" 939 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -682 341 m 0,0,1 - 682 550 682 550 389 550 c 2,2,-1 - 222 550 l 1,3,-1 - 222 942 l 1,4,-1 - 50 942 l 1,5,-1 - 50 1082 l 1,6,-1 - 830 1082 l 1,7,-1 - 830 942 l 1,8,-1 - 384 942 l 1,9,-1 - 384 688 l 1,10,-1 - 438 688 l 2,11,12 - 641 688 641 688 752 596.5 c 128,-1,13 - 863 505 863 505 863 343 c 0,14,15 - 863 170 863 170 758.5 75 c 128,-1,16 - 654 -20 654 -20 466 -20 c 0,17,18 - 289 -20 289 -20 184.5 60.5 c 128,-1,19 - 80 141 80 141 46 311 c 1,20,-1 - 220 323 l 1,21,22 - 233 230 233 230 297.5 171.5 c 128,-1,23 - 362 113 362 113 454 113 c 0,24,25 - 682 113 682 113 682 341 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni01BE -Encoding: 446 446 384 -Width: 997 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 24 - 11 - 39 - 1 - 1 - 36 - 32 - 17 - 32 - 41 - 11 - 4 - 43 - 42 - 38 - 1 - 0 - 34 - 35 - 34 - 81 - 89 - 24 - 14 - 39 - 35 - 15 - 14 - 21 - 80 - 89 - 18 - 14 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 561 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 997 1540 basechar 0 -AnchorPoint: "Anchor-20" 997 -380 basechar 0 -LayerCount: 2 -Fore -SplineSet -347 951 m 1,0,-1 - 347 844 l 2,1,2 - 347 760 347 760 363.5 726 c 128,-1,3 - 380 692 380 692 421 669.5 c 128,-1,4 - 462 647 462 647 538 629 c 0,5,6 - 669 595 669 595 720 574 c 128,-1,7 - 771 553 771 553 807 528 c 128,-1,8 - 843 503 843 503 868 469.5 c 128,-1,9 - 893 436 893 436 906.5 395 c 128,-1,10 - 920 354 920 354 920 299 c 0,11,12 - 920 147 920 147 820 63.5 c 128,-1,13 - 720 -20 720 -20 511 -20 c 0,14,15 - 309 -20 309 -20 199.5 46.5 c 128,-1,16 - 90 113 90 113 57 254 c 1,17,-1 - 216 285 l 1,18,19 - 239 198 239 198 311 157.5 c 128,-1,20 - 383 117 383 117 511 117 c 256,21,22 - 639 117 639 117 692 157 c 128,-1,23 - 745 197 745 197 745 285 c 0,24,25 - 745 334 745 334 727 365.5 c 128,-1,26 - 709 397 709 397 673 418 c 128,-1,27 - 637 439 637 439 583.5 454.5 c 128,-1,28 - 530 470 530 470 460 489 c 0,29,30 - 295 532 295 532 231 610.5 c 128,-1,31 - 167 689 167 689 167 826 c 2,32,-1 - 167 951 l 1,33,-1 - 36 951 l 1,34,-1 - 36 1082 l 1,35,-1 - 168 1082 l 1,36,-1 - 168 1429 l 1,37,-1 - 347 1507 l 1,38,-1 - 347 1082 l 1,39,-1 - 532 1082 l 1,40,-1 - 532 951 l 1,41,-1 - 347 951 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01BF -Encoding: 447 447 385 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 23 - 10 - 5 - 5 - 6 - 17 - 0 - 6 - 0 - 27 - 28 - 11 - 14 - 23 - 23 - 4 - 80 - 89 - 23 - 21 - 14 - 19 - 80 - 89 - 14 - 16 - 7 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 165 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 557 1200 basechar 0 -AnchorPoint: "Anchor-15" 953 1260 basechar 0 -AnchorPoint: "Anchor-14" 229 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1051 624 m 0,0,1 - 1051 460 1051 460 976.5 324 c 128,-1,2 - 902 188 902 188 747 80.5 c 128,-1,3 - 592 -27 592 -27 318 -127 c 1,4,-1 - 318 -426 l 1,5,-1 - 138 -426 l 1,6,-1 - 138 1082 l 1,7,-1 - 306 1082 l 1,8,9 - 316 977 316 977 316 908 c 1,10,-1 - 320 908 l 1,11,12 - 364 1005 364 1005 447.5 1053 c 128,-1,13 - 531 1101 531 1101 643 1101 c 0,14,15 - 840 1101 840 1101 945.5 978.5 c 128,-1,16 - 1051 856 1051 856 1051 624 c 0,0,1 -861 624 m 0,17,18 - 861 962 861 962 605 962 c 0,19,20 - 462 962 462 962 390 859.5 c 128,-1,21 - 318 757 318 757 318 545 c 2,22,-1 - 318 20 l 1,23,24 - 518 95 518 95 633.5 184 c 128,-1,25 - 749 273 749 273 805 381.5 c 128,-1,26 - 861 490 861 490 861 624 c 0,17,18 -EndSplineSet -EndChar - -StartChar: uni01C0 -Encoding: 448 448 386 -Width: 532 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 0 - 0 - 4 - 5 - 1 - 0 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -176 0 m 1,0,-1 - 176 1484 l 1,1,-1 - 356 1484 l 1,2,-1 - 356 0 l 1,3,-1 - 176 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01C1 -Encoding: 449 449 387 -Width: 846 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 0 - 4 - 7 - 0 - 7 - 8 - 9 - 5 - 1 - 0 - 4 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -179 0 m 1,0,-1 - 179 1484 l 1,1,-1 - 344 1484 l 1,2,-1 - 344 0 l 1,3,-1 - 179 0 l 1,0,-1 -502 0 m 1,4,-1 - 502 1484 l 1,5,-1 - 667 1484 l 1,6,-1 - 667 0 l 1,7,-1 - 502 0 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni01C2 -Encoding: 450 450 388 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 15 - 0 - 8 - 4 - 12 - 12 - 17 - 1 - 13 - 10 - 5 - 5 - 13 - 0 - 3 - 20 - 21 - 7 - 19 - 0 - 19 - 95 - 89 - 4 - 0 - 11 - 15 - 16 - 15 - 95 - 89 - 8 - 16 - 0 - 16 - 0 - 16 - 2 - 13 - 18 - 2 - 0 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -114 1030 m 1,0,-1 - 510 1030 l 1,1,-1 - 510 1484 l 1,2,-1 - 684 1484 l 1,3,-1 - 684 1030 l 1,4,-1 - 1082 1030 l 1,5,-1 - 1082 877 l 1,6,-1 - 684 877 l 1,7,-1 - 684 569 l 1,8,-1 - 1082 569 l 1,9,-1 - 1082 416 l 1,10,-1 - 684 416 l 1,11,-1 - 684 0 l 1,12,-1 - 510 0 l 1,13,-1 - 510 416 l 1,14,-1 - 114 416 l 1,15,-1 - 114 569 l 1,16,-1 - 510 569 l 1,17,-1 - 510 877 l 1,18,-1 - 114 877 l 1,19,-1 - 114 1030 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01C3 -Encoding: 451 451 389 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 4 33 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni01C4 -Encoding: 452 452 390 -Width: 2730 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 3 - 31 - 31 - 5 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 2486 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2730 1840 basechar 0 -AnchorPoint: "Anchor-20" 2730 -380 basechar 0 -AnchorPoint: "Anchor-16" 2130 1900 basechar 0 -AnchorPoint: "Anchor-15" 2614 1580 basechar 0 -AnchorPoint: "Anchor-14" 2090 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 2 -Refer: 61 90 N 1 0 0 1 1479 0 2 -Refer: 649 711 N 1 0 0 1 1779 356 2 -EndChar - -StartChar: uni01C5 -Encoding: 453 453 391 -Width: 2503 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 3 - 30 - 30 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 2266 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2503 1540 basechar 0 -AnchorPoint: "Anchor-20" 2503 -380 basechar 0 -AnchorPoint: "Anchor-16" 1943 1580 basechar 0 -AnchorPoint: "Anchor-15" 2400 1260 basechar 0 -AnchorPoint: "Anchor-14" 1982 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 2 -Refer: 93 122 N 1 0 0 1 1479 0 2 -Refer: 649 711 N 1 0 0 1 1608 0 2 -EndChar - -StartChar: uni01C6 -Encoding: 454 454 392 -Width: 2148 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 3 - 45 - 45 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1903 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2148 1540 basechar 0 -AnchorPoint: "Anchor-20" 2148 -380 basechar 0 -AnchorPoint: "Anchor-16" 1591 1580 basechar 0 -AnchorPoint: "Anchor-15" 2042 1260 basechar 0 -AnchorPoint: "Anchor-14" 1637 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 71 100 N 1 0 0 1 0 0 2 -Refer: 93 122 N 1 0 0 1 1124 0 2 -Refer: 649 711 N 1 0 0 1 1253 0 2 -EndChar - -StartChar: uni01C7 -Encoding: 455 455 393 -Width: 2175 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 1628 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2175 1540 basechar 0 -AnchorPoint: "Anchor-20" 2175 -380 basechar 0 -AnchorPoint: "Anchor-16" 1811 1540 basechar 0 -AnchorPoint: "Anchor-15" 2031 1540 basechar 0 -AnchorPoint: "Anchor-14" 1615 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 2 -Refer: 45 74 N 1 0 0 1 1151 0 2 -EndChar - -StartChar: uni01C8 -Encoding: 456 456 394 -Width: 1706 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 1353 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 1481 1540 basechar 0 -AnchorPoint: "Anchor-15" 1646 1260 basechar 0 -AnchorPoint: "Anchor-14" 1373 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 2 -Refer: 77 106 N 1 0 0 1 1251 0 2 -EndChar - -StartChar: uni01C9 -Encoding: 457 457 395 -Width: 924 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 583 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 924 1540 basechar 0 -AnchorPoint: "Anchor-20" 924 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 854 1260 basechar 0 -AnchorPoint: "Anchor-14" 630 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 2 -Refer: 77 106 N 1 0 0 1 469 0 2 -EndChar - -StartChar: uni01CA -Encoding: 458 458 396 -Width: 2503 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 1980 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2503 1540 basechar 0 -AnchorPoint: "Anchor-20" 2503 -380 basechar 0 -AnchorPoint: "Anchor-16" 2108 1540 basechar 0 -AnchorPoint: "Anchor-15" 2350 1540 basechar 0 -AnchorPoint: "Anchor-14" 1945 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 2 -Refer: 45 74 N 1 0 0 1 1479 0 2 -EndChar - -StartChar: uni01CB -Encoding: 459 459 397 -Width: 1934 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 1600 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1934 1540 basechar 0 -AnchorPoint: "Anchor-20" 1934 -380 basechar 0 -AnchorPoint: "Anchor-16" 1701 1540 basechar 0 -AnchorPoint: "Anchor-15" 1860 1260 basechar 0 -AnchorPoint: "Anchor-14" 1604 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 2 -Refer: 77 106 N 1 0 0 1 1479 0 2 -EndChar - -StartChar: uni01CC -Encoding: 460 460 398 -Width: 1579 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 1240 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1579 1540 basechar 0 -AnchorPoint: "Anchor-20" 1579 -380 basechar 0 -AnchorPoint: "Anchor-16" 1350 1540 basechar 0 -AnchorPoint: "Anchor-15" 1536 1260 basechar 0 -AnchorPoint: "Anchor-14" 1230 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 0 0 2 -Refer: 77 106 N 1 0 0 1 1124 0 2 -EndChar - -StartChar: uni01CD -Encoding: 461 461 399 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 18 - 18 - 5 - 38 - 2 - 20 - 3 - 20 - 26 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 355 0 2 -EndChar - -StartChar: uni01CE -Encoding: 462 462 400 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 50 - 50 - 17 - 38 - 2 - 52 -PUSHW_1 - -37 -PUSHB_5 - 52 - 58 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 245 0 2 -EndChar - -StartChar: uni01CF -Encoding: 463 463 401 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 5 - 5 - 5 - 38 - 1 - 7 - 4 - 7 - 13 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 -42 0 2 -EndChar - -StartChar: uni01D0 -Encoding: 464 464 402 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 5 - 5 - 17 - 38 - 1 - 7 -PUSHW_1 - -14 -NPUSHB - 46 - 7 - 13 - 1 - 3 - 37 - 31 - 15 - 159 - 15 - 223 - 15 - 255 - 15 - 4 - 79 - 15 - 223 - 15 - 2 - 31 - 15 - 1 - 0 - 15 - 112 - 15 - 128 - 15 - 176 - 15 - 192 - 15 - 224 - 15 - 6 - 144 - 15 - 160 - 15 - 176 - 15 - 192 - 15 - 240 - 15 - 5 -DELTAP2 -DELTAP3 -DELTAP1 -DELTAP2 -DELTAP3 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 2355 -1 N 1 0 0 1 0 0 2 -Refer: 649 711 N 1 0 0 1 -119 0 2 -EndChar - -StartChar: uni01D1 -Encoding: 465 465 403 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 28 - 28 - 5 - 38 - 2 - 30 -PUSHW_1 - -8 -PUSHB_5 - 30 - 36 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 457 0 2 -EndChar - -StartChar: uni01D2 -Encoding: 466 466 404 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 24 - 24 - 17 - 38 - 2 - 26 - 5 - 26 - 32 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 244 0 2 -EndChar - -StartChar: uni01D3 -Encoding: 467 467 405 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 21 - 21 - 5 - 38 - 1 - 23 -PUSHW_1 - -6 -PUSHB_5 - 23 - 29 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 402 0 2 -EndChar - -StartChar: uni01D4 -Encoding: 468 468 406 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 28 - 28 - 17 - 38 - 1 - 30 -PUSHW_1 - -14 -PUSHB_5 - 30 - 36 - 26 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 223 0 2 -EndChar - -StartChar: uni01D5 -Encoding: 469 469 407 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 3 - 2 - 1 - 27 - 27 - 5 - 38 - 3 - 2 - 1 - 25 - 11 - 25 - 23 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2356 -1 N 1 0 0 1 750 0 2 -EndChar - -StartChar: uni01D6 -Encoding: 470 470 408 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 3 - 159 - 38 - 1 - 16 - 38 - 32 - 38 - 48 - 38 - 64 - 38 - 4 - 80 - 38 - 96 - 38 - 112 - 38 - 128 - 38 - 160 - 38 - 176 - 38 - 6 - 38 - 2 - 1 - 27 - 27 - 17 - 38 - 3 - 2 - 1 - 31 -PUSHW_1 - -13 -PUSHB_5 - 31 - 29 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 245 0 2 -Refer: 651 713 N 1 0 0 1 245 280 2 -EndChar - -StartChar: uni01D7 -Encoding: 471 471 409 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 3 - 2 - 1 - 33 - 33 - 5 - 38 - 3 - 2 - 1 - 31 - 11 - 31 - 29 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2357 -1 N 1 0 0 1 750 0 2 -EndChar - -StartChar: uni01D8 -Encoding: 472 472 410 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 3 - 159 - 38 - 207 - 38 - 2 - 38 - 2 - 1 - 27 - 27 - 17 - 38 - 3 - 2 - 1 - 31 -PUSHW_1 - -13 -PUSHB_5 - 31 - 29 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 245 0 2 -Refer: 118 180 N 1 0 0 1 424 280 2 -EndChar - -StartChar: uni01D9 -Encoding: 473 473 411 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 3 - 2 - 1 - 36 - 36 - 5 - 38 - 3 - 2 - 1 - 26 - 11 - 26 - 22 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2358 -1 N 1 0 0 1 750 0 2 -EndChar - -StartChar: uni01DA -Encoding: 474 474 412 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 3 - 159 - 38 - 207 - 38 - 2 - 38 - 2 - 1 - 27 - 27 - 17 - 38 - 3 - 2 - 1 - 31 -PUSHW_1 - -13 -PUSHB_5 - 31 - 29 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 245 0 2 -Refer: 649 711 N 1 0 0 1 233 280 2 -EndChar - -StartChar: uni01DB -Encoding: 475 475 413 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 3 - 2 - 1 - 33 - 33 - 5 - 38 - 3 - 2 - 1 - 27 - 11 - 27 - 33 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2359 -1 N 1 0 0 1 750 0 2 -EndChar - -StartChar: uni01DC -Encoding: 476 476 414 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 3 - 159 - 38 - 207 - 38 - 2 - 38 - 2 - 1 - 27 - 27 - 17 - 38 - 3 - 2 - 1 - 31 -PUSHW_1 - -13 -PUSHB_5 - 31 - 29 - 25 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 245 0 2 -Refer: 67 96 N 1 0 0 1 112 280 2 -EndChar - -StartChar: uni01DD -Encoding: 477 477 415 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 0 - 25 - 25 - 12 - 19 - 7 - 17 - 12 - 17 - 27 - 26 - 18 - 19 - 80 - 89 - 18 - 18 - 15 - 9 - 15 - 22 - 80 - 89 - 15 - 22 - 6 - 9 - 9 - 3 - 80 - 89 - 9 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 638 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 975 900 basechar 0 -AnchorPoint: "Anchor-17" 575 1200 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 560 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -858 579 m 1,0,1 - 858 765 858 765 781 866 c 128,-1,2 - 704 967 704 967 556 967 c 0,3,4 - 439 967 439 967 368.5 920 c 128,-1,5 - 298 873 298 873 273 801 c 1,6,-1 - 115 846 l 1,7,8 - 212 1102 212 1102 556 1102 c 0,9,10 - 796 1102 796 1102 921.5 959 c 128,-1,11 - 1047 816 1047 816 1047 534 c 0,12,13 - 1047 266 1047 266 921.5 123 c 128,-1,14 - 796 -20 796 -20 563 -20 c 0,15,16 - 86 -20 86 -20 86 555 c 2,17,-1 - 86 579 l 1,18,-1 - 858 579 l 1,0,1 -272 441 m 1,19,20 - 287 270 287 270 359 191.5 c 128,-1,21 - 431 113 431 113 566 113 c 0,22,23 - 697 113 697 113 773.5 200.5 c 128,-1,24 - 850 288 850 288 856 441 c 1,25,-1 - 272 441 l 1,19,20 -EndSplineSet -EndChar - -StartChar: uni01DE -Encoding: 478 478 416 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 4 - 3 - 2 - 24 - 24 - 5 - 38 - 4 - 3 - 2 - 22 - 5 - 22 - 20 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2356 -1 N 1 0 0 1 688 0 2 -EndChar - -StartChar: uni01DF -Encoding: 479 479 417 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 4 - 63 - 60 - 159 - 60 - 2 - 16 - 60 - 48 - 60 - 64 - 60 - 144 - 60 - 4 - 60 - 3 - 2 - 49 - 49 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP2 -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 242 0 2 -Refer: 651 713 N 1 0 0 1 240 280 2 -EndChar - -StartChar: uni01E0 -Encoding: 480 480 418 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 20 - 20 - 5 - 38 - 3 - 2 - 23 - 6 - 23 - 24 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2360 -1 N 1 0 0 1 689 0 2 -EndChar - -StartChar: uni01E1 -Encoding: 481 481 419 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 3 - 127 - 55 - 1 - 63 - 55 - 159 - 55 - 2 - 16 - 55 - 48 - 55 - 64 - 55 - 3 - 55 - 2 - 52 - 52 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP2 -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 302 -80 2 -Refer: 651 713 N 1 0 0 1 220 280 2 -EndChar - -StartChar: uni01E2 -Encoding: 482 482 420 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 22 - 22 - 5 - 38 - 2 - 23 -PUSHW_1 - 323 -PUSHB_5 - 23 - 24 - 4 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1804 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2048 1840 basechar 0 -AnchorPoint: "Anchor-20" 2048 -380 basechar 0 -AnchorPoint: "Anchor-16" 1330 1800 basechar 0 -AnchorPoint: "Anchor-15" 1910 1540 basechar 0 -AnchorPoint: "Anchor-14" 1120 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 136 198 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 990 329 2 -EndChar - -StartChar: uni01E3 -Encoding: 483 483 421 -Width: 1821 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 3 - 61 - 61 - 17 - 38 - 3 - 62 - 27 - 62 - 63 - 18 - 39 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1375 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1821 1540 basechar 0 -AnchorPoint: "Anchor-20" 1821 -380 basechar 0 -AnchorPoint: "Anchor-16" 931 1480 basechar 0 -AnchorPoint: "Anchor-15" 1547 1260 basechar 0 -AnchorPoint: "Anchor-14" 834 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 168 230 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 600 0 2 -EndChar - -StartChar: uni01E4 -Encoding: 484 484 422 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 57 - 1 - 37 - 37 - 23 - 8 - 6 - 10 - 3 - 38 - 30 - 17 - 17 - 38 - 10 - 3 - 40 - 39 - 9 - 38 - 0 - 38 - 96 - 89 - 6 - 0 - 4 - 3 - 95 - 89 - 79 - 0 - 1 - 15 - 4 - 1 - 11 - 3 - 0 - 4 - 0 - 4 - 13 - 20 - 20 - 27 - 95 - 89 - 24 - 24 - 20 - 4 - 13 - 33 - 95 - 89 - 13 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 931 1480 basechar 0 -AnchorPoint: "Anchor-15" 1547 1260 basechar 0 -AnchorPoint: "Anchor-14" 834 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -844 438 m 1,0,-1 - 1264 438 l 1,1,-1 - 1264 545 l 1,2,-1 - 843 545 l 1,3,-1 - 843 705 l 1,4,-1 - 1440 705 l 1,5,-1 - 1440 438 l 1,6,-1 - 1568 438 l 1,7,-1 - 1568 308 l 1,8,-1 - 1440 308 l 1,9,-1 - 1440 219 l 1,10,11 - 1328 105 1328 105 1165.5 42.5 c 128,-1,12 - 1003 -20 1003 -20 813 -20 c 0,13,14 - 592 -20 592 -20 432 68 c 128,-1,15 - 272 156 272 156 187.5 321.5 c 128,-1,16 - 103 487 103 487 103 711 c 0,17,18 - 103 1054 103 1054 287 1242 c 128,-1,19 - 471 1430 471 1430 804 1430 c 0,20,21 - 1038 1430 1038 1430 1184 1351 c 128,-1,22 - 1330 1272 1330 1272 1409 1098 c 1,23,-1 - 1227 1044 l 1,24,25 - 1167 1164 1167 1164 1061.5 1219 c 128,-1,26 - 956 1274 956 1274 799 1274 c 0,27,28 - 555 1274 555 1274 426 1126.5 c 128,-1,29 - 297 979 297 979 297 711 c 0,30,31 - 297 444 297 444 434 289.5 c 128,-1,32 - 571 135 571 135 813 135 c 0,33,34 - 951 135 951 135 1070.5 177 c 128,-1,35 - 1190 219 1190 219 1264 291 c 1,36,-1 - 1264 308 l 1,37,-1 - 844 308 l 1,38,-1 - 844 438 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni01E5 -Encoding: 485 485 423 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 56 - 49 - 22 - 4 - 12 - 42 - 3 - 42 - 28 - 10 - 14 - 14 - 36 - 36 - 3 - 22 - 3 - 55 - 56 - 4 - 0 - 39 - 11 - 12 - 11 - 81 - 89 - 36 - 12 - 19 - 64 - 19 - 52 - 80 - 89 - 19 - 64 - 9 - 14 - 72 - 19 - 19 - 0 - 32 - 15 - 25 - 46 - 80 - 89 - 25 - 16 - 0 - 7 - 80 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,white] -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -548 -425 m 0,0,1 - 371 -425 371 -425 266 -355.5 c 128,-1,2 - 161 -286 161 -286 131 -158 c 1,3,-1 - 312 -132 l 1,4,5 - 330 -207 330 -207 391.5 -247.5 c 128,-1,6 - 453 -288 453 -288 553 -288 c 0,7,8 - 658 -288 658 -288 718 -244 c 128,-1,9 - 778 -200 778 -200 802 -108 c 1,10,-1 - 404 -108 l 1,11,-1 - 404 22 l 1,12,-1 - 820 22 l 1,13,-1 - 822 75 l 1,14,-1 - 822 291 l 1,15,-1 - 820 291 l 1,16,17 - 769 187 769 187 680 134.5 c 128,-1,18 - 591 82 591 82 472 82 c 0,19,20 - 274 82 274 82 180 202.5 c 128,-1,21 - 86 323 86 323 86 585 c 0,22,23 - 86 849 86 849 187.5 974 c 128,-1,24 - 289 1099 289 1099 492 1099 c 0,25,26 - 607 1099 607 1099 691.5 1046.5 c 128,-1,27 - 776 994 776 994 822 897 c 1,28,-1 - 824 897 l 1,29,30 - 824 927 824 927 828 1001 c 128,-1,31 - 832 1075 832 1075 836 1082 c 1,32,-1 - 1007 1082 l 1,33,34 - 1001 1028 1001 1028 1001 858 c 2,35,-1 - 1001 22 l 1,36,-1 - 1128 22 l 1,37,-1 - 1128 -108 l 1,38,-1 - 988 -108 l 1,39,40 - 957 -266 957 -266 849 -345.5 c 128,-1,41 - 741 -425 741 -425 548 -425 c 0,0,1 -822 586 m 0,42,43 - 822 704 822 704 786 789 c 128,-1,44 - 750 874 750 874 685 919.5 c 128,-1,45 - 620 965 620 965 536 965 c 0,46,47 - 398 965 398 965 335 875 c 128,-1,48 - 272 785 272 785 272 586 c 256,49,50 - 272 387 272 387 331.5 301 c 128,-1,51 - 391 215 391 215 533 215 c 0,52,53 - 663 215 663 215 742.5 314 c 128,-1,54 - 822 413 822 413 822 586 c 0,42,43 -EndSplineSet -EndChar - -StartChar: uni01E6 -Encoding: 486 486 424 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 32 - 32 - 5 - 38 - 1 - 34 - 30 - 34 - 40 - 0 - 24 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 42 71 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 471 0 2 -EndChar - -StartChar: uni01E7 -Encoding: 487 487 425 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 48 - 48 - 17 - 38 - 2 - 50 -PUSHW_1 - -27 -PUSHB_5 - 50 - 56 - 17 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 74 103 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 188 0 2 -EndChar - -StartChar: uni01E8 -Encoding: 488 488 426 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 13 - 13 - 5 - 38 - 1 - 15 -PUSHW_1 - -104 -PUSHB_5 - 15 - 21 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 46 75 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 320 0 2 -EndChar - -StartChar: uni01E9 -Encoding: 489 489 427 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 13 - 13 - 5 - 38 - 1 - 15 -PUSHW_1 - -51 -PUSHB_5 - 15 - 21 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 78 107 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 200 20 2 -EndChar - -StartChar: uni01EA -Encoding: 490 490 428 -Width: 1593 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 940 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 880 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 620 0 2 -EndChar - -StartChar: uni01EB -Encoding: 491 491 429 -Width: 1139 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 680 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1124 1540 basechar 0 -AnchorPoint: "Anchor-20" 1124 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 854 1260 basechar 0 -AnchorPoint: "Anchor-14" 630 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 370 0 2 -EndChar - -StartChar: uni01EC -Encoding: 492 492 430 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 3 - 48 - 5 - 38 - 3 - 48 - 0 - 48 - 47 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 880 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 620 0 2 -Refer: 651 713 N 1 0 0 1 465 329 2 -EndChar - -StartChar: uni01ED -Encoding: 493 493 431 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 3 - 44 - 17 - 38 - 3 - 44 - 0 - 44 - 43 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1124 1540 basechar 0 -AnchorPoint: "Anchor-20" 1124 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 854 1260 basechar 0 -AnchorPoint: "Anchor-14" 630 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 669 731 N 1 0 0 1 370 0 2 -Refer: 651 713 N 1 0 0 1 243 0 2 -EndChar - -StartChar: uni01EE -Encoding: 494 494 432 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 28 - 28 - 5 - 38 - 1 - 30 - 7 - 30 - 36 - 16 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 630 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 636 1840 basechar 0 -AnchorPoint: "Anchor-15" 1107 1540 basechar 0 -AnchorPoint: "Anchor-14" 581 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 377 439 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 289 0 2 -EndChar - -StartChar: uni01EF -Encoding: 495 495 433 -Width: 1116 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 29 - 29 - 17 - 38 - 1 - 31 - 13 - 31 - 37 - 13 - 6 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 605 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1116 1540 basechar 0 -AnchorPoint: "Anchor-20" 1116 -380 basechar 0 -AnchorPoint: "Anchor-16" 579 1580 basechar 0 -AnchorPoint: "Anchor-15" 1008 1260 basechar 0 -AnchorPoint: "Anchor-14" 559 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 596 658 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 234 0 2 -EndChar - -StartChar: uni01F0 -Encoding: 496 496 434 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 14 - 14 - 17 - 38 - 1 - 16 - 87 - 16 - 22 - 6 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 100 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 140 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 505 567 N 1 0 0 1 0 0 3 -Refer: 649 711 N 1 0 0 1 -110 0 2 -EndChar - -StartChar: uni01F1 -Encoding: 497 497 435 -Width: 2730 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 2431 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2730 1840 basechar 0 -AnchorPoint: "Anchor-20" 2730 -380 basechar 0 -AnchorPoint: "Anchor-16" 2140 1540 basechar 0 -AnchorPoint: "Anchor-15" 2603 1540 basechar 0 -AnchorPoint: "Anchor-14" 2110 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 2 -Refer: 61 90 N 1 0 0 1 1479 0 2 -EndChar - -StartChar: uni01F2 -Encoding: 498 498 436 -Width: 2503 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 2244 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2503 1540 basechar 0 -AnchorPoint: "Anchor-20" 2503 -380 basechar 0 -AnchorPoint: "Anchor-16" 1980 1200 basechar 0 -AnchorPoint: "Anchor-15" 2361 1260 basechar 0 -AnchorPoint: "Anchor-14" 1989 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 2 -Refer: 93 122 N 1 0 0 1 1479 0 2 -EndChar - -StartChar: uni01F3 -Encoding: 499 499 437 -Width: 2148 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 1903 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2148 1540 basechar 0 -AnchorPoint: "Anchor-20" 2148 -380 basechar 0 -AnchorPoint: "Anchor-16" 1624 1200 basechar 0 -AnchorPoint: "Anchor-15" 2020 1260 basechar 0 -AnchorPoint: "Anchor-14" 1626 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 71 100 N 1 0 0 1 0 0 2 -Refer: 93 122 N 1 0 0 1 1124 0 2 -EndChar - -StartChar: uni01F4 -Encoding: 500 500 438 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 36 - 36 - 5 - 38 - 1 - 32 - 95 - 32 - 35 - 0 - 24 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 42 71 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 583 0 2 -EndChar - -StartChar: uni01F5 -Encoding: 501 501 439 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 52 - 52 - 17 - 38 - 2 - 48 - 100 - 48 - 51 - 17 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 74 103 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 363 0 2 -EndChar - -StartChar: uni01F6 -Encoding: 502 502 440 -Width: 2118 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 6 - 9 - 23 - 0 - 15 - 22 - 18 - 18 - 19 - 19 - 15 - 9 - 3 - 27 - 26 - 22 - 17 - 95 - 89 - 80 - 22 - 1 - 224 - 22 - 1 - 22 -PUSHW_1 - -31 -NPUSHB - 28 - 19 - 73 - 121 - 22 - 137 - 22 - 2 - 15 - 22 - 1 - 8 - 3 - 22 - 22 - 19 - 24 - 20 - 3 - 19 - 18 - 12 - 3 - 96 - 89 - 12 - 19 - 7 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1634 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2118 1540 basechar 0 -AnchorPoint: "Anchor-20" 2118 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1312 394 m 2,0,1 - 1312 247 1312 247 1371 182 c 128,-1,2 - 1430 117 1430 117 1558 117 c 256,3,4 - 1686 117 1686 117 1744.5 181.5 c 128,-1,5 - 1803 246 1803 246 1803 394 c 2,6,-1 - 1803 1082 l 1,7,-1 - 1984 1082 l 1,8,-1 - 1984 365 l 2,9,10 - 1984 188 1984 188 1871 84 c 128,-1,11 - 1758 -20 1758 -20 1557 -20 c 0,12,13 - 1353 -20 1353 -20 1237 82 c 128,-1,14 - 1121 184 1121 184 1121 362 c 2,15,-1 - 1121 653 l 1,16,-1 - 359 653 l 1,17,-1 - 359 0 l 1,18,-1 - 168 0 l 1,19,-1 - 168 1409 l 1,20,-1 - 359 1409 l 1,21,-1 - 359 813 l 1,22,-1 - 1121 813 l 1,23,-1 - 1121 1409 l 1,24,-1 - 1312 1409 l 1,25,-1 - 1312 394 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni01F7 -Encoding: 503 503 441 -Width: 1266 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 23 - 9 - 5 - 5 - 6 - 15 - 0 - 6 - 0 - 27 - 28 - 9 - 23 - 12 - 23 - 4 - 95 - 89 - 23 - 18 - 12 - 18 - 95 - 89 - 12 - 4 - 7 - 3 - 5 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 198 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1266 1540 basechar 0 -AnchorPoint: "Anchor-20" 1266 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1580 basechar 0 -AnchorPoint: "Anchor-15" 1030 1540 basechar 0 -AnchorPoint: "Anchor-14" 262 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1177 931 m 0,0,1 - 1177 714 1177 714 1064.5 487.5 c 128,-1,2 - 952 261 952 261 761.5 86.5 c 128,-1,3 - 571 -88 571 -88 359 -160 c 1,4,-1 - 359 -425 l 1,5,-1 - 168 -425 l 1,6,-1 - 168 1409 l 1,7,-1 - 352 1409 l 1,8,-1 - 352 1245 l 1,9,10 - 415 1333 415 1333 510 1381.5 c 128,-1,11 - 605 1430 605 1430 716 1430 c 0,12,13 - 939 1430 939 1430 1058 1305.5 c 128,-1,14 - 1177 1181 1177 1181 1177 931 c 0,0,1 -982 932 m 0,15,16 - 982 1098 982 1098 910 1186.5 c 128,-1,17 - 838 1275 838 1275 693 1275 c 0,18,19 - 598 1275 598 1275 521.5 1226 c 128,-1,20 - 445 1177 445 1177 402 1092 c 128,-1,21 - 359 1007 359 1007 359 909 c 2,22,-1 - 359 2 l 1,23,24 - 521 60 521 60 666.5 210.5 c 128,-1,25 - 812 361 812 361 897 556 c 128,-1,26 - 982 751 982 751 982 932 c 0,15,16 -EndSplineSet -EndChar - -StartChar: uni01F8 -Encoding: 504 504 442 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 19 - 19 - 5 - 38 - 1 - 16 -PUSHW_1 - -79 -PUSHB_5 - 16 - 19 - 6 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 343 0 2 -EndChar - -StartChar: uni01F9 -Encoding: 505 505 443 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 32 - 32 - 17 - 38 - 1 - 29 -PUSHW_1 - -76 -PUSHB_5 - 29 - 32 - 13 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 840 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 177 0 2 -EndChar - -StartChar: Aringacute -Encoding: 506 506 444 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 106 - 10 - 3 - 19 - 7 - 23 - 19 - 24 - 6 - 5 - 5 - 8 - 8 - 28 - 0 - 34 - 13 - 13 - 41 - 0 - 45 - 4 - 9 - 5 - 4 - 4 - 9 - 48 - 47 - 48 - 48 - 144 - 48 - 2 - 16 - 48 - 64 - 48 - 112 - 48 - 160 - 48 - 208 - 48 - 5 - 15 - 48 - 1 - 11 - 3 - 41 - 41 - 16 - 16 - 31 - 141 - 89 - 112 - 16 - 128 - 16 - 2 - 16 - 16 - 38 - 127 - 43 - 159 - 43 - 175 - 43 - 191 - 43 - 4 - 43 - 64 - 9 - 12 - 72 - 96 - 43 - 1 - 43 - 6 - 7 - 24 - 31 - 23 - 1 - 23 - 23 - 8 - 19 - 10 - 3 - 63 - 38 - 1 - 0 - 38 - 128 - 38 - 2 - 38 - 5 - 5 - 8 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -DELTAP1 -SHP[rp1] -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -DELTAP1 -CALL -DELTAP1 -SRP2 -IP -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -926 1392 m 0,0,1 - 926 1337 926 1337 896.5 1288.5 c 128,-1,2 - 867 1240 867 1240 821 1212 c 1,3,-1 - 1362 0 l 1,4,-1 - 1167 0 l 1,5,-1 - 1006 371 l 1,6,-1 - 364 371 l 1,7,-1 - 202 0 l 1,8,-1 - 4 0 l 1,9,-1 - 552 1209 l 1,10,11 - 503 1237 503 1237 472.5 1286.5 c 128,-1,12 - 442 1336 442 1336 442 1392 c 0,13,14 - 442 1482 442 1482 513 1545.5 c 128,-1,15 - 584 1609 584 1609 684 1609 c 256,16,17 - 784 1609 784 1609 855 1545 c 128,-1,18 - 926 1481 926 1481 926 1392 c 0,0,1 -685 1138 m 1,19,-1 - 676 1114 l 2,20,21 - 660 1065 660 1065 633.5 998.5 c 128,-1,22 - 607 932 607 932 422 505 c 1,23,-1 - 949 505 l 1,24,-1 - 768 923 l 2,25,26 - 741 983 741 983 712 1063 c 2,27,-1 - 685 1138 l 1,19,-1 -818 1392 m 0,28,29 - 818 1442 818 1442 779 1477.5 c 128,-1,30 - 740 1513 740 1513 684 1513 c 0,31,32 - 627 1513 627 1513 588 1477.5 c 128,-1,33 - 549 1442 549 1442 549 1392 c 0,34,35 - 549 1345 549 1345 585 1308 c 128,-1,36 - 621 1271 621 1271 675 1268 c 2,37,-1 - 684 1268 l 2,38,39 - 742 1268 742 1268 780 1305.5 c 128,-1,40 - 818 1343 818 1343 818 1392 c 0,28,29 -571 1657 m 1,41,-1 - 571 1673 l 1,42,-1 - 788 1854 l 1,43,-1 - 995 1854 l 1,44,-1 - 995 1831 l 1,45,-1 - 685 1657 l 1,46,-1 - 571 1657 l 1,41,-1 -EndSplineSet -EndChar - -StartChar: aringacute -Encoding: 507 507 445 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 4 - 31 - 78 - 63 - 78 - 79 - 78 - 3 - 191 - 78 - 1 - 0 - 78 - 112 - 78 - 128 - 78 - 240 - 78 - 4 - 78 - 3 - 2 - 70 - 70 - 16 - 38 - 4 - 73 - 26 - 73 - 76 - 3 - 26 - 37 - 3 - 2 - 55 -PUSHW_1 - -44 -PUSHB_5 - 55 - 49 - 3 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 668 730 N 1 0 0 1 276 -171 2 -Refer: 118 180 N 1 0 0 1 355 346 2 -EndChar - -StartChar: AEacute -Encoding: 508 508 446 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 21 - 5 - 38 - 2 - 21 -PUSHW_1 - 288 -PUSHB_5 - 21 - 24 - 4 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 136 198 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 996 0 2 -EndChar - -StartChar: aeacute -Encoding: 509 509 447 -Width: 1821 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 3 - 60 - 17 - 38 - 3 - 60 - 73 - 60 - 63 - 18 - 38 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 168 230 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 687 0 2 -EndChar - -StartChar: Oslashacute -Encoding: 510 510 448 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 3 - 37 - 5 - 38 - 3 - 37 - 73 - 37 - 40 - 8 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 154 216 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 587 0 2 -EndChar - -StartChar: oslashacute -Encoding: 511 511 449 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 3 - 35 - 17 - 38 - 3 - 35 - 94 - 35 - 38 - 7 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 186 248 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 434 0 2 -EndChar - -StartChar: uni0200 -Encoding: 512 512 450 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 28 - 28 - 5 - 38 - 3 - 2 - 25 -PUSHW_1 - -72 -PUSHB_5 - 25 - 22 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 610 362 2 -EndChar - -StartChar: uni0201 -Encoding: 513 513 451 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 60 - 60 - 17 - 38 - 3 - 2 - 57 -PUSHW_1 - -132 -PUSHB_5 - 57 - 54 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 480 0 2 -EndChar - -StartChar: uni0202 -Encoding: 514 514 452 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 28 - 5 - 38 - 2 - 28 - 4 - 28 - 20 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 687 362 2 -EndChar - -StartChar: uni0203 -Encoding: 515 515 453 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 60 - 17 - 38 - 2 - 60 -PUSHW_1 - -39 -PUSHB_5 - 60 - 52 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 574 0 2 -EndChar - -StartChar: uni0204 -Encoding: 516 516 454 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 23 - 23 - 5 - 38 - 2 - 1 - 20 -PUSHW_1 - -94 -PUSHB_5 - 20 - 17 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 628 362 2 -EndChar - -StartChar: uni0205 -Encoding: 517 517 455 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 37 - 37 - 17 - 38 - 3 - 2 - 34 -PUSHW_1 - -67 -PUSHB_5 - 34 - 31 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 500 0 2 -EndChar - -StartChar: uni0206 -Encoding: 518 518 456 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 23 - 5 - 38 - 1 - 23 -PUSHW_1 - -3 -PUSHB_5 - 23 - 15 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 720 362 2 -EndChar - -StartChar: uni0207 -Encoding: 519 519 457 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 37 - 17 - 38 - 2 - 37 - 2 - 37 - 29 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 570 0 2 -EndChar - -StartChar: uni0208 -Encoding: 520 520 458 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 15 - 15 - 5 - 38 - 2 - 1 - 12 -PUSHW_1 - -50 -PUSHB_5 - 12 - 9 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 234 362 2 -EndChar - -StartChar: uni0209 -Encoding: 521 521 459 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 15 - 15 - 17 - 38 - 2 - 1 - 12 -PUSHW_1 - -67 -PUSHB_5 - 12 - 9 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 216 0 2 -EndChar - -StartChar: uni020A -Encoding: 522 522 460 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 15 - 5 - 38 - 1 - 15 - 15 - 15 - 7 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 300 362 2 -EndChar - -StartChar: uni020B -Encoding: 523 523 461 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 15 - 17 - 38 - 1 - 15 - 2 - 15 - 7 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 286 0 2 -EndChar - -StartChar: uni020C -Encoding: 524 524 462 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 38 - 38 - 5 - 38 - 3 - 2 - 35 -PUSHW_1 - -85 -PUSHB_5 - 35 - 32 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 710 362 2 -EndChar - -StartChar: uni020D -Encoding: 525 525 463 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 34 - 34 - 17 - 38 - 3 - 2 - 31 -PUSHW_1 - -69 -PUSHB_5 - 31 - 28 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 500 0 2 -EndChar - -StartChar: uni020E -Encoding: 526 526 464 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 38 - 5 - 38 - 2 - 38 - 4 - 38 - 30 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 800 362 2 -EndChar - -StartChar: uni020F -Encoding: 527 527 465 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 34 - 17 - 38 - 2 - 34 - 10 - 34 - 26 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 580 0 2 -EndChar - -StartChar: uni0210 -Encoding: 528 528 466 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 34 - 34 - 5 - 38 - 3 - 2 - 31 -PUSHW_1 - -155 -PUSHB_5 - 31 - 28 - 5 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 620 362 2 -EndChar - -StartChar: uni0211 -Encoding: 529 529 467 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 31 - 31 - 17 - 38 - 2 - 1 - 28 -PUSHW_1 - -71 -PUSHB_5 - 28 - 25 - 3 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 85 114 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 320 0 2 -EndChar - -StartChar: uni0212 -Encoding: 530 530 468 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 34 - 5 - 38 - 2 - 34 -PUSHW_1 - -66 -PUSHB_5 - 34 - 26 - 5 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 710 362 2 -EndChar - -StartChar: uni0213 -Encoding: 531 531 469 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 31 - 17 - 38 - 1 - 31 - 8 - 31 - 23 - 3 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 85 114 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 400 0 2 -EndChar - -StartChar: uni0214 -Encoding: 532 532 470 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 31 - 31 - 5 - 38 - 2 - 1 - 28 -PUSHW_1 - -49 -PUSHB_5 - 28 - 25 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 690 362 2 -EndChar - -StartChar: uni0215 -Encoding: 533 533 471 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 38 - 38 - 17 - 38 - 2 - 1 - 35 -PUSHW_1 - -77 -PUSHB_5 - 35 - 32 - 26 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 490 0 2 -EndChar - -StartChar: uni0216 -Encoding: 534 534 472 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 31 - 5 - 38 - 1 - 31 - 15 - 31 - 23 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 755 362 2 -EndChar - -StartChar: uni0217 -Encoding: 535 535 473 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 38 - 17 - 38 - 1 - 38 -PUSHW_1 - -6 -PUSHB_5 - 38 - 30 - 26 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 723 785 N 1 0 0 1 562 0 2 -EndChar - -StartChar: Scommaaccent -Encoding: 536 536 474 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 50 - 25 - 50 - 56 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 480 0 2 -EndChar - -StartChar: scommaaccent -Encoding: 537 537 475 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 47 - 4 - 47 - 53 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 280 0 2 -EndChar - -StartChar: uni021A -Encoding: 538 538 476 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 12 - 0 - 12 - 18 - 5 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 55 84 N 1 0 0 1 0 0 3 -Refer: 2298 -1 N 1 0 0 1 397 0 2 -EndChar - -StartChar: uni021B -Encoding: 539 539 477 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 138 - 15 - 33 - 1 - 88 - 2 - 15 - 33 - 31 - 33 - 47 - 33 - 3 - 125 - 15 - 33 - 31 - 33 - 47 - 33 - 63 - 33 - 79 - 33 - 111 - 33 - 127 - 33 - 191 - 33 - 207 - 33 - 223 - 33 - 239 - 33 - 255 - 33 - 12 - 15 - 33 - 31 - 33 - 47 - 33 - 95 - 33 - 111 - 33 - 127 - 33 - 143 - 33 - 159 - 33 - 191 - 33 - 207 - 33 - 223 - 33 - 11 - 15 - 33 - 31 - 33 - 47 - 33 - 63 - 33 - 111 - 33 - 127 - 33 - 175 - 33 - 207 - 33 - 223 - 33 - 239 - 33 - 10 - 77 - 31 - 33 - 207 - 33 - 2 - 111 - 33 - 1 - 15 - 33 - 191 - 33 - 2 - 8 - 0 - 33 - 48 - 33 - 176 - 33 - 224 - 33 - 4 - 60 - 64 - 33 - 128 - 33 - 144 - 33 - 3 - 32 - 33 - 48 - 33 - 208 - 33 - 224 - 33 - 4 - 0 - 33 - 64 - 33 - 128 - 33 - 3 - 1 - 25 - 69 - 25 - 31 - 7 - 20 - 37 -CALL -SRP1 -SHC[rp1] -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -SDS -SDB -DELTAP1 -EndTTInstrs -AnchorPoint: "Anchor-25" 308 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 87 116 N 1 0 0 1 0 0 2 -Refer: 2298 -1 N 1 0 0 1 134 0 2 -EndChar - -StartChar: uni021C -Encoding: 540 540 478 -Width: 1116 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 9 - 32 - 11 - 15 - 29 - 29 - 6 - 0 - 11 - 22 - 2 - 0 - 2 - 36 - 35 - 32 - 11 - 9 - 9 - 2 - 25 - 21 - 21 - 25 - 25 - 18 - 95 - 89 - 25 - 4 - 3 - 3 - 2 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 460 -250 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1116 1540 basechar 0 -AnchorPoint: "Anchor-20" 1116 -380 basechar 0 -AnchorPoint: "Anchor-16" 546 1540 basechar 0 -AnchorPoint: "Anchor-15" 860 1540 basechar 0 -AnchorPoint: "Anchor-14" 537 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1017 360 m 0,0,1 - 1017 -170 1017 -170 136 -427 c 1,2,-1 - 136 -261 l 1,3,4 - 479 -164 479 -164 654 -11 c 128,-1,5 - 829 142 829 142 829 339 c 0,6,7 - 829 412 829 412 808 478 c 128,-1,8 - 787 544 787 544 750 584 c 1,9,10 - 574 449 574 449 135 304 c 1,11,-1 - 135 477 l 1,12,13 - 508 591 508 591 668.5 711 c 128,-1,14 - 829 831 829 831 829 998 c 0,15,16 - 829 1132 829 1132 758.5 1200.5 c 128,-1,17 - 688 1269 688 1269 551 1269 c 0,18,19 - 436 1269 436 1269 357.5 1227 c 128,-1,20 - 279 1185 279 1185 217 1077 c 1,21,-1 - 64 1156 l 1,22,23 - 149 1300 149 1300 270 1365.5 c 128,-1,24 - 391 1431 391 1431 559 1431 c 0,25,26 - 694 1431 694 1431 797.5 1380 c 128,-1,27 - 901 1329 901 1329 957.5 1236 c 128,-1,28 - 1014 1143 1014 1143 1014 1027 c 0,29,30 - 1014 938 1014 938 986 869 c 128,-1,31 - 958 800 958 800 873 708 c 1,32,33 - 937 648 937 648 977 558.5 c 128,-1,34 - 1017 469 1017 469 1017 360 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni021D -Encoding: 541 541 479 -Width: 894 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 34 - 12 - 14 - 18 - 32 - 32 - 9 - 0 - 14 - 25 - 3 - 0 - 3 - 38 - 37 - 34 - 14 - 12 - 12 - 3 - 29 - 24 - 24 - 29 - 29 - 21 - 80 - 89 - 29 - 16 - 4 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 460 -250 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 894 1540 basechar 0 -AnchorPoint: "Anchor-20" 894 -380 basechar 0 -AnchorPoint: "Anchor-16" 436 1200 basechar 0 -AnchorPoint: "Anchor-15" 678 1260 basechar 0 -AnchorPoint: "Anchor-14" 460 -440 basechar 0 -LayerCount: 2 -Fore -SplineSet -814 170 m 0,0,1 - 814 -37 814 -37 638.5 -186 c 128,-1,2 - 463 -335 463 -335 89 -426 c 1,3,-1 - 89 -271 l 1,4,5 - 268 -223 268 -223 363.5 -179 c 128,-1,6 - 459 -135 459 -135 515 -87.5 c 128,-1,7 - 571 -40 571 -40 603 19 c 128,-1,8 - 635 78 635 78 635 149 c 256,9,10 - 635 220 635 220 614.5 278.5 c 128,-1,11 - 594 337 594 337 561 366 c 1,12,13 - 381 262 381 262 89 197 c 1,14,-1 - 89 345 l 1,15,16 - 366 405 366 405 500.5 509.5 c 128,-1,17 - 635 614 635 614 635 759 c 0,18,19 - 635 868 635 868 587 918.5 c 128,-1,20 - 539 969 539 969 438 969 c 256,21,22 - 337 969 337 969 286 926 c 128,-1,23 - 235 883 235 883 207 792 c 1,24,-1 - 33 825 l 1,25,26 - 60 923 60 923 112.5 984.5 c 128,-1,27 - 165 1046 165 1046 240 1074 c 128,-1,28 - 315 1102 315 1102 436 1102 c 0,29,30 - 627 1102 627 1102 720.5 1018 c 128,-1,31 - 814 934 814 934 814 753 c 0,32,33 - 814 595 814 595 700 468 c 1,34,35 - 750 427 750 427 782 347.5 c 128,-1,36 - 814 268 814 268 814 170 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni021E -Encoding: 542 542 480 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 13 - 13 - 5 - 38 - 1 - 15 -PUSHW_1 - -4 -PUSHB_5 - 15 - 21 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1150 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 405 0 2 -EndChar - -StartChar: uni021F -Encoding: 543 543 481 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 26 - 26 - 5 - 38 - 1 - 28 - 27 - 28 - 34 - 19 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 75 104 N 1 0 0 1 0 0 3 -Refer: 2305 -1 N 1 0 0 1 270 20 2 -EndChar - -StartChar: uni0220 -Encoding: 544 544 482 -Width: 1446 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 0 - 20 - 13 - 9 - 9 - 10 - 20 - 10 - 22 - 21 - 13 - 16 - 10 - 16 - 5 - 95 - 89 - 16 - 4 - 11 - 3 - 10 - 18 - 0 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1446 1540 basechar 0 -AnchorPoint: "Anchor-20" 1446 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1093 -425 m 1,0,-1 - 1093 939 l 2,1,2 - 1093 1064 1093 1064 1061.5 1138 c 128,-1,3 - 1030 1212 1030 1212 964 1246 c 128,-1,4 - 898 1280 898 1280 777 1280 c 0,5,6 - 666 1280 666 1280 550.5 1231 c 128,-1,7 - 435 1182 435 1182 353 1100 c 1,8,-1 - 353 0 l 1,9,-1 - 164 0 l 1,10,-1 - 164 1409 l 1,11,-1 - 351 1409 l 1,12,-1 - 351 1258 l 1,13,14 - 425 1337 425 1337 555.5 1383 c 128,-1,15 - 686 1429 686 1429 836 1429 c 0,16,17 - 1069 1429 1069 1429 1176 1311 c 128,-1,18 - 1283 1193 1283 1193 1283 939 c 2,19,-1 - 1283 -425 l 1,20,-1 - 1093 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0221 -Encoding: 545 545 483 -Width: 1396 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 46 - 22 - 52 - 16 - 16 - 40 - 28 - 13 - 32 - 34 - 6 - 6 - 30 - 32 - 22 - 4 - 59 - 58 - 28 - 32 - 17 - 3 - 19 - 26 - 26 - 55 - 80 - 89 - 29 - 26 - 15 - 0 - 0 - 11 - 3 - 8 - 8 - 43 - 80 - 89 - 8 - 16 - 19 - 49 - 80 - 89 - 19 - 19 - 3 - 3 - 37 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1000 -350 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1396 1540 basechar 0 -AnchorPoint: "Anchor-20" 1396 -380 basechar 0 -AnchorPoint: "Anchor-16" 557 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 570 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -821 174 m 1,0,1 - 771 70 771 70 688.5 25 c 128,-1,2 - 606 -20 606 -20 484 -20 c 0,3,4 - 279 -20 279 -20 182.5 118 c 128,-1,5 - 86 256 86 256 86 536 c 0,6,7 - 86 1102 86 1102 484 1102 c 0,8,9 - 607 1102 607 1102 689 1057 c 128,-1,10 - 771 1012 771 1012 821 914 c 1,11,-1 - 823 914 l 1,12,-1 - 821 1035 l 1,13,-1 - 821 1484 l 1,14,-1 - 1001 1484 l 1,15,-1 - 1001 223 l 1,16,-1 - 1003 64 l 1,17,18 - 1068 87 1068 87 1128 87 c 0,19,20 - 1256 87 1256 87 1326 19.5 c 128,-1,21 - 1396 -48 1396 -48 1396 -167 c 0,22,23 - 1396 -250 1396 -250 1360 -306.5 c 128,-1,24 - 1324 -363 1324 -363 1262.5 -394 c 128,-1,25 - 1201 -425 1201 -425 1127 -425 c 0,26,27 - 942 -425 942 -425 863 -236 c 1,28,-1 - 706 -426 l 1,29,-1 - 596 -309 l 1,30,31 - 717 -140 717 -140 825 -44 c 1,32,-1 - 825 174 l 1,33,-1 - 821 174 l 1,0,1 -275 542 m 0,34,35 - 275 315 275 315 335 217 c 128,-1,36 - 395 119 395 119 530 119 c 0,37,38 - 683 119 683 119 752 225 c 128,-1,39 - 821 331 821 331 821 554 c 0,40,41 - 821 769 821 769 752 869 c 128,-1,42 - 683 969 683 969 532 969 c 0,43,44 - 396 969 396 969 335.5 868.5 c 128,-1,45 - 275 768 275 768 275 542 c 0,34,35 -1241 -171 m 0,46,47 - 1241 -123 1241 -123 1212.5 -90.5 c 128,-1,48 - 1184 -58 1184 -58 1126 -58 c 0,49,50 - 1088 -58 1088 -58 1057 -72.5 c 128,-1,51 - 1026 -87 1026 -87 994 -107 c 1,52,53 - 994 -187 994 -187 1029.5 -234 c 128,-1,54 - 1065 -281 1065 -281 1126 -281 c 0,55,56 - 1178 -281 1178 -281 1209.5 -252.5 c 128,-1,57 - 1241 -224 1241 -224 1241 -171 c 0,46,47 -EndSplineSet -EndChar - -StartChar: uni0222 -Encoding: 546 546 484 -Width: 1238 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 6 - 0 - 27 - 19 - 4 - 3 - 30 - 23 - 23 - 46 - 16 - 36 - 3 - 3 - 40 - 10 - 16 - 10 - 51 - 52 - 6 - 19 - 33 - 43 - 33 - 43 - 96 - 89 - 26 - 27 - 96 - 89 - 33 - 26 - 33 - 26 - 13 - 0 - 13 - 49 - 96 - 89 - 13 - 19 - 0 - 39 - 96 - 89 - 0 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 737 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1238 1540 basechar 0 -AnchorPoint: "Anchor-20" 1238 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -638 1430 m 1,0,1 - 857 1425 857 1425 981 1326.5 c 128,-1,2 - 1105 1228 1105 1228 1105 1066 c 0,3,4 - 1105 942 1105 942 1034 853.5 c 128,-1,5 - 963 765 963 765 837 742 c 1,6,-1 - 837 738 l 1,7,8 - 982 716 982 716 1062.5 624 c 128,-1,9 - 1143 532 1143 532 1143 391 c 0,10,11 - 1143 198 1143 198 1004 89 c 128,-1,12 - 865 -20 865 -20 619 -20 c 0,13,14 - 366 -20 366 -20 229.5 88 c 128,-1,15 - 93 196 93 196 93 389 c 0,16,17 - 93 528 93 528 178 622 c 128,-1,18 - 263 716 263 716 395 736 c 1,19,-1 - 395 740 l 1,20,21 - 258 777 258 777 193.5 839.5 c 128,-1,22 - 129 902 129 902 129 999 c 0,23,24 - 129 1137 129 1137 243.5 1212.5 c 128,-1,25 - 358 1288 358 1288 578 1292 c 1,26,-1 - 578 1162 l 1,27,28 - 441 1158 441 1158 375.5 1116.5 c 128,-1,29 - 310 1075 310 1075 310 991 c 0,30,31 - 310 902 310 902 392.5 855 c 128,-1,32 - 475 808 475 808 617 808 c 0,33,34 - 763 808 763 808 842 871.5 c 128,-1,35 - 921 935 921 935 921 1056 c 0,36,37 - 921 1164 921 1164 848.5 1227.5 c 128,-1,38 - 776 1291 776 1291 638 1296 c 1,39,-1 - 638 1430 l 1,0,1 -959 408 m 0,40,41 - 959 532 959 532 867 602 c 128,-1,42 - 775 672 775 672 614 672 c 0,43,44 - 458 672 458 672 367 596 c 128,-1,45 - 276 520 276 520 276 390 c 0,46,47 - 276 261 276 261 365 190.5 c 128,-1,48 - 454 120 454 120 621 120 c 0,49,50 - 959 120 959 120 959 408 c 0,40,41 -EndSplineSet -EndChar - -StartChar: uni0223 -Encoding: 547 547 485 -Width: 1158 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 26 - 34 - 6 - 13 - 4 - 30 - 3 - 10 - 10 - 49 - 17 - 37 - 30 - 30 - 43 - 23 - 17 - 23 - 54 - 53 - 26 - 14 - 0 - 40 - 0 - 40 - 81 - 89 - 0 - 0 - 20 - 34 - 7 - 33 - 0 - 20 - 46 - 80 - 89 - 20 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1158 1540 basechar 0 -AnchorPoint: "Anchor-20" 1158 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -581 874 m 256,0,1 - 706 874 706 874 775 942 c 128,-1,2 - 844 1010 844 1010 844 1135 c 0,3,4 - 844 1216 844 1216 803.5 1279 c 128,-1,5 - 763 1342 763 1342 690 1377 c 1,6,-1 - 763 1490 l 1,7,8 - 902 1422 902 1422 963.5 1335 c 128,-1,9 - 1025 1248 1025 1248 1025 1136 c 0,10,11 - 1025 1009 1025 1009 961.5 922 c 128,-1,12 - 898 835 898 835 786 803 c 1,13,-1 - 786 799 l 1,14,15 - 916 768 916 768 992 667.5 c 128,-1,16 - 1068 567 1068 567 1068 424 c 0,17,18 - 1068 211 1068 211 939.5 95.5 c 128,-1,19 - 811 -20 811 -20 579 -20 c 0,20,21 - 349 -20 349 -20 222 96 c 128,-1,22 - 95 212 95 212 95 424 c 0,23,24 - 95 568 95 568 171 667.5 c 128,-1,25 - 247 767 247 767 377 799 c 1,26,-1 - 377 803 l 1,27,28 - 266 834 266 834 202 921 c 128,-1,29 - 138 1008 138 1008 138 1136 c 0,30,31 - 138 1248 138 1248 199.5 1335 c 128,-1,32 - 261 1422 261 1422 400 1490 c 1,33,-1 - 473 1377 l 1,34,35 - 400 1342 400 1342 359.5 1279 c 128,-1,36 - 319 1216 319 1216 319 1135 c 0,37,38 - 319 1009 319 1009 387.5 941.5 c 128,-1,39 - 456 874 456 874 581 874 c 256,0,1 -581 743 m 0,40,41 - 442 743 442 743 359 659.5 c 128,-1,42 - 276 576 276 576 276 439 c 0,43,44 - 276 282 276 282 353.5 201.5 c 128,-1,45 - 431 121 431 121 582 121 c 256,46,47 - 733 121 733 121 810 202 c 128,-1,48 - 887 283 887 283 887 439 c 0,49,50 - 887 526 887 526 850.5 595.5 c 128,-1,51 - 814 665 814 665 744.5 704 c 128,-1,52 - 675 743 675 743 581 743 c 0,40,41 -EndSplineSet -EndChar - -StartChar: uni0224 -Encoding: 548 548 486 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 6 - 0 - 1 - 5 - 15 - 10 - 10 - 5 - 2 - 0 - 4 - 20 - 21 - 0 - 6 - 19 - 6 - 95 - 89 - 12 - 64 - 19 - 18 - 5 - 2 - 3 - 2 - 95 - 89 - 3 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,grey] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 814 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -65 143 m 1,0,-1 - 923 1253 l 1,1,-1 - 138 1253 l 1,2,-1 - 138 1409 l 1,3,-1 - 1140 1409 l 1,4,-1 - 1140 1270 l 1,5,-1 - 282 156 l 1,6,-1 - 918 156 l 2,7,8 - 1050 156 1050 156 1124.5 90.5 c 128,-1,9 - 1199 25 1199 25 1199 -101 c 0,10,11 - 1199 -178 1199 -178 1182 -255 c 1,12,-1 - 1027 -221 l 1,13,14 - 1045 -165 1045 -165 1045 -133 c 0,15,16 - 1045 -62 1045 -62 1009.5 -31 c 128,-1,17 - 974 0 974 0 897 0 c 2,18,-1 - 65 0 l 1,19,-1 - 65 143 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0225 -Encoding: 549 549 487 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 15 - 10 - 1 - 5 - 6 - 0 - 0 - 2 - 5 - 10 - 4 - 21 - 20 - 0 - 6 - 19 - 6 - 80 - 89 - 12 - 19 - 21 - 5 - 2 - 3 - 2 - 80 - 89 - 3 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -MDRP[rnd,grey] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 594 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 480 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -49 137 m 1,0,-1 - 710 943 l 1,1,-1 - 89 943 l 1,2,-1 - 89 1082 l 1,3,-1 - 913 1082 l 1,4,-1 - 913 945 l 1,5,-1 - 251 139 l 1,6,-1 - 698 139 l 2,7,8 - 845 139 845 139 912 83 c 128,-1,9 - 979 27 979 27 979 -88 c 0,10,11 - 979 -159 979 -159 960 -245 c 1,12,-1 - 805 -211 l 1,13,14 - 825 -162 825 -162 825 -123 c 0,15,16 - 825 -60 825 -60 789.5 -30 c 128,-1,17 - 754 0 754 0 677 0 c 2,18,-1 - 49 0 l 1,19,-1 - 49 137 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0226 -Encoding: 550 550 488 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 20 - 20 - 5 - 38 - 2 - 18 - 6 - 18 - 20 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 443 293 2 -EndChar - -StartChar: uni0227 -Encoding: 551 551 489 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 52 - 52 - 17 - 38 - 2 - 50 -PUSHW_1 - -37 -PUSHB_5 - 50 - 52 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 330 0 2 -EndChar - -StartChar: uni0228 -Encoding: 552 552 490 -Width: 1366 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 737 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 2 -Refer: 122 184 N 1 0 0 1 461 0 2 -EndChar - -StartChar: uni0229 -Encoding: 553 553 491 -Width: 1139 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 561 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 2 -Refer: 122 184 N 1 0 0 1 306 0 2 -EndChar - -StartChar: uni022A -Encoding: 554 554 492 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 4 - 3 - 2 - 34 - 34 - 5 - 38 - 4 - 3 - 2 - 32 - 4 - 32 - 30 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2356 -1 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni022B -Encoding: 555 555 493 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 4 - 15 - 33 - 31 - 33 - 63 - 33 - 159 - 33 - 4 - 16 - 33 - 48 - 33 - 64 - 33 - 144 - 33 - 4 - 33 - 3 - 2 - 27 - 27 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP2 -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 242 0 2 -Refer: 651 713 N 1 0 0 1 242 280 2 -EndChar - -StartChar: uni022C -Encoding: 556 556 494 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 2 - 39 - 5 - 38 - 3 - 2 - 39 - 0 - 39 - 51 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2361 -1 N 1 0 0 1 796 0 2 -EndChar - -StartChar: uni022D -Encoding: 557 557 495 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 3 - 47 - 50 - 1 - 15 - 50 - 63 - 50 - 79 - 50 - 95 - 50 - 111 - 50 - 5 - 50 - 2 - 23 - 23 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 242 0 2 -Refer: 651 713 N 1 0 0 1 242 330 2 -EndChar - -StartChar: uni022E -Encoding: 558 558 496 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 30 - 30 - 5 - 38 - 2 - 28 - 16 - 28 - 30 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 566 293 2 -EndChar - -StartChar: uni022F -Encoding: 559 559 497 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 26 - 26 - 17 - 38 - 2 - 24 - 1 - 24 - 26 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 325 0 2 -EndChar - -StartChar: uni0230 -Encoding: 560 560 498 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 30 - 30 - 5 - 38 - 3 - 2 - 33 - 0 - 33 - 34 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2360 -1 N 1 0 0 1 796 0 2 -EndChar - -StartChar: uni0231 -Encoding: 561 561 499 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 3 - 127 - 30 - 1 - 63 - 30 - 159 - 30 - 2 - 16 - 30 - 48 - 30 - 64 - 30 - 3 - 30 - 2 - 26 - 26 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP2 -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 331 -80 2 -Refer: 651 713 N 1 0 0 1 242 280 2 -EndChar - -StartChar: uni0232 -Encoding: 562 562 500 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 10 - 10 - 5 - 38 - 1 - 11 - 0 - 11 - 12 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 357 329 2 -EndChar - -StartChar: uni0233 -Encoding: 563 563 501 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 24 - 24 - 17 - 38 - 1 - 25 - 15 - 25 - 26 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 460 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 202 0 2 -EndChar - -StartChar: uni0234 -Encoding: 564 564 502 -Width: 715 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 1 - 24 - 24 - 16 - 12 - 12 - 14 - 18 - 6 - 6 - 31 - 14 - 30 - 3 - 21 - 80 - 89 - 12 - 16 - 3 - 3 - 10 - 17 - 0 - 10 - 27 - 80 - 89 - 13 - 10 - 27 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,white] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -IP -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 264 -350 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 715 1540 basechar 0 -AnchorPoint: "Anchor-20" 715 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 317 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -318 1484 m 1,0,-1 - 318 63 l 1,1,2 - 386 87 386 87 445 87 c 0,3,4 - 573 87 573 87 643 19.5 c 128,-1,5 - 713 -48 713 -48 713 -167 c 0,6,7 - 713 -250 713 -250 677 -306.5 c 128,-1,8 - 641 -363 641 -363 579.5 -394 c 128,-1,9 - 518 -425 518 -425 444 -425 c 0,10,11 - 259 -425 259 -425 180 -236 c 1,12,-1 - 23 -426 l 1,13,-1 - -87 -309 l 1,14,15 - 40 -130 40 -130 138 -44 c 1,16,-1 - 138 1484 l 1,17,-1 - 318 1484 l 1,0,-1 -558 -171 m 0,18,19 - 558 -123 558 -123 529.5 -90.5 c 128,-1,20 - 501 -58 501 -58 443 -58 c 0,21,22 - 405 -58 405 -58 374 -72.5 c 128,-1,23 - 343 -87 343 -87 311 -107 c 1,24,25 - 311 -187 311 -187 346.5 -234 c 128,-1,26 - 382 -281 382 -281 443 -281 c 0,27,28 - 495 -281 495 -281 526.5 -252.5 c 128,-1,29 - 558 -224 558 -224 558 -171 c 0,18,19 -EndSplineSet -EndChar - -StartChar: uni0235 -Encoding: 565 565 503 -Width: 1402 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 57 - 13 - 8 - 8 - 9 - 47 - 25 - 25 - 36 - 40 - 41 - 30 - 30 - 40 - 38 - 9 - 4 - 53 - 54 - 36 - 40 - 25 - 3 - 27 - 34 - 34 - 50 - 80 - 89 - 15 - 34 - 31 - 34 - 159 - 34 - 3 - 13 - 3 - 34 - 17 - 21 - 8 - 21 - 4 - 80 - 89 - 21 - 16 - 12 - 15 - 27 - 44 - 80 - 89 - 27 - 27 - 8 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 957 -341 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1402 1540 basechar 0 -AnchorPoint: "Anchor-20" 1402 -380 basechar 0 -AnchorPoint: "Anchor-16" 636 1840 basechar 0 -AnchorPoint: "Anchor-15" 1107 1540 basechar 0 -AnchorPoint: "Anchor-14" 581 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -825 686 m 2,0,1 - 825 793 825 793 804 852 c 128,-1,2 - 783 911 783 911 737 937 c 128,-1,3 - 691 963 691 963 602 963 c 0,4,5 - 472 963 472 963 397 874 c 128,-1,6 - 322 785 322 785 322 627 c 2,7,-1 - 322 0 l 1,8,-1 - 142 0 l 1,9,-1 - 142 851 l 2,10,11 - 142 1040 142 1040 136 1082 c 1,12,-1 - 306 1082 l 1,13,14 - 307 1077 307 1077 308 1055 c 128,-1,15 - 309 1033 309 1033 310.5 1004.5 c 128,-1,16 - 312 976 312 976 314 897 c 1,17,-1 - 317 897 l 1,18,19 - 379 1009 379 1009 460.5 1055.5 c 128,-1,20 - 542 1102 542 1102 663 1102 c 0,21,22 - 841 1102 841 1102 923.5 1013.5 c 128,-1,23 - 1006 925 1006 925 1006 721 c 2,24,-1 - 1006 63 l 1,25,26 - 1074 87 1074 87 1133 87 c 0,27,28 - 1258 87 1258 87 1327 20.5 c 128,-1,29 - 1396 -46 1396 -46 1396 -167 c 0,30,31 - 1396 -250 1396 -250 1360 -306.5 c 128,-1,32 - 1324 -363 1324 -363 1262.5 -394 c 128,-1,33 - 1201 -425 1201 -425 1127 -425 c 0,34,35 - 942 -425 942 -425 863 -236 c 1,36,-1 - 706 -426 l 1,37,-1 - 596 -309 l 1,38,39 - 717 -140 717 -140 825 -44 c 1,40,-1 - 825 686 l 2,0,1 -1241 -171 m 0,41,42 - 1241 -123 1241 -123 1212.5 -90.5 c 128,-1,43 - 1184 -58 1184 -58 1126 -58 c 0,44,45 - 1088 -58 1088 -58 1057 -72.5 c 128,-1,46 - 1026 -87 1026 -87 994 -107 c 1,47,48 - 994 -187 994 -187 1029.5 -234 c 128,-1,49 - 1065 -281 1065 -281 1126 -281 c 0,50,51 - 1178 -281 1178 -281 1209.5 -252.5 c 128,-1,52 - 1241 -224 1241 -224 1241 -171 c 0,41,42 -EndSplineSet -EndChar - -StartChar: uni0236 -Encoding: 566 566 504 -Width: 752 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 49 - 26 - 14 - 32 - 5 - 9 - 9 - 22 - 20 - 2 - 24 - 1 - 24 - 6 - 14 - 4 - 39 - 38 - 20 - 29 - 11 - 29 - 80 - 89 - 24 - 11 - 11 - 6 - 18 - 18 - 35 - 80 - 89 - 21 - 18 - 22 - 6 - 7 - 81 - 89 - 4 - 64 - 6 - 15 - 1 - 0 - 81 - 89 - 1 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,white] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 317 50 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 752 1540 basechar 0 -AnchorPoint: "Anchor-20" 752 -380 basechar 0 -AnchorPoint: "Anchor-16" 282 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 405 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -31 951 m 1,0,-1 - 31 1082 l 1,1,-1 - 163 1082 l 1,2,-1 - 216 1324 l 1,3,-1 - 336 1324 l 1,4,-1 - 336 1082 l 1,5,-1 - 536 1082 l 1,6,-1 - 536 951 l 1,7,-1 - 336 951 l 1,8,-1 - 336 468 l 1,9,10 - 404 492 404 492 463 492 c 0,11,12 - 590 492 590 492 658.5 424.5 c 128,-1,13 - 727 357 727 357 727 238 c 0,14,15 - 727 155 727 155 691 98.5 c 128,-1,16 - 655 42 655 42 593.5 11 c 128,-1,17 - 532 -20 532 -20 458 -20 c 0,18,19 - 273 -20 273 -20 194 169 c 1,20,-1 - 37 -21 l 1,21,-1 - -73 96 l 1,22,23 - 48 265 48 265 156 361 c 1,24,-1 - 156 951 l 1,25,-1 - 31 951 l 1,0,-1 -572 234 m 0,26,27 - 572 282 572 282 543.5 314.5 c 128,-1,28 - 515 347 515 347 457 347 c 0,29,30 - 419 347 419 347 390 332.5 c 128,-1,31 - 361 318 361 318 329 298 c 1,32,33 - 329 214 329 214 363 169 c 128,-1,34 - 397 124 397 124 457 124 c 0,35,36 - 509 124 509 124 540.5 152.5 c 128,-1,37 - 572 181 572 181 572 234 c 0,26,27 -EndSplineSet -EndChar - -StartChar: j.dotless -Encoding: 567 567 505 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 10 - 0 - 0 - 14 - 5 - 13 - 11 - 15 - 3 - 7 - 80 - 89 - 3 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 100 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 140 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -317 -134 m 2,0,1 - 317 -287 317 -287 257 -356 c 128,-1,2 - 197 -425 197 -425 77 -425 c 0,3,4 - 0 -425 0 -425 -50 -416 c 1,5,-1 - -50 -277 l 1,6,-1 - 12 -283 l 1,7,8 - 81 -283 81 -283 109 -247 c 128,-1,9 - 137 -211 137 -211 137 -107 c 2,10,-1 - 137 1082 l 1,11,-1 - 317 1082 l 1,12,-1 - 317 -134 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0238 -Encoding: 568 568 506 -Width: 1816 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 54 - 46 - 25 - 52 - 18 - 16 - 31 - 31 - 40 - 13 - 12 - 32 - 34 - 6 - 6 - 32 - 25 - 3 - 59 - 58 - 32 - 21 - 27 - 55 - 80 - 89 - 27 - 22 - 22 - 49 - 80 - 89 - 22 - 16 - 14 - 0 - 0 - 29 - 18 - 11 - 4 - 8 - 3 - 8 - 43 - 80 - 89 - 8 - 16 - 3 - 37 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1330 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1816 1540 basechar 0 -AnchorPoint: "Anchor-20" 1816 -380 basechar 0 -AnchorPoint: "Anchor-16" 898 1540 basechar 0 -AnchorPoint: "Anchor-15" 1514 1540 basechar 0 -AnchorPoint: "Anchor-14" 900 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -818 174 m 1,0,1 - 768 70 768 70 685.5 25 c 128,-1,2 - 603 -20 603 -20 481 -20 c 0,3,4 - 276 -20 276 -20 179.5 118 c 128,-1,5 - 83 256 83 256 83 536 c 0,6,7 - 83 1102 83 1102 481 1102 c 0,8,9 - 604 1102 604 1102 686 1057 c 128,-1,10 - 768 1012 768 1012 818 914 c 1,11,-1 - 820 914 l 1,12,-1 - 818 1035 l 1,13,-1 - 818 1484 l 1,14,-1 - 998 1484 l 1,15,-1 - 998 1061 l 2,16,17 - 998 996 998 996 994 908 c 1,18,-1 - 998 908 l 1,19,20 - 1048 1012 1048 1012 1130.5 1057 c 128,-1,21 - 1213 1102 1213 1102 1335 1102 c 0,22,23 - 1540 1102 1540 1102 1636.5 964 c 128,-1,24 - 1733 826 1733 826 1733 546 c 0,25,26 - 1733 -20 1733 -20 1335 -20 c 0,27,28 - 1088 -20 1088 -20 988 175 c 1,29,-1 - 986 175 l 1,30,-1 - 986 0 l 1,31,-1 - 822 0 l 1,32,-1 - 822 174 l 1,33,-1 - 818 174 l 1,0,1 -272 542 m 0,34,35 - 272 315 272 315 332 217 c 128,-1,36 - 392 119 392 119 527 119 c 0,37,38 - 680 119 680 119 749 225 c 128,-1,39 - 818 331 818 331 818 554 c 0,40,41 - 818 769 818 769 749 869 c 128,-1,42 - 680 969 680 969 529 969 c 0,43,44 - 393 969 393 969 332.5 868.5 c 128,-1,45 - 272 768 272 768 272 542 c 0,34,35 -1544 540 m 0,46,47 - 1544 767 1544 767 1484 865 c 128,-1,48 - 1424 963 1424 963 1289 963 c 0,49,50 - 1137 963 1137 963 1067.5 859 c 128,-1,51 - 998 755 998 755 998 529 c 0,52,53 - 998 316 998 316 1066 214.5 c 128,-1,54 - 1134 113 1134 113 1287 113 c 0,55,56 - 1423 113 1423 113 1483.5 213.5 c 128,-1,57 - 1544 314 1544 314 1544 540 c 0,46,47 -EndSplineSet -EndChar - -StartChar: uni0239 -Encoding: 569 569 507 -Width: 1816 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 53 - 53 - 18 - 41 - 27 - 7 - 8 - 8 - 47 - 24 - 10 - 9 - 34 - 0 - 0 - 9 - 18 - 3 - 59 - 60 - 31 - 37 - 80 - 89 - 31 - 16 - 24 - 27 - 4 - 12 - 4 - 15 - 25 - 15 - 20 - 50 - 80 - 89 - 20 - 16 - 15 - 56 - 80 - 89 - 15 - 22 - 9 - 27 - 2 - 44 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1330 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1816 1540 basechar 0 -AnchorPoint: "Anchor-20" 1816 -380 basechar 0 -AnchorPoint: "Anchor-16" 909 1200 basechar 0 -AnchorPoint: "Anchor-15" 1536 1260 basechar 0 -AnchorPoint: "Anchor-14" 900 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1733 544 m 0,0,1 - 1733 -20 1733 -20 1335 -20 c 0,2,3 - 1085 -20 1085 -20 999 168 c 1,4,-1 - 994 168 l 1,5,6 - 998 160 998 160 998 -2 c 2,7,-1 - 998 -425 l 1,8,-1 - 818 -425 l 1,9,-1 - 818 67 l 1,10,-1 - 820 168 l 1,11,-1 - 816 168 l 1,12,13 - 764 65 764 65 688.5 22.5 c 128,-1,14 - 613 -20 613 -20 481 -20 c 0,15,16 - 275 -20 275 -20 179 118 c 128,-1,17 - 83 256 83 256 83 534 c 0,18,19 - 83 1100 83 1100 481 1100 c 0,20,21 - 606 1100 606 1100 684.5 1056 c 128,-1,22 - 763 1012 763 1012 816 912 c 1,23,-1 - 820 912 l 1,24,-1 - 820 1082 l 1,25,-1 - 996 1082 l 1,26,-1 - 996 906 l 1,27,-1 - 1000 906 l 1,28,29 - 1048 1006 1048 1006 1127 1052.5 c 128,-1,30 - 1206 1099 1206 1099 1335 1099 c 0,31,32 - 1535 1099 1535 1099 1634 965 c 128,-1,33 - 1733 831 1733 831 1733 544 c 0,0,1 -1544 540 m 0,34,35 - 1544 766 1544 766 1483 863 c 128,-1,36 - 1422 960 1422 960 1289 960 c 0,37,38 - 1182 960 1182 960 1121.5 915 c 128,-1,39 - 1061 870 1061 870 1029.5 774.5 c 128,-1,40 - 998 679 998 679 998 526 c 0,41,42 - 998 313 998 313 1066.5 213 c 128,-1,43 - 1135 113 1135 113 1287 113 c 0,44,45 - 1422 113 1422 113 1483 211.5 c 128,-1,46 - 1544 310 1544 310 1544 540 c 0,34,35 -818 552 m 0,47,48 - 818 763 818 763 749 865 c 128,-1,49 - 680 967 680 967 529 967 c 0,50,51 - 392 967 392 967 332 865 c 128,-1,52 - 272 763 272 763 272 540 c 0,53,54 - 272 315 272 315 332 217 c 128,-1,55 - 392 119 392 119 527 119 c 0,56,57 - 682 119 682 119 750 227.5 c 128,-1,58 - 818 336 818 336 818 552 c 0,47,48 -EndSplineSet -EndChar - -StartChar: uni023A -Encoding: 570 570 508 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 3 - 23 - 16 - 8 - 7 - 19 - 24 - 15 - 2 - 27 - 27 - 15 - 19 - 16 - 12 - 5 - 4 - 10 - 11 - 13 - 11 - 4 - 6 - 4 - 29 - 30 - 25 - 1 - 95 - 89 - 25 - 25 - 14 - 14 - 28 - 95 - 89 - 23 - 9 - 7 - 14 - 14 - 6 - 7 - 7 - 19 - 96 - 89 - 10 - 7 - 3 - 4 - 0 - 6 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[rnd,white] -MIAP[rnd] -MDRP[rnd,white] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP2 -IP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1167 0 m 1,0,-1 - 1006 412 l 1,1,-1 - 607 412 l 1,2,-1 - 289 -107 l 1,3,-1 - 127 -107 l 1,4,-1 - 192 0 l 1,5,-1 - 4 0 l 1,6,-1 - 579 1409 l 1,7,-1 - 796 1409 l 1,8,-1 - 898 1154 l 1,9,-1 - 1119 1514 l 1,10,-1 - 1281 1514 l 1,11,-1 - 963 994 l 1,12,-1 - 1362 0 l 1,13,-1 - 1167 0 l 1,0,-1 -422 561 m 1,14,-1 - 535 561 l 1,15,-1 - 788 974 l 1,16,17 - 734 1114 734 1114 712 1181.5 c 128,-1,18 - 690 1249 690 1249 685 1265 c 1,19,-1 - 676 1237 l 2,20,21 - 651 1154 651 1154 602 1024 c 2,22,-1 - 422 561 l 1,14,-1 -851 812 m 1,23,-1 - 698 561 l 1,24,-1 - 949 561 l 1,25,-1 - 851 812 l 1,23,-1 -219 43 m 1,26,-1 - 444 412 l 1,27,-1 - 364 412 l 1,28,-1 - 219 43 l 1,26,-1 -EndSplineSet -EndChar - -StartChar: uni023B -Encoding: 571 571 509 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 79 - 14 - 13 - 13 - 21 - 22 - 9 - 10 - 28 - 29 - 33 - 3 - 3 - 29 - 0 - 17 - 36 - 11 - 10 - 22 - 8 - 39 - 38 - 27 - 0 - 17 - 35 - 4 - 25 - 0 - 21 - 16 - 21 - 64 - 21 - 80 - 21 - 144 - 21 - 160 - 21 - 208 - 21 - 224 - 21 - 8 - 12 - 3 - 21 - 21 - 28 - 25 - 64 - 25 - 19 - 95 - 89 - 25 - 19 - 16 - 36 - 11 - 8 - 4 - 6 - 15 - 14 - 1 - 13 - 3 - 14 - 14 - 6 - 6 - 30 - 95 - 89 - 9 - 6 - 4 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,white] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP2 -SLOOP -IP -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,white] -SHP[rp1] -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 890 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -342 123 m 1,0,1 - 223 221 223 221 163.5 372 c 128,-1,2 - 104 523 104 523 104 711 c 0,3,4 - 104 1048 104 1048 286 1239 c 128,-1,5 - 468 1430 468 1430 790 1430 c 0,6,7 - 952 1430 952 1430 1081 1381 c 1,8,-1 - 1159 1514 l 1,9,-1 - 1321 1514 l 1,10,-1 - 1205 1316 l 1,11,12 - 1327 1229 1327 1229 1388 1081 c 1,13,-1 - 1207 1021 l 1,14,15 - 1176 1099 1176 1099 1113 1160 c 1,16,-1 - 549 199 l 1,17,18 - 661 137 661 137 800 137 c 0,19,20 - 1096 137 1096 137 1245 430 c 1,21,-1 - 1401 352 l 1,22,23 - 1314 170 1314 170 1156.5 75 c 128,-1,24 - 999 -20 999 -20 791 -20 c 0,25,26 - 604 -20 604 -20 460 48 c 1,27,-1 - 369 -107 l 1,28,-1 - 207 -107 l 1,29,-1 - 342 123 l 1,0,1 -792 1274 m 0,30,31 - 558 1274 558 1274 428 1123.5 c 128,-1,32 - 298 973 298 973 298 711 c 0,33,34 - 298 444 298 444 439 289 c 1,35,-1 - 996 1236 l 1,36,37 - 905 1274 905 1274 792 1274 c 0,30,31 -EndSplineSet -EndChar - -StartChar: uni023C -Encoding: 572 572 510 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 57 - 8 - 9 - 13 - 12 - 12 - 21 - 22 - 30 - 2 - 28 - 29 - 29 - 2 - 0 - 27 - 16 - 33 - 7 - 10 - 22 - 9 - 10 - 39 - 38 - 27 - 0 - 16 - 32 - 4 - 25 - 21 - 21 - 28 - 25 - 64 - 25 - 18 - 80 - 89 - 25 - 22 - 15 - 33 - 10 - 7 - 4 - 5 - 13 - 13 - 5 - 5 - 35 - 80 - 89 - 8 - 5 - 16 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,white] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,white] -SHP[rp1] -MDAP[rnd] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -239 89 m 1,0,1 - 87 233 87 233 87 542 c 0,2,3 - 87 815 87 815 207 958.5 c 128,-1,4 - 327 1102 327 1102 551 1102 c 0,5,6 - 624 1102 624 1102 684 1086 c 1,7,-1 - 862 1484 l 1,8,-1 - 1004 1484 l 1,9,-1 - 803 1033 l 1,10,11 - 932 947 932 947 964 779 c 1,12,-1 - 779 765 l 1,13,14 - 768 833 768 833 734 879 c 1,15,-1 - 412 157 l 1,16,17 - 467 122 467 122 548 122 c 0,18,19 - 644 122 644 122 708.5 174 c 128,-1,20 - 773 226 773 226 788 334 c 1,21,-1 - 970 322 l 1,22,23 - 949 166 949 166 837 73 c 128,-1,24 - 725 -20 725 -20 553 -20 c 0,25,26 - 437 -20 437 -20 349 17 c 1,27,-1 - 152 -425 l 1,28,-1 - 10 -425 l 1,29,-1 - 239 89 l 1,0,1 -275 546 m 0,30,31 - 275 370 275 370 320 269 c 1,32,-1 - 624 951 l 1,33,34 - 590 961 590 961 546 961 c 0,35,36 - 403 961 403 961 339 866 c 128,-1,37 - 275 771 275 771 275 546 c 0,30,31 -EndSplineSet -EndChar - -StartChar: uni023D -Encoding: 573 573 511 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 4 - 8 - 8 - 13 - 1 - 6 - 11 - 9 - 11 - 9 - 14 - 15 - 7 - 13 - 0 - 13 - 95 - 89 - 4 - 0 - 0 - 11 - 2 - 11 - 8 - 95 - 89 - 11 - 18 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -26 810 m 1,0,-1 - 168 810 l 1,1,-1 - 168 1409 l 1,2,-1 - 359 1409 l 1,3,-1 - 359 810 l 1,4,-1 - 758 810 l 1,5,-1 - 758 654 l 1,6,-1 - 359 654 l 1,7,-1 - 359 156 l 1,8,-1 - 1071 156 l 1,9,-1 - 1071 0 l 1,10,-1 - 168 0 l 1,11,-1 - 168 654 l 1,12,-1 - 26 654 l 1,13,-1 - 26 810 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni023E -Encoding: 574 574 512 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 12 - 17 - 2 - 2 - 18 - 0 - 13 - 7 - 3 - 5 - 6 - 10 - 6 - 3 - 13 - 4 - 21 - 20 - 14 - 0 - 95 - 89 - 14 - 19 - 9 - 10 - 9 - 95 - 89 - 17 - 1 - 7 - 4 - 4 - 3 - 12 - 10 - 3 - 6 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,grey] -MIAP[rnd] -MDRP[rnd,white] -SRP2 -SLOOP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1041 1253 m 1,0,-1 - 720 728 l 1,1,-1 - 720 0 l 1,2,-1 - 530 0 l 1,3,-1 - 530 417 l 1,4,-1 - 209 -107 l 1,5,-1 - 47 -107 l 1,6,-1 - 530 682 l 1,7,-1 - 530 1253 l 1,8,-1 - 46 1253 l 1,9,-1 - 46 1409 l 1,10,-1 - 974 1409 l 1,11,-1 - 1039 1514 l 1,12,-1 - 1201 1514 l 1,13,-1 - 1137 1409 l 1,14,-1 - 1204 1409 l 1,15,-1 - 1204 1253 l 1,16,-1 - 1041 1253 l 1,0,-1 -720 993 m 1,17,-1 - 879 1253 l 1,18,-1 - 720 1253 l 1,19,-1 - 720 993 l 1,17,-1 -EndSplineSet -EndChar - -StartChar: uni023F -Encoding: 575 575 513 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 44 - 13 - 13 - 30 - 0 - 5 - 51 - 51 - 23 - 38 - 0 - 38 - 61 - 60 - 30 - 51 - 3 - 41 - 41 - 48 - 80 - 89 - 45 - 41 - 16 - 12 - 3 - 16 - 16 - 9 - 80 - 89 - 16 - 3 - 3 - 27 - 80 - 89 - 24 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 649 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 513 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1260 basechar 0 -AnchorPoint: "Anchor-14" 520 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -950 299 m 0,0,1 - 950 146 950 146 834.5 63 c 128,-1,2 - 719 -20 719 -20 511 -20 c 0,3,4 - 478 -20 478 -20 408 -10 c 1,5,-1 - 603 -220 l 2,6,7 - 630 -249 630 -249 664.5 -261 c 128,-1,8 - 699 -273 699 -273 726 -273 c 0,9,10 - 760 -273 760 -273 787 -259 c 128,-1,11 - 814 -245 814 -245 843 -212 c 1,12,-1 - 939 -325 l 1,13,14 - 883 -384 883 -384 831.5 -405 c 128,-1,15 - 780 -426 780 -426 724 -426 c 0,16,17 - 570 -426 570 -426 444 -272 c 1,18,-1 - 303 -107 l 2,19,20 - 230 -25 230 -25 163 59 c 0,21,22 - 86 156 86 156 71 179 c 1,23,-1 - 204 266 l 1,24,25 - 261 178 261 178 327.5 147.5 c 128,-1,26 - 394 117 394 117 511 117 c 0,27,28 - 648 117 648 117 711.5 159 c 128,-1,29 - 775 201 775 201 775 285 c 0,30,31 - 775 349 775 349 731 389 c 128,-1,32 - 687 429 687 429 589 455 c 2,33,-1 - 460 489 l 2,34,35 - 305 529 305 529 239.5 567.5 c 128,-1,36 - 174 606 174 606 137 661 c 128,-1,37 - 100 716 100 716 100 796 c 0,38,39 - 100 944 100 944 205.5 1021.5 c 128,-1,40 - 311 1099 311 1099 513 1099 c 0,41,42 - 692 1099 692 1099 797.5 1036 c 128,-1,43 - 903 973 903 973 931 834 c 1,44,-1 - 769 814 l 1,45,46 - 754 886 754 886 688.5 924.5 c 128,-1,47 - 623 963 623 963 513 963 c 0,48,49 - 391 963 391 963 333 926 c 128,-1,50 - 275 889 275 889 275 814 c 0,51,52 - 275 768 275 768 299 738 c 128,-1,53 - 323 708 323 708 370 687 c 128,-1,54 - 417 666 417 666 568 629 c 0,55,56 - 711 593 711 593 774 562.5 c 128,-1,57 - 837 532 837 532 873.5 495 c 128,-1,58 - 910 458 910 458 930 409.5 c 128,-1,59 - 950 361 950 361 950 299 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0240 -Encoding: 576 576 514 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 26 - 0 - 23 - 25 - 11 - 29 - 23 - 29 - 30 - 31 - 27 - 26 - 80 - 89 - 27 - 15 - 10 - 14 - 14 - 8 - 80 - 89 - 14 - 23 - 23 - 0 - 80 - 89 - 23 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 726 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 513 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1260 basechar 0 -AnchorPoint: "Anchor-14" 520 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -251 139 m 1,0,1 - 313 139 313 139 353.5 128.5 c 128,-1,2 - 394 118 394 118 427 94.5 c 128,-1,3 - 460 71 460 71 528 -9 c 2,4,-1 - 698 -210 l 2,5,6 - 727 -245 727 -245 752 -259 c 128,-1,7 - 777 -273 777 -273 809 -273 c 0,8,9 - 861 -273 861 -273 921 -205 c 1,10,-1 - 1017 -318 l 1,11,12 - 961 -377 961 -377 909.5 -401.5 c 128,-1,13 - 858 -426 858 -426 802 -426 c 0,14,15 - 753 -426 753 -426 714 -411 c 128,-1,16 - 675 -396 675 -396 640.5 -368 c 128,-1,17 - 606 -340 606 -340 548 -269 c 2,18,-1 - 388 -76 l 2,19,20 - 351 -32 351 -32 317 -16 c 128,-1,21 - 283 0 283 0 205 0 c 2,22,-1 - 49 0 l 1,23,-1 - 49 139 l 1,24,-1 - 710 943 l 1,25,-1 - 89 943 l 1,26,-1 - 89 1082 l 1,27,-1 - 913 1082 l 1,28,-1 - 913 945 l 1,29,-1 - 251 139 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0241 -Encoding: 577 577 515 -Width: 1189 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 5 - 18 - 22 - 0 - 11 - 12 - 12 - 0 - 18 - 3 - 24 - 23 - 3 - 21 - 96 - 89 - 3 - 3 - 0 - 11 - 15 - 15 - 8 - 96 - 89 - 15 - 4 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 470 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1189 1540 basechar 0 -AnchorPoint: "Anchor-20" 1189 -380 basechar 0 -AnchorPoint: "Anchor-16" 557 1540 basechar 0 -AnchorPoint: "Anchor-15" 980 1540 basechar 0 -AnchorPoint: "Anchor-14" 537 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -445 0 m 1,0,-1 - 445 536 l 1,1,2 - 497 522 497 522 572 522 c 0,3,4 - 912 522 912 522 912 906 c 0,5,6 - 912 1104 912 1104 825.5 1196.5 c 128,-1,7 - 739 1289 739 1289 559 1289 c 0,8,9 - 427 1289 427 1289 342.5 1230.5 c 128,-1,10 - 258 1172 258 1172 232 1054 c 1,11,-1 - 51 1083 l 1,12,13 - 87 1248 87 1248 219.5 1339 c 128,-1,14 - 352 1430 352 1430 563 1430 c 0,15,16 - 824 1430 824 1430 962 1296.5 c 128,-1,17 - 1100 1163 1100 1163 1100 902 c 0,18,19 - 1100 668 1100 668 972.5 528 c 128,-1,20 - 845 388 845 388 625 380 c 1,21,-1 - 625 0 l 1,22,-1 - 445 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0242 -Encoding: 578 578 516 -Width: 928 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 9 - 10 - 20 - 0 - 4 - 16 - 16 - 0 - 10 - 3 - 21 - 22 - 1 - 19 - 81 - 89 - 1 - 1 - 0 - 13 - 9 - 9 - 13 - 13 - 7 - 80 - 89 - 13 - 16 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 928 1540 basechar 0 -AnchorPoint: "Anchor-20" 928 -380 basechar 0 -AnchorPoint: "Anchor-16" 436 1200 basechar 0 -AnchorPoint: "Anchor-15" 730 1260 basechar 0 -AnchorPoint: "Anchor-14" 450 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -354 0 m 1,0,-1 - 354 432 l 1,1,2 - 497 432 497 432 578.5 504 c 128,-1,3 - 660 576 660 576 660 699 c 0,4,5 - 660 832 660 832 605.5 896.5 c 128,-1,6 - 551 961 551 961 424 961 c 0,7,8 - 233 961 233 961 205 765 c 1,9,-1 - 20 779 l 1,10,11 - 46 929 46 929 153.5 1015.5 c 128,-1,12 - 261 1102 261 1102 424 1102 c 0,13,14 - 629 1102 629 1102 738.5 997 c 128,-1,15 - 848 892 848 892 848 697 c 0,16,17 - 848 554 848 554 766.5 453 c 128,-1,18 - 685 352 685 352 534 314 c 1,19,-1 - 534 0 l 1,20,-1 - 354 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0243 -Encoding: 579 579 517 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 53 - 8 - 24 - 35 - 30 - 5 - 5 - 18 - 11 - 35 - 22 - 26 - 26 - 17 - 1 - 15 - 11 - 15 - 40 - 39 - 8 - 35 - 21 - 25 - 17 - 0 - 17 - 96 - 89 - 22 - 0 - 0 - 21 - 15 - 35 - 21 - 95 - 89 - 35 - 35 - 15 - 2 - 15 - 26 - 95 - 89 - 15 - 18 - 2 - 34 - 95 - 89 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 760 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -33 474 m 1,0,-1 - 168 474 l 1,1,-1 - 168 1409 l 1,2,-1 - 680 1409 l 2,3,4 - 1176 1409 1176 1409 1176 1067 c 0,5,6 - 1176 942 1176 942 1106 857 c 128,-1,7 - 1036 772 1036 772 908 743 c 1,8,9 - 1076 723 1076 723 1167 630.5 c 128,-1,10 - 1258 538 1258 538 1258 397 c 0,11,12 - 1258 209 1258 209 1121 104.5 c 128,-1,13 - 984 0 984 0 740 0 c 2,14,-1 - 168 0 l 1,15,-1 - 168 341 l 1,16,-1 - 33 341 l 1,17,-1 - 33 474 l 1,0,-1 -1065 412 m 0,18,19 - 1065 661 1065 661 715 661 c 2,20,-1 - 359 661 l 1,21,-1 - 359 474 l 1,22,-1 - 707 474 l 1,23,-1 - 707 341 l 1,24,-1 - 359 341 l 1,25,-1 - 359 153 l 1,26,-1 - 730 153 l 2,27,28 - 905 153 905 153 985 218 c 128,-1,29 - 1065 283 1065 283 1065 412 c 0,18,19 -984 1044 m 0,30,31 - 984 1158 984 1158 906 1207 c 128,-1,32 - 828 1256 828 1256 680 1256 c 2,33,-1 - 359 1256 l 1,34,-1 - 359 810 l 1,35,-1 - 680 810 l 2,36,37 - 833 810 833 810 908.5 867.5 c 128,-1,38 - 984 925 984 925 984 1044 c 0,30,31 -EndSplineSet -EndChar - -StartChar: uni0244 -Encoding: 580 580 518 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 4 - 29 - 29 - 22 - 1 - 20 - 5 - 26 - 26 - 10 - 8 - 12 - 20 - 12 - 32 - 33 - 28 - 11 - 22 - 0 - 22 - 95 - 89 - 8 - 4 - 0 - 0 - 16 - 2 - 16 - 23 - 95 - 89 - 16 - 19 - 6 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -41 809 m 1,0,-1 - 158 809 l 1,1,-1 - 158 1409 l 1,2,-1 - 349 1409 l 1,3,-1 - 349 809 l 1,4,-1 - 1131 809 l 1,5,-1 - 1131 1409 l 1,6,-1 - 1321 1409 l 1,7,-1 - 1321 809 l 1,8,-1 - 1438 809 l 1,9,-1 - 1438 656 l 1,10,-1 - 1321 656 l 1,11,-1 - 1321 530 l 2,12,13 - 1321 359 1321 359 1248.5 235 c 128,-1,14 - 1176 111 1176 111 1043.5 45.5 c 128,-1,15 - 911 -20 911 -20 731 -20 c 0,16,17 - 558 -20 558 -20 429 43 c 128,-1,18 - 300 106 300 106 229 226 c 128,-1,19 - 158 346 158 346 158 512 c 2,20,-1 - 158 656 l 1,21,-1 - 41 656 l 1,22,-1 - 41 809 l 1,0,-1 -730 135 m 0,23,24 - 920 135 920 135 1025.5 238.5 c 128,-1,25 - 1131 342 1131 342 1131 541 c 2,26,-1 - 1131 656 l 1,27,-1 - 349 656 l 1,28,-1 - 349 528 l 2,29,30 - 349 335 349 335 447 235 c 128,-1,31 - 545 135 545 135 730 135 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni0245 -Encoding: 581 581 519 -Width: 1368 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 3 - 2 - 1 - 0 - 5 - 7 - 8 - 8 - 5 - 2 - 3 - 10 - 9 - 111 - 10 - 1 - 48 - 10 - 1 - 47 - 10 - 1 - 0 - 10 - 1 - 5 - 3 - 8 - 18 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -IP -SVTCA[x-axis] -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1368 1540 basechar 0 -AnchorPoint: "Anchor-20" 1368 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -584 1409 m 1,0,-1 - 782 1409 l 1,1,-1 - 1357 0 l 1,2,-1 - 1156 0 l 1,3,-1 - 766 992 l 1,4,-1 - 682 1241 l 1,5,-1 - 598 992 l 1,6,-1 - 210 0 l 1,7,-1 - 9 0 l 1,8,-1 - 584 1409 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0246 -Encoding: 582 582 520 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 85 - 12 - 8 - 16 - 1 - 25 - 26 - 21 - 22 - 5 - 6 - 0 - 6 - 5 - 20 - 24 - 24 - 2 - 19 - 0 - 0 - 2 - 2 - 5 - 16 - 3 - 29 - 28 - 17 - 16 - 95 - 89 - 17 - 18 - 8 - 9 - 95 - 89 - 5 - 64 - 8 - 3 - 12 - 13 - 95 - 89 - 12 - 12 - 20 - 20 - 27 - 95 - 89 - 143 - 20 - 1 - 186 - 20 - 1 - 121 - 20 - 137 - 20 - 2 - 15 - 20 - 1 - 8 - 3 - 20 - 20 - 3 - 2 - 3 - 23 - 95 - 89 - 3 - 3 - 2 - 24 - 95 - 89 - 0 - 2 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,white] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -230 -224 m 1,0,-1 - 337 0 l 1,1,-1 - 168 0 l 1,2,-1 - 168 1409 l 1,3,-1 - 1012 1409 l 1,4,-1 - 1082 1554 l 1,5,-1 - 1224 1554 l 1,6,-1 - 1154 1409 l 1,7,-1 - 1237 1409 l 1,8,-1 - 1237 1253 l 1,9,-1 - 1080 1253 l 1,10,-1 - 863 801 l 1,11,-1 - 1177 801 l 1,12,-1 - 1177 647 l 1,13,-1 - 789 647 l 1,14,-1 - 554 156 l 1,15,-1 - 1278 156 l 1,16,-1 - 1278 0 l 1,17,-1 - 480 0 l 1,18,-1 - 373 -224 l 1,19,-1 - 230 -224 l 1,0,-1 -359 801 m 1,20,-1 - 721 801 l 1,21,-1 - 938 1253 l 1,22,-1 - 359 1253 l 1,23,-1 - 359 801 l 1,20,-1 -359 156 m 1,24,-1 - 412 156 l 1,25,-1 - 647 647 l 1,26,-1 - 359 647 l 1,27,-1 - 359 156 l 1,24,-1 -EndSplineSet -EndChar - -StartChar: uni0247 -Encoding: 583 583 521 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 74 - 21 - 22 - 22 - 39 - 13 - 1 - 16 - 28 - 15 - 8 - 41 - 11 - 7 - 10 - 0 - 10 - 9 - 34 - 35 - 35 - 3 - 27 - 0 - 0 - 3 - 3 - 9 - 13 - 3 - 44 - 43 - 27 - 27 - 34 - 35 - 80 - 89 - 34 - 34 - 42 - 21 - 21 - 15 - 24 - 42 - 15 - 80 - 89 - 42 - 42 - 6 - 26 - 1 - 16 - 3 - 37 - 37 - 24 - 24 - 18 - 80 - 89 - 24 - 22 - 41 - 31 - 6 - 31 - 80 - 89 - 11 - 9 - 6 - 16 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,white] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -SLOOP -IP -SRP2 -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SHP[rp1] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -68 -424 m 1,0,-1 - 284 59 l 1,1,2 - 87 194 87 194 87 548 c 0,3,4 - 87 816 87 816 212.5 959 c 128,-1,5 - 338 1102 338 1102 571 1102 c 0,6,7 - 665 1102 665 1102 739 1080 c 1,8,-1 - 920 1484 l 1,9,-1 - 1062 1484 l 1,10,-1 - 857 1024 l 1,11,12 - 1048 888 1048 888 1048 527 c 2,13,-1 - 1048 503 l 1,14,-1 - 624 503 l 1,15,-1 - 460 135 l 1,16,17 - 512 115 512 115 578 115 c 0,18,19 - 695 115 695 115 765.5 162 c 128,-1,20 - 836 209 836 209 861 281 c 1,21,-1 - 1019 236 l 1,22,23 - 922 -20 922 -20 578 -20 c 0,24,25 - 482 -20 482 -20 402 3 c 1,26,-1 - 211 -424 l 1,27,-1 - 68 -424 l 1,0,-1 -543 641 m 1,28,-1 - 682 951 l 1,29,30 - 631 969 631 969 568 969 c 0,31,32 - 437 969 437 969 360.5 881.5 c 128,-1,33 - 284 794 284 794 278 641 c 1,34,-1 - 543 641 l 1,28,-1 -276 503 m 1,35,36 - 276 315 276 315 353 215 c 1,37,-1 - 482 503 l 1,38,-1 - 276 503 l 1,35,36 -862 641 m 1,39,40 - 849 792 849 792 789 873 c 1,41,-1 - 686 641 l 1,42,-1 - 862 641 l 1,39,40 -EndSplineSet -EndChar - -StartChar: uni0248 -Encoding: 584 584 522 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 16 - 3 - 24 - 24 - 15 - 10 - 1 - 22 - 22 - 8 - 6 - 10 - 15 - 10 - 25 - 26 - 9 - 24 - 0 - 24 - 95 - 89 - 6 - 0 - 0 - 13 - 4 - 13 - 19 - 95 - 89 - 16 - 16 - 13 - 19 - 4 - 3 - 95 - 89 - 4 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 460 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 660 1540 basechar 0 -AnchorPoint: "Anchor-15" 880 1540 basechar 0 -AnchorPoint: "Anchor-14" 460 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -420 809 m 1,0,-1 - 682 809 l 1,1,-1 - 682 1253 l 1,2,-1 - 411 1253 l 1,3,-1 - 411 1409 l 1,4,-1 - 872 1409 l 1,5,-1 - 872 809 l 1,6,-1 - 1007 809 l 1,7,-1 - 1007 657 l 1,8,-1 - 872 657 l 1,9,-1 - 872 420 l 2,10,11 - 872 215 872 215 761 97.5 c 128,-1,12 - 650 -20 650 -20 457 -20 c 0,13,14 - 99 -20 99 -20 32 350 c 1,15,-1 - 219 381 l 1,16,17 - 237 265 237 265 300 200 c 128,-1,18 - 363 135 363 135 458 135 c 0,19,20 - 562 135 562 135 622 206.5 c 128,-1,21 - 682 278 682 278 682 416 c 2,22,-1 - 682 657 l 1,23,-1 - 420 657 l 1,24,-1 - 420 809 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0249 -Encoding: 585 585 523 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 16 - 25 - 4 - 21 - 18 - 14 - 14 - 24 - 2 - 0 - 4 - 4 - 26 - 9 - 25 - 22 - 21 - 83 - 89 - 22 - 0 - 3 - 16 - 17 - 16 - 80 - 89 - 0 - 17 - 17 - 7 - 19 - 15 - 7 - 11 - 80 - 89 - 7 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 100 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 140 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -317 617 m 1,0,-1 - 428 617 l 1,1,-1 - 428 484 l 1,2,-1 - 317 484 l 1,3,-1 - 317 -134 l 2,4,5 - 317 -287 317 -287 257 -356 c 128,-1,6 - 197 -425 197 -425 77 -425 c 0,7,8 - 0 -425 0 -425 -50 -416 c 1,9,-1 - -50 -277 l 1,10,-1 - 12 -283 l 1,11,12 - 81 -283 81 -283 109 -247 c 128,-1,13 - 137 -211 137 -211 137 -107 c 2,14,-1 - 137 484 l 1,15,-1 - 25 484 l 1,16,-1 - 25 617 l 1,17,-1 - 137 617 l 1,18,-1 - 137 1082 l 1,19,-1 - 317 1082 l 1,20,-1 - 317 617 l 1,0,-1 -137 1312 m 1,21,-1 - 137 1484 l 1,22,-1 - 317 1484 l 1,23,-1 - 317 1312 l 1,24,-1 - 137 1312 l 1,21,-1 -EndSplineSet -EndChar - -StartChar: uni024A -Encoding: 586 586 524 -Width: 1510 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 27 - 11 - 11 - 5 - 0 - 33 - 17 - 0 - 17 - 37 - 36 - 12 - 22 - 14 - 23 - 3 - 20 - 30 - 95 - 89 - 20 - 4 - 8 - 3 - 95 - 89 - 8 - 14 - 14 - 25 - 95 - 89 - 14 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1360 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1510 1540 basechar 0 -AnchorPoint: "Anchor-20" 1510 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1333 -115 m 2,0,1 - 1333 -196 1333 -196 1361 -229.5 c 128,-1,2 - 1389 -263 1389 -263 1444 -263 c 0,3,4 - 1495 -263 1495 -263 1542 -249 c 1,5,-1 - 1542 -411 l 1,6,7 - 1484 -425 1484 -425 1406 -425 c 0,8,9 - 1275 -425 1275 -425 1208.5 -349.5 c 128,-1,10 - 1142 -274 1142 -274 1142 -129 c 2,11,-1 - 1142 71 l 1,12,13 - 960 -20 960 -20 790 -20 c 0,14,15 - 463 -20 463 -20 280 175 c 128,-1,16 - 97 370 97 370 97 711 c 0,17,18 - 97 1049 97 1049 282 1239.5 c 128,-1,19 - 467 1430 467 1430 797 1430 c 0,20,21 - 992 1430 992 1430 1152 1353 c 1,22,-1 - 1302 1409 l 1,23,-1 - 1333 1409 l 1,24,-1 - 1333 -115 l 2,0,1 -790 133 m 0,25,26 - 1024 133 1024 133 1142 236 c 1,27,-1 - 1142 1177 l 1,28,29 - 1027 1277 1027 1277 797 1277 c 0,30,31 - 556 1277 556 1277 423.5 1128.5 c 128,-1,32 - 291 980 291 980 291 711 c 0,33,34 - 291 440 291 440 424.5 286.5 c 128,-1,35 - 558 133 558 133 790 133 c 0,25,26 -EndSplineSet -EndChar - -StartChar: uni024B -Encoding: 587 587 525 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 33 - 14 - 1 - 32 - 32 - 26 - 21 - 39 - 8 - 21 - 8 - 46 - 45 - 29 - 24 - 80 - 89 - 29 - 27 - 1 - 2 - 2 - 14 - 5 - 17 - 16 - 10 - 36 - 80 - 89 - 10 - 16 - 5 - 42 - 80 - 89 - 5 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1060 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 530 1200 basechar 0 -AnchorPoint: "Anchor-15" 1010 1260 basechar 0 -AnchorPoint: "Anchor-14" 515 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -821 49 m 1,0,-1 - 825 178 l 1,1,-1 - 823 178 l 1,2,3 - 769 71 769 71 690 25.5 c 128,-1,4 - 611 -20 611 -20 484 -20 c 0,5,6 - 278 -20 278 -20 182 119 c 128,-1,7 - 86 258 86 258 86 536 c 0,8,9 - 86 1102 86 1102 484 1102 c 0,10,11 - 607 1102 607 1102 687 1058.5 c 128,-1,12 - 767 1015 767 1015 821 914 c 1,13,-1 - 823 914 l 1,14,15 - 823 944 823 944 827 1017.5 c 128,-1,16 - 831 1091 831 1091 835 1096 c 1,17,-1 - 1008 1096 l 1,18,19 - 1001 1037 1001 1037 1001 801 c 2,20,-1 - 1001 -115 l 2,21,22 - 1001 -196 1001 -196 1029 -229.5 c 128,-1,23 - 1057 -263 1057 -263 1112 -263 c 0,24,25 - 1150 -263 1150 -263 1198 -251 c 1,26,-1 - 1198 -413 l 1,27,28 - 1148 -425 1148 -425 1074 -425 c 0,29,30 - 950 -425 950 -425 885.5 -350.5 c 128,-1,31 - 821 -276 821 -276 821 -129 c 2,32,-1 - 821 49 l 1,0,-1 -821 554 m 0,33,34 - 821 765 821 765 752 867 c 128,-1,35 - 683 969 683 969 532 969 c 0,36,37 - 395 969 395 969 335 867 c 128,-1,38 - 275 765 275 765 275 542 c 0,39,40 - 275 315 275 315 335.5 217 c 128,-1,41 - 396 119 396 119 530 119 c 0,42,43 - 683 119 683 119 752 228 c 128,-1,44 - 821 337 821 337 821 554 c 0,33,34 -EndSplineSet -EndChar - -StartChar: uni024C -Encoding: 588 588 526 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 0 - 17 - 17 - 18 - 16 - 1 - 13 - 23 - 23 - 3 - 3 - 8 - 6 - 4 - 13 - 4 - 28 - 27 - 16 - 2 - 6 - 7 - 6 - 95 - 89 - 23 - 7 - 7 - 4 - 9 - 9 - 22 - 95 - 89 - 9 - 3 - 0 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1164 0 m 1,0,-1 - 798 585 l 1,1,-1 - 359 585 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 585 l 1,5,-1 - 0 585 l 1,6,-1 - 0 735 l 1,7,-1 - 168 735 l 1,8,-1 - 168 1409 l 1,9,-1 - 831 1409 l 2,10,11 - 1069 1409 1069 1409 1198.5 1302.5 c 128,-1,12 - 1328 1196 1328 1196 1328 1006 c 0,13,14 - 1328 849 1328 849 1236.5 742 c 128,-1,15 - 1145 635 1145 635 984 607 c 1,16,-1 - 1384 0 l 1,17,-1 - 1164 0 l 1,0,-1 -1136 1004 m 0,18,19 - 1136 1127 1136 1127 1052.5 1191.5 c 128,-1,20 - 969 1256 969 1256 812 1256 c 2,21,-1 - 359 1256 l 1,22,-1 - 359 736 l 1,23,-1 - 820 736 l 2,24,25 - 971 736 971 736 1053.5 806.5 c 128,-1,26 - 1136 877 1136 877 1136 1004 c 0,18,19 -EndSplineSet -EndChar - -StartChar: uni024D -Encoding: 589 589 527 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 21 - 10 - 25 - 25 - 23 - 16 - 5 - 4 - 2 - 0 - 16 - 0 - 27 - 26 - 14 - 19 - 83 - 89 - 14 - 16 - 24 - 2 - 3 - 2 - 80 - 89 - 21 - 10 - 7 - 3 - 3 - 7 - 15 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -SRP2 -IP -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP2 -IP -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -142 0 m 1,0,-1 - 142 486 l 1,1,-1 - 20 486 l 1,2,-1 - 20 632 l 1,3,-1 - 142 632 l 1,4,-1 - 142 830 l 2,5,6 - 142 944 142 944 136 1082 c 1,7,-1 - 306 1082 l 1,8,9 - 314 898 314 898 314 861 c 1,10,-1 - 318 861 l 1,11,12 - 361 1000 361 1000 417 1051 c 128,-1,13 - 473 1102 473 1102 575 1102 c 0,14,15 - 611 1102 611 1102 648 1092 c 1,16,-1 - 648 927 l 1,17,18 - 612 937 612 937 552 937 c 0,19,20 - 346 937 346 937 324 632 c 1,21,-1 - 505 632 l 1,22,-1 - 505 486 l 1,23,-1 - 322 486 l 1,24,-1 - 322 0 l 1,25,-1 - 142 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni024E -Encoding: 590 590 528 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 2 - 5 - 6 - 0 - 19 - 18 - 20 - 11 - 5 - 17 - 9 - 12 - 12 - 6 - 17 - 3 - 22 - 21 - 20 - 3 - 9 - 10 - 9 - 96 - 89 - 14 - 0 - 18 - 10 - 10 - 6 - 16 - 12 - 3 - 6 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -IP -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1169 1179 m 1,0,-1 - 1316 1179 l 1,1,-1 - 1316 1033 l 1,2,-1 - 1073 1033 l 1,3,-1 - 777 584 l 1,4,-1 - 777 0 l 1,5,-1 - 587 0 l 1,6,-1 - 587 584 l 1,7,-1 - 292 1033 l 1,8,-1 - 50 1033 l 1,9,-1 - 50 1179 l 1,10,-1 - 196 1179 l 1,11,-1 - 45 1409 l 1,12,-1 - 255 1409 l 1,13,-1 - 402 1179 l 1,14,-1 - 964 1179 l 1,15,-1 - 1111 1409 l 1,16,-1 - 1321 1409 l 1,17,-1 - 1169 1179 l 1,0,-1 -684 738 m 1,18,-1 - 871 1033 l 1,19,-1 - 495 1033 l 1,20,-1 - 684 738 l 1,18,-1 -EndSplineSet -EndChar - -StartChar: uni024F -Encoding: 591 591 529 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 1 - 27 - 16 - 3 - 24 - 16 - 23 - 17 - 5 - 26 - 18 - 11 - 21 - 26 - 21 - 36 - 35 - 25 - 15 - 23 - 30 - 80 - 89 - 23 - 23 - 20 - 3 - 17 - 20 - 17 - 80 - 89 - 0 - 27 - 16 - 20 - 20 - 8 - 22 - 15 - 8 - 13 - 80 - 89 - 8 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -IP -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 460 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -889 741 m 1,0,-1 - 1000 741 l 1,1,-1 - 1000 595 l 1,2,-1 - 833 595 l 1,3,-1 - 604 0 l 2,4,5 - 537 -173 537 -173 479 -257.5 c 128,-1,6 - 421 -342 421 -342 350.5 -383.5 c 128,-1,7 - 280 -425 280 -425 191 -425 c 0,8,9 - 117 -425 117 -425 67 -414 c 1,10,-1 - 67 -279 l 1,11,12 - 105 -285 105 -285 151 -285 c 0,13,14 - 319 -285 319 -285 417 -38 c 2,15,-1 - 434 5 l 1,16,-1 - 199 595 l 1,17,-1 - 37 595 l 1,18,-1 - 37 741 l 1,19,-1 - 141 741 l 1,20,-1 - 5 1082 l 1,21,-1 - 197 1082 l 1,22,-1 - 327 741 l 1,23,-1 - 713 741 l 1,24,-1 - 830 1082 l 1,25,-1 - 1020 1082 l 1,26,-1 - 889 741 l 1,0,-1 -523 196 m 1,27,-1 - 593 393 l 1,28,-1 - 663 595 l 1,29,-1 - 382 595 l 1,30,-1 - 425 484 l 2,31,32 - 430 470 430 470 437 450.5 c 128,-1,33 - 444 431 444 431 482 320 c 128,-1,34 - 520 209 520 209 523 196 c 1,27,-1 -EndSplineSet -EndChar - -StartChar: uni0250 -Encoding: 592 592 530 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 41 - 32 - 8 - 8 - 20 - 14 - 15 - 15 - 46 - 3 - 3 - 20 - 26 - 3 - 49 - 50 - 29 - 24 - 81 - 89 - 29 - 16 - 41 - 7 - 81 - 89 - 33 - 41 - 41 - 0 - 17 - 14 - 14 - 17 - 17 - 11 - 80 - 89 - 17 - 22 - 0 - 36 - 80 - 89 - 0 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -IP -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 1030 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -726 1102 m 0,0,1 - 889 1102 889 1102 971 1016 c 128,-1,2 - 1053 930 1053 930 1053 780 c 0,3,4 - 1053 607 1053 607 938.5 518.5 c 128,-1,5 - 824 430 824 430 586 426 c 2,6,-1 - 343 422 l 1,7,-1 - 343 363 l 2,8,9 - 343 231 343 231 399 174 c 128,-1,10 - 455 117 455 117 575 117 c 0,11,12 - 698 117 698 117 752.5 159 c 128,-1,13 - 807 201 807 201 817 289 c 1,14,-1 - 1005 272 l 1,15,16 - 959 -20 959 -20 571 -20 c 0,17,18 - 367 -20 367 -20 264 73.5 c 128,-1,19 - 161 167 161 167 161 344 c 2,20,-1 - 161 810 l 2,21,22 - 161 890 161 890 140 930.5 c 128,-1,23 - 119 971 119 971 60 971 c 0,24,25 - 34 971 34 971 1 964 c 1,26,-1 - 1 1076 l 1,27,28 - 69 1092 69 1092 140 1092 c 0,29,30 - 240 1092 240 1092 285.5 1039.5 c 128,-1,31 - 331 987 331 987 337 875 c 1,32,-1 - 343 875 l 1,33,34 - 407 995 407 995 499.5 1048.5 c 128,-1,35 - 592 1102 592 1102 726 1102 c 0,0,1 -685 967 m 0,36,37 - 586 967 586 967 509 922 c 128,-1,38 - 432 877 432 877 387.5 798.5 c 128,-1,39 - 343 720 343 720 343 637 c 2,40,-1 - 343 548 l 1,41,-1 - 540 552 l 2,42,43 - 667 554 667 554 732.5 578 c 128,-1,44 - 798 602 798 602 833 651.5 c 128,-1,45 - 868 701 868 701 868 783 c 0,46,47 - 868 871 868 871 820.5 919 c 128,-1,48 - 773 967 773 967 685 967 c 0,36,37 -EndSplineSet -EndChar - -StartChar: uni0251 -Encoding: 593 593 531 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 13 - 0 - 29 - 29 - 16 - 23 - 6 - 16 - 6 - 36 - 35 - 19 - 21 - 14 - 15 - 11 - 0 - 8 - 3 - 8 - 32 - 80 - 89 - 8 - 16 - 3 - 26 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 860 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 1100 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -821 174 m 1,0,1 - 771 70 771 70 688.5 25 c 128,-1,2 - 606 -20 606 -20 484 -20 c 0,3,4 - 279 -20 279 -20 182.5 118 c 128,-1,5 - 86 256 86 256 86 536 c 0,6,7 - 86 1102 86 1102 484 1102 c 0,8,9 - 607 1102 607 1102 689 1057 c 128,-1,10 - 771 1012 771 1012 821 914 c 1,11,-1 - 823 914 l 1,12,-1 - 821 1035 l 1,13,-1 - 821 1082 l 1,14,-1 - 1001 1082 l 1,15,-1 - 1001 223 l 2,16,17 - 1001 54 1001 54 1007 0 c 1,18,-1 - 835 0 l 1,19,20 - 832 16 832 16 828.5 74 c 128,-1,21 - 825 132 825 132 825 174 c 1,22,-1 - 821 174 l 1,0,1 -275 542 m 0,23,24 - 275 315 275 315 335 217 c 128,-1,25 - 395 119 395 119 530 119 c 0,26,27 - 683 119 683 119 752 225 c 128,-1,28 - 821 331 821 331 821 554 c 0,29,30 - 821 769 821 769 752 869 c 128,-1,31 - 683 969 683 969 532 969 c 0,32,33 - 396 969 396 969 335.5 868.5 c 128,-1,34 - 275 768 275 768 275 542 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni0252 -Encoding: 594 594 532 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 23 - 6 - 13 - 0 - 29 - 29 - 15 - 6 - 15 - 36 - 35 - 18 - 15 - 15 - 21 - 0 - 11 - 3 - 8 - 8 - 32 - 80 - 89 - 8 - 22 - 3 - 26 - 80 - 89 - 3 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -312 908 m 1,0,1 - 362 1012 362 1012 444.5 1057 c 128,-1,2 - 527 1102 527 1102 649 1102 c 0,3,4 - 854 1102 854 1102 950.5 964 c 128,-1,5 - 1047 826 1047 826 1047 546 c 0,6,7 - 1047 -20 1047 -20 649 -20 c 0,8,9 - 526 -20 526 -20 444 25 c 128,-1,10 - 362 70 362 70 312 168 c 1,11,-1 - 310 168 l 1,12,-1 - 312 47 l 1,13,-1 - 312 0 l 1,14,-1 - 132 0 l 1,15,-1 - 132 859 l 2,16,17 - 132 1028 132 1028 126 1082 c 1,18,-1 - 298 1082 l 1,19,20 - 301 1066 301 1066 304.5 1008 c 128,-1,21 - 308 950 308 950 308 908 c 1,22,-1 - 312 908 l 1,0,1 -858 540 m 0,23,24 - 858 767 858 767 798 865 c 128,-1,25 - 738 963 738 963 603 963 c 0,26,27 - 450 963 450 963 381 857 c 128,-1,28 - 312 751 312 751 312 528 c 0,29,30 - 312 314 312 314 380.5 213.5 c 128,-1,31 - 449 113 449 113 601 113 c 0,32,33 - 737 113 737 113 797.5 213.5 c 128,-1,34 - 858 314 858 314 858 540 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni0253 -Encoding: 595 595 533 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 33 - 0 - 25 - 5 - 39 - 39 - 12 - 12 - 19 - 0 - 3 - 46 - 45 - 26 - 5 - 30 - 2 - 30 - 36 - 80 - 89 - 30 - 16 - 16 - 21 - 80 - 89 - 16 - 1 - 10 - 21 - 2 - 42 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 -20 1053 -20 655 -20 c 0,2,3 - 532 -20 532 -20 450.5 24.5 c 128,-1,4 - 369 69 369 69 318 168 c 1,5,-1 - 316 168 l 1,6,7 - 316 137 316 137 312 73.5 c 128,-1,8 - 308 10 308 10 306 0 c 1,9,-1 - 132 0 l 1,10,11 - 138 54 138 54 138 223 c 2,12,-1 - 138 1202 l 2,13,14 - 138 1345 138 1345 213 1421.5 c 128,-1,15 - 288 1498 288 1498 433 1498 c 0,16,17 - 499 1498 499 1498 578 1481 c 1,18,-1 - 578 1315 l 1,19,20 - 520 1336 520 1336 451 1336 c 0,21,22 - 388 1336 388 1336 353.5 1298 c 128,-1,23 - 319 1260 319 1260 319 1188 c 2,24,-1 - 319 1061 l 1,25,-1 - 314 908 l 1,26,-1 - 318 908 l 1,27,28 - 368 1012 368 1012 450.5 1057 c 128,-1,29 - 533 1102 533 1102 655 1102 c 0,30,31 - 860 1102 860 1102 956.5 964 c 128,-1,32 - 1053 826 1053 826 1053 546 c 0,0,1 -864 540 m 0,33,34 - 864 767 864 767 804 865 c 128,-1,35 - 744 963 744 963 609 963 c 0,36,37 - 457 963 457 963 387.5 859 c 128,-1,38 - 318 755 318 755 318 529 c 0,39,40 - 318 316 318 316 386 214.5 c 128,-1,41 - 454 113 454 113 607 113 c 0,42,43 - 743 113 743 113 803.5 213.5 c 128,-1,44 - 864 314 864 314 864 540 c 0,33,34 -EndSplineSet -EndChar - -StartChar: uni0254 -Encoding: 596 596 534 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 6 - 7 - 7 - 19 - 0 - 13 - 19 - 13 - 26 - 27 - 16 - 23 - 80 - 89 - 20 - 20 - 16 - 22 - 6 - 6 - 10 - 10 - 3 - 80 - 89 - 10 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-18" 880 900 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -756 546 m 0,0,1 - 756 772 756 772 691.5 866.5 c 128,-1,2 - 627 961 627 961 485 961 c 0,3,4 - 380 961 380 961 323 908 c 128,-1,5 - 266 855 266 855 252 765 c 1,6,-1 - 67 779 l 1,7,8 - 96 930 96 930 204.5 1016 c 128,-1,9 - 313 1102 313 1102 480 1102 c 0,10,11 - 704 1102 704 1102 824 958.5 c 128,-1,12 - 944 815 944 815 944 542 c 0,13,14 - 944 267 944 267 824.5 123.5 c 128,-1,15 - 705 -20 705 -20 478 -20 c 0,16,17 - 307 -20 307 -20 194.5 73 c 128,-1,18 - 82 166 82 166 61 322 c 1,19,-1 - 243 334 l 1,20,21 - 258 226 258 226 322.5 174 c 128,-1,22 - 387 122 387 122 483 122 c 0,23,24 - 621 122 621 122 688.5 226.5 c 128,-1,25 - 756 331 756 331 756 546 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0255 -Encoding: 597 597 535 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 56 - 22 - 5 - 9 - 16 - 15 - 15 - 36 - 28 - 28 - 42 - 24 - 2 - 7 - 9 - 6 - 44 - 45 - 24 - 42 - 7 - 2 - 4 - 4 - 26 - 26 - 39 - 80 - 89 - 16 - 12 - 15 - 26 - 31 - 26 - 2 - 9 - 3 - 26 - 26 - 0 - 12 - 12 - 19 - 80 - 89 - 12 - 16 - 4 - 4 - 0 - 0 - 32 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP2 -IP -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -561 -20 m 0,0,1 - 400 -20 400 -20 288 59 c 1,2,3 - 236 -19 236 -19 201 -92 c 1,4,-1 - 77 0 l 1,5,6 - 149 116 149 116 186 166 c 1,7,8 - 87 310 87 310 87 542 c 0,9,10 - 87 815 87 815 207 958.5 c 128,-1,11 - 327 1102 327 1102 551 1102 c 0,12,13 - 717 1102 717 1102 826.5 1016 c 128,-1,14 - 936 930 936 930 964 779 c 1,15,-1 - 779 765 l 1,16,17 - 765 855 765 855 708 908 c 128,-1,18 - 651 961 651 961 546 961 c 0,19,20 - 403 961 403 961 339 866 c 128,-1,21 - 275 771 275 771 275 546 c 0,22,23 - 275 416 275 416 309 314 c 1,24,25 - 500 510 500 510 698 510 c 0,26,27 - 965 510 965 510 965 281 c 0,28,29 - 965 193 965 193 914.5 122 c 128,-1,30 - 864 51 864 51 774.5 15.5 c 128,-1,31 - 685 -20 685 -20 561 -20 c 0,0,1 -560 114 m 0,32,33 - 643 114 643 114 699.5 135 c 128,-1,34 - 756 156 756 156 786.5 190 c 128,-1,35 - 817 224 817 224 817 265 c 0,36,37 - 817 322 817 322 785 347 c 128,-1,38 - 753 372 753 372 693 372 c 0,39,40 - 610 372 610 372 528.5 320.5 c 128,-1,41 - 447 269 447 269 383 186 c 1,42,43 - 451 114 451 114 560 114 c 0,32,33 -EndSplineSet -EndChar - -StartChar: uni0256 -Encoding: 598 598 536 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 34 - 19 - 4 - 4 - 22 - 28 - 12 - 22 - 12 - 40 - 0 - 41 - 20 - 0 - 17 - 5 - 14 - 9 - 14 - 37 - 80 - 89 - 14 - 16 - 9 - 31 - 80 - 89 - 9 - 22 - 2 - 25 - 80 - 89 - 2 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 990 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1198 -413 m 1,0,1 - 1148 -425 1148 -425 1074 -425 c 0,2,3 - 827 -425 827 -425 827 -129 c 2,4,-1 - 827 174 l 1,5,-1 - 823 174 l 1,6,7 - 773 70 773 70 689.5 25 c 128,-1,8 - 606 -20 606 -20 484 -20 c 0,9,10 - 279 -20 279 -20 182.5 118 c 128,-1,11 - 86 256 86 256 86 536 c 0,12,13 - 86 1102 86 1102 484 1102 c 0,14,15 - 607 1102 607 1102 689 1057 c 128,-1,16 - 771 1012 771 1012 821 914 c 1,17,-1 - 823 914 l 1,18,-1 - 821 1035 l 1,19,-1 - 821 1484 l 1,20,-1 - 1001 1484 l 1,21,-1 - 1001 -115 l 2,22,23 - 1001 -196 1001 -196 1029 -229.5 c 128,-1,24 - 1057 -263 1057 -263 1112 -263 c 0,25,26 - 1150 -263 1150 -263 1198 -251 c 1,27,-1 - 1198 -413 l 1,0,1 -275 542 m 0,28,29 - 275 315 275 315 335 217 c 128,-1,30 - 395 119 395 119 530 119 c 0,31,32 - 683 119 683 119 752 225 c 128,-1,33 - 821 331 821 331 821 554 c 0,34,35 - 821 769 821 769 752 869 c 128,-1,36 - 683 969 683 969 532 969 c 0,37,38 - 396 969 396 969 335.5 868.5 c 128,-1,39 - 275 768 275 768 275 542 c 0,28,29 -EndSplineSet -EndChar - -StartChar: uni0257 -Encoding: 599 599 537 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 20 - 6 - 37 - 37 - 0 - 31 - 13 - 0 - 13 - 43 - 25 - 44 - 23 - 28 - 80 - 89 - 23 - 1 - 18 - 6 - 15 - 10 - 15 - 40 - 80 - 89 - 15 - 16 - 10 - 34 - 80 - 89 - 10 - 22 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1001 223 m 2,0,1 - 1001 54 1001 54 1007 0 c 1,2,-1 - 835 0 l 1,3,4 - 832 16 832 16 828.5 74 c 128,-1,5 - 825 132 825 132 825 174 c 1,6,-1 - 821 174 l 1,7,8 - 771 70 771 70 688.5 25 c 128,-1,9 - 606 -20 606 -20 484 -20 c 0,10,11 - 279 -20 279 -20 182.5 118 c 128,-1,12 - 86 256 86 256 86 536 c 0,13,14 - 86 1102 86 1102 484 1102 c 0,15,16 - 607 1102 607 1102 689 1057 c 128,-1,17 - 771 1012 771 1012 821 914 c 1,18,-1 - 823 914 l 1,19,-1 - 821 1035 l 1,20,-1 - 821 1202 l 2,21,22 - 821 1498 821 1498 1104 1498 c 0,23,24 - 1169 1498 1169 1498 1239 1483 c 1,25,-1 - 1239 1315 l 1,26,27 - 1181 1336 1181 1336 1122 1336 c 0,28,29 - 1001 1336 1001 1336 1001 1188 c 2,30,-1 - 1001 223 l 2,0,1 -275 542 m 0,31,32 - 275 315 275 315 335 217 c 128,-1,33 - 395 119 395 119 530 119 c 0,34,35 - 683 119 683 119 752 225 c 128,-1,36 - 821 331 821 331 821 554 c 0,37,38 - 821 769 821 769 752 869 c 128,-1,39 - 683 969 683 969 532 969 c 0,40,41 - 396 969 396 969 335.5 868.5 c 128,-1,42 - 275 768 275 768 275 542 c 0,31,32 -EndSplineSet -EndChar - -StartChar: uni0258 -Encoding: 600 600 538 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 19 - 18 - 18 - 6 - 12 - 11 - 11 - 25 - 0 - 6 - 0 - 27 - 26 - 12 - 12 - 0 - 15 - 25 - 0 - 80 - 89 - 25 - 25 - 9 - 3 - 9 - 15 - 80 - 89 - 9 - 22 - 3 - 22 - 80 - 89 - 3 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 980 900 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -87 503 m 1,0,-1 - 87 527 l 2,1,2 - 87 1102 87 1102 564 1102 c 0,3,4 - 797 1102 797 1102 922.5 959 c 128,-1,5 - 1048 816 1048 816 1048 548 c 0,6,7 - 1048 266 1048 266 922.5 123 c 128,-1,8 - 797 -20 797 -20 557 -20 c 0,9,10 - 213 -20 213 -20 116 236 c 1,11,-1 - 274 281 l 1,12,13 - 299 209 299 209 369.5 162 c 128,-1,14 - 440 115 440 115 557 115 c 0,15,16 - 704 115 704 115 781.5 215.5 c 128,-1,17 - 859 316 859 316 859 503 c 1,18,-1 - 87 503 l 1,0,-1 -857 641 m 1,19,20 - 851 795 851 795 774 882 c 128,-1,21 - 697 969 697 969 567 969 c 0,22,23 - 432 969 432 969 360 890.5 c 128,-1,24 - 288 812 288 812 273 641 c 1,25,-1 - 857 641 l 1,19,20 -EndSplineSet -EndChar - -StartChar: uni0259 -Encoding: 601 601 539 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 0 - 25 - 25 - 12 - 6 - 7 - 7 - 19 - 17 - 12 - 17 - 27 - 26 - 18 - 19 - 80 - 89 - 18 - 6 - 18 - 6 - 15 - 9 - 15 - 22 - 80 - 89 - 15 - 22 - 9 - 3 - 80 - 89 - 9 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -859 579 m 1,0,1 - 859 765 859 765 782 866 c 128,-1,2 - 705 967 705 967 557 967 c 0,3,4 - 440 967 440 967 369.5 920 c 128,-1,5 - 299 873 299 873 274 801 c 1,6,-1 - 116 846 l 1,7,8 - 213 1102 213 1102 557 1102 c 0,9,10 - 797 1102 797 1102 922.5 959 c 128,-1,11 - 1048 816 1048 816 1048 534 c 0,12,13 - 1048 266 1048 266 922.5 123 c 128,-1,14 - 797 -20 797 -20 564 -20 c 0,15,16 - 87 -20 87 -20 87 555 c 2,17,-1 - 87 579 l 1,18,-1 - 859 579 l 1,0,1 -273 441 m 1,19,20 - 288 270 288 270 360 191.5 c 128,-1,21 - 432 113 432 113 567 113 c 0,22,23 - 698 113 698 113 774.5 200.5 c 128,-1,24 - 851 288 851 288 857 441 c 1,25,-1 - 273 441 l 1,19,20 -EndSplineSet -EndChar - -StartChar: uni025A -Encoding: 602 602 540 -Width: 1513 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 6 - 7 - 7 - 33 - 31 - 0 - 39 - 39 - 11 - 26 - 19 - 26 - 31 - 3 - 41 - 42 - 16 - 21 - 83 - 89 - 24 - 40 - 0 - 40 - 80 - 89 - 6 - 6 - 3 - 32 - 11 - 0 - 16 - 0 - 16 - 0 - 29 - 9 - 29 - 36 - 80 - 89 - 29 - 22 - 9 - 3 - 80 - 89 - 9 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1513 1540 basechar 0 -AnchorPoint: "Anchor-20" 1513 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -844 723 m 1,0,1 - 814 850 814 850 741 908.5 c 128,-1,2 - 668 967 668 967 557 967 c 0,3,4 - 440 967 440 967 369.5 920 c 128,-1,5 - 299 873 299 873 274 801 c 1,6,-1 - 116 846 l 1,7,8 - 213 1102 213 1102 557 1102 c 0,9,10 - 936 1102 936 1102 1024 754 c 1,11,-1 - 1172 780 l 1,12,-1 - 1200 651 l 2,13,14 - 1215 583 1215 583 1240.5 549.5 c 128,-1,15 - 1266 516 1266 516 1316 516 c 0,16,17 - 1368 516 1368 516 1448 556 c 1,18,-1 - 1507 409 l 1,19,20 - 1381 357 1381 357 1296 357 c 0,21,22 - 1197 357 1197 357 1130.5 429 c 128,-1,23 - 1064 501 1064 501 1044 627 c 1,24,25 - 1048 587 1048 587 1048 534 c 0,26,27 - 1048 266 1048 266 922.5 123 c 128,-1,28 - 797 -20 797 -20 564 -20 c 0,29,30 - 87 -20 87 -20 87 555 c 2,31,-1 - 87 579 l 1,32,-1 - 844 723 l 1,0,1 -270 468 m 1,33,34 - 285 284 285 284 356 198.5 c 128,-1,35 - 427 113 427 113 567 113 c 0,36,37 - 706 113 706 113 785 212.5 c 128,-1,38 - 864 312 864 312 864 500 c 1,39,-1 - 861 579 l 1,40,-1 - 270 468 l 1,33,34 -EndSplineSet -EndChar - -StartChar: uni025B -Encoding: 603 603 541 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 65 - 21 - 3 - 11 - 17 - 5 - 5 - 26 - 0 - 12 - 11 - 11 - 31 - 32 - 0 - 32 - 38 - 39 - 3 - 20 - 23 - 20 - 23 - 80 - 89 - 0 - 31 - 16 - 31 - 96 - 31 - 3 - 9 - 175 - 20 - 1 - 15 - 20 - 207 - 20 - 223 - 20 - 3 - 11 - 3 - 31 - 20 - 12 - 12 - 20 - 31 - 3 - 35 - 8 - 35 - 29 - 80 - 89 - 35 - 22 - 8 - 14 - 80 - 89 - 8 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 939 1540 basechar 0 -AnchorPoint: "Anchor-20" 939 -380 basechar 0 -AnchorPoint: "Anchor-18" 780 900 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 480 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -72 289 m 0,0,1 - 72 400 72 400 136 469 c 128,-1,2 - 200 538 200 538 321 558 c 1,3,4 - 101 625 101 625 101 803 c 0,5,6 - 101 942 101 942 201.5 1022 c 128,-1,7 - 302 1102 302 1102 478 1102 c 0,8,9 - 640 1102 640 1102 741 1018 c 128,-1,10 - 842 934 842 934 863 781 c 1,11,-1 - 684 765 l 1,12,13 - 653 969 653 969 480 969 c 0,14,15 - 387 969 387 969 334 924 c 128,-1,16 - 281 879 281 879 281 794 c 0,17,18 - 281 716 281 716 337.5 670 c 128,-1,19 - 394 624 394 624 486 624 c 2,20,-1 - 576 624 l 1,21,-1 - 576 483 l 1,22,-1 - 480 483 l 2,23,24 - 363 483 363 483 307.5 435 c 128,-1,25 - 252 387 252 387 252 300 c 0,26,27 - 252 212 252 212 311.5 162.5 c 128,-1,28 - 371 113 371 113 476 113 c 0,29,30 - 689 113 689 113 709 336 c 1,31,-1 - 886 322 l 1,32,33 - 870 149 870 149 764 65 c 128,-1,34 - 658 -19 658 -19 476 -19 c 0,35,36 - 283 -19 283 -19 177.5 63.5 c 128,-1,37 - 72 146 72 146 72 289 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni025C -Encoding: 604 604 542 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 70 - 35 - 16 - 27 - 21 - 33 - 33 - 12 - 0 - 26 - 27 - 27 - 7 - 6 - 0 - 6 - 39 - 38 - 0 - 39 - 1 - 10 - 3 - 35 - 17 - 16 - 17 - 16 - 80 - 89 - 0 - 7 - 16 - 7 - 96 - 7 - 3 - 9 - 175 - 17 - 1 - 15 - 17 - 207 - 17 - 223 - 17 - 3 - 11 - 3 - 7 - 17 - 26 - 26 - 17 - 7 - 3 - 3 - 30 - 30 - 24 - 80 - 89 - 30 - 16 - 3 - 9 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 939 1540 basechar 0 -AnchorPoint: "Anchor-20" 939 -380 basechar 0 -AnchorPoint: "Anchor-18" 810 900 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 480 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -867 289 m 0,0,1 - 867 146 867 146 761 63.5 c 128,-1,2 - 655 -19 655 -19 463 -19 c 0,3,4 - 280 -19 280 -19 174.5 65 c 128,-1,5 - 69 149 69 149 53 322 c 1,6,-1 - 230 336 l 1,7,8 - 250 113 250 113 463 113 c 0,9,10 - 571 113 571 113 629 160 c 128,-1,11 - 687 207 687 207 687 300 c 0,12,13 - 687 387 687 387 631 435 c 128,-1,14 - 575 483 575 483 459 483 c 2,15,-1 - 363 483 l 1,16,-1 - 363 624 l 1,17,-1 - 453 624 l 2,18,19 - 546 624 546 624 602 670 c 128,-1,20 - 658 716 658 716 658 794 c 0,21,22 - 658 876 658 876 605.5 922.5 c 128,-1,23 - 553 969 553 969 459 969 c 0,24,25 - 286 969 286 969 255 765 c 1,26,-1 - 76 781 l 1,27,28 - 97 933 97 933 198 1017.5 c 128,-1,29 - 299 1102 299 1102 461 1102 c 0,30,31 - 638 1102 638 1102 738 1021 c 128,-1,32 - 838 940 838 940 838 803 c 0,33,34 - 838 625 838 625 618 558 c 1,35,36 - 739 538 739 538 803 469 c 128,-1,37 - 867 400 867 400 867 289 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni025D -Encoding: 605 605 543 -Width: 1293 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 71 - 49 - 16 - 27 - 35 - 21 - 47 - 47 - 12 - 0 - 26 - 27 - 27 - 7 - 6 - 6 - 0 - 42 - 3 - 53 - 52 - 49 - 17 - 16 - 17 - 16 - 80 - 89 - 38 - 44 - 83 - 89 - 47 - 33 - 33 - 26 - 30 - 175 - 17 - 1 - 15 - 17 - 207 - 17 - 223 - 17 - 3 - 11 - 3 - 7 - 17 - 38 - 26 - 26 - 38 - 17 - 7 - 4 - 3 - 30 - 30 - 24 - 80 - 89 - 30 - 16 - 3 - 9 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1293 1540 basechar 0 -AnchorPoint: "Anchor-20" 1293 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 480 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -867 289 m 0,0,1 - 867 146 867 146 761 63.5 c 128,-1,2 - 655 -19 655 -19 463 -19 c 0,3,4 - 280 -19 280 -19 174.5 65 c 128,-1,5 - 69 149 69 149 53 322 c 1,6,-1 - 230 336 l 1,7,8 - 250 113 250 113 463 113 c 0,9,10 - 571 113 571 113 629 160 c 128,-1,11 - 687 207 687 207 687 300 c 0,12,13 - 687 387 687 387 631 435 c 128,-1,14 - 575 483 575 483 459 483 c 2,15,-1 - 363 483 l 1,16,-1 - 363 624 l 1,17,-1 - 453 624 l 2,18,19 - 546 624 546 624 602 670 c 128,-1,20 - 658 716 658 716 658 794 c 0,21,22 - 658 876 658 876 605.5 922.5 c 128,-1,23 - 553 969 553 969 459 969 c 0,24,25 - 286 969 286 969 255 765 c 1,26,-1 - 76 781 l 1,27,28 - 97 933 97 933 198 1017.5 c 128,-1,29 - 299 1102 299 1102 461 1102 c 0,30,31 - 599 1102 599 1102 692 1051.5 c 128,-1,32 - 785 1001 785 1001 819 909 c 1,33,-1 - 956 933 l 1,34,-1 - 984 804 l 2,35,36 - 999 736 999 736 1022.5 702.5 c 128,-1,37 - 1046 669 1046 669 1096 669 c 0,38,39 - 1133 669 1133 669 1163.5 680.5 c 128,-1,40 - 1194 692 1194 692 1228 709 c 1,41,-1 - 1287 562 l 1,42,43 - 1161 510 1161 510 1076 510 c 0,44,45 - 985 510 985 510 921 570.5 c 128,-1,46 - 857 631 857 631 831 743 c 1,47,48 - 798 613 798 613 618 558 c 1,49,50 - 739 538 739 538 803 469 c 128,-1,51 - 867 400 867 400 867 289 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni025E -Encoding: 606 606 544 -Width: 1039 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 0 - 30 - 12 - 22 - 16 - 28 - 28 - 7 - 33 - 22 - 33 - 39 - 40 - 30 - 12 - 11 - 12 - 11 - 80 - 89 - 15 - 12 - 207 - 12 - 223 - 12 - 3 - 11 - 3 - 12 - 12 - 36 - 25 - 36 - 4 - 80 - 89 - 36 - 22 - 25 - 19 - 80 - 89 - 25 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1039 1540 basechar 0 -AnchorPoint: "Anchor-20" 1039 -380 basechar 0 -AnchorPoint: "Anchor-18" 920 900 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 560 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -264 556 m 0,0,1 - 264 397 264 397 297.5 300.5 c 128,-1,2 - 331 204 331 204 394 158.5 c 128,-1,3 - 457 113 457 113 571 113 c 0,4,5 - 679 113 679 113 737 160 c 128,-1,6 - 795 207 795 207 795 300 c 0,7,8 - 795 387 795 387 739 435 c 128,-1,9 - 683 483 683 483 567 483 c 2,10,-1 - 471 483 l 1,11,-1 - 471 624 l 1,12,-1 - 561 624 l 2,13,14 - 654 624 654 624 710 670 c 128,-1,15 - 766 716 766 716 766 794 c 0,16,17 - 766 876 766 876 713.5 922.5 c 128,-1,18 - 661 969 661 969 567 969 c 0,19,20 - 406 969 406 969 335 864.5 c 128,-1,21 - 264 760 264 760 264 556 c 0,0,1 -75 556 m 0,22,23 - 75 817 75 817 198 959.5 c 128,-1,24 - 321 1102 321 1102 548 1102 c 0,25,26 - 736 1102 736 1102 841 1022.5 c 128,-1,27 - 946 943 946 943 946 803 c 0,28,29 - 946 625 946 625 726 558 c 1,30,31 - 847 538 847 538 911 469 c 128,-1,32 - 975 400 975 400 975 289 c 0,33,34 - 975 146 975 146 869 63.5 c 128,-1,35 - 763 -19 763 -19 571 -19 c 0,36,37 - 320 -19 320 -19 197.5 125 c 128,-1,38 - 75 269 75 269 75 556 c 0,22,23 -EndSplineSet -EndChar - -StartChar: uni025F -Encoding: 607 607 545 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 3 - 0 - 0 - 6 - 19 - 21 - 13 - 13 - 19 - 4 - 3 - 23 - 22 - 20 - 21 - 81 - 89 - 20 - 21 - 10 - 15 - 80 - 89 - 10 - 6 - 3 - 81 - 89 - 6 - 21 - 1 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 150 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -219 131 m 1,0,-1 - 219 1082 l 1,1,-1 - 399 1082 l 1,2,-1 - 399 131 l 1,3,-1 - 551 131 l 1,4,-1 - 551 0 l 1,5,-1 - 399 0 l 1,6,-1 - 399 -148 l 2,7,8 - 399 -296 399 -296 334 -361 c 128,-1,9 - 269 -426 269 -426 135 -426 c 0,10,11 - 60 -426 60 -426 8 -414 c 1,12,-1 - 8 -277 l 1,13,14 - 53 -285 53 -285 88 -285 c 0,15,16 - 157 -285 157 -285 188 -250 c 128,-1,17 - 219 -215 219 -215 219 -123 c 2,18,-1 - 219 0 l 1,19,-1 - 8 0 l 1,20,-1 - 8 131 l 1,21,-1 - 219 131 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0260 -Encoding: 608 608 546 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 40 - 27 - 11 - 11 - 0 - 6 - 5 - 5 - 47 - 19 - 0 - 19 - 54 - 34 - 55 - 30 - 36 - 80 - 89 - 30 - 1 - 25 - 12 - 22 - 16 - 22 - 44 - 80 - 89 - 22 - 16 - 16 - 50 - 80 - 89 - 16 - 21 - 2 - 9 - 80 - 89 - 6 - 2 - 27 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 560 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1001 31 m 2,0,1 - 1001 -425 1001 -425 548 -425 c 0,2,3 - 371 -425 371 -425 266 -355.5 c 128,-1,4 - 161 -286 161 -286 131 -158 c 1,5,-1 - 312 -132 l 1,6,7 - 330 -207 330 -207 391.5 -247.5 c 128,-1,8 - 453 -288 453 -288 553 -288 c 0,9,10 - 822 -288 822 -288 822 27 c 2,11,-1 - 822 201 l 1,12,-1 - 820 201 l 1,13,14 - 769 97 769 97 680 44.5 c 128,-1,15 - 591 -8 591 -8 472 -8 c 0,16,17 - 273 -8 273 -8 179.5 124 c 128,-1,18 - 86 256 86 256 86 539 c 0,19,20 - 86 826 86 826 186.5 962.5 c 128,-1,21 - 287 1099 287 1099 492 1099 c 0,22,23 - 607 1099 607 1099 691 1046.5 c 128,-1,24 - 775 994 775 994 821 897 c 1,25,-1 - 823 897 l 1,26,-1 - 823 1202 l 2,27,28 - 823 1347 823 1347 896 1422.5 c 128,-1,29 - 969 1498 969 1498 1112 1498 c 0,30,31 - 1144 1498 1144 1498 1163 1496.5 c 128,-1,32 - 1182 1495 1182 1495 1237 1484 c 1,33,-1 - 1237 1318 l 1,34,35 - 1187 1336 1187 1336 1130 1336 c 0,36,37 - 1066 1336 1066 1336 1033.5 1297 c 128,-1,38 - 1001 1258 1001 1258 1001 1188 c 2,39,-1 - 1001 31 l 2,0,1 -822 541 m 0,40,41 - 822 673 822 673 786 768.5 c 128,-1,42 - 750 864 750 864 684.5 914.5 c 128,-1,43 - 619 965 619 965 536 965 c 0,44,45 - 398 965 398 965 335 865 c 128,-1,46 - 272 765 272 765 272 541 c 0,47,48 - 272 319 272 319 331 222 c 128,-1,49 - 390 125 390 125 533 125 c 0,50,51 - 618 125 618 125 684 175 c 128,-1,52 - 750 225 750 225 786 318.5 c 128,-1,53 - 822 412 822 412 822 541 c 0,40,41 -EndSplineSet -EndChar - -StartChar: uni0261 -Encoding: 609 609 547 -Width: 1139 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 560 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 74 103 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni0262 -Encoding: 610 610 548 -Width: 1144 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 21 - 28 - 8 - 2 - 15 - 14 - 14 - 26 - 2 - 8 - 2 - 29 - 30 - 0 - 28 - 80 - 89 - 0 - 15 - 0 - 15 - 5 - 11 - 11 - 18 - 80 - 89 - 11 - 16 - 5 - 24 - 80 - 89 - 5 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 640 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1144 1540 basechar 0 -AnchorPoint: "Anchor-20" 1144 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -576 541 m 1,0,-1 - 1007 541 l 1,1,-1 - 1007 123 l 1,2,3 - 932 55 932 55 824.5 17.5 c 128,-1,4 - 717 -20 717 -20 595 -20 c 0,5,6 - 350 -20 350 -20 222 123 c 128,-1,7 - 94 266 94 266 94 542 c 0,8,9 - 94 812 94 812 219.5 957 c 128,-1,10 - 345 1102 345 1102 574 1102 c 0,11,12 - 740 1102 740 1102 849.5 1016 c 128,-1,13 - 959 930 959 930 987 779 c 1,14,-1 - 802 765 l 1,15,16 - 788 855 788 855 731 908 c 128,-1,17 - 674 961 674 961 569 961 c 0,18,19 - 416 961 416 961 348 858.5 c 128,-1,20 - 280 756 280 756 280 546 c 0,21,22 - 280 324 280 324 356 221 c 128,-1,23 - 432 118 432 118 591 118 c 0,24,25 - 722 118 722 118 825 185 c 1,26,-1 - 825 404 l 1,27,-1 - 576 404 l 1,28,-1 - 576 541 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0263 -Encoding: 611 611 549 -Width: 1026 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 2 - 1 - 22 - 6 - 20 - 3 - 0 - 4 - 14 - 18 - 8 - 4 - 5 - 5 - 8 - 14 - 1 - 4 - 28 - 29 - 3 - 6 - 0 - 20 - 4 - 11 - 1 - 11 - 25 - 80 - 89 - 11 - 27 - 4 - 1 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 500 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1026 1540 basechar 0 -AnchorPoint: "Anchor-20" 1026 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1260 basechar 0 -AnchorPoint: "Anchor-14" 510 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -400 150 m 1,0,-1 - 7 1082 l 1,1,-1 - 199 1082 l 1,2,-1 - 508 347 l 1,3,-1 - 826 1082 l 1,4,-1 - 1017 1082 l 1,5,-1 - 613 151 l 1,6,7 - 740 -71 740 -71 740 -188 c 0,8,9 - 740 -297 740 -297 677.5 -361 c 128,-1,10 - 615 -425 615 -425 508 -425 c 0,11,12 - 402 -425 402 -425 339.5 -361 c 128,-1,13 - 277 -297 277 -297 277 -188 c 0,14,15 - 277 -148 277 -148 288.5 -103 c 128,-1,16 - 300 -58 300 -58 318.5 -12 c 128,-1,17 - 337 34 337 34 400 150 c 1,0,-1 -584 -182 m 0,18,19 - 584 -99 584 -99 508 37 c 1,20,21 - 433 -101 433 -101 433 -182 c 0,22,23 - 433 -228 433 -228 452.5 -254 c 128,-1,24 - 472 -280 472 -280 508 -280 c 0,25,26 - 545 -280 545 -280 564.5 -254.5 c 128,-1,27 - 584 -229 584 -229 584 -182 c 0,18,19 -EndSplineSet -EndChar - -StartChar: uni0264 -Encoding: 612 612 550 -Width: 1263 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 9 - 33 - 0 - 27 - 16 - 27 - 24 - 4 - 52 - 36 - 33 - 44 - 8 - 57 - 58 - 52 - 24 - 36 - 4 - 4 - 30 - 47 - 43 - 43 - 47 - 47 - 40 - 80 - 89 - 47 - 15 - 30 - 11 - 80 - 89 - 30 - 22 - 13 - 20 - 80 - 89 - 17 - 17 - 13 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 640 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1263 1540 basechar 0 -AnchorPoint: "Anchor-20" 1263 -380 basechar 0 -AnchorPoint: "Anchor-18" 1152 1000 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -703 214 m 0,0,1 - 703 235 703 235 698 256 c 128,-1,2 - 693 277 693 277 682.5 302.5 c 128,-1,3 - 672 328 672 328 631 404 c 1,4,5 - 619 381 619 381 606 357 c 128,-1,6 - 593 333 593 333 583 309 c 128,-1,7 - 573 285 573 285 566.5 261.5 c 128,-1,8 - 560 238 560 238 560 214 c 0,9,10 - 560 121 560 121 631 121 c 0,11,12 - 703 121 703 121 703 214 c 0,0,1 -961 1089 m 0,13,14 - 1037 1089 1037 1089 1109 1041 c 128,-1,15 - 1181 993 1181 993 1237 901 c 1,16,-1 - 1123 790 l 1,17,-1 - 1090 840 l 2,18,19 - 1027 931 1027 931 964 931 c 0,20,21 - 929 931 929 931 906.5 904.5 c 128,-1,22 - 884 878 884 878 861 825 c 2,23,-1 - 730 522 l 1,24,-1 - 781 428 l 2,25,26 - 863 283 863 283 863 202 c 0,27,28 - 863 96 863 96 800.5 36 c 128,-1,29 - 738 -24 738 -24 631 -24 c 0,30,31 - 525 -24 525 -24 462.5 36 c 128,-1,32 - 400 96 400 96 400 202 c 0,33,34 - 400 288 400 288 480 428 c 1,35,-1 - 529 521 l 1,36,-1 - 398 825 l 2,37,38 - 375 878 375 878 352.5 904.5 c 128,-1,39 - 330 931 330 931 295 931 c 0,40,41 - 232 931 232 931 170 840 c 2,42,-1 - 136 790 l 1,43,-1 - 22 901 l 1,44,45 - 78 993 78 993 150 1041 c 128,-1,46 - 222 1089 222 1089 298 1089 c 0,47,48 - 395 1089 395 1089 453.5 1045.5 c 128,-1,49 - 512 1002 512 1002 553 892 c 2,50,-1 - 608 741 l 1,51,-1 - 630 671 l 1,52,-1 - 651 741 l 1,53,-1 - 706 892 l 2,54,55 - 746 1001 746 1001 804.5 1045 c 128,-1,56 - 863 1089 863 1089 961 1089 c 0,13,14 -EndSplineSet -EndChar - -StartChar: uni0265 -Encoding: 613 613 551 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 20 - 16 - 19 - 9 - 6 - 19 - 6 - 25 - 24 - 20 - 0 - 3 - 17 - 7 - 15 - 3 - 13 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -831 186 m 1,0,1 - 772 77 772 77 690 29 c 128,-1,2 - 608 -19 608 -19 485 -19 c 0,3,4 - 309 -19 309 -19 225.5 68.5 c 128,-1,5 - 142 156 142 156 142 362 c 2,6,-1 - 142 1083 l 1,7,-1 - 323 1083 l 1,8,-1 - 323 397 l 2,9,10 - 323 283 323 283 344 227.5 c 128,-1,11 - 365 172 365 172 413 146 c 128,-1,12 - 461 120 461 120 546 120 c 0,13,14 - 673 120 673 120 749.5 208 c 128,-1,15 - 826 296 826 296 826 445 c 2,16,-1 - 826 1083 l 1,17,-1 - 1006 1083 l 1,18,-1 - 1006 -401 l 1,19,-1 - 826 -401 l 1,20,-1 - 826 -15 l 1,21,-1 - 830 112 l 1,22,-1 - 834 186 l 1,23,-1 - 831 186 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0266 -Encoding: 614 614 552 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 29 - 17 - 17 - 18 - 8 - 7 - 7 - 24 - 18 - 3 - 32 - 33 - 21 - 26 - 80 - 89 - 21 - 1 - 0 - 3 - 8 - 18 - 21 - 3 - 13 - 80 - 89 - 3 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -317 897 m 1,0,1 - 375 1003 375 1003 456.5 1052.5 c 128,-1,2 - 538 1102 538 1102 663 1102 c 0,3,4 - 839 1102 839 1102 922.5 1014.5 c 128,-1,5 - 1006 927 1006 927 1006 721 c 2,6,-1 - 1006 0 l 1,7,-1 - 825 0 l 1,8,-1 - 825 686 l 2,9,10 - 825 800 825 800 804 855.5 c 128,-1,11 - 783 911 783 911 735 937 c 128,-1,12 - 687 963 687 963 602 963 c 0,13,14 - 475 963 475 963 398.5 875 c 128,-1,15 - 322 787 322 787 322 638 c 2,16,-1 - 322 0 l 1,17,-1 - 142 0 l 1,18,-1 - 142 1202 l 2,19,20 - 142 1498 142 1498 426 1498 c 0,21,22 - 495 1498 495 1498 568 1482 c 1,23,-1 - 568 1317 l 1,24,25 - 515 1336 515 1336 449 1336 c 0,26,27 - 323 1336 323 1336 323 1194 c 2,28,-1 - 323 1098 l 2,29,30 - 323 960 323 960 314 897 c 1,31,-1 - 317 897 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0267 -Encoding: 615 615 553 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 19 - 10 - 2 - 0 - 28 - 28 - 29 - 29 - 35 - 14 - 10 - 4 - 41 - 40 - 32 - 37 - 80 - 89 - 32 - 1 - 2 - 6 - 29 - 21 - 12 - 17 - 80 - 89 - 12 - 27 - 6 - 24 - 80 - 89 - 6 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 740 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -323 1098 m 2,0,1 - 323 960 323 960 314 897 c 1,2,-1 - 317 897 l 1,3,4 - 375 1003 375 1003 456.5 1052.5 c 128,-1,5 - 538 1102 538 1102 663 1102 c 0,6,7 - 839 1102 839 1102 922.5 1014.5 c 128,-1,8 - 1006 927 1006 927 1006 721 c 2,9,-1 - 1006 -129 l 2,10,11 - 1006 -425 1006 -425 725 -425 c 0,12,13 - 674 -425 674 -425 589 -409 c 1,14,-1 - 589 -242 l 1,15,16 - 647 -263 647 -263 708 -263 c 0,17,18 - 825 -263 825 -263 825 -115 c 2,19,-1 - 825 686 l 2,20,21 - 825 800 825 800 804 855.5 c 128,-1,22 - 783 911 783 911 735 937 c 128,-1,23 - 687 963 687 963 602 963 c 0,24,25 - 475 963 475 963 398.5 875 c 128,-1,26 - 322 787 322 787 322 638 c 2,27,-1 - 322 0 l 1,28,-1 - 142 0 l 1,29,-1 - 142 1202 l 2,30,31 - 142 1498 142 1498 426 1498 c 0,32,33 - 495 1498 495 1498 568 1482 c 1,34,-1 - 568 1317 l 1,35,36 - 515 1336 515 1336 449 1336 c 0,37,38 - 323 1336 323 1336 323 1194 c 2,39,-1 - 323 1098 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0268 -Encoding: 616 616 554 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 15 - 8 - 8 - 12 - 9 - 9 - 16 - 17 - 13 - 12 - 83 - 89 - 13 - 0 - 7 - 11 - 0 - 11 - 80 - 89 - 4 - 0 - 0 - 2 - 9 - 21 - 2 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-18" 310 1100 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -24 617 m 1,0,-1 - 137 617 l 1,1,-1 - 137 1082 l 1,2,-1 - 317 1082 l 1,3,-1 - 317 617 l 1,4,-1 - 431 617 l 1,5,-1 - 431 484 l 1,6,-1 - 317 484 l 1,7,-1 - 317 0 l 1,8,-1 - 137 0 l 1,9,-1 - 137 484 l 1,10,-1 - 24 484 l 1,11,-1 - 24 617 l 1,0,-1 -137 1312 m 1,12,-1 - 137 1484 l 1,13,-1 - 317 1484 l 1,14,-1 - 317 1312 l 1,15,-1 - 137 1312 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: uni0269 -Encoding: 617 617 555 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 0 - 10 - 5 - 10 - 14 - 13 - 11 - 15 - 8 - 3 - 83 - 89 - 8 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 300 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 200 1200 basechar 0 -AnchorPoint: "Anchor-15" 300 1260 basechar 0 -AnchorPoint: "Anchor-14" 320 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -266 293 m 2,0,1 - 266 212 266 212 294.5 177 c 128,-1,2 - 323 142 323 142 378 142 c 0,3,4 - 411 142 411 142 455 153 c 1,5,-1 - 455 -7 l 1,6,7 - 405 -17 405 -17 360 -17 c 0,8,9 - 86 -17 86 -17 86 279 c 2,10,-1 - 86 1082 l 1,11,-1 - 266 1082 l 1,12,-1 - 266 293 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni026A -Encoding: 618 618 556 -Width: 729 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 10 - 1 - 0 - 5 - 7 - 3 - 3 - 5 - 1 - 3 - 13 - 12 - 11 - 7 - 8 - 7 - 80 - 89 - 8 - 15 - 0 - 4 - 3 - 4 - 80 - 89 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 729 1540 basechar 0 -AnchorPoint: "Anchor-20" 729 -380 basechar 0 -AnchorPoint: "Anchor-18" 560 1100 basechar 0 -AnchorPoint: "Anchor-16" 360 1200 basechar 0 -AnchorPoint: "Anchor-15" 600 1260 basechar 0 -AnchorPoint: "Anchor-14" 360 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -455 140 m 1,0,-1 - 662 140 l 1,1,-1 - 662 0 l 1,2,-1 - 68 0 l 1,3,-1 - 68 140 l 1,4,-1 - 274 140 l 1,5,-1 - 274 943 l 1,6,-1 - 68 943 l 1,7,-1 - 68 1082 l 1,8,-1 - 662 1082 l 1,9,-1 - 662 943 l 1,10,-1 - 455 943 l 1,11,-1 - 455 140 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni026B -Encoding: 619 619 557 -Width: 670 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 14 - 26 - 26 - 11 - 0 - 0 - 7 - 20 - 20 - 28 - 7 - 27 - 16 - 23 - 80 - 89 - 19 - 19 - 16 - 16 - 10 - 7 - 7 - 3 - 10 - 3 - 80 - 89 - 10 - 10 - 12 - 0 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SHP[rp1] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 280 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 670 1540 basechar 0 -AnchorPoint: "Anchor-20" 670 -380 basechar 0 -AnchorPoint: "Anchor-16" 340 1580 basechar 0 -AnchorPoint: "Anchor-15" 460 1540 basechar 0 -AnchorPoint: "Anchor-14" 340 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -248 0 m 1,0,-1 - 248 715 l 1,1,2 - 222 723 222 723 196 723 c 0,3,4 - 157 723 157 723 143.5 699 c 128,-1,5 - 130 675 130 675 130 628 c 1,6,-1 - 0 628 l 1,7,8 - 2 732 2 732 55.5 794 c 128,-1,9 - 109 856 109 856 193 856 c 1,10,-1 - 248 851 l 1,11,-1 - 248 1484 l 1,12,-1 - 428 1484 l 1,13,-1 - 428 782 l 1,14,15 - 444 776 444 776 476 776 c 0,16,17 - 507 776 507 776 520 799.5 c 128,-1,18 - 533 823 533 823 539 871 c 1,19,-1 - 669 871 l 1,20,21 - 669 757 669 757 624 700 c 128,-1,22 - 579 643 579 643 483 643 c 0,23,24 - 448 643 448 643 428 648 c 1,25,-1 - 428 0 l 1,26,-1 - 248 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni026C -Encoding: 620 620 558 -Width: 622 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 22 - 8 - 17 - 12 - 3 - 3 - 15 - 2 - 0 - 2 - 8 - 3 - 25 - 26 - 18 - 19 - 12 - 19 - 81 - 89 - 1 - 4 - 17 - 4 - 81 - 89 - 15 - 17 - 12 - 17 - 12 - 17 - 3 - 13 - 0 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 280 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 622 1540 basechar 0 -AnchorPoint: "Anchor-20" 622 -380 basechar 0 -AnchorPoint: "Anchor-16" 340 1580 basechar 0 -AnchorPoint: "Anchor-15" 460 1540 basechar 0 -AnchorPoint: "Anchor-14" 340 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -602 601 m 1,0,-1 - 433 601 l 1,1,-1 - 433 0 l 1,2,-1 - 253 0 l 1,3,-1 - 253 601 l 1,4,-1 - 248 601 l 2,5,6 - 148 601 148 601 81.5 666.5 c 128,-1,7 - 15 732 15 732 15 839 c 0,8,9 - 15 938 15 938 79.5 999.5 c 128,-1,10 - 144 1061 144 1061 246 1061 c 2,11,-1 - 253 1061 l 1,12,-1 - 253 1466 l 1,13,-1 - 433 1466 l 1,14,-1 - 433 730 l 1,15,-1 - 602 730 l 1,16,-1 - 602 601 l 1,0,-1 -253 730 m 1,17,-1 - 253 946 l 1,18,-1 - 246 946 l 2,19,20 - 195 946 195 946 165.5 916 c 128,-1,21 - 136 886 136 886 136 835 c 0,22,23 - 136 730 136 730 246 730 c 2,24,-1 - 253 730 l 1,17,-1 -EndSplineSet -EndChar - -StartChar: uni026D -Encoding: 621 621 559 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 0 - 10 - 10 - 13 - 5 - 14 - 11 - 0 - 8 - 3 - 80 - 89 - 8 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 360 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -314 -115 m 2,0,1 - 315 -196 315 -196 343.5 -229.5 c 128,-1,2 - 372 -263 372 -263 427 -263 c 256,3,4 - 482 -263 482 -263 529 -248 c 1,5,-1 - 529 -410 l 1,6,7 - 460 -425 460 -425 415 -425 c 0,8,9 - 134 -425 134 -425 134 -129 c 2,10,-1 - 134 1484 l 1,11,-1 - 314 1484 l 1,12,-1 - 314 -115 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni026E -Encoding: 622 622 560 -Width: 1171 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 29 - 5 - 5 - 23 - 9 - 6 - 28 - 17 - 16 - 16 - 31 - 0 - 0 - 28 - 9 - 3 - 33 - 32 - 17 - 17 - 13 - 0 - 13 - 19 - 80 - 89 - 13 - 27 - 5 - 30 - 3 - 30 - 80 - 89 - 6 - 27 - 81 - 89 - 6 - 6 - 3 - 15 - 1 - 0 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 690 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1171 1540 basechar 0 -AnchorPoint: "Anchor-20" 1172 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -131 0 m 1,0,-1 - 131 1484 l 1,1,-1 - 311 1484 l 1,2,-1 - 311 1082 l 1,3,-1 - 1067 1082 l 1,4,-1 - 1067 904 l 1,5,-1 - 698 540 l 1,6,7 - 887 516 887 516 995 389 c 128,-1,8 - 1103 262 1103 262 1103 69 c 0,9,10 - 1103 -68 1103 -68 1039.5 -182 c 128,-1,11 - 976 -296 976 -296 860.5 -360.5 c 128,-1,12 - 745 -425 745 -425 599 -425 c 0,13,14 - 411 -425 411 -425 294.5 -349 c 128,-1,15 - 178 -273 178 -273 139 -123 c 1,16,-1 - 316 -102 l 1,17,18 - 371 -284 371 -284 598 -284 c 0,19,20 - 695 -284 695 -284 769 -236.5 c 128,-1,21 - 843 -189 843 -189 882.5 -105.5 c 128,-1,22 - 922 -22 922 -22 922 75 c 0,23,24 - 922 227 922 227 827.5 319 c 128,-1,25 - 733 411 733 411 576 411 c 2,26,-1 - 494 411 l 1,27,-1 - 494 555 l 1,28,-1 - 877 941 l 1,29,-1 - 311 941 l 1,30,-1 - 311 0 l 1,31,-1 - 131 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni026F -Encoding: 623 623 561 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 34 - 31 - 24 - 1 - 40 - 17 - 7 - 7 - 12 - 10 - 10 - 40 - 31 - 3 - 42 - 43 - 24 - 17 - 28 - 41 - 8 - 32 - 15 - 28 - 37 - 80 - 89 - 28 - 22 - 21 - 4 - 80 - 89 - 21 - 22 - 13 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1430 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -940 1082 m 1,0,-1 - 940 396 l 2,1,2 - 940 239 940 239 983 179 c 128,-1,3 - 1026 119 1026 119 1138 119 c 0,4,5 - 1253 119 1253 119 1320 207 c 128,-1,6 - 1387 295 1387 295 1387 455 c 2,7,-1 - 1387 1082 l 1,8,-1 - 1566 1082 l 1,9,-1 - 1566 231 l 2,10,11 - 1566 42 1566 42 1572 0 c 1,12,-1 - 1402 0 l 1,13,14 - 1401 5 1401 5 1400 27 c 128,-1,15 - 1399 49 1399 49 1397.5 77.5 c 128,-1,16 - 1396 106 1396 106 1394 185 c 1,17,-1 - 1391 185 l 1,18,19 - 1333 70 1333 70 1258 25 c 128,-1,20 - 1183 -20 1183 -20 1075 -20 c 0,21,22 - 952 -20 952 -20 880.5 29 c 128,-1,23 - 809 78 809 78 781 185 c 1,24,-1 - 778 185 l 1,25,26 - 722 76 722 76 642.5 28 c 128,-1,27 - 563 -20 563 -20 450 -20 c 0,28,29 - 286 -20 286 -20 211.5 69 c 128,-1,30 - 137 158 137 158 137 361 c 2,31,-1 - 137 1082 l 1,32,-1 - 315 1082 l 1,33,-1 - 315 396 l 2,34,35 - 315 239 315 239 358 179 c 128,-1,36 - 401 119 401 119 513 119 c 0,37,38 - 631 119 631 119 696.5 206.5 c 128,-1,39 - 762 294 762 294 762 455 c 2,40,-1 - 762 1082 l 1,41,-1 - 940 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0270 -Encoding: 624 624 562 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 7 - 11 - 11 - 10 - 1 - 34 - 28 - 25 - 25 - 34 - 10 - 3 - 37 - 36 - 18 - 12 - 22 - 35 - 8 - 26 - 15 - 22 - 31 - 80 - 89 - 22 - 22 - 15 - 4 - 80 - 89 - 15 - 22 - 11 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1430 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 820 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -940 1082 m 1,0,-1 - 940 396 l 2,1,2 - 940 239 940 239 983 179 c 128,-1,3 - 1026 119 1026 119 1138 119 c 0,4,5 - 1253 119 1253 119 1320 207 c 128,-1,6 - 1387 295 1387 295 1387 455 c 2,7,-1 - 1387 1082 l 1,8,-1 - 1566 1082 l 1,9,-1 - 1566 -425 l 1,10,-1 - 1389 -425 l 1,11,-1 - 1389 175 l 1,12,13 - 1334 68 1334 68 1259.5 24 c 128,-1,14 - 1185 -20 1185 -20 1075 -20 c 0,15,16 - 952 -20 952 -20 880.5 29 c 128,-1,17 - 809 78 809 78 781 185 c 1,18,-1 - 778 185 l 1,19,20 - 722 76 722 76 642.5 28 c 128,-1,21 - 563 -20 563 -20 450 -20 c 0,22,23 - 286 -20 286 -20 211.5 69 c 128,-1,24 - 137 158 137 158 137 361 c 2,25,-1 - 137 1082 l 1,26,-1 - 315 1082 l 1,27,-1 - 315 396 l 2,28,29 - 315 239 315 239 358 179 c 128,-1,30 - 401 119 401 119 513 119 c 0,31,32 - 631 119 631 119 696.5 206.5 c 128,-1,33 - 762 294 762 294 762 455 c 2,34,-1 - 762 1082 l 1,35,-1 - 940 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0271 -Encoding: 625 625 563 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 25 - 16 - 16 - 17 - 32 - 7 - 7 - 8 - 49 - 40 - 40 - 45 - 8 - 17 - 4 - 50 - 51 - 42 - 47 - 80 - 89 - 42 - 27 - 36 - 3 - 80 - 89 - 36 - 16 - 32 - 25 - 29 - 17 - 29 - 12 - 80 - 89 - 29 - 16 - 20 - 15 - 8 - 17 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1360 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 850 1200 basechar 0 -AnchorPoint: "Anchor-15" 1560 1260 basechar 0 -AnchorPoint: "Anchor-14" 860 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1393 686 m 2,0,1 - 1393 843 1393 843 1350 903 c 128,-1,2 - 1307 963 1307 963 1195 963 c 0,3,4 - 1077 963 1077 963 1011.5 875.5 c 128,-1,5 - 946 788 946 788 946 627 c 2,6,-1 - 946 0 l 1,7,-1 - 768 0 l 1,8,-1 - 768 686 l 2,9,10 - 768 843 768 843 725 903 c 128,-1,11 - 682 963 682 963 570 963 c 0,12,13 - 455 963 455 963 388 875 c 128,-1,14 - 321 787 321 787 321 627 c 2,15,-1 - 321 0 l 1,16,-1 - 142 0 l 1,17,-1 - 142 851 l 2,18,19 - 142 1040 142 1040 136 1082 c 1,20,-1 - 306 1082 l 1,21,22 - 307 1077 307 1077 308 1055 c 128,-1,23 - 309 1033 309 1033 310.5 1004.5 c 128,-1,24 - 312 976 312 976 314 897 c 1,25,-1 - 317 897 l 1,26,27 - 375 1012 375 1012 450 1057 c 128,-1,28 - 525 1102 525 1102 633 1102 c 0,29,30 - 756 1102 756 1102 827.5 1053 c 128,-1,31 - 899 1004 899 1004 927 897 c 1,32,-1 - 930 897 l 1,33,34 - 986 1006 986 1006 1065.5 1054 c 128,-1,35 - 1145 1102 1145 1102 1258 1102 c 0,36,37 - 1422 1102 1422 1102 1496.5 1013 c 128,-1,38 - 1571 924 1571 924 1571 721 c 2,39,-1 - 1571 -129 l 2,40,41 - 1571 -425 1571 -425 1290 -425 c 0,42,43 - 1239 -425 1239 -425 1154 -409 c 1,44,-1 - 1154 -245 l 1,45,46 - 1204 -263 1204 -263 1273 -263 c 0,47,48 - 1393 -263 1393 -263 1393 -115 c 2,49,-1 - 1393 686 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0272 -Encoding: 626 626 564 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 16 - 15 - 7 - 25 - 25 - 30 - 2 - 34 - 15 - 34 - 36 - 35 - 27 - 32 - 80 - 89 - 27 - 27 - 7 - 11 - 16 - 21 - 11 - 21 - 80 - 89 - 11 - 16 - 2 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 840 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -142 851 m 2,0,1 - 142 1040 142 1040 136 1082 c 1,2,-1 - 306 1082 l 1,3,4 - 307 1077 307 1077 308 1055 c 128,-1,5 - 309 1033 309 1033 310.5 1004.5 c 128,-1,6 - 312 976 312 976 314 897 c 1,7,-1 - 317 897 l 1,8,9 - 379 1009 379 1009 460.5 1055.5 c 128,-1,10 - 542 1102 542 1102 663 1102 c 0,11,12 - 841 1102 841 1102 923.5 1013.5 c 128,-1,13 - 1006 925 1006 925 1006 721 c 2,14,-1 - 1006 0 l 1,15,-1 - 825 0 l 1,16,-1 - 825 686 l 2,17,18 - 825 793 825 793 804 852 c 128,-1,19 - 783 911 783 911 737 937 c 128,-1,20 - 691 963 691 963 602 963 c 0,21,22 - 472 963 472 963 397 874 c 128,-1,23 - 322 785 322 785 322 627 c 2,24,-1 - 322 -129 l 2,25,26 - 322 -425 322 -425 41 -425 c 0,27,28 - -10 -425 -10 -425 -95 -409 c 1,29,-1 - -95 -246 l 1,30,31 - -48 -263 -48 -263 24 -263 c 0,32,33 - 142 -263 142 -263 142 -115 c 2,34,-1 - 142 851 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0273 -Encoding: 627 627 565 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 9 - 0 - 27 - 18 - 18 - 22 - 19 - 0 - 19 - 35 - 4 - 36 - 27 - 31 - 19 - 31 - 14 - 80 - 89 - 31 - 16 - 22 - 15 - 19 - 21 - 7 - 2 - 80 - 89 - 7 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1080 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1006 -115 m 2,0,1 - 1006 -263 1006 -263 1123 -263 c 0,2,3 - 1185 -263 1185 -263 1229 -247 c 1,4,-1 - 1229 -411 l 1,5,6 - 1165 -425 1165 -425 1106 -425 c 0,7,8 - 825 -425 825 -425 825 -129 c 2,9,-1 - 825 686 l 2,10,11 - 825 793 825 793 804 852 c 128,-1,12 - 783 911 783 911 737 937 c 128,-1,13 - 691 963 691 963 602 963 c 0,14,15 - 472 963 472 963 397 874 c 128,-1,16 - 322 785 322 785 322 627 c 2,17,-1 - 322 0 l 1,18,-1 - 142 0 l 1,19,-1 - 142 851 l 2,20,21 - 142 1040 142 1040 136 1082 c 1,22,-1 - 306 1082 l 1,23,24 - 307 1077 307 1077 308 1055 c 128,-1,25 - 309 1033 309 1033 310.5 1004.5 c 128,-1,26 - 312 976 312 976 314 897 c 1,27,-1 - 317 897 l 1,28,29 - 379 1009 379 1009 460.5 1055.5 c 128,-1,30 - 542 1102 542 1102 663 1102 c 0,31,32 - 841 1102 841 1102 923.5 1013.5 c 128,-1,33 - 1006 925 1006 925 1006 721 c 2,34,-1 - 1006 -115 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0274 -Encoding: 628 628 566 -Width: 1132 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 8 - 4 - 4 - 7 - 0 - 14 - 14 - 15 - 15 - 7 - 17 - 18 - 3 - 11 - 15 - 5 - 16 - 15 - 8 - 15 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 860 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1132 1540 basechar 0 -AnchorPoint: "Anchor-20" 1132 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -316 1082 m 1,0,-1 - 781 397 l 2,1,2 - 802 367 802 367 839 293 c 1,3,-1 - 835 418 l 1,4,-1 - 835 1082 l 1,5,-1 - 1005 1082 l 1,6,-1 - 1005 0 l 1,7,-1 - 838 0 l 1,8,-1 - 377 699 l 2,9,10 - 337 757 337 757 304 828 c 1,11,12 - 311 730 311 730 311 665 c 2,13,-1 - 311 0 l 1,14,-1 - 142 0 l 1,15,-1 - 142 1082 l 1,16,-1 - 316 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0275 -Encoding: 629 629 567 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 22 - 14 - 14 - 0 - 21 - 15 - 15 - 6 - 0 - 6 - 26 - 25 - 21 - 15 - 80 - 89 - 15 - 21 - 207 - 21 - 223 - 21 - 3 - 11 - 3 - 21 - 21 - 3 - 8 - 8 - 18 - 80 - 89 - 8 - 16 - 3 - 11 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 900 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 560 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 542 m 0,0,1 - 1053 258 1053 258 928 119 c 128,-1,2 - 803 -20 803 -20 565 -20 c 0,3,4 - 328 -20 328 -20 207 124.5 c 128,-1,5 - 86 269 86 269 86 542 c 0,6,7 - 86 1102 86 1102 571 1102 c 0,8,9 - 819 1102 819 1102 936 965.5 c 128,-1,10 - 1053 829 1053 829 1053 542 c 0,0,1 -563 113 m 0,11,12 - 712 113 712 113 782 200 c 128,-1,13 - 852 287 852 287 862 470 c 1,14,-1 - 277 470 l 1,15,16 - 287 294 287 294 356.5 203.5 c 128,-1,17 - 426 113 426 113 563 113 c 0,11,12 -574 969 m 256,18,19 - 430 969 430 969 359 883 c 128,-1,20 - 288 797 288 797 277 617 c 1,21,-1 - 862 617 l 1,22,23 - 852 797 852 797 785 883 c 128,-1,24 - 718 969 718 969 574 969 c 256,18,19 -EndSplineSet -EndChar - -StartChar: uni0276 -Encoding: 630 630 568 -Width: 1619 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 58 - 19 - 0 - 4 - 21 - 3 - 3 - 22 - 16 - 6 - 28 - 12 - 12 - 6 - 4 - 3 - 35 - 34 - 21 - 2 - 81 - 89 - 15 - 21 - 1 - 11 - 3 - 21 - 21 - 6 - 17 - 17 - 20 - 80 - 89 - 17 - 15 - 16 - 7 - 14 - 9 - 14 - 25 - 80 - 89 - 14 - 16 - 9 - 31 - 80 - 89 - 9 - 21 - 6 - 3 - 80 - 89 - 6 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1397 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1619 1540 basechar 0 -AnchorPoint: "Anchor-20" 1619 -380 basechar 0 -AnchorPoint: "Anchor-18" 1520 1100 basechar 0 -AnchorPoint: "Anchor-16" 860 1540 basechar 0 -AnchorPoint: "Anchor-15" 1540 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1481 625 m 1,0,-1 - 1481 495 l 1,1,-1 - 1040 495 l 1,2,-1 - 1040 133 l 1,3,-1 - 1550 133 l 1,4,-1 - 1550 0 l 1,5,-1 - 869 0 l 1,6,-1 - 869 93 l 1,7,8 - 754 -20 754 -20 565 -20 c 0,9,10 - 328 -20 328 -20 207 124.5 c 128,-1,11 - 86 269 86 269 86 542 c 0,12,13 - 86 1102 86 1102 571 1102 c 0,14,15 - 751 1102 751 1102 869 989 c 1,16,-1 - 869 1082 l 1,17,-1 - 1527 1082 l 1,18,-1 - 1527 945 l 1,19,-1 - 1040 945 l 1,20,-1 - 1040 625 l 1,21,-1 - 1481 625 l 1,0,-1 -864 542 m 0,22,23 - 864 766 864 766 797.5 867.5 c 128,-1,24 - 731 969 731 969 574 969 c 0,25,26 - 416 969 416 969 345.5 865.5 c 128,-1,27 - 275 762 275 762 275 542 c 0,28,29 - 275 328 275 328 344.5 220.5 c 128,-1,30 - 414 113 414 113 563 113 c 0,31,32 - 725 113 725 113 794.5 217 c 128,-1,33 - 864 321 864 321 864 542 c 0,22,23 -EndSplineSet -EndChar - -StartChar: uni0277 -Encoding: 631 631 569 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 7 - 26 - 32 - 1 - 1 - 21 - 15 - 38 - 38 - 21 - 26 - 3 - 42 - 41 - 32 - 22 - 22 - 35 - 23 - 35 - 18 - 80 - 89 - 35 - 22 - 29 - 4 - 80 - 89 - 29 - 22 - 23 - 11 - 80 - 89 - 23 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1170 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1599 1540 basechar 0 -AnchorPoint: "Anchor-20" 1599 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -885 589 m 1,0,-1 - 885 493 l 2,1,2 - 885 298 885 298 941 205 c 128,-1,3 - 997 112 997 112 1111 112 c 0,4,5 - 1230 112 1230 112 1282.5 200 c 128,-1,6 - 1335 288 1335 288 1335 475 c 0,7,8 - 1335 626 1335 626 1269.5 740 c 128,-1,9 - 1204 854 1204 854 1085 909.5 c 128,-1,10 - 966 965 966 965 799 965 c 0,11,12 - 633 965 633 965 514 909.5 c 128,-1,13 - 395 854 395 854 329.5 740 c 128,-1,14 - 264 626 264 626 264 475 c 0,15,16 - 264 288 264 288 316.5 200 c 128,-1,17 - 369 112 369 112 488 112 c 0,18,19 - 602 112 602 112 658 205 c 128,-1,20 - 714 298 714 298 714 493 c 2,21,-1 - 714 589 l 1,22,-1 - 885 589 l 1,0,-1 -799 1102 m 0,23,24 - 1132 1102 1132 1102 1322 935.5 c 128,-1,25 - 1512 769 1512 769 1512 475 c 0,26,27 - 1512 239 1512 239 1411 109.5 c 128,-1,28 - 1310 -20 1310 -20 1126 -20 c 0,29,30 - 997 -20 997 -20 912 43.5 c 128,-1,31 - 827 107 827 107 798 227 c 1,32,33 - 771 105 771 105 686.5 42.5 c 128,-1,34 - 602 -20 602 -20 473 -20 c 0,35,36 - 290 -20 290 -20 188.5 109 c 128,-1,37 - 87 238 87 238 87 475 c 0,38,39 - 87 768 87 768 276 935 c 128,-1,40 - 465 1102 465 1102 799 1102 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni0278 -Encoding: 632 632 570 -Width: 1126 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 16 - 12 - 20 - 9 - 15 - 15 - 26 - 6 - 0 - 23 - 4 - 4 - 0 - 12 - 3 - 31 - 30 - 14 - 20 - 80 - 89 - 14 - 22 - 9 - 19 - 80 - 89 - 9 - 16 - 7 - 0 - 6 - 27 - 80 - 89 - 6 - 16 - 1 - 26 - 80 - 89 - 1 - 22 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 500 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1126 1540 basechar 0 -AnchorPoint: "Anchor-20" 1126 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 560 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -482 -425 m 1,0,-1 - 482 -15 l 1,1,2 - 293 8 293 8 189.5 145.5 c 128,-1,3 - 86 283 86 283 86 542 c 0,4,5 - 86 1047 86 1047 482 1097 c 1,6,-1 - 482 1484 l 1,7,-1 - 646 1484 l 1,8,-1 - 646 1098 l 1,9,10 - 858 1078 858 1078 955.5 939.5 c 128,-1,11 - 1053 801 1053 801 1053 542 c 0,12,13 - 1053 30 1053 30 646 -15 c 1,14,-1 - 646 -425 l 1,15,-1 - 482 -425 l 1,0,-1 -864 542 m 0,16,17 - 864 741 864 741 812 842 c 128,-1,18 - 760 943 760 943 646 963 c 1,19,-1 - 646 120 l 1,20,21 - 759 142 759 142 811.5 245.5 c 128,-1,22 - 864 349 864 349 864 542 c 0,16,17 -275 542 m 0,23,24 - 275 358 275 358 325.5 254 c 128,-1,25 - 376 150 376 150 482 122 c 1,26,-1 - 482 958 l 1,27,28 - 374 932 374 932 324.5 830 c 128,-1,29 - 275 728 275 728 275 542 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni0279 -Encoding: 633 633 571 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 5 - 19 - 19 - 1 - 14 - 1 - 21 - 22 - 7 - 4 - 20 - 15 - 11 - 16 - 83 - 89 - 11 - 22 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 440 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 200 1200 basechar 0 -AnchorPoint: "Anchor-15" 300 1260 basechar 0 -AnchorPoint: "Anchor-14" 320 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -549 1082 m 1,0,-1 - 549 252 l 2,1,2 - 549 132 549 132 555 0 c 1,3,-1 - 385 0 l 1,4,-1 - 380 113 l 1,5,-1 - 377 221 l 1,6,-1 - 373 221 l 1,7,8 - 339 117 339 117 307.5 70 c 128,-1,9 - 276 23 276 23 230.5 1.5 c 128,-1,10 - 185 -20 185 -20 116 -20 c 0,11,12 - 80 -20 80 -20 43 -10 c 1,13,-1 - 43 155 l 1,14,15 - 79 145 79 145 139 145 c 0,16,17 - 251 145 251 145 310 241.5 c 128,-1,18 - 369 338 369 338 369 518 c 2,19,-1 - 369 1082 l 1,20,-1 - 549 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni027A -Encoding: 634 634 572 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 5 - 19 - 19 - 1 - 14 - 1 - 21 - 22 - 7 - 4 - 20 - 0 - 11 - 16 - 83 - 89 - 11 - 22 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 440 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 200 1200 basechar 0 -AnchorPoint: "Anchor-15" 300 1260 basechar 0 -AnchorPoint: "Anchor-14" 320 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -549 1483 m 1,0,-1 - 549 252 l 2,1,2 - 549 132 549 132 555 0 c 1,3,-1 - 385 0 l 1,4,-1 - 380 113 l 1,5,-1 - 377 221 l 1,6,-1 - 373 221 l 1,7,8 - 339 117 339 117 307.5 70 c 128,-1,9 - 276 23 276 23 230.5 1.5 c 128,-1,10 - 185 -20 185 -20 116 -20 c 0,11,12 - 80 -20 80 -20 43 -10 c 1,13,-1 - 43 155 l 1,14,15 - 79 145 79 145 139 145 c 0,16,17 - 251 145 251 145 310 241.5 c 128,-1,18 - 369 338 369 338 369 518 c 2,19,-1 - 369 1483 l 1,20,-1 - 549 1483 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni027B -Encoding: 635 635 573 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 23 - 11 - 11 - 1 - 1 - 17 - 25 - 6 - 26 - 12 - 15 - 24 - 15 - 15 - 20 - 83 - 89 - 15 - 22 - 9 - 4 - 83 - 89 - 9 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 460 1200 basechar 0 -AnchorPoint: "Anchor-15" 560 1260 basechar 0 -AnchorPoint: "Anchor-14" 320 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -549 1082 m 1,0,-1 - 549 -120 l 2,1,2 - 549 -201 549 -201 577 -234.5 c 128,-1,3 - 605 -268 605 -268 660 -268 c 0,4,5 - 711 -268 711 -268 758 -254 c 1,6,-1 - 758 -414 l 1,7,8 - 699 -425 699 -425 628 -425 c 0,9,10 - 374 -425 374 -425 374 -129 c 2,11,-1 - 374 192 l 1,12,13 - 336 73 336 73 277 26.5 c 128,-1,14 - 218 -20 218 -20 116 -20 c 0,15,16 - 80 -20 80 -20 43 -10 c 1,17,-1 - 43 155 l 1,18,19 - 79 145 79 145 139 145 c 0,20,21 - 251 145 251 145 310 241.5 c 128,-1,22 - 369 338 369 338 369 518 c 2,23,-1 - 369 1082 l 1,24,-1 - 549 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni027C -Encoding: 636 636 574 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 6 - 19 - 19 - 1 - 0 - 0 - 12 - 20 - 21 - 10 - 15 - 83 - 89 - 10 - 16 - 6 - 3 - 15 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 180 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 400 1200 basechar 0 -AnchorPoint: "Anchor-15" 600 1260 basechar 0 -AnchorPoint: "Anchor-14" 240 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -142 -425 m 1,0,-1 - 142 830 l 2,1,2 - 142 944 142 944 136 1082 c 1,3,-1 - 306 1082 l 1,4,5 - 314 898 314 898 314 861 c 1,6,-1 - 318 861 l 1,7,8 - 361 1000 361 1000 417 1051 c 128,-1,9 - 473 1102 473 1102 575 1102 c 0,10,11 - 611 1102 611 1102 648 1092 c 1,12,-1 - 648 927 l 1,13,14 - 612 937 612 937 552 937 c 0,15,16 - 440 937 440 937 381 840.5 c 128,-1,17 - 322 744 322 744 322 564 c 2,18,-1 - 322 -425 l 1,19,-1 - 142 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni027D -Encoding: 637 637 575 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 5 - 18 - 18 - 0 - 29 - 29 - 24 - 11 - 3 - 31 - 30 - 5 - 27 - 2 - 27 - 21 - 83 - 89 - 27 - 27 - 9 - 14 - 83 - 89 - 9 - 16 - 2 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 385 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -142 830 m 2,0,1 - 142 944 142 944 136 1082 c 1,2,-1 - 306 1082 l 1,3,4 - 314 898 314 898 314 861 c 1,5,-1 - 318 861 l 1,6,7 - 361 1000 361 1000 417 1051 c 128,-1,8 - 473 1102 473 1102 575 1102 c 0,9,10 - 611 1102 611 1102 648 1092 c 1,11,-1 - 648 927 l 1,12,13 - 612 937 612 937 552 937 c 0,14,15 - 440 937 440 937 381 840.5 c 128,-1,16 - 322 744 322 744 322 564 c 2,17,-1 - 322 -115 l 2,18,19 - 322 -196 322 -196 350 -229.5 c 128,-1,20 - 378 -263 378 -263 433 -263 c 0,21,22 - 487 -263 487 -263 530 -250 c 1,23,-1 - 530 -414 l 1,24,-1 - 496 -419 l 2,25,26 - 465 -425 465 -425 419 -425 c 0,27,28 - 142 -425 142 -425 142 -129 c 2,29,-1 - 142 830 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni027E -Encoding: 638 638 576 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 14 - 0 - 7 - 0 - 16 - 15 - 5 - 10 - 83 - 89 - 5 - 16 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -142 0 m 1,0,-1 - 142 686 l 2,1,2 - 142 814 142 814 188 907 c 128,-1,3 - 234 1000 234 1000 329 1051 c 128,-1,4 - 424 1102 424 1102 552 1102 c 0,5,6 - 611 1102 611 1102 648 1092 c 1,7,-1 - 648 927 l 1,8,9 - 612 937 612 937 552 937 c 0,10,11 - 427 937 427 937 372.5 866.5 c 128,-1,12 - 318 796 318 796 318 629 c 2,13,-1 - 318 0 l 1,14,-1 - 142 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni027F -Encoding: 639 639 577 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 0 - 14 - 14 - 6 - 16 - 15 - 9 - 4 - 83 - 89 - 9 - 16 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 385 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 420 1200 basechar 0 -AnchorPoint: "Anchor-15" 560 1260 basechar 0 -AnchorPoint: "Anchor-14" 450 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -358 -425 m 1,0,-1 - 358 600 l 2,1,2 - 358 775 358 775 303 856 c 128,-1,3 - 248 937 248 937 128 937 c 0,4,5 - 68 937 68 937 32 927 c 1,6,-1 - 32 1092 l 1,7,8 - 69 1102 69 1102 128 1102 c 0,9,10 - 256 1102 256 1102 351 1051 c 128,-1,11 - 446 1000 446 1000 492 907 c 128,-1,12 - 538 814 538 814 538 686 c 2,13,-1 - 538 -425 l 1,14,-1 - 358 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0280 -Encoding: 640 640 578 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 11 - 10 - 9 - 12 - 6 - 15 - 15 - 0 - 0 - 1 - 18 - 6 - 10 - 6 - 1 - 3 - 22 - 23 - 9 - 13 - 15 - 13 - 80 - 89 - 15 - 15 - 1 - 2 - 2 - 14 - 80 - 89 - 2 - 15 - 11 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 869 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1109 1540 basechar 0 -AnchorPoint: "Anchor-20" 1109 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -322 0 m 1,0,-1 - 142 0 l 1,1,-1 - 142 1082 l 1,2,-1 - 604 1082 l 2,3,4 - 788 1082 788 1082 896 1000 c 128,-1,5 - 1004 918 1004 918 1004 773 c 0,6,7 - 1004 644 1004 644 929.5 559 c 128,-1,8 - 855 474 855 474 717 449 c 1,9,-1 - 1072 0 l 1,10,-1 - 854 0 l 1,11,-1 - 522 439 l 1,12,-1 - 322 439 l 1,13,-1 - 322 0 l 1,0,-1 -322 945 m 1,14,-1 - 322 575 l 1,15,-1 - 596 575 l 2,16,17 - 815 575 815 575 815 762 c 0,18,19 - 815 854 815 854 757 899.5 c 128,-1,20 - 699 945 699 945 592 945 c 2,21,-1 - 322 945 l 1,14,-1 -EndSplineSet -EndChar - -StartChar: uni0281 -Encoding: 641 641 579 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 1 - 4 - 0 - 2 - 3 - 3 - 17 - 7 - 0 - 21 - 21 - 11 - 7 - 11 - 23 - 22 - 0 - 20 - 80 - 89 - 4 - 0 - 0 - 11 - 2 - 12 - 15 - 11 - 21 - 80 - 89 - 11 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 620 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1109 1540 basechar 0 -AnchorPoint: "Anchor-20" 1109 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -322 643 m 1,0,-1 - 522 643 l 1,1,-1 - 854 1082 l 1,2,-1 - 1072 1082 l 1,3,-1 - 717 633 l 1,4,5 - 855 608 855 608 929.5 522.5 c 128,-1,6 - 1004 437 1004 437 1004 309 c 0,7,8 - 1004 164 1004 164 895.5 82 c 128,-1,9 - 787 0 787 0 604 0 c 2,10,-1 - 142 0 l 1,11,-1 - 142 1082 l 1,12,-1 - 322 1082 l 1,13,-1 - 322 643 l 1,0,-1 -592 137 m 2,14,15 - 700 137 700 137 757.5 182.5 c 128,-1,16 - 815 228 815 228 815 320 c 0,17,18 - 815 507 815 507 596 507 c 2,19,-1 - 322 507 l 1,20,-1 - 322 137 l 1,21,-1 - 592 137 l 2,14,15 -EndSplineSet -EndChar - -StartChar: uni0282 -Encoding: 642 642 580 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 0 - 42 - 42 - 52 - 27 - 14 - 14 - 52 - 21 - 20 - 20 - 6 - 36 - 36 - 46 - 52 - 3 - 54 - 55 - 50 - 44 - 80 - 89 - 50 - 27 - 41 - 6 - 27 - 3 - 17 - 39 - 39 - 3 - 80 - 89 - 0 - 39 - 22 - 17 - 24 - 80 - 89 - 21 - 17 - 16 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 300 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 560 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -216 285 m 1,0,1 - 239 198 239 198 311 157.5 c 128,-1,2 - 383 117 383 117 511 117 c 0,3,4 - 648 117 648 117 711.5 159 c 128,-1,5 - 775 201 775 201 775 285 c 0,6,7 - 775 349 775 349 731 389 c 128,-1,8 - 687 429 687 429 589 455 c 2,9,-1 - 460 489 l 2,10,11 - 305 529 305 529 239.5 567.5 c 128,-1,12 - 174 606 174 606 137 661 c 128,-1,13 - 100 716 100 716 100 796 c 0,14,15 - 100 944 100 944 205.5 1021.5 c 128,-1,16 - 311 1099 311 1099 513 1099 c 0,17,18 - 692 1099 692 1099 797.5 1036 c 128,-1,19 - 903 973 903 973 931 834 c 1,20,-1 - 769 814 l 1,21,22 - 754 886 754 886 688.5 924.5 c 128,-1,23 - 623 963 623 963 513 963 c 0,24,25 - 391 963 391 963 333 926 c 128,-1,26 - 275 889 275 889 275 814 c 0,27,28 - 275 768 275 768 299 738 c 128,-1,29 - 323 708 323 708 370 687 c 128,-1,30 - 417 666 417 666 568 629 c 0,31,32 - 711 593 711 593 774 562.5 c 128,-1,33 - 837 532 837 532 873.5 495 c 128,-1,34 - 910 458 910 458 930 409.5 c 128,-1,35 - 950 361 950 361 950 299 c 0,36,37 - 950 146 950 146 834.5 63 c 128,-1,38 - 719 -20 719 -20 511 -20 c 0,39,40 - 338 -20 338 -20 227 39 c 1,41,-1 - 227 -120 l 2,42,43 - 227 -263 227 -263 349 -263 c 0,44,45 - 406 -263 406 -263 448 -251 c 1,46,-1 - 448 -413 l 1,47,-1 - 414 -418 l 2,48,49 - 378 -425 378 -425 335 -425 c 0,50,51 - 57 -425 57 -425 57 -129 c 2,52,-1 - 57 254 l 1,53,-1 - 216 285 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0283 -Encoding: 643 643 581 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 22 - 9 - 9 - 25 - 15 - 26 - 2 - 25 - 13 - 18 - 83 - 89 - 13 - 0 - 0 - 5 - 83 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 44 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 420 1580 basechar 0 -AnchorPoint: "Anchor-15" 600 1540 basechar 0 -AnchorPoint: "Anchor-14" 129 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -16 -425 m 0,0,1 - -63 -425 -63 -425 -118 -406 c 1,2,-1 - -118 -246 l 1,3,4 - -58 -270 -58 -270 -1 -270 c 0,5,6 - 53 -270 53 -270 83.5 -248 c 128,-1,7 - 114 -226 114 -226 127.5 -183.5 c 128,-1,8 - 141 -141 141 -141 141 -37 c 2,9,-1 - 141 1130 l 2,10,11 - 141 1303 141 1303 216.5 1393.5 c 128,-1,12 - 292 1484 292 1484 439 1484 c 0,13,14 - 546 1484 546 1484 590 1466 c 1,15,-1 - 590 1299 l 1,16,17 - 541 1326 541 1326 475 1326 c 0,18,19 - 398 1326 398 1326 360.5 1273.5 c 128,-1,20 - 323 1221 323 1221 323 1093 c 2,21,-1 - 323 -70 l 2,22,23 - 323 -250 323 -250 247 -337.5 c 128,-1,24 - 171 -425 171 -425 16 -425 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0284 -Encoding: 644 644 582 -Width: 532 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 17 - 14 - 14 - 31 - 1 - 0 - 1 - 33 - 15 - 7 - 34 - 24 - 33 - 32 - 0 - 80 - 89 - 32 - 21 - 21 - 26 - 83 - 89 - 21 - 27 - 17 - 14 - 80 - 89 - 17 - 21 - 5 - 10 - 83 - 89 - 5 - 0 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 99 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 532 1540 basechar 0 -AnchorPoint: "Anchor-20" 532 -380 basechar 0 -AnchorPoint: "Anchor-16" 480 1580 basechar 0 -AnchorPoint: "Anchor-15" 680 1540 basechar 0 -AnchorPoint: "Anchor-14" 173 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -5 140 m 1,0,-1 - 198 140 l 1,1,-1 - 198 1130 l 2,2,3 - 198 1308 198 1308 274 1396 c 128,-1,4 - 350 1484 350 1484 508 1484 c 0,5,6 - 597 1484 597 1484 647 1466 c 1,7,-1 - 647 1299 l 1,8,9 - 598 1326 598 1326 532 1326 c 0,10,11 - 455 1326 455 1326 417.5 1273.5 c 128,-1,12 - 380 1221 380 1221 380 1093 c 2,13,-1 - 380 140 l 1,14,-1 - 550 140 l 1,15,-1 - 550 0 l 1,16,-1 - 380 0 l 1,17,-1 - 380 -70 l 2,18,19 - 380 -250 380 -250 304 -337.5 c 128,-1,20 - 228 -425 228 -425 73 -425 c 0,21,22 - -6 -425 -6 -425 -61 -406 c 1,23,-1 - -61 -246 l 1,24,25 - -1 -270 -1 -270 56 -270 c 0,26,27 - 110 -270 110 -270 140.5 -248 c 128,-1,28 - 171 -226 171 -226 184.5 -183.5 c 128,-1,29 - 198 -141 198 -141 198 -37 c 2,30,-1 - 198 0 l 1,31,-1 - 5 0 l 1,32,-1 - 5 140 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0285 -Encoding: 645 645 583 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 16 - 3 - 3 - 25 - 22 - 26 - 9 - 25 - 12 - 7 - 83 - 89 - 12 - 16 - 0 - 20 - 83 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 400 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 520 1580 basechar 0 -AnchorPoint: "Anchor-15" 1000 1260 basechar 0 -AnchorPoint: "Anchor-14" 400 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -436 -425 m 0,0,1 - 283 -425 283 -425 211 -339 c 128,-1,2 - 139 -253 139 -253 139 -70 c 2,3,-1 - 139 711 l 2,4,5 - 139 842 139 842 101.5 893 c 128,-1,6 - 64 944 64 944 -11 944 c 0,7,8 - -77 944 -77 944 -126 917 c 1,9,-1 - -126 1084 l 1,10,11 - -82 1102 -82 1102 5 1102 c 0,12,13 - 167 1102 167 1102 244 1017.5 c 128,-1,14 - 321 933 321 933 321 759 c 2,15,-1 - 321 -37 l 2,16,17 - 321 -139 321 -139 333 -182.5 c 128,-1,18 - 345 -226 345 -226 373 -248 c 128,-1,19 - 401 -270 401 -270 453 -270 c 0,20,21 - 510 -270 510 -270 570 -246 c 1,22,-1 - 570 -406 l 1,23,24 - 515 -425 515 -425 436 -425 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0286 -Encoding: 646 646 584 -Width: 715 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 28 - 8 - 2 - 25 - 25 - 34 - 13 - 8 - 13 - 39 - 27 - 19 - 40 - 2 - 34 - 25 - 13 - 4 - 11 - 0 - 11 - 36 - 80 - 89 - 11 - 11 - 4 - 16 - 16 - 21 - 83 - 89 - 16 - 0 - 0 - 4 - 4 - 31 - 80 - 89 - 4 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 275 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 715 1540 basechar 0 -AnchorPoint: "Anchor-20" 715 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1580 basechar 0 -AnchorPoint: "Anchor-15" 880 1540 basechar 0 -AnchorPoint: "Anchor-14" 327 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -695 -426 m 1,0,-1 - 625 -338 l 1,1,-1 - 541 -237 l 1,2,3 - 460 -425 460 -425 269 -425 c 0,4,5 - 196 -425 196 -425 134.5 -394.5 c 128,-1,6 - 73 -364 73 -364 36.5 -307.5 c 128,-1,7 - 0 -251 0 -251 0 -167 c 0,8,9 - 0 -49 0 -49 69.5 19 c 128,-1,10 - 139 87 139 87 268 87 c 0,11,12 - 332 87 332 87 400 63 c 1,13,-1 - 400 1130 l 2,14,15 - 400 1484 400 1484 692 1484 c 0,16,17 - 799 1484 799 1484 843 1466 c 1,18,-1 - 843 1299 l 1,19,20 - 794 1326 794 1326 728 1326 c 0,21,22 - 651 1326 651 1326 613.5 1273.5 c 128,-1,23 - 576 1221 576 1221 576 1093 c 2,24,-1 - 576 -44 l 1,25,26 - 684 -140 684 -140 805 -309 c 1,27,-1 - 695 -426 l 1,0,-1 -155 -171 m 0,28,29 - 155 -227 155 -227 187.5 -254 c 128,-1,30 - 220 -281 220 -281 267 -281 c 0,31,32 - 329 -281 329 -281 365.5 -233.5 c 128,-1,33 - 402 -186 402 -186 402 -107 c 1,34,35 - 324 -58 324 -58 267 -58 c 0,36,37 - 209 -58 209 -58 182 -90.5 c 128,-1,38 - 155 -123 155 -123 155 -171 c 0,28,29 -EndSplineSet -EndChar - -StartChar: uni0287 -Encoding: 647 647 585 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 5 - 8 - 8 - 14 - 11 - 20 - 13 - 11 - 3 - 21 - 6 - 22 - 5 - 8 - 81 - 89 - 5 - 5 - 14 - 14 - 11 - 81 - 89 - 14 - 14 - 2 - 10 - 21 - 2 - 18 - 80 - 89 - 2 - 0 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 275 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 320 1580 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 327 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -31 1405 m 1,0,1 - 120 1429 120 1429 213 1429 c 0,2,3 - 429 1429 429 1429 429 1184 c 2,4,-1 - 429 372 l 1,5,-1 - 554 372 l 1,6,-1 - 554 241 l 1,7,-1 - 422 241 l 1,8,-1 - 369 -1 l 1,9,-1 - 249 -1 l 1,10,-1 - 249 241 l 1,11,-1 - 49 241 l 1,12,-1 - 49 372 l 1,13,-1 - 249 372 l 1,14,-1 - 249 1145 l 2,15,16 - 249 1223 249 1223 223.5 1254.5 c 128,-1,17 - 198 1286 198 1286 135 1286 c 0,18,19 - 99 1286 99 1286 31 1272 c 1,20,-1 - 31 1405 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0288 -Encoding: 648 648 586 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 11 - 15 - 15 - 8 - 4 - 6 - 4 - 13 - 20 - 4 - 22 - 21 - 14 - 6 - 7 - 6 - 81 - 89 - 11 - 9 - 7 - 15 - 2 - 18 - 80 - 89 - 2 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MDRP[rnd,white] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 363 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 393 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -554 -401 m 1,0,1 - 465 -425 465 -425 372 -425 c 0,2,3 - 156 -425 156 -425 156 -180 c 2,4,-1 - 156 951 l 1,5,-1 - 31 951 l 1,6,-1 - 31 1082 l 1,7,-1 - 163 1082 l 1,8,-1 - 216 1324 l 1,9,-1 - 336 1324 l 1,10,-1 - 336 1082 l 1,11,-1 - 536 1082 l 1,12,-1 - 536 951 l 1,13,-1 - 336 951 l 1,14,-1 - 336 -136 l 2,15,16 - 336 -214 336 -214 361.5 -245.5 c 128,-1,17 - 387 -277 387 -277 450 -277 c 0,18,19 - 486 -277 486 -277 554 -263 c 1,20,-1 - 554 -401 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0289 -Encoding: 649 649 587 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 16 - 32 - 32 - 9 - 2 - 5 - 5 - 9 - 1 - 35 - 35 - 27 - 23 - 9 - 23 - 40 - 39 - 34 - 8 - 25 - 26 - 25 - 80 - 89 - 5 - 1 - 16 - 26 - 26 - 20 - 3 - 28 - 15 - 20 - 29 - 80 - 89 - 20 - 22 - 12 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -IP -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-18" 990 1100 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 560 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -314 1082 m 1,0,-1 - 314 617 l 1,1,-1 - 817 617 l 1,2,-1 - 817 1082 l 1,3,-1 - 997 1082 l 1,4,-1 - 997 617 l 1,5,-1 - 1105 617 l 1,6,-1 - 1105 484 l 1,7,-1 - 997 484 l 1,8,-1 - 997 231 l 2,9,10 - 997 42 997 42 1003 0 c 1,11,-1 - 833 0 l 1,12,13 - 832 5 832 5 831 27 c 128,-1,14 - 830 49 830 49 828.5 77.5 c 128,-1,15 - 827 106 827 106 825 185 c 1,16,-1 - 822 185 l 1,17,18 - 760 73 760 73 678.5 26.5 c 128,-1,19 - 597 -20 597 -20 476 -20 c 0,20,21 - 298 -20 298 -20 215.5 68.5 c 128,-1,22 - 133 157 133 157 133 361 c 2,23,-1 - 133 484 l 1,24,-1 - 26 484 l 1,25,-1 - 26 617 l 1,26,-1 - 133 617 l 1,27,-1 - 133 1082 l 1,28,-1 - 314 1082 l 1,0,-1 -537 119 m 0,29,30 - 667 119 667 119 742 212 c 128,-1,31 - 817 305 817 305 817 463 c 2,32,-1 - 817 484 l 1,33,-1 - 314 484 l 1,34,-1 - 314 396 l 2,35,36 - 314 289 314 289 335 230 c 128,-1,37 - 356 171 356 171 402 145 c 128,-1,38 - 448 119 448 119 537 119 c 0,29,30 -EndSplineSet -EndChar - -StartChar: uni028A -Encoding: 650 650 588 -Width: 1164 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 36 - 27 - 17 - 8 - 40 - 31 - 8 - 31 - 45 - 21 - 12 - 3 - 45 - 3 - 49 - 48 - 34 - 37 - 80 - 89 - 34 - 15 - 27 - 21 - 40 - 8 - 4 - 13 - 0 - 13 - 12 - 80 - 89 - 13 - 15 - 0 - 24 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 671 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1164 1540 basechar 0 -AnchorPoint: "Anchor-20" 1164 -380 basechar 0 -AnchorPoint: "Anchor-18" 1068 1100 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -581 -20 m 0,0,1 - 356 -20 356 -20 220 108 c 128,-1,2 - 84 236 84 236 84 448 c 0,3,4 - 84 588 84 588 168 706 c 0,5,6 - 219 778 219 778 235.5 810 c 128,-1,7 - 252 842 252 842 252 870 c 0,8,9 - 252 901 252 901 230.5 922 c 128,-1,10 - 209 943 209 943 166 943 c 2,11,-1 - 84 943 l 1,12,-1 - 84 1082 l 1,13,-1 - 208 1082 l 2,14,15 - 297 1082 297 1082 351.5 1030.5 c 128,-1,16 - 406 979 406 979 406 892 c 0,17,18 - 406 797 406 797 339 681 c 0,19,20 - 271 565 271 565 271 472 c 0,21,22 - 271 313 271 313 354.5 218 c 128,-1,23 - 438 123 438 123 581 123 c 0,24,25 - 723 123 723 123 807 218 c 128,-1,26 - 891 313 891 313 891 472 c 0,27,28 - 891 565 891 565 824 681 c 0,29,30 - 756 797 756 797 756 892 c 0,31,32 - 756 980 756 980 811 1031 c 128,-1,33 - 866 1082 866 1082 954 1082 c 2,34,-1 - 1078 1082 l 1,35,-1 - 1078 943 l 1,36,-1 - 996 943 l 2,37,38 - 953 943 953 943 931.5 922 c 128,-1,39 - 910 901 910 901 910 870 c 0,40,41 - 910 841 910 841 926 810 c 128,-1,42 - 942 779 942 779 994 706 c 0,43,44 - 1078 588 1078 588 1078 448 c 0,45,46 - 1078 239 1078 239 943 109.5 c 128,-1,47 - 808 -20 808 -20 581 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni028B -Encoding: 651 651 589 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 9 - 6 - 17 - 14 - 14 - 0 - 6 - 0 - 21 - 22 - 17 - 7 - 15 - 3 - 12 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 561 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1120 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 560 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -997 571 m 0,0,1 - 997 293 997 293 880 136.5 c 128,-1,2 - 763 -20 763 -20 545 -20 c 0,3,4 - 330 -20 330 -20 231.5 85 c 128,-1,5 - 133 190 133 190 133 419 c 2,6,-1 - 133 1082 l 1,7,-1 - 314 1082 l 1,8,-1 - 314 413 l 2,9,10 - 314 267 314 267 370 193 c 128,-1,11 - 426 119 426 119 553 119 c 0,12,13 - 812 119 812 119 812 567 c 0,14,15 - 812 706 812 706 779.5 845.5 c 128,-1,16 - 747 985 747 985 698 1082 c 1,17,-1 - 886 1082 l 1,18,19 - 939 964 939 964 968 826 c 128,-1,20 - 997 688 997 688 997 571 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni028C -Encoding: 652 652 590 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 3 - 2 - 1 - 0 - 5 - 8 - 9 - 9 - 5 - 2 - 3 - 11 - 10 - 5 - 3 - 3 - 9 - 21 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP1 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 858 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-18" 625 1100 basechar 0 -AnchorPoint: "Anchor-16" 420 1580 basechar 0 -AnchorPoint: "Anchor-15" 600 1540 basechar 0 -AnchorPoint: "Anchor-14" 520 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -411 1082 m 1,0,-1 - 624 1082 l 1,1,-1 - 1017 0 l 1,2,-1 - 825 0 l 1,3,-1 - 570 758 l 1,4,-1 - 518 941 l 1,5,-1 - 483 824 l 1,6,-1 - 444 706 l 1,7,-1 - 198 0 l 1,8,-1 - 7 0 l 1,9,-1 - 411 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni028D -Encoding: 653 653 591 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 10 - 9 - 23 - 24 - 24 - 4 - 9 - 3 - 26 - 25 - 10 - 24 - 21 - 14 - 20 - 4 - 3 - 17 - 21 - 7 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SLOOP -IP -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1310 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 720 1200 basechar 0 -AnchorPoint: "Anchor-15" 1260 1260 basechar 0 -AnchorPoint: "Anchor-14" 723 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -304 1082 m 1,0,-1 - 513 1082 l 1,1,-1 - 688 391 l 2,2,3 - 714 288 714 288 740 148 c 1,4,-1 - 759 241 l 1,5,-1 - 794 395 l 1,6,-1 - 970 1082 l 1,7,-1 - 1178 1082 l 1,8,-1 - 1473 0 l 1,9,-1 - 1295 0 l 1,10,-1 - 1120 714 l 2,11,12 - 1111 749 1111 749 1095.5 825 c 128,-1,13 - 1080 901 1080 901 1077 932 c 1,14,-1 - 1030 722 l 1,15,-1 - 836 0 l 1,16,-1 - 643 0 l 1,17,-1 - 452 725 l 2,18,19 - 409 898 409 898 406 932 c 1,20,-1 - 399 894 l 1,21,-1 - 361 717 l 1,22,-1 - 182 0 l 1,23,-1 - 6 0 l 1,24,-1 - 304 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni028E -Encoding: 654 654 592 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 10 - 9 - 16 - 17 - 17 - 9 - 14 - 2 - 4 - 23 - 22 - 14 - 0 - 10 - 17 - 21 - 0 - 5 - 80 - 89 - 0 - 1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 847 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1580 basechar 0 -AnchorPoint: "Anchor-15" 980 1540 basechar 0 -AnchorPoint: "Anchor-14" 492 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -834 1507 m 0,0,1 - 908 1507 908 1507 958 1496 c 1,2,-1 - 958 1361 l 1,3,4 - 920 1367 920 1367 874 1367 c 0,5,6 - 706 1367 706 1367 608 1120 c 2,7,-1 - 591 1077 l 1,8,-1 - 1010 0 l 1,9,-1 - 818 0 l 1,10,-1 - 598 598 l 2,11,12 - 578 652 578 652 542 760 c 128,-1,13 - 506 868 506 868 502 886 c 1,14,-1 - 434 689 l 1,15,-1 - 205 0 l 1,16,-1 - 15 0 l 1,17,-1 - 421 1082 l 2,18,19 - 485 1251 485 1251 542 1336 c 128,-1,20 - 599 1421 599 1421 670.5 1464 c 128,-1,21 - 742 1507 742 1507 834 1507 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni028F -Encoding: 655 655 593 -Width: 1064 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 6 - 8 - 0 - 3 - 2 - 2 - 0 - 6 - 3 - 10 - 9 - 4 - 5 - 2 - 15 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 462 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1064 1540 basechar 0 -AnchorPoint: "Anchor-20" 1064 -380 basechar 0 -AnchorPoint: "Anchor-16" 530 1200 basechar 0 -AnchorPoint: "Anchor-15" 1020 1260 basechar 0 -AnchorPoint: "Anchor-14" 525 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -436 0 m 1,0,-1 - 436 440 l 1,1,-1 - 27 1082 l 1,2,-1 - 229 1082 l 1,3,-1 - 529 588 l 1,4,-1 - 838 1082 l 1,5,-1 - 1037 1082 l 1,6,-1 - 616 437 l 1,7,-1 - 616 0 l 1,8,-1 - 436 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0290 -Encoding: 656 656 594 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 10 - 0 - 14 - 18 - 19 - 12 - 12 - 15 - 18 - 0 - 4 - 21 - 5 - 22 - 16 - 15 - 80 - 89 - 16 - 15 - 12 - 19 - 80 - 89 - 12 - 21 - 8 - 3 - 80 - 89 - 8 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 979 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 492 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -950 -115 m 2,0,1 - 950 -196 950 -196 971.5 -229.5 c 128,-1,2 - 993 -263 993 -263 1048 -263 c 0,3,4 - 1101 -263 1101 -263 1138 -252 c 1,5,-1 - 1138 -413 l 1,6,7 - 1071 -425 1071 -425 1013 -425 c 0,8,9 - 773 -425 773 -425 773 -129 c 2,10,-1 - 773 0 l 1,11,-1 - 49 0 l 1,12,-1 - 49 137 l 1,13,-1 - 710 943 l 1,14,-1 - 89 943 l 1,15,-1 - 89 1082 l 1,16,-1 - 913 1082 l 1,17,-1 - 913 945 l 1,18,-1 - 251 139 l 1,19,-1 - 950 139 l 1,20,-1 - 950 -115 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0291 -Encoding: 657 657 595 -Width: 1108 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 47 - 10 - 14 - 26 - 0 - 14 - 0 - 22 - 30 - 30 - 6 - 17 - 21 - 22 - 15 - 15 - 18 - 21 - 6 - 4 - 34 - 33 - 21 - 18 - 19 - 18 - 80 - 89 - 3 - 23 - 80 - 89 - 3 - 3 - 15 - 19 - 15 - 26 - 16 - 22 - 15 - 22 - 80 - 89 - 12 - 10 - 15 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[rnd,grey] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 792 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1108 1540 basechar 0 -AnchorPoint: "Anchor-20" 1108 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 525 -300 basechar 0 -LayerCount: 2 -Fore -SplineSet -424 139 m 1,0,1 - 525 309 525 309 619.5 388 c 128,-1,2 - 714 467 714 467 811 467 c 0,3,4 - 929 467 929 467 997 405.5 c 128,-1,5 - 1065 344 1065 344 1065 241 c 0,6,7 - 1065 121 1065 121 995 60.5 c 128,-1,8 - 925 0 925 0 773 0 c 2,9,-1 - 520 0 l 1,10,11 - 472 -94 472 -94 438 -178 c 1,12,-1 - 299 -117 l 1,13,-1 - 354 0 l 1,14,-1 - 49 0 l 1,15,-1 - 49 137 l 1,16,-1 - 710 943 l 1,17,-1 - 89 943 l 1,18,-1 - 89 1082 l 1,19,-1 - 913 1082 l 1,20,-1 - 913 945 l 1,21,-1 - 251 139 l 1,22,-1 - 424 139 l 1,0,1 -809 322 m 0,23,24 - 762 322 762 322 712 281.5 c 128,-1,25 - 662 241 662 241 592 139 c 1,26,-1 - 764 139 l 2,27,28 - 841 139 841 139 876 161 c 128,-1,29 - 911 183 911 183 911 238 c 0,30,31 - 911 277 911 277 884 299.5 c 128,-1,32 - 857 322 857 322 809 322 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni0292 -Encoding: 658 658 596 -Width: 1116 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 3 - 24 - 24 - 27 - 26 - 2 - 2 - 20 - 6 - 13 - 27 - 6 - 3 - 29 - 28 - 25 - 3 - 3 - 24 - 80 - 89 - 3 - 3 - 10 - 0 - 10 - 17 - 80 - 89 - 14 - 14 - 10 - 27 - 2 - 27 - 0 - 27 - 80 - 89 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 590 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1116 1540 basechar 0 -AnchorPoint: "Anchor-20" 1116 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -116 1082 m 1,0,-1 - 999 1082 l 1,1,-1 - 999 904 l 1,2,-1 - 616 544 l 1,3,4 - 812 519 812 519 923.5 393.5 c 128,-1,5 - 1035 268 1035 268 1035 69 c 0,6,7 - 1035 -70 1035 -70 976 -184 c 128,-1,8 - 917 -298 917 -298 809 -361.5 c 128,-1,9 - 701 -425 701 -425 561 -425 c 0,10,11 - 345 -425 345 -425 218 -330 c 128,-1,12 - 91 -235 91 -235 68 -48 c 1,13,-1 - 246 -36 l 1,14,15 - 265 -169 265 -169 342 -228.5 c 128,-1,16 - 419 -288 419 -288 555 -288 c 0,17,18 - 692 -288 692 -288 773 -188.5 c 128,-1,19 - 854 -89 854 -89 854 75 c 0,20,21 - 854 231 854 231 762.5 321 c 128,-1,22 - 671 411 671 411 508 411 c 2,23,-1 - 426 411 l 1,24,-1 - 426 555 l 1,25,-1 - 819 941 l 1,26,-1 - 116 941 l 1,27,-1 - 116 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0293 -Encoding: 659 659 597 -Width: 1116 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 60 - 40 - 7 - 20 - 24 - 25 - 18 - 18 - 35 - 12 - 1 - 30 - 5 - 32 - 7 - 32 - 14 - 28 - 28 - 24 - 21 - 7 - 4 - 43 - 44 - 24 - 21 - 22 - 21 - 80 - 89 - 1 - 35 - 30 - 12 - 4 - 10 - 0 - 10 - 37 - 80 - 89 - 25 - 18 - 80 - 89 - 10 - 25 - 10 - 25 - 3 - 22 - 15 - 0 - 3 - 3 - 33 - 81 - 89 - 3 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 561 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1116 1540 basechar 0 -AnchorPoint: "Anchor-20" 1116 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -999 -426 m 1,0,-1 - 875 -290 l 1,1,2 - 727 -425 727 -425 510 -425 c 0,3,4 - 383 -425 383 -425 293 -390.5 c 128,-1,5 - 203 -356 203 -356 155.5 -295 c 128,-1,6 - 108 -234 108 -234 108 -160 c 0,7,8 - 108 -43 108 -43 193 22 c 128,-1,9 - 278 87 278 87 435 87 c 0,10,11 - 621 87 621 87 835 -62 c 1,12,13 - 854 6 854 6 854 75 c 0,14,15 - 854 230 854 230 758 320.5 c 128,-1,16 - 662 411 662 411 509 411 c 2,17,-1 - 427 411 l 1,18,-1 - 427 555 l 1,19,-1 - 818 942 l 1,20,-1 - 117 942 l 1,21,-1 - 117 1083 l 1,22,-1 - 1000 1083 l 1,23,-1 - 1000 905 l 1,24,-1 - 621 545 l 1,25,26 - 810 521 810 521 922.5 391.5 c 128,-1,27 - 1035 262 1035 262 1035 69 c 0,28,29 - 1035 -60 1035 -60 970 -172 c 1,30,31 - 1032 -228 1032 -228 1099 -301 c 1,32,-1 - 999 -426 l 1,0,-1 -487 -295 m 0,33,34 - 668 -295 668 -295 765 -190 c 1,35,36 - 591 -49 591 -49 427 -49 c 0,37,38 - 354 -49 354 -49 312.5 -78 c 128,-1,39 - 271 -107 271 -107 271 -160 c 0,40,41 - 271 -221 271 -221 331 -258 c 128,-1,42 - 391 -295 391 -295 487 -295 c 0,33,34 -EndSplineSet -EndChar - -StartChar: uni0294 -Encoding: 660 660 598 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 12 - 13 - 23 - 0 - 6 - 19 - 19 - 0 - 13 - 3 - 24 - 25 - 3 - 22 - 80 - 89 - 3 - 3 - 0 - 16 - 12 - 12 - 16 - 16 - 9 - 80 - 89 - 16 - 0 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 385 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1580 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 440 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -364 0 m 1,0,-1 - 364 542 l 1,1,2 - 410 524 410 524 471 524 c 0,3,4 - 616 524 616 524 686 623.5 c 128,-1,5 - 756 723 756 723 756 938 c 0,6,7 - 756 1157 756 1157 688.5 1250 c 128,-1,8 - 621 1343 621 1343 475 1343 c 0,9,10 - 370 1343 370 1343 313 1290 c 128,-1,11 - 256 1237 256 1237 242 1147 c 1,12,-1 - 57 1161 l 1,13,14 - 86 1312 86 1312 194.5 1398 c 128,-1,15 - 303 1484 303 1484 470 1484 c 0,16,17 - 698 1484 698 1484 821 1345.5 c 128,-1,18 - 944 1207 944 1207 944 934 c 0,19,20 - 944 691 944 691 840.5 546.5 c 128,-1,21 - 737 402 737 402 544 386 c 1,22,-1 - 544 0 l 1,23,-1 - 364 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0295 -Encoding: 661 661 599 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 11 - 10 - 23 - 0 - 17 - 4 - 4 - 0 - 10 - 3 - 25 - 24 - 20 - 1 - 80 - 89 - 20 - 20 - 0 - 7 - 7 - 14 - 80 - 89 - 11 - 11 - 7 - 0 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 528 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -491 0 m 1,0,-1 - 491 386 l 1,1,2 - 297 403 297 403 194 547 c 128,-1,3 - 91 691 91 691 91 934 c 0,4,5 - 91 1207 91 1207 210.5 1345.5 c 128,-1,6 - 330 1484 330 1484 555 1484 c 0,7,8 - 721 1484 721 1484 830.5 1398 c 128,-1,9 - 940 1312 940 1312 968 1161 c 1,10,-1 - 783 1147 l 1,11,12 - 769 1237 769 1237 712 1290 c 128,-1,13 - 655 1343 655 1343 550 1343 c 0,14,15 - 406 1343 406 1343 342.5 1252.5 c 128,-1,16 - 279 1162 279 1162 279 938 c 0,17,18 - 279 725 279 725 348.5 624.5 c 128,-1,19 - 418 524 418 524 564 524 c 0,20,21 - 625 524 625 524 671 542 c 1,22,-1 - 671 0 l 1,23,-1 - 491 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0296 -Encoding: 662 662 600 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 17 - 4 - 1 - 22 - 10 - 22 - 4 - 3 - 25 - 24 - 23 - 0 - 7 - 14 - 80 - 89 - 11 - 11 - 7 - 22 - 1 - 20 - 80 - 89 - 1 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 517 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 480 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -544 1484 m 1,0,-1 - 544 1078 l 1,1,2 - 738 1061 738 1061 841 917 c 128,-1,3 - 944 773 944 773 944 530 c 0,4,5 - 944 258 944 258 821.5 119 c 128,-1,6 - 699 -20 699 -20 470 -20 c 0,7,8 - 304 -20 304 -20 194.5 66 c 128,-1,9 - 85 152 85 152 57 303 c 1,10,-1 - 242 317 l 1,11,12 - 256 227 256 227 313 174 c 128,-1,13 - 370 121 370 121 475 121 c 0,14,15 - 622 121 622 121 689 214.5 c 128,-1,16 - 756 308 756 308 756 526 c 0,17,18 - 756 737 756 737 686.5 835 c 128,-1,19 - 617 933 617 933 471 933 c 0,20,21 - 410 933 410 933 364 915 c 1,22,-1 - 364 1484 l 1,23,-1 - 544 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0297 -Encoding: 663 663 601 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 14 - 27 - 7 - 6 - 6 - 20 - 21 - 27 - 21 - 28 - 29 - 20 - 20 - 24 - 24 - 17 - 80 - 89 - 24 - 3 - 10 - 80 - 89 - 7 - 7 - 3 - 16 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 583 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 560 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -87 542 m 2,0,1 - 87 815 87 815 207 958.5 c 128,-1,2 - 327 1102 327 1102 551 1102 c 0,3,4 - 717 1102 717 1102 826.5 1016 c 128,-1,5 - 936 930 936 930 964 779 c 1,6,-1 - 779 765 l 1,7,8 - 765 855 765 855 708 908 c 128,-1,9 - 651 961 651 961 546 961 c 0,10,11 - 401 961 401 961 333 865 c 128,-1,12 - 265 769 265 769 265 546 c 2,13,-1 - 265 140 l 2,14,15 - 265 -71 265 -71 336.5 -177.5 c 128,-1,16 - 408 -284 408 -284 548 -284 c 0,17,18 - 644 -284 644 -284 708.5 -232 c 128,-1,19 - 773 -180 773 -180 788 -72 c 1,20,-1 - 970 -84 l 1,21,22 - 949 -240 949 -240 837 -333 c 128,-1,23 - 725 -426 725 -426 553 -426 c 0,24,25 - 326 -426 326 -426 206.5 -282.5 c 128,-1,26 - 87 -139 87 -139 87 136 c 2,27,-1 - 87 542 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0298 -Encoding: 664 664 602 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 15 - 30 - 27 - 27 - 0 - 21 - 8 - 0 - 8 - 32 - 31 - 28 - 27 - 28 - 27 - 11 - 4 - 11 - 18 - 83 - 89 - 11 - 4 - 4 - 24 - 83 - 89 - 4 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 800 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1495 711 m 0,0,1 - 1495 490 1495 490 1410.5 324 c 128,-1,2 - 1326 158 1326 158 1168 69 c 128,-1,3 - 1010 -20 1010 -20 795 -20 c 0,4,5 - 578 -20 578 -20 420.5 68 c 128,-1,6 - 263 156 263 156 180 322.5 c 128,-1,7 - 97 489 97 489 97 711 c 0,8,9 - 97 1049 97 1049 282 1239.5 c 128,-1,10 - 467 1430 467 1430 797 1430 c 0,11,12 - 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 - 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 - 1495 933 1495 933 1495 711 c 0,0,1 -1300 711 m 0,15,16 - 1300 974 1300 974 1168.5 1124 c 128,-1,17 - 1037 1274 1037 1274 797 1274 c 0,18,19 - 555 1274 555 1274 423 1126 c 128,-1,20 - 291 978 291 978 291 711 c 0,21,22 - 291 446 291 446 424.5 290.5 c 128,-1,23 - 558 135 558 135 795 135 c 0,24,25 - 1039 135 1039 135 1169.5 285.5 c 128,-1,26 - 1300 436 1300 436 1300 711 c 0,15,16 -700 606 m 1,27,-1 - 700 825 l 1,28,-1 - 895 825 l 1,29,-1 - 895 606 l 1,30,-1 - 700 606 l 1,27,-1 -EndSplineSet -EndChar - -StartChar: uni0299 -Encoding: 665 665 603 -Width: 1088 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 6 - 26 - 3 - 26 - 16 - 16 - 14 - 30 - 3 - 3 - 20 - 10 - 14 - 10 - 34 - 35 - 48 - 35 - 1 - 35 -PUSHW_1 - -64 -NPUSHB - 40 - 30 - 35 - 72 - 15 - 35 - 47 - 35 - 223 - 35 - 3 - 9 - 3 - 6 - 26 - 24 - 26 - 24 - 81 - 89 - 15 - 26 - 1 - 11 - 3 - 26 - 26 - 14 - 15 - 15 - 25 - 80 - 89 - 15 - 15 - 14 - 16 - 80 - 89 - 14 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -CALL -DELTAP2 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1088 1540 basechar 0 -AnchorPoint: "Anchor-20" 1088 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -564 1082 m 2,0,1 - 764 1082 764 1082 864 1012 c 128,-1,2 - 964 942 964 942 964 811 c 0,3,4 - 964 718 964 718 907 656 c 128,-1,5 - 850 594 850 594 741 573 c 1,6,-1 - 741 566 l 1,7,8 - 870 549 870 549 934.5 484 c 128,-1,9 - 999 419 999 419 999 312 c 0,10,11 - 999 165 999 165 889.5 82.5 c 128,-1,12 - 780 0 780 0 587 0 c 2,13,-1 - 142 0 l 1,14,-1 - 142 1082 l 1,15,-1 - 564 1082 l 2,0,1 -322 133 m 1,16,-1 - 558 133 l 2,17,18 - 696 133 696 133 752 175.5 c 128,-1,19 - 808 218 808 218 808 311 c 0,20,21 - 808 412 808 412 748.5 453.5 c 128,-1,22 - 689 495 689 495 546 495 c 2,23,-1 - 322 495 l 1,24,-1 - 322 133 l 1,16,-1 -322 945 m 1,25,-1 - 322 625 l 1,26,-1 - 538 625 l 2,27,28 - 666 625 666 625 720.5 661 c 128,-1,29 - 775 697 775 697 775 787 c 0,30,31 - 775 869 775 869 724 907 c 128,-1,32 - 673 945 673 945 552 945 c 2,33,-1 - 322 945 l 1,25,-1 -EndSplineSet -EndChar - -StartChar: uni029A -Encoding: 666 666 604 -Width: 1039 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 0 - 30 - 6 - 6 - 33 - 33 - 11 - 22 - 15 - 28 - 22 - 28 - 40 - 39 - 30 - 9 - 12 - 9 - 12 - 80 - 89 - 15 - 9 - 1 - 11 - 3 - 9 - 9 - 25 - 36 - 36 - 3 - 80 - 89 - 36 - 16 - 25 - 18 - 80 - 89 - 25 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1039 1540 basechar 0 -AnchorPoint: "Anchor-20" 1039 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 480 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -784 556 m 0,0,1 - 784 762 784 762 713 865.5 c 128,-1,2 - 642 969 642 969 481 969 c 0,3,4 - 388 969 388 969 335 924 c 128,-1,5 - 282 879 282 879 282 794 c 0,6,7 - 282 716 282 716 338.5 670 c 128,-1,8 - 395 624 395 624 487 624 c 2,9,-1 - 577 624 l 1,10,-1 - 577 483 l 1,11,-1 - 481 483 l 2,12,13 - 364 483 364 483 308.5 435 c 128,-1,14 - 253 387 253 387 253 300 c 0,15,16 - 253 208 253 208 310.5 160.5 c 128,-1,17 - 368 113 368 113 477 113 c 0,18,19 - 592 113 592 113 657 161 c 128,-1,20 - 722 209 722 209 753 308 c 128,-1,21 - 784 407 784 407 784 556 c 0,0,1 -973 556 m 0,22,23 - 973 269 973 269 850.5 125 c 128,-1,24 - 728 -19 728 -19 477 -19 c 0,25,26 - 289 -19 289 -19 181 65.5 c 128,-1,27 - 73 150 73 150 73 297 c 0,28,29 - 73 517 73 517 322 558 c 1,30,31 - 211 592 211 592 156.5 648.5 c 128,-1,32 - 102 705 102 705 102 793 c 0,33,34 - 102 935 102 935 207.5 1018.5 c 128,-1,35 - 313 1102 313 1102 500 1102 c 0,36,37 - 727 1102 727 1102 850 959.5 c 128,-1,38 - 973 817 973 817 973 556 c 0,22,23 -EndSplineSet -EndChar - -StartChar: uni029B -Encoding: 667 667 605 -Width: 1144 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 27 - 0 - 39 - 39 - 11 - 16 - 6 - 22 - 33 - 22 - 14 - 16 - 3 - 41 - 40 - 30 - 35 - 80 - 89 - 30 - 25 - 14 - 13 - 80 - 89 - 27 - 0 - 25 - 14 - 0 - 14 - 0 - 19 - 25 - 25 - 3 - 80 - 89 - 25 - 16 - 19 - 9 - 80 - 89 - 19 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1144 1540 basechar 0 -AnchorPoint: "Anchor-20" 1144 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -802 765 m 1,0,1 - 788 855 788 855 731 908 c 128,-1,2 - 674 961 674 961 569 961 c 0,3,4 - 416 961 416 961 348 858.5 c 128,-1,5 - 280 756 280 756 280 546 c 0,6,7 - 280 324 280 324 356 221 c 128,-1,8 - 432 118 432 118 591 118 c 0,9,10 - 722 118 722 118 825 185 c 1,11,-1 - 825 404 l 1,12,-1 - 576 404 l 1,13,-1 - 576 541 l 1,14,-1 - 1007 541 l 1,15,-1 - 1007 123 l 1,16,17 - 932 55 932 55 824.5 17.5 c 128,-1,18 - 717 -20 717 -20 595 -20 c 0,19,20 - 350 -20 350 -20 222 123 c 128,-1,21 - 94 266 94 266 94 542 c 0,22,23 - 94 812 94 812 219.5 957 c 128,-1,24 - 345 1102 345 1102 574 1102 c 0,25,26 - 724 1102 724 1102 830 1030 c 1,27,28 - 839 1151 839 1151 904.5 1217 c 128,-1,29 - 970 1283 970 1283 1088 1283 c 0,30,31 - 1135 1283 1135 1283 1187 1271 c 1,32,-1 - 1187 1121 l 1,33,34 - 1151 1137 1151 1137 1108 1137 c 0,35,36 - 1042 1137 1042 1137 1014.5 1101.5 c 128,-1,37 - 987 1066 987 1066 987 989 c 2,38,-1 - 987 779 l 1,39,-1 - 802 765 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni029C -Encoding: 668 668 606 -Width: 1131 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 1 - 9 - 9 - 10 - 2 - 6 - 6 - 5 - 10 - 5 - 12 - 13 - 64 - 13 - 80 - 13 - 96 - 13 - 3 - 64 - 13 - 128 - 13 - 2 - 0 - 13 - 1 - 16 - 3 - 13 -PUSHW_1 - -64 -NPUSHB - 19 - 19 - 23 - 72 - 1 - 8 - 81 - 89 - 47 - 1 - 1 - 1 - 1 - 10 - 3 - 11 - 15 - 6 - 10 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -DELTAP1 -CALL -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 836 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1131 1540 basechar 0 -AnchorPoint: "Anchor-20" 1131 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -314 1082 m 1,0,-1 - 314 624 l 1,1,-1 - 817 624 l 1,2,-1 - 817 1082 l 1,3,-1 - 997 1082 l 1,4,-1 - 997 0 l 1,5,-1 - 817 0 l 1,6,-1 - 817 493 l 1,7,-1 - 314 493 l 1,8,-1 - 314 0 l 1,9,-1 - 134 0 l 1,10,-1 - 134 1082 l 1,11,-1 - 314 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni029D -Encoding: 669 669 607 -Width: 814 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 29 - 7 - 21 - 21 - 32 - 12 - 10 - 14 - 26 - 3 - 14 - 3 - 34 - 33 - 30 - 29 - 83 - 89 - 30 - 0 - 13 - 23 - 6 - 23 - 80 - 89 - 10 - 15 - 6 - 1 - 10 - 3 - 6 - 6 - 0 - 8 - 15 - 0 - 18 - 80 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 352 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 814 1540 basechar 0 -AnchorPoint: "Anchor-20" 814 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 720 1540 basechar 0 -AnchorPoint: "Anchor-14" 360 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -343 -425 m 0,0,1 - 184 -425 184 -425 92.5 -355.5 c 128,-1,2 - 1 -286 1 -286 1 -161 c 0,3,4 - 1 -35 1 -35 74 29.5 c 128,-1,5 - 147 94 147 94 304 94 c 2,6,-1 - 493 94 l 1,7,-1 - 493 1082 l 1,8,-1 - 673 1082 l 1,9,-1 - 673 94 l 1,10,-1 - 809 94 l 1,11,-1 - 809 -45 l 1,12,-1 - 673 -45 l 1,13,-1 - 673 -82 l 2,14,15 - 673 -180 673 -180 633.5 -258 c 128,-1,16 - 594 -336 594 -336 520 -380.5 c 128,-1,17 - 446 -425 446 -425 343 -425 c 0,0,1 -315 -283 m 0,18,19 - 401 -283 401 -283 447 -229.5 c 128,-1,20 - 493 -176 493 -176 493 -69 c 2,21,-1 - 493 -45 l 1,22,-1 - 310 -45 l 2,23,24 - 233 -45 233 -45 200.5 -75 c 128,-1,25 - 168 -105 168 -105 168 -162 c 0,26,27 - 168 -218 168 -218 208.5 -250.5 c 128,-1,28 - 249 -283 249 -283 315 -283 c 0,18,19 -493 1312 m 1,29,-1 - 493 1484 l 1,30,-1 - 673 1484 l 1,31,-1 - 673 1312 l 1,32,-1 - 493 1312 l 1,29,-1 -EndSplineSet -EndChar - -StartChar: uni029E -Encoding: 670 670 608 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 10 - 1 - 11 - 2 - 2 - 6 - 6 - 5 - 8 - 9 - 9 - 0 - 11 - 5 - 11 - 13 - 12 - 7 - 2 - 2 - 1 - 10 - 3 - 9 - 3 - 11 - 15 - 6 - 9 - 21 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,white] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 748 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -212 1082 m 1,0,-1 - 578 588 l 1,1,-1 - 710 697 l 1,2,-1 - 710 1082 l 1,3,-1 - 890 1082 l 1,4,-1 - 890 -402 l 1,5,-1 - 710 -402 l 1,6,-1 - 710 525 l 1,7,-1 - 235 0 l 1,8,-1 - 24 0 l 1,9,-1 - 463 465 l 1,10,-1 - 1 1082 l 1,11,-1 - 212 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni029F -Encoding: 671 671 609 -Width: 827 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 4 - 1 - 0 - 1 - 7 - 6 - 2 - 15 - 1 - 4 - 80 - 89 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 627 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 827 1540 basechar 0 -AnchorPoint: "Anchor-20" 827 -380 basechar 0 -AnchorPoint: "Anchor-16" 480 1200 basechar 0 -AnchorPoint: "Anchor-15" 680 1260 basechar 0 -AnchorPoint: "Anchor-14" 430 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -765 0 m 1,0,-1 - 134 0 l 1,1,-1 - 134 1082 l 1,2,-1 - 311 1082 l 1,3,-1 - 311 149 l 1,4,-1 - 765 149 l 1,5,-1 - 765 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02A0 -Encoding: 672 672 610 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 29 - 10 - 23 - 23 - 22 - 35 - 3 - 22 - 3 - 41 - 16 - 42 - 23 - 27 - 13 - 19 - 80 - 89 - 13 - 1 - 8 - 25 - 5 - 0 - 5 - 32 - 80 - 89 - 5 - 16 - 0 - 38 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 847 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1540 basechar 0 -AnchorPoint: "Anchor-15" 1260 1540 basechar 0 -AnchorPoint: "Anchor-14" 530 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -484 -20 m 0,0,1 - 278 -20 278 -20 182 119 c 128,-1,2 - 86 258 86 258 86 536 c 0,3,4 - 86 1102 86 1102 484 1102 c 0,5,6 - 607 1102 607 1102 687 1058.5 c 128,-1,7 - 767 1015 767 1015 821 914 c 1,8,-1 - 823 914 l 1,9,-1 - 823 1202 l 2,10,11 - 823 1347 823 1347 896 1422.5 c 128,-1,12 - 969 1498 969 1498 1112 1498 c 0,13,14 - 1166 1498 1166 1498 1205 1490 c 2,15,-1 - 1242 1482 l 1,16,-1 - 1242 1316 l 1,17,18 - 1186 1336 1186 1336 1126 1336 c 0,19,20 - 1001 1336 1001 1336 1001 1188 c 2,21,-1 - 1001 -425 l 1,22,-1 - 821 -425 l 1,23,-1 - 821 14 l 1,24,-1 - 825 178 l 1,25,-1 - 823 178 l 1,26,27 - 769 71 769 71 690 25.5 c 128,-1,28 - 611 -20 611 -20 484 -20 c 0,0,1 -821 554 m 0,29,30 - 821 765 821 765 752 867 c 128,-1,31 - 683 969 683 969 532 969 c 0,32,33 - 395 969 395 969 335 867 c 128,-1,34 - 275 765 275 765 275 542 c 0,35,36 - 275 315 275 315 335.5 217 c 128,-1,37 - 396 119 396 119 530 119 c 0,38,39 - 683 119 683 119 752 228 c 128,-1,40 - 821 337 821 337 821 554 c 0,29,30 -EndSplineSet -EndChar - -StartChar: uni02A1 -Encoding: 673 673 611 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 57 - 13 - 0 - 14 - 24 - 28 - 28 - 1 - 29 - 26 - 7 - 20 - 20 - 29 - 14 - 3 - 32 - 33 - 0 - 31 - 81 - 89 - 0 - 0 - 24 - 24 - 27 - 81 - 89 - 4 - 23 - 80 - 89 - 15 - 4 - 31 - 4 - 63 - 4 - 3 - 9 - 3 - 24 - 4 - 24 - 4 - 17 - 29 - 21 - 13 - 13 - 17 - 17 - 10 - 80 - 89 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 396 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 660 1540 basechar 0 -AnchorPoint: "Anchor-15" 880 1540 basechar 0 -AnchorPoint: "Anchor-14" 460 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -47 276 m 1,0,-1 - 364 276 l 1,1,-1 - 364 542 l 1,2,3 - 410 524 410 524 471 524 c 0,4,5 - 616 524 616 524 686 623.5 c 128,-1,6 - 756 723 756 723 756 938 c 0,7,8 - 756 1157 756 1157 688.5 1250 c 128,-1,9 - 621 1343 621 1343 475 1343 c 0,10,11 - 370 1343 370 1343 313 1290 c 128,-1,12 - 256 1237 256 1237 242 1147 c 1,13,-1 - 57 1161 l 1,14,15 - 86 1312 86 1312 194.5 1398 c 128,-1,16 - 303 1484 303 1484 470 1484 c 0,17,18 - 698 1484 698 1484 821 1345.5 c 128,-1,19 - 944 1207 944 1207 944 934 c 0,20,21 - 944 691 944 691 840.5 546.5 c 128,-1,22 - 737 402 737 402 544 386 c 1,23,-1 - 544 276 l 1,24,-1 - 875 276 l 1,25,-1 - 875 153 l 1,26,-1 - 544 153 l 1,27,-1 - 544 0 l 1,28,-1 - 364 0 l 1,29,-1 - 364 153 l 1,30,-1 - 47 153 l 1,31,-1 - 47 276 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02A2 -Encoding: 674 674 612 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 54 - 24 - 5 - 11 - 30 - 2 - 2 - 7 - 3 - 31 - 18 - 17 - 17 - 3 - 11 - 3 - 32 - 33 - 1 - 5 - 6 - 5 - 81 - 89 - 30 - 6 - 27 - 8 - 80 - 89 - 15 - 27 - 31 - 27 - 63 - 27 - 3 - 9 - 3 - 6 - 27 - 6 - 27 - 3 - 14 - 14 - 21 - 80 - 89 - 18 - 18 - 14 - 0 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 506 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 530 1580 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 570 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -976 153 m 1,0,-1 - 659 153 l 1,1,-1 - 659 0 l 1,2,-1 - 479 0 l 1,3,-1 - 479 153 l 1,4,-1 - 148 153 l 1,5,-1 - 148 276 l 1,6,-1 - 479 276 l 1,7,-1 - 479 386 l 1,8,9 - 285 403 285 403 182 547 c 128,-1,10 - 79 691 79 691 79 934 c 0,11,12 - 79 1206 79 1206 201.5 1345 c 128,-1,13 - 324 1484 324 1484 553 1484 c 0,14,15 - 719 1484 719 1484 828.5 1398 c 128,-1,16 - 938 1312 938 1312 966 1161 c 1,17,-1 - 781 1147 l 1,18,19 - 767 1237 767 1237 710 1290 c 128,-1,20 - 653 1343 653 1343 548 1343 c 0,21,22 - 401 1343 401 1343 334 1249.5 c 128,-1,23 - 267 1156 267 1156 267 938 c 0,24,25 - 267 725 267 725 336.5 624.5 c 128,-1,26 - 406 524 406 524 552 524 c 0,27,28 - 613 524 613 524 659 542 c 1,29,-1 - 659 276 l 1,30,-1 - 976 276 l 1,31,-1 - 976 153 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02A3 -Encoding: 675 675 613 -Width: 1975 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 53 - 26 - 10 - 23 - 38 - 38 - 19 - 19 - 32 - 3 - 18 - 39 - 22 - 24 - 22 - 18 - 10 - 4 - 41 - 42 - 22 - 39 - 21 - 39 - 80 - 89 - 21 - 15 - 18 - 0 - 15 - 3 - 12 - 7 - 12 - 35 - 80 - 89 - 12 - 16 - 7 - 29 - 80 - 89 - 7 - 22 - 23 - 38 - 0 - 38 - 80 - 89 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1760 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1975 1540 basechar 0 -AnchorPoint: "Anchor-20" 1975 -380 basechar 0 -AnchorPoint: "Anchor-16" 1420 1200 basechar 0 -AnchorPoint: "Anchor-15" 1890 1260 basechar 0 -AnchorPoint: "Anchor-14" 1416 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -835 0 m 1,0,1 - 832 16 832 16 828.5 74 c 128,-1,2 - 825 132 825 132 825 174 c 1,3,-1 - 821 174 l 1,4,5 - 771 70 771 70 688.5 25 c 128,-1,6 - 606 -20 606 -20 484 -20 c 0,7,8 - 279 -20 279 -20 182.5 118 c 128,-1,9 - 86 256 86 256 86 536 c 0,10,11 - 86 1102 86 1102 484 1102 c 0,12,13 - 607 1102 607 1102 689 1057 c 128,-1,14 - 771 1012 771 1012 821 914 c 1,15,-1 - 823 914 l 1,16,-1 - 821 1035 l 1,17,-1 - 821 1484 l 1,18,-1 - 1001 1484 l 1,19,-1 - 1001 1082 l 1,20,-1 - 1883 1082 l 1,21,-1 - 1883 945 l 1,22,-1 - 1201 139 l 1,23,-1 - 1920 139 l 1,24,-1 - 1920 0 l 1,25,-1 - 835 0 l 1,0,1 -275 542 m 0,26,27 - 275 315 275 315 335 217 c 128,-1,28 - 395 119 395 119 530 119 c 0,29,30 - 683 119 683 119 752 225 c 128,-1,31 - 821 331 821 331 821 554 c 0,32,33 - 821 769 821 769 752 869 c 128,-1,34 - 683 969 683 969 532 969 c 0,35,36 - 396 969 396 969 335.5 868.5 c 128,-1,37 - 275 768 275 768 275 542 c 0,26,27 -1001 139 m 1,38,-1 - 1680 943 l 1,39,-1 - 1001 943 l 1,40,-1 - 1001 139 l 1,38,-1 -EndSplineSet -EndChar - -StartChar: uni02A4 -Encoding: 676 676 614 -Width: 1856 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 73 - 19 - 40 - 40 - 56 - 35 - 35 - 22 - 41 - 17 - 56 - 14 - 29 - 28 - 28 - 14 - 42 - 15 - 15 - 46 - 14 - 50 - 6 - 6 - 14 - 17 - 22 - 4 - 63 - 62 - 29 - 26 - 46 - 19 - 39 - 80 - 89 - 19 - 19 - 16 - 46 - 21 - 18 - 42 - 16 - 42 - 80 - 89 - 16 - 15 - 14 - 0 - 11 - 0 - 8 - 3 - 8 - 59 - 80 - 89 - 8 - 16 - 26 - 32 - 80 - 89 - 26 - 3 - 3 - 53 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1375 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1856 1540 basechar 0 -AnchorPoint: "Anchor-20" 1856 -380 basechar 0 -AnchorPoint: "Anchor-16" 1420 1200 basechar 0 -AnchorPoint: "Anchor-15" 1780 1260 basechar 0 -AnchorPoint: "Anchor-14" 1306 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -821 174 m 1,0,1 - 771 70 771 70 688.5 25 c 128,-1,2 - 606 -20 606 -20 484 -20 c 0,3,4 - 279 -20 279 -20 182.5 118 c 128,-1,5 - 86 256 86 256 86 536 c 0,6,7 - 86 1102 86 1102 484 1102 c 0,8,9 - 607 1102 607 1102 689 1057 c 128,-1,10 - 771 1012 771 1012 821 914 c 1,11,-1 - 823 914 l 1,12,-1 - 821 1035 l 1,13,-1 - 821 1484 l 1,14,-1 - 1001 1484 l 1,15,-1 - 1001 1082 l 1,16,-1 - 1764 1082 l 1,17,-1 - 1764 904 l 1,18,-1 - 1385 543 l 1,19,20 - 1575 518 1575 518 1687.5 390 c 128,-1,21 - 1800 262 1800 262 1800 69 c 0,22,23 - 1800 -64 1800 -64 1738.5 -179 c 128,-1,24 - 1677 -294 1677 -294 1567 -360 c 128,-1,25 - 1457 -426 1457 -426 1318 -426 c 0,26,27 - 950 -426 950 -426 862 -154 c 1,28,-1 - 1026 -115 l 1,29,30 - 1061 -206 1061 -206 1131 -246 c 128,-1,31 - 1201 -286 1201 -286 1312 -286 c 0,32,33 - 1446 -286 1446 -286 1532.5 -183.5 c 128,-1,34 - 1619 -81 1619 -81 1619 75 c 256,35,36 - 1619 231 1619 231 1527 321 c 128,-1,37 - 1435 411 1435 411 1273 411 c 2,38,-1 - 1191 411 l 1,39,-1 - 1191 555 l 1,40,-1 - 1580 941 l 1,41,-1 - 1001 941 l 1,42,-1 - 1001 223 l 2,43,44 - 1001 54 1001 54 1007 0 c 1,45,-1 - 835 0 l 1,46,47 - 832 16 832 16 828.5 74 c 128,-1,48 - 825 132 825 132 825 174 c 1,49,-1 - 821 174 l 1,0,1 -275 542 m 0,50,51 - 275 315 275 315 335 217 c 128,-1,52 - 395 119 395 119 530 119 c 0,53,54 - 683 119 683 119 752 225 c 128,-1,55 - 821 331 821 331 821 554 c 0,56,57 - 821 769 821 769 752 869 c 128,-1,58 - 683 969 683 969 532 969 c 0,59,60 - 396 969 396 969 335.5 868.5 c 128,-1,61 - 275 768 275 768 275 542 c 0,50,51 -EndSplineSet -EndChar - -StartChar: uni02A5 -Encoding: 677 677 615 -Width: 2059 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 71 - 39 - 6 - 19 - 51 - 51 - 15 - 15 - 45 - 0 - 14 - 30 - 57 - 57 - 34 - 20 - 53 - 18 - 61 - 26 - 26 - 18 - 20 - 14 - 6 - 5 - 64 - 65 - 19 - 52 - 35 - 52 - 80 - 89 - 32 - 35 - 21 - 30 - 58 - 80 - 89 - 30 - 21 - 23 - 54 - 80 - 89 - 23 - 17 - 53 - 80 - 89 - 17 - 15 - 14 - 0 - 11 - 0 - 8 - 3 - 8 - 48 - 80 - 89 - 8 - 16 - 3 - 42 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1683 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 2059 1540 basechar 0 -AnchorPoint: "Anchor-20" 2059 -380 basechar 0 -AnchorPoint: "Anchor-16" 1420 1200 basechar 0 -AnchorPoint: "Anchor-15" 1890 1260 basechar 0 -AnchorPoint: "Anchor-14" 1383 -300 basechar 0 -LayerCount: 2 -Fore -SplineSet -821 174 m 1,0,1 - 771 70 771 70 688.5 25 c 128,-1,2 - 606 -20 606 -20 484 -20 c 0,3,4 - 279 -20 279 -20 182.5 118 c 128,-1,5 - 86 256 86 256 86 536 c 0,6,7 - 86 1102 86 1102 484 1102 c 0,8,9 - 607 1102 607 1102 689 1057 c 128,-1,10 - 771 1012 771 1012 821 914 c 1,11,-1 - 823 914 l 1,12,-1 - 821 1035 l 1,13,-1 - 821 1484 l 1,14,-1 - 1001 1484 l 1,15,-1 - 1001 1082 l 1,16,-1 - 1884 1082 l 1,17,-1 - 1884 945 l 1,18,-1 - 1200 139 l 1,19,-1 - 1373 139 l 1,20,21 - 1474 309 1474 309 1568.5 388 c 128,-1,22 - 1663 467 1663 467 1760 467 c 0,23,24 - 1878 467 1878 467 1946 405.5 c 128,-1,25 - 2014 344 2014 344 2014 241 c 0,26,27 - 2014 121 2014 121 1944 60.5 c 128,-1,28 - 1874 0 1874 0 1722 0 c 2,29,-1 - 1469 0 l 1,30,31 - 1421 -94 1421 -94 1387 -178 c 1,32,-1 - 1248 -117 l 1,33,-1 - 1303 0 l 1,34,-1 - 835 0 l 1,35,36 - 832 16 832 16 828.5 74 c 128,-1,37 - 825 132 825 132 825 174 c 1,38,-1 - 821 174 l 1,0,1 -275 542 m 0,39,40 - 275 315 275 315 335 217 c 128,-1,41 - 395 119 395 119 530 119 c 0,42,43 - 683 119 683 119 752 225 c 128,-1,44 - 821 331 821 331 821 554 c 0,45,46 - 821 769 821 769 752 869 c 128,-1,47 - 683 969 683 969 532 969 c 0,48,49 - 396 969 396 969 335.5 868.5 c 128,-1,50 - 275 768 275 768 275 542 c 0,39,40 -1001 943 m 1,51,-1 - 1001 140 l 1,52,-1 - 1681 943 l 1,53,-1 - 1001 943 l 1,51,-1 -1758 322 m 0,54,55 - 1711 322 1711 322 1661 281.5 c 128,-1,56 - 1611 241 1611 241 1541 139 c 1,57,-1 - 1713 139 l 2,58,59 - 1790 139 1790 139 1825 161 c 128,-1,60 - 1860 183 1860 183 1860 238 c 0,61,62 - 1860 277 1860 277 1833 299.5 c 128,-1,63 - 1806 322 1806 322 1758 322 c 0,54,55 -EndSplineSet -EndChar - -StartChar: uni02A6 -Encoding: 678 678 616 -Width: 1459 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 20 - 19 - 19 - 38 - 0 - 26 - 46 - 13 - 50 - 50 - 10 - 8 - 6 - 6 - 46 - 0 - 3 - 55 - 54 - 26 - 38 - 16 - 4 - 16 - 23 - 80 - 89 - 20 - 16 - 16 - 13 - 49 - 81 - 89 - 13 - 15 - 11 - 9 - 9 - 8 - 81 - 89 - 9 - 16 - 4 - 53 - 80 - 89 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 990 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1459 1540 basechar 0 -AnchorPoint: "Anchor-20" 1459 -380 basechar 0 -AnchorPoint: "Anchor-16" 920 1200 basechar 0 -AnchorPoint: "Anchor-15" 1280 1260 basechar 0 -AnchorPoint: "Anchor-14" 877 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1380 299 m 0,0,1 - 1380 152 1380 152 1269 76 c 128,-1,2 - 1158 0 1158 0 941 0 c 2,3,-1 - 382 0 l 2,4,5 - 166 0 166 0 166 245 c 2,6,-1 - 166 951 l 1,7,-1 - 41 951 l 1,8,-1 - 41 1082 l 1,9,-1 - 173 1082 l 1,10,-1 - 226 1324 l 1,11,-1 - 346 1324 l 1,12,-1 - 346 1082 l 1,13,-1 - 777 1082 l 1,14,15 - 851 1099 851 1099 943 1099 c 0,16,17 - 1122 1099 1122 1099 1227.5 1036 c 128,-1,18 - 1333 973 1333 973 1361 834 c 1,19,-1 - 1199 814 l 1,20,21 - 1184 886 1184 886 1118.5 924.5 c 128,-1,22 - 1053 963 1053 963 943 963 c 0,23,24 - 821 963 821 963 763 926 c 128,-1,25 - 705 889 705 889 705 814 c 0,26,27 - 705 768 705 768 729 738 c 128,-1,28 - 753 708 753 708 800 687 c 128,-1,29 - 847 666 847 666 998 629 c 0,30,31 - 1141 593 1141 593 1204 562.5 c 128,-1,32 - 1267 532 1267 532 1303.5 495 c 128,-1,33 - 1340 458 1340 458 1360 409.5 c 128,-1,34 - 1380 361 1380 361 1380 299 c 0,0,1 -941 140 m 2,35,36 - 1084 140 1084 140 1144.5 175 c 128,-1,37 - 1205 210 1205 210 1205 285 c 0,38,39 - 1205 349 1205 349 1161 389 c 128,-1,40 - 1117 429 1117 429 1019 455 c 2,41,-1 - 890 489 l 2,42,43 - 735 529 735 529 669.5 567.5 c 128,-1,44 - 604 606 604 606 567 661 c 128,-1,45 - 530 716 530 716 530 796 c 0,46,47 - 530 885 530 885 570 951 c 1,48,-1 - 346 951 l 1,49,-1 - 346 284 l 2,50,51 - 346 206 346 206 371.5 173 c 128,-1,52 - 397 140 397 140 460 140 c 2,53,-1 - 941 140 l 2,35,36 -EndSplineSet -EndChar - -StartChar: uni02A7 -Encoding: 679 679 617 -Width: 879 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 40 - 23 - 10 - 10 - 35 - 21 - 43 - 43 - 18 - 16 - 14 - 15 - 35 - 1 - 0 - 14 - 1 - 10 - 6 - 14 - 3 - 35 - 3 - 46 - 29 - 47 - 26 - 31 - 80 - 89 - 26 - 0 - 42 - 16 - 17 - 16 - 81 - 89 - 21 - 20 - 64 - 17 - 15 - 12 - 38 - 80 - 89 - 12 - 22 - 0 - 5 - 80 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,grey] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -SLOOP -IP -SDS -SDB -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 506 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 879 1540 basechar 0 -AnchorPoint: "Anchor-20" 879 -380 basechar 0 -AnchorPoint: "Anchor-16" 480 1540 basechar 0 -AnchorPoint: "Anchor-15" 1020 1540 basechar 0 -AnchorPoint: "Anchor-14" 470 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -434 -425 m 0,0,1 - 355 -425 355 -425 300 -406 c 1,2,-1 - 300 -246 l 1,3,4 - 360 -270 360 -270 417 -270 c 0,5,6 - 471 -270 471 -270 501.5 -248 c 128,-1,7 - 532 -226 532 -226 545.5 -183.5 c 128,-1,8 - 559 -141 559 -141 559 -37 c 2,9,-1 - 559 6 l 1,10,11 - 471 -16 471 -16 382 -16 c 0,12,13 - 166 -16 166 -16 166 229 c 2,14,-1 - 166 951 l 1,15,-1 - 41 951 l 1,16,-1 - 41 1082 l 1,17,-1 - 173 1082 l 1,18,-1 - 226 1324 l 1,19,-1 - 346 1324 l 1,20,-1 - 346 1082 l 1,21,-1 - 559 1082 l 1,22,-1 - 559 1130 l 2,23,24 - 559 1303 559 1303 634.5 1393.5 c 128,-1,25 - 710 1484 710 1484 857 1484 c 0,26,27 - 964 1484 964 1484 1008 1466 c 1,28,-1 - 1008 1299 l 1,29,30 - 959 1326 959 1326 893 1326 c 0,31,32 - 816 1326 816 1326 778.5 1273.5 c 128,-1,33 - 741 1221 741 1221 741 1093 c 2,34,-1 - 741 -70 l 2,35,36 - 741 -250 741 -250 665 -337.5 c 128,-1,37 - 589 -425 589 -425 434 -425 c 0,0,1 -460 141 m 0,38,39 - 498 141 498 141 559 154 c 1,40,-1 - 559 951 l 1,41,-1 - 346 951 l 1,42,-1 - 346 282 l 2,43,44 - 346 204 346 204 371.5 172.5 c 128,-1,45 - 397 141 397 141 460 141 c 0,38,39 -EndSplineSet -EndChar - -StartChar: uni02A8 -Encoding: 680 680 618 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 69 - 14 - 18 - 18 - 11 - 9 - 7 - 38 - 16 - 25 - 32 - 31 - 31 - 53 - 45 - 45 - 59 - 40 - 2 - 23 - 25 - 7 - 7 - 61 - 62 - 28 - 35 - 80 - 89 - 32 - 32 - 28 - 16 - 40 - 23 - 59 - 2 - 4 - 4 - 43 - 43 - 56 - 80 - 89 - 43 - 43 - 0 - 10 - 17 - 9 - 10 - 9 - 81 - 89 - 14 - 12 - 10 - 16 - 4 - 21 - 80 - 89 - 4 - 22 - 0 - 49 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MDRP[rnd,white] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1111 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1472 1540 basechar 0 -AnchorPoint: "Anchor-20" 1472 -380 basechar 0 -AnchorPoint: "Anchor-16" 1100 1540 basechar 0 -AnchorPoint: "Anchor-15" 1860 1540 basechar 0 -AnchorPoint: "Anchor-14" 1020 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1003 -20 m 0,0,1 - 826 -20 826 -20 707 80 c 1,2,3 - 581 -20 581 -20 420 -20 c 0,4,5 - 298 -20 298 -20 227 47.5 c 128,-1,6 - 156 115 156 115 156 239 c 2,7,-1 - 156 951 l 1,8,-1 - 31 951 l 1,9,-1 - 31 1082 l 1,10,-1 - 163 1082 l 1,11,-1 - 216 1324 l 1,12,-1 - 336 1324 l 1,13,-1 - 336 1082 l 1,14,-1 - 536 1082 l 1,15,-1 - 536 951 l 1,16,-1 - 336 951 l 1,17,-1 - 336 290 l 2,18,19 - 336 203 336 203 366 169 c 128,-1,20 - 396 135 396 135 470 135 c 0,21,22 - 545 135 545 135 615 188 c 1,23,24 - 529 329 529 329 529 542 c 0,25,26 - 529 815 529 815 649 958.5 c 128,-1,27 - 769 1102 769 1102 993 1102 c 0,28,29 - 1159 1102 1159 1102 1268.5 1016 c 128,-1,30 - 1378 930 1378 930 1406 779 c 1,31,-1 - 1221 765 l 1,32,33 - 1207 855 1207 855 1150 908 c 128,-1,34 - 1093 961 1093 961 988 961 c 0,35,36 - 845 961 845 961 781 866 c 128,-1,37 - 717 771 717 771 717 546 c 0,38,39 - 717 416 717 416 755 302 c 1,40,41 - 866 413 866 413 960 461.5 c 128,-1,42 - 1054 510 1054 510 1140 510 c 0,43,44 - 1407 510 1407 510 1407 278 c 0,45,46 - 1407 192 1407 192 1361 125.5 c 128,-1,47 - 1315 59 1315 59 1226.5 19.5 c 128,-1,48 - 1138 -20 1138 -20 1003 -20 c 0,0,1 -1002 114 m 0,49,50 - 1085 114 1085 114 1141.5 135 c 128,-1,51 - 1198 156 1198 156 1228.5 190 c 128,-1,52 - 1259 224 1259 224 1259 265 c 0,53,54 - 1259 322 1259 322 1227 347 c 128,-1,55 - 1195 372 1195 372 1135 372 c 0,56,57 - 1064 372 1064 372 990 328.5 c 128,-1,58 - 916 285 916 285 828 184 c 1,59,60 - 894 114 894 114 1002 114 c 0,49,50 -EndSplineSet -EndChar - -StartChar: uni02A9 -Encoding: 681 681 619 -Width: 1564 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 56 - 50 - 32 - 32 - 37 - 35 - 33 - 0 - 27 - 27 - 28 - 18 - 9 - 9 - 14 - 28 - 43 - 33 - 5 - 51 - 52 - 50 - 31 - 81 - 89 - 50 - 15 - 41 - 46 - 80 - 89 - 41 - 0 - 36 - 35 - 81 - 89 - 36 - 16 - 33 - 21 - 1 - 5 - 27 - 21 - 11 - 16 - 80 - 89 - 11 - 27 - 5 - 23 - 80 - 89 - 5 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1199 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1564 1540 basechar 0 -AnchorPoint: "Anchor-20" 1564 -380 basechar 0 -AnchorPoint: "Anchor-16" 1017 1200 basechar 0 -AnchorPoint: "Anchor-15" 1360 1260 basechar 0 -AnchorPoint: "Anchor-14" 998 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -736 1082 m 1,0,-1 - 744 908 l 1,1,-1 - 747 908 l 1,2,3 - 807 1016 807 1016 885 1059 c 128,-1,4 - 963 1102 963 1102 1083 1102 c 0,5,6 - 1261 1102 1261 1102 1343.5 1013.5 c 128,-1,7 - 1426 925 1426 925 1426 721 c 2,8,-1 - 1426 -129 l 2,9,10 - 1426 -425 1426 -425 1145 -425 c 0,11,12 - 1094 -425 1094 -425 1009 -409 c 1,13,-1 - 1009 -245 l 1,14,15 - 1059 -263 1059 -263 1128 -263 c 0,16,17 - 1245 -263 1245 -263 1245 -115 c 2,18,-1 - 1245 686 l 2,19,20 - 1245 793 1245 793 1224 852 c 128,-1,21 - 1203 911 1203 911 1157 937 c 128,-1,22 - 1111 963 1111 963 1022 963 c 0,23,24 - 894 963 894 963 823 876 c 128,-1,25 - 752 789 752 789 752 627 c 2,26,-1 - 752 0 l 1,27,-1 - 572 0 l 1,28,-1 - 572 851 l 1,29,-1 - 571 951 l 1,30,-1 - 361 951 l 1,31,-1 - 361 0 l 1,32,-1 - 181 0 l 1,33,-1 - 181 951 l 1,34,-1 - 29 951 l 1,35,-1 - 29 1082 l 1,36,-1 - 181 1082 l 1,37,-1 - 181 1204 l 2,38,39 - 181 1352 181 1352 246 1417 c 128,-1,40 - 311 1482 311 1482 445 1482 c 0,41,42 - 520 1482 520 1482 572 1470 c 1,43,-1 - 572 1333 l 1,44,45 - 527 1341 527 1341 492 1341 c 0,46,47 - 423 1341 423 1341 392 1306 c 128,-1,48 - 361 1271 361 1271 361 1179 c 2,49,-1 - 361 1082 l 1,50,-1 - 736 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02AA -Encoding: 682 682 620 -Width: 1354 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 45 - 3 - 3 - 0 - 30 - 17 - 24 - 23 - 9 - 39 - 39 - 23 - 17 - 0 - 4 - 47 - 48 - 30 - 9 - 20 - 42 - 42 - 6 - 80 - 89 - 42 - 22 - 45 - 0 - 20 - 20 - 27 - 80 - 89 - 24 - 20 - 16 - 1 - 0 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 900 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1354 1540 basechar 0 -AnchorPoint: "Anchor-20" 1354 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -138 0 m 1,0,-1 - 138 1484 l 1,1,-1 - 318 1484 l 1,2,-1 - 318 286 l 1,3,4 - 396 205 396 205 523.5 161 c 128,-1,5 - 651 117 651 117 794 117 c 0,6,7 - 942 117 942 117 1020.5 160.5 c 128,-1,8 - 1099 204 1099 204 1099 285 c 0,9,10 - 1099 349 1099 349 1055 389 c 128,-1,11 - 1011 429 1011 429 913 455 c 2,12,-1 - 784 489 l 2,13,14 - 629 529 629 529 563.5 567.5 c 128,-1,15 - 498 606 498 606 461 661 c 128,-1,16 - 424 716 424 716 424 796 c 0,17,18 - 424 944 424 944 529.5 1021.5 c 128,-1,19 - 635 1099 635 1099 837 1099 c 0,20,21 - 1016 1099 1016 1099 1121.5 1036 c 128,-1,22 - 1227 973 1227 973 1255 834 c 1,23,-1 - 1093 814 l 1,24,25 - 1078 886 1078 886 1012.5 924.5 c 128,-1,26 - 947 963 947 963 837 963 c 0,27,28 - 715 963 715 963 657 926 c 128,-1,29 - 599 889 599 889 599 814 c 0,30,31 - 599 768 599 768 623 738 c 128,-1,32 - 647 708 647 708 694 687 c 128,-1,33 - 741 666 741 666 892 629 c 0,34,35 - 1035 593 1035 593 1098 562.5 c 128,-1,36 - 1161 532 1161 532 1197.5 495 c 128,-1,37 - 1234 458 1234 458 1254 409.5 c 128,-1,38 - 1274 361 1274 361 1274 299 c 0,39,40 - 1274 153 1274 153 1143 66.5 c 128,-1,41 - 1012 -20 1012 -20 794 -20 c 0,42,43 - 656 -20 656 -20 528.5 15.5 c 128,-1,44 - 401 51 401 51 318 111 c 1,45,-1 - 318 0 l 1,46,-1 - 138 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02AB -Encoding: 683 683 621 -Width: 1295 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 11 - 5 - 6 - 3 - 10 - 10 - 0 - 0 - 5 - 8 - 3 - 13 - 12 - 5 - 9 - 3 - 9 - 80 - 89 - 3 - 15 - 1 - 0 - 6 - 10 - 0 - 10 - 80 - 89 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1080 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1295 1540 basechar 0 -AnchorPoint: "Anchor-20" 1295 -380 basechar 0 -AnchorPoint: "Anchor-16" 775 1200 basechar 0 -AnchorPoint: "Anchor-15" 1200 1260 basechar 0 -AnchorPoint: "Anchor-14" 767 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -138 0 m 1,0,-1 - 138 1484 l 1,1,-1 - 318 1484 l 1,2,-1 - 318 1082 l 1,3,-1 - 1214 1082 l 1,4,-1 - 1214 945 l 1,5,-1 - 512 139 l 1,6,-1 - 1251 139 l 1,7,-1 - 1251 0 l 1,8,-1 - 138 0 l 1,0,-1 -318 943 m 1,9,-1 - 318 141 l 1,10,-1 - 1011 943 l 1,11,-1 - 318 943 l 1,9,-1 -EndSplineSet -EndChar - -StartChar: uni02AC -Encoding: 684 684 622 -Width: 994 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 12 - 25 - 15 - 2 - 5 - 18 - 6 - 26 - 27 - 15 - 23 - 20 - 3 - 14 - 24 - 24 - 19 - 7 - 10 - 2 - 3 - 9 - 1 - 1 - 3 - 22 - 19 - 19 - 6 - 16 - 21 - 14 - 21 - 12 - 0 - 9 - 0 - 6 - 0 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,white] -SHP[rp2] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 671 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 994 1540 basechar 0 -AnchorPoint: "Anchor-20" 994 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1540 basechar 0 -AnchorPoint: "Anchor-15" 980 1540 basechar 0 -AnchorPoint: "Anchor-14" 503 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -773 777 m 1,0,-1 - 640 777 l 1,1,-1 - 497 1324 l 1,2,-1 - 349 777 l 1,3,-1 - 216 777 l 1,4,-1 - 25 1484 l 1,5,-1 - 149 1484 l 1,6,-1 - 283 916 l 1,7,-1 - 436 1484 l 1,8,-1 - 559 1484 l 1,9,-1 - 714 916 l 1,10,-1 - 847 1484 l 1,11,-1 - 969 1484 l 1,12,-1 - 773 777 l 1,0,-1 -773 1 m 1,13,-1 - 640 1 l 1,14,-1 - 497 548 l 1,15,-1 - 349 1 l 1,16,-1 - 216 1 l 1,17,-1 - 25 708 l 1,18,-1 - 149 708 l 1,19,-1 - 283 140 l 1,20,-1 - 436 708 l 1,21,-1 - 559 708 l 1,22,-1 - 714 140 l 1,23,-1 - 847 708 l 1,24,-1 - 969 708 l 1,25,-1 - 773 1 l 1,13,-1 -EndSplineSet -EndChar - -StartChar: uni02AD -Encoding: 685 685 623 -Width: 1080 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 4 - 12 - 12 - 5 - 13 - 1 - 9 - 9 - 0 - 8 - 13 - 8 - 16 - 17 - 14 - 11 - 83 - 89 - 1 - 5 - 14 - 5 - 14 - 5 - 6 - 9 - 13 - 21 - 6 - 3 - 83 - 89 - 6 - 0 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 847 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1080 1540 basechar 0 -AnchorPoint: "Anchor-20" 1080 -380 basechar 0 -AnchorPoint: "Anchor-16" 530 1200 basechar 0 -AnchorPoint: "Anchor-15" 1020 1260 basechar 0 -AnchorPoint: "Anchor-14" 525 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -981 997 m 1,0,-1 - 807 997 l 1,1,-1 - 807 1316 l 1,2,-1 - 274 1316 l 1,3,-1 - 274 997 l 1,4,-1 - 99 997 l 1,5,-1 - 99 1484 l 1,6,-1 - 981 1484 l 1,7,-1 - 981 997 l 1,0,-1 -981 0 m 1,8,-1 - 807 0 l 1,9,-1 - 807 319 l 1,10,-1 - 274 319 l 1,11,-1 - 274 0 l 1,12,-1 - 99 0 l 1,13,-1 - 99 487 l 1,14,-1 - 981 487 l 1,15,-1 - 981 0 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: uni02AE -Encoding: 686 686 624 -Width: 1407 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 28 - 32 - 32 - 31 - 21 - 7 - 15 - 7 - 31 - 3 - 34 - 33 - 0 - 4 - 29 - 15 - 17 - 12 - 80 - 89 - 17 - 16 - 32 - 4 - 4 - 25 - 80 - 89 - 4 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1407 1540 basechar 0 -AnchorPoint: "Anchor-20" 1407 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1095 144 m 1,0,-1 - 1092 144 l 1,1,2 - 1039 64 1039 64 958.5 21.5 c 128,-1,3 - 878 -21 878 -21 755 -21 c 0,4,5 - 579 -21 579 -21 495.5 66.5 c 128,-1,6 - 412 154 412 154 412 360 c 2,7,-1 - 412 632 l 2,8,9 - 412 766 412 766 394.5 822.5 c 128,-1,10 - 377 879 377 879 337.5 908.5 c 128,-1,11 - 298 938 298 938 228 938 c 0,12,13 - 139 938 139 938 81 900 c 1,14,-1 - 39 1059 l 1,15,16 - 119 1100 119 1100 250 1100 c 0,17,18 - 417 1100 417 1100 505 996 c 128,-1,19 - 593 892 593 892 593 678 c 2,20,-1 - 593 395 l 2,21,22 - 593 281 593 281 614 225.5 c 128,-1,23 - 635 170 635 170 683 144 c 128,-1,24 - 731 118 731 118 816 118 c 0,25,26 - 943 118 943 118 1019.5 206 c 128,-1,27 - 1096 294 1096 294 1096 443 c 2,28,-1 - 1096 1082 l 1,29,-1 - 1276 1082 l 1,30,-1 - 1276 -426 l 1,31,-1 - 1095 -426 l 1,32,-1 - 1095 144 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02AF -Encoding: 687 687 625 -Width: 1407 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 36 - 43 - 21 - 7 - 31 - 28 - 41 - 41 - 7 - 15 - 3 - 42 - 43 - 38 - 33 - 80 - 89 - 38 - 27 - 0 - 4 - 29 - 15 - 17 - 12 - 80 - 89 - 17 - 16 - 4 - 25 - 80 - 89 - 4 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1410 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1407 1540 basechar 0 -AnchorPoint: "Anchor-20" 1407 -380 basechar 0 -AnchorPoint: "Anchor-16" 780 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 780 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1095 144 m 1,0,-1 - 1092 144 l 1,1,2 - 1039 64 1039 64 958.5 21.5 c 128,-1,3 - 878 -21 878 -21 755 -21 c 0,4,5 - 579 -21 579 -21 495.5 66.5 c 128,-1,6 - 412 154 412 154 412 360 c 2,7,-1 - 412 632 l 2,8,9 - 412 766 412 766 394.5 822.5 c 128,-1,10 - 377 879 377 879 337.5 908.5 c 128,-1,11 - 298 938 298 938 228 938 c 0,12,13 - 139 938 139 938 81 900 c 1,14,-1 - 39 1059 l 1,15,16 - 119 1100 119 1100 242 1100 c 0,17,18 - 420 1100 420 1100 506.5 1002 c 128,-1,19 - 593 904 593 904 593 682 c 2,20,-1 - 593 395 l 2,21,22 - 593 281 593 281 614 225.5 c 128,-1,23 - 635 170 635 170 683 144 c 128,-1,24 - 731 118 731 118 816 118 c 0,25,26 - 943 118 943 118 1019.5 206 c 128,-1,27 - 1096 294 1096 294 1096 443 c 2,28,-1 - 1096 1082 l 1,29,-1 - 1276 1082 l 1,30,-1 - 1276 -20 l 2,31,32 - 1276 -263 1276 -263 1466 -263 c 0,33,34 - 1525 -263 1525 -263 1597 -243 c 1,35,-1 - 1626 -402 l 1,36,37 - 1529 -425 1529 -425 1449 -425 c 0,38,39 - 1279 -425 1279 -425 1187 -322 c 128,-1,40 - 1095 -219 1095 -219 1095 -27 c 2,41,-1 - 1095 144 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02B0 -Encoding: 688 688 626 -Width: 785 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 812 874 N 1 0 0 1 394 0 2 -EndChar - -StartChar: uni02B1 -Encoding: 689 689 627 -Width: 785 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 8 - 7 - 28 - 16 - 16 - 17 - 17 - 23 - 7 - 3 - 32 - 31 - 20 - 25 - 229 - 89 - 20 - 0 - 30 - 30 - 3 - 8 - 17 - 232 - 3 - 12 - 228 - 89 - 0 - 3 - 32 - 3 - 2 - 3 - 236 -SVTCA[y-axis] -MIAP[rnd] -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -216 1122 m 1,0,1 - 257 1199 257 1199 312.5 1233 c 128,-1,2 - 368 1267 368 1267 452 1267 c 0,3,4 - 570 1267 570 1267 627.5 1205.5 c 128,-1,5 - 685 1144 685 1144 685 998 c 2,6,-1 - 685 490 l 1,7,-1 - 562 490 l 1,8,-1 - 562 974 l 2,9,10 - 562 1087 562 1087 527 1128 c 128,-1,11 - 492 1169 492 1169 410 1169 c 0,12,13 - 322 1169 322 1169 271 1106.5 c 128,-1,14 - 220 1044 220 1044 220 940 c 2,15,-1 - 220 490 l 1,16,-1 - 97 490 l 1,17,-1 - 97 1337 l 2,18,19 - 97 1546 97 1546 290 1546 c 0,20,21 - 339 1546 339 1546 387 1535 c 1,22,-1 - 387 1418 l 1,23,24 - 353 1432 353 1432 306 1432 c 0,25,26 - 220 1432 220 1432 220 1332 c 2,27,-1 - 220 1264 l 2,28,29 - 220 1152 220 1152 214 1122 c 1,30,-1 - 216 1122 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni02B2 -Encoding: 690 690 628 -Width: 326 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 0 - 14 - 14 - 3 - 4 - 4 - 18 - 9 - 17 - 15 - 235 - 7 - 11 - 228 - 89 - 7 - 1 - 0 - 229 - 89 - 1 - 234 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -104 1415 m 1,0,-1 - 104 1536 l 1,1,-1 - 226 1536 l 1,2,-1 - 226 1415 l 1,3,-1 - 104 1415 l 1,0,-1 -226 396 m 2,4,5 - 226 289 226 289 186 240 c 128,-1,6 - 146 191 146 191 63 191 c 0,7,8 - 6 191 6 191 -23 197 c 1,9,-1 - -23 295 l 1,10,-1 - 19 291 l 1,11,12 - 67 291 67 291 85.5 317 c 128,-1,13 - 104 343 104 343 104 415 c 2,14,-1 - 104 1253 l 1,15,-1 - 226 1253 l 1,16,-1 - 226 396 l 2,4,5 -EndSplineSet -EndChar - -StartChar: uni02B3 -Encoding: 691 691 629 -Width: 491 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 5 - 18 - 18 - 1 - 0 - 0 - 11 - 19 - 20 - 5 - 9 - 0 - 9 - 14 - 229 - 89 - 9 - 236 - 3 - 235 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -107 490 m 1,0,-1 - 107 1076 l 2,1,2 - 107 1189 107 1189 103 1253 c 1,3,-1 - 219 1253 l 1,4,-1 - 224 1098 l 1,5,-1 - 227 1098 l 1,6,7 - 257 1196 257 1196 294 1231.5 c 128,-1,8 - 331 1267 331 1267 401 1267 c 0,9,10 - 423 1267 423 1267 451 1260 c 1,11,-1 - 451 1144 l 1,12,13 - 423 1151 423 1151 386 1151 c 0,14,15 - 308 1151 308 1151 268.5 1082 c 128,-1,16 - 229 1013 229 1013 229 888 c 2,17,-1 - 229 490 l 1,18,-1 - 107 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02B4 -Encoding: 692 692 630 -Width: 491 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 5 - 17 - 17 - 1 - 1 - 11 - 20 - 19 - 5 - 6 - 6 - 4 - 18 - 235 - 9 - 14 - 229 - 89 - 9 - 233 - 4 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -384 1253 m 1,0,-1 - 384 667 l 2,1,2 - 384 554 384 554 388 490 c 1,3,-1 - 272 490 l 1,4,-1 - 267 645 l 1,5,-1 - 264 645 l 1,6,7 - 236 549 236 549 198 512.5 c 128,-1,8 - 160 476 160 476 90 476 c 0,9,10 - 68 476 68 476 40 483 c 1,11,-1 - 40 599 l 1,12,13 - 68 592 68 592 105 592 c 0,14,15 - 184 592 184 592 223 661 c 128,-1,16 - 262 730 262 730 262 855 c 2,17,-1 - 262 1253 l 1,18,-1 - 384 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02B5 -Encoding: 693 693 631 -Width: 491 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 11 - 23 - 23 - 1 - 1 - 18 - 25 - 7 - 26 - 12 - 15 - 24 - 235 - 9 - 4 - 229 - 89 - 9 - 15 - 64 - 15 - 20 - 229 - 89 - 15 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -366 1253 m 1,0,-1 - 366 405 l 2,1,2 - 366 348 366 348 385 324.5 c 128,-1,3 - 404 301 404 301 442 301 c 0,4,5 - 481 301 481 301 509 311 c 1,6,-1 - 509 198 l 1,7,8 - 458 190 458 190 420 190 c 0,9,10 - 247 190 247 190 247 399 c 2,11,-1 - 247 625 l 1,12,13 - 222 545 222 545 183 510.5 c 128,-1,14 - 144 476 144 476 72 476 c 0,15,16 - 50 476 50 476 22 483 c 1,17,-1 - 22 599 l 1,18,19 - 52 592 52 592 88 592 c 0,20,21 - 165 592 165 592 204.5 661 c 128,-1,22 - 244 730 244 730 244 855 c 2,23,-1 - 244 1253 l 1,24,-1 - 366 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02B6 -Encoding: 694 694 632 -Width: 746 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 4 - 1 - 3 - 0 - 0 - 20 - 20 - 11 - 2 - 3 - 3 - 16 - 7 - 11 - 7 - 21 - 22 - 0 - 19 - 228 - 89 - 4 - 0 - 0 - 11 - 2 - 12 - 235 - 11 - 20 - 228 - 89 - 11 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -222 944 m 1,0,-1 - 358 944 l 1,1,-1 - 584 1253 l 1,2,-1 - 732 1253 l 1,3,-1 - 491 937 l 1,4,5 - 584 919 584 919 635 859 c 128,-1,6 - 686 799 686 799 686 707 c 0,7,8 - 686 605 686 605 612.5 547.5 c 128,-1,9 - 539 490 539 490 414 490 c 2,10,-1 - 100 490 l 1,11,-1 - 100 1253 l 1,12,-1 - 222 1253 l 1,13,-1 - 222 944 l 1,0,-1 -406 586 m 2,14,15 - 557 586 557 586 557 715 c 0,16,17 - 557 848 557 848 409 848 c 2,18,-1 - 222 848 l 1,19,-1 - 222 586 l 1,20,-1 - 406 586 l 2,14,15 -EndSplineSet -EndChar - -StartChar: uni02B7 -Encoding: 695 695 633 -Width: 985 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 21 - 22 - 22 - 4 - 23 - 24 - 10 - 9 - 9 - 23 - 18 - 13 - 4 - 3 - 8 - 21 - 15 - 9 - 235 - 0 - 8 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -786 491 m 1,0,-1 - 644 491 l 1,1,-1 - 527 983 l 2,2,3 - 516 1022 516 1022 491 1148 c 1,4,5 - 481 1100 481 1100 473.5 1063.5 c 128,-1,6 - 466 1027 466 1027 333 491 c 1,7,-1 - 192 491 l 1,8,-1 - -14 1253 l 1,9,-1 - 107 1253 l 1,10,-1 - 231 735 l 2,11,12 - 253 653 253 653 261 596 c 1,13,-1 - 275 656 l 1,14,-1 - 426 1253 l 1,15,-1 - 557 1253 l 1,16,-1 - 686 730 l 1,17,-1 - 717 596 l 1,18,-1 - 730 658 l 1,19,-1 - 748 735 l 1,20,-1 - 877 1253 l 1,21,-1 - 997 1253 l 1,22,-1 - 786 491 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02B8 -Encoding: 696 696 634 -Width: 657 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 13 - 14 - 14 - 3 - 11 - 18 - 19 - 9 - 8 - 8 - 18 - 13 - 235 - 11 - 7 - 0 - 9 - 235 - 0 - 4 - 228 - 89 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -116 190 m 0,0,1 - 67 190 67 190 32 198 c 1,2,-1 - 32 293 l 1,3,-1 - 89 289 l 2,4,5 - 145 289 145 289 191.5 333 c 128,-1,6 - 238 377 238 377 281 493 c 1,7,-1 - -11 1253 l 1,8,-1 - 120 1253 l 1,9,-1 - 275 831 l 1,10,-1 - 342 628 l 1,11,-1 - 389 767 l 1,12,-1 - 550 1253 l 1,13,-1 - 680 1253 l 1,14,-1 - 397 490 l 2,15,16 - 332 318 332 318 268.5 254 c 128,-1,17 - 205 190 205 190 116 190 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni02B9 -Encoding: 697 697 635 -Width: 391 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 10 39 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni02BA -Encoding: 698 698 636 -Width: 727 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 5 34 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni02BB -Encoding: 699 699 637 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 7 - 5 - 0 - 5 - 0 - 9 - 9 - 10 - 11 - 7 - 7 - 5 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -127 1027 m 1,0,-1 - 127 1173 l 2,1,2 - 127 1270 127 1270 145.5 1343.5 c 128,-1,3 - 164 1417 164 1417 207 1484 c 1,4,-1 - 328 1484 l 1,5,6 - 233 1347 233 1347 233 1222 c 1,7,-1 - 322 1222 l 1,8,-1 - 322 1027 l 1,9,-1 - 127 1027 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02BC -Encoding: 700 700 638 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 4 - 5 - 0 - 8 - 5 - 8 - 10 - 11 - 7 - 7 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -319 1484 m 1,0,-1 - 319 1338 l 2,1,2 - 319 1241 319 1241 300.5 1167.5 c 128,-1,3 - 282 1094 282 1094 239 1027 c 1,4,-1 - 118 1027 l 1,5,6 - 213 1164 213 1164 213 1289 c 1,7,-1 - 124 1289 l 1,8,-1 - 124 1484 l 1,9,-1 - 319 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02BD -Encoding: 701 701 639 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 8 - 8 - 4 - 1 - 1 - 11 - 10 - 2 - 2 - 0 - 5 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -333 1484 m 1,0,-1 - 333 1289 l 1,1,-1 - 244 1289 l 1,2,3 - 244 1164 244 1164 339 1027 c 1,4,-1 - 218 1027 l 1,5,6 - 174 1097 174 1097 156 1170.5 c 128,-1,7 - 138 1244 138 1244 138 1338 c 2,8,-1 - 138 1484 l 1,9,-1 - 333 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02BE -Encoding: 702 702 640 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 6 - 13 - 3 - 10 - 13 - 10 - 14 - 15 - 6 - 0 - 7 - 128 - 13 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -246 1229 m 1,0,1 - 288 1229 288 1229 315.5 1257 c 128,-1,2 - 343 1285 343 1285 343 1334 c 256,3,4 - 343 1383 343 1383 315.5 1410.5 c 128,-1,5 - 288 1438 288 1438 246 1438 c 1,6,-1 - 246 1523 l 1,7,8 - 330 1523 330 1523 380.5 1472 c 128,-1,9 - 431 1421 431 1421 431 1334 c 256,10,11 - 431 1247 431 1247 380.5 1195.5 c 128,-1,12 - 330 1144 330 1144 246 1144 c 1,13,-1 - 246 1229 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni02BF -Encoding: 703 703 641 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 10 - 3 - 7 - 0 - 3 - 0 - 14 - 15 - 7 - 13 - 6 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -435 1144 m 1,0,1 - 350 1144 350 1144 300 1196 c 128,-1,2 - 250 1248 250 1248 250 1334 c 0,3,4 - 250 1421 250 1421 300 1472 c 128,-1,5 - 350 1523 350 1523 435 1523 c 1,6,-1 - 435 1438 l 1,7,8 - 393 1438 393 1438 365.5 1410.5 c 128,-1,9 - 338 1383 338 1383 338 1334 c 256,10,11 - 338 1285 338 1285 365.5 1257 c 128,-1,12 - 393 1229 393 1229 435 1229 c 1,13,-1 - 435 1144 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni02C0 -Encoding: 704 704 642 -Width: 714 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 6 - 18 - 22 - 0 - 11 - 12 - 12 - 0 - 18 - 3 - 24 - 23 - 11 - 11 - 15 - 3 - 21 - 228 - 89 - 3 - 3 - 0 - 15 - 15 - 9 - 228 - 89 - 15 - 230 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -261 490 m 1,0,-1 - 261 844 l 1,1,2 - 291 831 291 831 333 831 c 0,3,4 - 438 831 438 831 482.5 904.5 c 128,-1,5 - 527 978 527 978 527 1113 c 0,6,7 - 527 1255 527 1255 483.5 1321.5 c 128,-1,8 - 440 1388 440 1388 336 1388 c 0,9,10 - 199 1388 199 1388 178 1255 c 1,11,-1 - 52 1265 l 1,12,13 - 72 1369 72 1369 146.5 1426.5 c 128,-1,14 - 221 1484 221 1484 333 1484 c 0,15,16 - 491 1484 491 1484 573 1388 c 128,-1,17 - 655 1292 655 1292 655 1110 c 0,18,19 - 655 945 655 945 585 847 c 128,-1,20 - 515 749 515 749 383 738 c 1,21,-1 - 383 490 l 1,22,-1 - 261 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02C1 -Encoding: 705 705 643 -Width: 714 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 16 - 4 - 22 - 0 - 11 - 10 - 10 - 0 - 4 - 3 - 23 - 24 - 19 - 1 - 228 - 89 - 19 - 19 - 0 - 7 - 11 - 11 - 7 - 7 - 13 - 228 - 89 - 7 - 230 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -323 490 m 1,0,-1 - 323 738 l 1,1,2 - 191 749 191 749 121 847 c 128,-1,3 - 51 945 51 945 51 1110 c 0,4,5 - 51 1291 51 1291 133 1387.5 c 128,-1,6 - 215 1484 215 1484 373 1484 c 0,7,8 - 486 1484 486 1484 560 1426.5 c 128,-1,9 - 634 1369 634 1369 654 1265 c 1,10,-1 - 528 1255 l 1,11,12 - 507 1388 507 1388 370 1388 c 0,13,14 - 266 1388 266 1388 222.5 1321.5 c 128,-1,15 - 179 1255 179 1255 179 1113 c 0,16,17 - 179 978 179 978 223.5 904.5 c 128,-1,18 - 268 831 268 831 373 831 c 0,19,20 - 415 831 415 831 445 844 c 1,21,-1 - 445 490 l 1,22,-1 - 323 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02C2 -Encoding: 706 706 644 -Width: 1196 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 31 60 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni02C3 -Encoding: 707 707 645 -Width: 1196 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 33 62 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni02C4 -Encoding: 708 708 646 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 0 - 2 - 4 - 3 - 7 - 8 - 2 - 1 - 6 - 4 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1094 237 m 1,0,-1 - 927 237 l 1,1,-1 - 596 1019 l 1,2,-1 - 268 237 l 1,3,-1 - 101 237 l 1,4,-1 - 511 1208 l 1,5,-1 - 679 1208 l 1,6,-1 - 1094 237 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02C5 -Encoding: 709 709 647 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 6 - 4 - 2 - 3 - 7 - 8 - 4 - 1 - 5 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -679 237 m 1,0,-1 - 511 237 l 1,1,-1 - 101 1208 l 1,2,-1 - 268 1208 l 1,3,-1 - 596 426 l 1,4,-1 - 927 1208 l 1,5,-1 - 1094 1208 l 1,6,-1 - 679 237 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: circumflex -Encoding: 710 710 648 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 9 - 8 - 3 - 3 - 1 - 6 - 1 - 6 - 11 - 10 - 1 - 8 - 148 - 91 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -662 1221 m 1,0,-1 - 662 1201 l 1,1,-1 - 557 1201 l 1,2,-1 - 338 1370 l 1,3,-1 - 336 1370 l 1,4,-1 - 104 1201 l 1,5,-1 - 0 1201 l 1,6,-1 - 0 1221 l 1,7,-1 - 234 1491 l 1,8,-1 - 438 1491 l 1,9,-1 - 662 1221 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: caron -Encoding: 711 711 649 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 0 - 1 - 5 - 5 - 8 - 3 - 8 - 3 - 11 - 10 - 1 - 3 - 148 - 91 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -438 1201 m 1,0,-1 - 234 1201 l 1,1,-1 - 0 1471 l 1,2,-1 - 0 1491 l 1,3,-1 - 104 1491 l 1,4,-1 - 336 1322 l 1,5,-1 - 338 1322 l 1,6,-1 - 557 1491 l 1,7,-1 - 662 1491 l 1,8,-1 - 662 1471 l 1,9,-1 - 438 1201 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02C8 -Encoding: 712 712 650 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 0 - 1 - 1 - 4 - 5 - 3 - 128 - 1 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -397 1152 m 1,0,-1 - 284 1152 l 1,1,-1 - 284 1484 l 1,2,-1 - 397 1484 l 1,3,-1 - 397 1152 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: macron -Encoding: 713 713 651 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 0 - 4 - 5 - 1 - 2 - 142 - 89 - 15 - 1 - 1 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -600 1236 m 1,0,-1 - 51 1236 l 1,1,-1 - 51 1363 l 1,2,-1 - 600 1363 l 1,3,-1 - 600 1236 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02CA -Encoding: 714 714 652 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 3 - 6 - 7 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -199 1205 m 1,0,-1 - 199 1225 l 1,1,-1 - 329 1484 l 1,2,-1 - 536 1484 l 1,3,-1 - 536 1455 l 1,4,-1 - 293 1205 l 1,5,-1 - 199 1205 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02CB -Encoding: 715 715 653 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 4 - 6 - 7 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -392 1205 m 1,0,-1 - 149 1455 l 1,1,-1 - 149 1484 l 1,2,-1 - 356 1484 l 1,3,-1 - 486 1225 l 1,4,-1 - 486 1205 l 1,5,-1 - 392 1205 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02CC -Encoding: 716 716 654 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 0 - 1 - 1 - 4 - 5 - 1 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -397 -406 m 1,0,-1 - 284 -406 l 1,1,-1 - 284 -74 l 1,2,-1 - 397 -74 l 1,3,-1 - 397 -406 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02CD -Encoding: 717 717 655 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 0 - 4 - 5 - 0 - 3 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -616 -276 m 1,0,-1 - 67 -276 l 1,1,-1 - 67 -149 l 1,2,-1 - 616 -149 l 1,3,-1 - 616 -276 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02CE -Encoding: 718 718 656 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 4 - 6 - 7 - 0 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -362 -406 m 1,0,-1 - 119 -156 l 1,1,-1 - 119 -127 l 1,2,-1 - 326 -127 l 1,3,-1 - 456 -386 l 1,4,-1 - 456 -406 l 1,5,-1 - 362 -406 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02CF -Encoding: 719 719 657 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 3 - 6 - 7 - 0 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -229 -406 m 1,0,-1 - 229 -386 l 1,1,-1 - 359 -127 l 1,2,-1 - 566 -127 l 1,3,-1 - 566 -156 l 1,4,-1 - 323 -406 l 1,5,-1 - 229 -406 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02D0 -Encoding: 720 720 658 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 0 - 7 - 4 - 3 - 4 - 8 - 9 - 6 - 4 - 21 - 1 - 3 - 15 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -392 1082 m 1,0,-1 - 291 867 l 1,1,-1 - 278 867 l 1,2,-1 - 177 1082 l 1,3,-1 - 392 1082 l 1,0,-1 -177 0 m 1,4,-1 - 278 215 l 1,5,-1 - 291 215 l 1,6,-1 - 392 0 l 1,7,-1 - 177 0 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni02D1 -Encoding: 721 721 659 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 3 - 0 - 4 - 5 - 1 - 3 - 15 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -392 1082 m 1,0,-1 - 291 867 l 1,1,-1 - 278 867 l 1,2,-1 - 177 1082 l 1,3,-1 - 392 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02D2 -Encoding: 722 722 660 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 3 - 10 - 6 - 13 - 10 - 13 - 15 - 14 - 6 - 0 - 7 - 128 - 13 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -246 177 m 1,0,1 - 288 177 288 177 315.5 205 c 128,-1,2 - 343 233 343 233 343 282 c 256,3,4 - 343 331 343 331 315.5 358.5 c 128,-1,5 - 288 386 288 386 246 386 c 1,6,-1 - 246 471 l 1,7,8 - 330 471 330 471 380.5 420 c 128,-1,9 - 431 369 431 369 431 282 c 256,10,11 - 431 195 431 195 380.5 143.5 c 128,-1,12 - 330 92 330 92 246 92 c 1,13,-1 - 246 177 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni02D3 -Encoding: 723 723 661 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 10 - 3 - 7 - 0 - 3 - 0 - 14 - 15 - 7 - 13 - 6 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -435 92 m 1,0,1 - 350 92 350 92 300 144 c 128,-1,2 - 250 196 250 196 250 282 c 0,3,4 - 250 369 250 369 300 420 c 128,-1,5 - 350 471 350 471 435 471 c 1,6,-1 - 435 386 l 1,7,8 - 393 386 393 386 365.5 358.5 c 128,-1,9 - 338 331 338 331 338 282 c 256,10,11 - 338 233 338 233 365.5 205 c 128,-1,12 - 393 177 393 177 435 177 c 1,13,-1 - 435 92 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni02D4 -Encoding: 724 724 662 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 6 - 3 - 0 - 3 - 1 - 3 - 8 - 9 - 6 - 2 - 2 - 5 - 128 - 1 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -520 173 m 1,0,-1 - 161 173 l 1,1,-1 - 161 281 l 1,2,-1 - 284 281 l 1,3,-1 - 284 510 l 1,4,-1 - 397 510 l 1,5,-1 - 397 281 l 1,6,-1 - 520 281 l 1,7,-1 - 520 173 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02D5 -Encoding: 725 725 663 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 3 - 7 - 3 - 5 - 3 - 8 - 9 - 1 - 5 - 5 - 7 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -520 402 m 1,0,-1 - 397 402 l 1,1,-1 - 397 173 l 1,2,-1 - 284 173 l 1,3,-1 - 284 402 l 1,4,-1 - 161 402 l 1,5,-1 - 161 510 l 1,6,-1 - 520 510 l 1,7,-1 - 520 402 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02D6 -Encoding: 726 726 664 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 10 - 2 - 2 - 7 - 3 - 0 - 3 - 5 - 3 - 12 - 13 - 10 - 6 - 1 - 5 - 6 - 5 - 9 - 192 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -520 288 m 1,0,-1 - 397 288 l 1,1,-1 - 397 163 l 1,2,-1 - 284 163 l 1,3,-1 - 284 288 l 1,4,-1 - 161 288 l 1,5,-1 - 161 396 l 1,6,-1 - 284 396 l 1,7,-1 - 284 520 l 1,8,-1 - 397 520 l 1,9,-1 - 397 396 l 1,10,-1 - 520 396 l 1,11,-1 - 520 288 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02D7 -Encoding: 727 727 665 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 0 - 1 - 5 - 4 - 2 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -653 275 m 1,0,-1 - 29 275 l 1,1,-1 - 29 416 l 1,2,-1 - 653 416 l 1,3,-1 - 653 275 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: breve -Encoding: 728 728 666 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 9 - 13 - 3 - 12 - 8 - 80 - 3 - 96 - 3 - 2 - 128 - 3 - 240 - 3 - 2 - 15 - 3 - 1 - 9 - 3 - 3 - 0 - 0 - 6 - 143 - 89 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -SHP[rp2] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -297 1201 m 0,0,1 - 165 1201 165 1201 74 1286 c 128,-1,2 - -17 1371 -17 1371 -35 1510 c 1,3,-1 - 82 1510 l 1,4,5 - 110 1357 110 1357 299 1357 c 0,6,7 - 485 1357 485 1357 514 1510 c 1,8,-1 - 631 1510 l 1,9,10 - 610 1368 610 1368 520.5 1284.5 c 128,-1,11 - 431 1201 431 1201 297 1201 c 0,0,1 -EndSplineSet -EndChar - -StartChar: dotaccent -Encoding: 729 729 667 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 3 - 0 - 0 - 5 - 4 - 0 - 1 - 144 - 89 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -156 1312 m 1,0,-1 - 156 1484 l 1,1,-1 - 336 1484 l 1,2,-1 - 336 1312 l 1,3,-1 - 156 1312 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: ring -Encoding: 730 730 668 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 47 - 12 - 0 - 18 - 6 - 0 - 6 - 25 - 24 - 9 - 15 - 141 - 89 - 240 - 9 - 1 - 15 - 9 - 31 - 9 - 2 - 9 - 3 - 9 - 3 - 64 - 3 - 21 - 141 - 89 - 15 - 3 - 47 - 3 - 63 - 3 - 79 - 3 - 127 - 3 - 159 - 3 - 191 - 3 - 239 - 3 - 8 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -535 1410 m 256,0,1 - 535 1310 535 1310 464 1239 c 128,-1,2 - 393 1168 393 1168 293 1168 c 256,3,4 - 193 1168 193 1168 122 1239 c 128,-1,5 - 51 1310 51 1310 51 1410 c 0,6,7 - 51 1511 51 1511 122 1581 c 128,-1,8 - 193 1651 193 1651 293 1651 c 0,9,10 - 392 1651 392 1651 463.5 1580.5 c 128,-1,11 - 535 1510 535 1510 535 1410 c 256,0,1 -427 1410 m 256,12,13 - 427 1466 427 1466 388 1505 c 128,-1,14 - 349 1544 349 1544 293 1544 c 0,15,16 - 236 1544 236 1544 197 1505 c 128,-1,17 - 158 1466 158 1466 158 1410 c 0,18,19 - 158 1355 158 1355 196 1314 c 128,-1,20 - 234 1273 234 1273 293 1273 c 0,21,22 - 351 1273 351 1273 389 1313.5 c 128,-1,23 - 427 1354 427 1354 427 1410 c 256,12,13 -EndSplineSet -EndChar - -StartChar: ogonek -Encoding: 731 731 669 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 9 - 14 - 14 - 5 - 0 - 5 - 21 - 20 - 8 - 64 - 7 - 10 - 72 - 8 - 2 - 17 - 141 - 89 - 16 - 2 - 1 - 32 - 2 - 80 - 2 - 96 - 2 - 112 - 2 - 176 - 2 - 192 - 2 - 6 - 2 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -430 -400 m 1,0,1 - 367 -427 367 -427 291 -427 c 0,2,3 - 186 -427 186 -427 133 -376 c 128,-1,4 - 80 -325 80 -325 80 -240 c 0,5,6 - 80 -170 80 -170 123.5 -104 c 128,-1,7 - 167 -38 167 -38 235 0 c 1,8,-1 - 368 0 l 1,9,10 - 343 -14 343 -14 317 -36.5 c 128,-1,11 - 291 -59 291 -59 269.5 -88.5 c 128,-1,12 - 248 -118 248 -118 234.5 -153 c 128,-1,13 - 221 -188 221 -188 221 -227 c 0,14,15 - 221 -269 221 -269 245.5 -293 c 128,-1,16 - 270 -317 270 -317 315 -317 c 0,17,18 - 369 -317 369 -317 430 -293 c 1,19,-1 - 430 -400 l 1,0,1 -EndSplineSet -EndChar - -StartChar: tilde -Encoding: 732 732 670 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 21 - 25 - 9 - 24 - 20 - 20 - 13 - 13 - 5 - 143 - 89 - 32 - 13 - 1 - 176 - 13 - 192 - 13 - 208 - 13 - 3 - 15 - 13 - 31 - 13 - 47 - 13 - 3 - 9 - 3 - 13 - 0 - 64 - 0 - 18 - 143 - 89 - 8 - 0 - 157 - 25 - 1 - 141 - 25 - 1 - 121 - 25 - 1 - 105 - 25 - 1 - 91 - 25 - 1 - 73 - 25 - 1 - 57 - 25 - 1 - 43 - 25 - 1 - 27 - 25 - 1 - 9 - 25 - 1 - 246 - 25 - 1 - 230 - 25 - 1 - 214 - 25 - 1 - 150 - 25 - 1 - 134 - 25 - 1 - 116 - 25 - 1 - 98 - 25 - 1 - 82 - 25 - 1 - 66 - 25 - 1 - 50 - 25 - 1 - 34 - 25 - 1 - 18 - 25 - 1 - 2 - 25 - 1 - 103 - 242 - 25 - 1 - 226 - 25 - 1 - 212 - 25 - 1 - 192 - 25 - 1 - 176 - 25 - 1 - 162 - 25 - 1 - 146 - 25 - 1 - 128 - 25 - 1 - 114 - 25 - 1 - 98 - 25 - 1 - 82 - 25 - 1 - 68 - 25 - 1 - 52 - 25 - 1 - 36 - 25 - 1 - 22 - 25 - 1 - 4 - 25 - 1 - 240 - 25 - 1 - 226 - 25 - 1 - 208 - 25 - 1 - 192 - 25 - 1 - 178 - 25 - 1 - 162 - 25 - 1 - 146 - 25 - 1 - 132 - 25 - 1 - 116 - 25 - 1 - 100 - 25 - 1 - 86 - 25 - 1 - 70 - 25 - 1 - 54 - 25 - 1 - 34 - 25 - 1 - 18 - 25 - 1 - 0 - 25 - 1 - 242 - 25 - 1 - 226 - 25 - 1 - 210 - 25 - 1 - 196 - 25 - 1 - 180 - 25 - 1 - 164 - 25 - 1 - 150 - 25 - 1 - 134 - 25 - 1 - 118 - 25 - 1 - 102 - 25 - 1 - 86 - 25 - 1 - 66 - 25 - 1 - 1 - 48 - 25 - 1 - 32 - 25 - 1 - 16 - 25 - 1 - 0 - 25 - 1 - 55 -NPUSHB - 116 - 240 - 25 - 1 - 224 - 25 - 1 - 212 - 25 - 1 - 196 - 25 - 1 - 176 - 25 - 1 - 164 - 25 - 1 - 148 - 25 - 1 - 132 - 25 - 1 - 112 - 25 - 1 - 96 - 25 - 1 - 80 - 25 - 1 - 68 - 25 - 1 - 52 - 25 - 1 - 36 - 25 - 1 - 0 - 25 - 1 - 240 - 25 - 1 - 228 - 25 - 1 - 212 - 25 - 1 - 196 - 25 - 1 - 160 - 25 - 1 - 144 - 25 - 1 - 132 - 25 - 1 - 116 - 25 - 1 - 100 - 25 - 1 - 84 - 25 - 1 - 68 - 25 - 1 - 52 - 25 - 1 - 4 - 25 - 1 - 196 - 25 - 1 - 180 - 25 - 1 - 160 - 25 - 1 - 2 - 144 - 25 - 1 - 128 - 25 - 1 - 112 - 25 - 1 - 63 - 25 - 1 - 47 - 25 - 1 - 31 - 25 - 1 - 15 - 25 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,black] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -492 1201 m 0,0,1 - 450 1201 450 1201 408 1219.5 c 128,-1,2 - 366 1238 366 1238 327 1260.5 c 128,-1,3 - 288 1283 288 1283 252.5 1301.5 c 128,-1,4 - 217 1320 217 1320 186 1320 c 0,5,6 - 131 1320 131 1320 104 1289 c 128,-1,7 - 77 1258 77 1258 68 1201 c 1,8,-1 - -23 1201 l 1,9,10 - -12 1303 -12 1303 12 1355.5 c 128,-1,11 - 36 1408 36 1408 76.5 1438.5 c 128,-1,12 - 117 1469 117 1469 180 1469 c 0,13,14 - 224 1469 224 1469 266 1450.5 c 128,-1,15 - 308 1432 308 1432 347 1409.5 c 128,-1,16 - 386 1387 386 1387 420.5 1368.5 c 128,-1,17 - 455 1350 455 1350 485 1350 c 0,18,19 - 585 1350 585 1350 602 1469 c 1,20,-1 - 694 1469 l 1,21,22 - 677 1321 677 1321 627 1261 c 128,-1,23 - 577 1201 577 1201 492 1201 c 0,0,1 -EndSplineSet -EndChar - -StartChar: hungarumlaut -Encoding: 733 733 671 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 6 - 10 - 4 - 0 - 10 - 0 - 13 - 12 - 8 - 2 - 0 - 2 - 149 - 91 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -22 1201 m 1,0,-1 - 22 1221 l 1,1,-1 - 239 1508 l 1,2,-1 - 446 1508 l 1,3,-1 - 446 1479 l 1,4,-1 - 116 1201 l 1,5,-1 - 22 1201 l 1,0,-1 -369 1201 m 1,6,-1 - 369 1221 l 1,7,-1 - 586 1508 l 1,8,-1 - 793 1508 l 1,9,-1 - 793 1479 l 1,10,-1 - 463 1201 l 1,11,-1 - 369 1201 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni02DE -Encoding: 734 734 672 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 2 - 0 - 12 - 12 - 8 - 14 - 15 - 12 - 5 - 1 - 10 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-18" 0 748 mark 0 -LayerCount: 2 -Fore -SplineSet --26 745 m 1,0,-1 - 203 780 l 1,1,-1 - 232 644 l 2,2,3 - 246 576 246 576 271.5 546 c 128,-1,4 - 297 516 297 516 347 516 c 0,5,6 - 399 516 399 516 479 556 c 1,7,-1 - 538 409 l 1,8,9 - 412 357 412 357 327 357 c 0,10,11 - 117 357 117 357 75 625 c 1,12,-1 - -3 606 l 1,13,-1 - -26 745 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02DF -Encoding: 735 735 673 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 10 - 11 - 8 - 2 - 5 - 4 - 0 - 6 - 4 - 0 - 4 - 13 - 12 - 8 - 11 - 5 - 2 - 4 - 9 - 7 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -SHP[rp2] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -679 901 m 1,0,-1 - 591 813 l 1,1,-1 - 341 1064 l 1,2,-1 - 91 813 l 1,3,-1 - 3 901 l 1,4,-1 - 254 1151 l 1,5,-1 - 3 1401 l 1,6,-1 - 91 1489 l 1,7,-1 - 341 1238 l 1,8,-1 - 591 1489 l 1,9,-1 - 679 1401 l 1,10,-1 - 428 1151 l 1,11,-1 - 679 901 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02E0 -Encoding: 736 736 674 -Width: 660 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 23 - 15 - 18 - 9 - 9 - 6 - 3 - 21 - 0 - 15 - 6 - 1 - 4 - 5 - 5 - 29 - 2 - 1 - 1 - 28 - 21 - 0 - 6 - 3 - 4 - 4 - 26 - 12 - 4 - 1 - 235 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -253 596 m 1,0,-1 - -14 1253 l 1,1,-1 - 116 1253 l 1,2,-1 - 326 735 l 1,3,-1 - 543 1253 l 1,4,-1 - 672 1253 l 1,5,-1 - 398 596 l 1,6,7 - 440 524 440 524 462 460.5 c 128,-1,8 - 484 397 484 397 484 357 c 0,9,10 - 484 281 484 281 441.5 235.5 c 128,-1,11 - 399 190 399 190 326 190 c 0,12,13 - 252 190 252 190 210.5 235.5 c 128,-1,14 - 169 281 169 281 169 357 c 0,15,16 - 169 441 169 441 243 577 c 2,17,-1 - 253 596 l 1,0,-1 -378 362 m 0,18,19 - 378 385 378 385 368.5 417 c 128,-1,20 - 359 449 359 449 326 516 c 1,21,22 - 275 417 275 417 275 362 c 0,23,24 - 275 330 275 330 288.5 311.5 c 128,-1,25 - 302 293 302 293 326 293 c 0,26,27 - 378 293 378 293 378 362 c 0,18,19 -EndSplineSet -EndChar - -StartChar: uni02E1 -Encoding: 737 737 675 -Width: 322 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 0 - 3 - 3 - 4 - 5 - 1 - 234 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 490 m 1,0,-1 - 100 1536 l 1,1,-1 - 222 1536 l 1,2,-1 - 222 490 l 1,3,-1 - 100 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02E2 -Encoding: 738 738 676 -Width: 696 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 7 - 6 - 32 - 20 - 27 - 26 - 12 - 0 - 0 - 26 - 20 - 6 - 4 - 40 - 41 - 32 - 12 - 23 - 3 - 23 - 29 - 228 - 89 - 27 - 23 - 236 - 3 - 10 - 228 - 89 - 7 - 3 - 233 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -651 703 m 0,0,1 - 651 595 651 595 573.5 536.5 c 128,-1,2 - 496 478 496 478 353 478 c 0,3,4 - 225 478 225 478 147 521 c 128,-1,5 - 69 564 69 564 44 671 c 1,6,-1 - 152 693 l 1,7,8 - 168 632 168 632 217 603.5 c 128,-1,9 - 266 575 266 575 353 575 c 0,10,11 - 532 575 532 575 532 693 c 0,12,13 - 532 729 532 729 515.5 751.5 c 128,-1,14 - 499 774 499 774 468.5 789.5 c 128,-1,15 - 438 805 438 805 318 837 c 0,16,17 - 215 865 215 865 169.5 892 c 128,-1,18 - 124 919 124 919 98.5 957.5 c 128,-1,19 - 73 996 73 996 73 1053 c 0,20,21 - 73 1158 73 1158 145 1212.5 c 128,-1,22 - 217 1267 217 1267 354 1267 c 0,23,24 - 476 1267 476 1267 547.5 1223 c 128,-1,25 - 619 1179 619 1179 638 1080 c 1,26,-1 - 528 1066 l 1,27,28 - 507 1171 507 1171 354 1171 c 0,29,30 - 271 1171 271 1171 231.5 1145.5 c 128,-1,31 - 192 1120 192 1120 192 1066 c 0,32,33 - 192 1026 192 1026 219 1001 c 128,-1,34 - 246 976 246 976 311 958 c 2,35,-1 - 391 936 l 2,36,37 - 512 903 512 903 555.5 876 c 128,-1,38 - 599 849 599 849 625 807 c 128,-1,39 - 651 765 651 765 651 703 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni02E3 -Encoding: 739 739 677 -Width: 672 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 817 879 N 1 0 0 1 334 0 2 -EndChar - -StartChar: uni02E4 -Encoding: 740 740 678 -Width: 714 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 643 705 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni02E5 -Encoding: 741 741 679 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 1 - 0 - 3 - 0 - 6 - 7 - 3 - 4 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 1273 l 1,2,-1 - 160 1273 l 1,3,-1 - 160 1409 l 1,4,-1 - 624 1409 l 1,5,-1 - 624 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02E6 -Encoding: 742 742 680 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 5 - 1 - 1 - 0 - 3 - 0 - 8 - 9 - 3 - 4 - 4 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 995 l 1,2,-1 - 160 995 l 1,3,-1 - 160 1131 l 1,4,-1 - 488 1131 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02E7 -Encoding: 743 743 681 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 5 - 1 - 1 - 0 - 3 - 0 - 8 - 9 - 3 - 4 - 4 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 667 l 1,2,-1 - 160 667 l 1,3,-1 - 160 803 l 1,4,-1 - 488 803 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02E8 -Encoding: 744 744 682 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 5 - 1 - 1 - 0 - 3 - 0 - 8 - 9 - 3 - 4 - 4 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 342 l 1,2,-1 - 160 342 l 1,3,-1 - 160 478 l 1,4,-1 - 488 478 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02E9 -Encoding: 745 745 683 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 3 - 0 - 1 - 0 - 6 - 7 - 4 - 3 - 2 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 160 0 l 1,1,-1 - 160 136 l 1,2,-1 - 488 136 l 1,3,-1 - 488 1409 l 1,4,-1 - 624 1409 l 1,5,-1 - 624 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02EA -Encoding: 746 746 684 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 4 - 1 - 1 - 0 - 6 - 7 - 4 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -585 0 m 1,0,-1 - 98 0 l 1,1,-1 - 98 880 l 1,2,-1 - 234 880 l 1,3,-1 - 234 121 l 1,4,-1 - 585 121 l 1,5,-1 - 585 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02EB -Encoding: 747 747 685 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 6 - 2 - 2 - 3 - 3 - 0 - 8 - 9 - 1 - 6 - 6 - 5 - 3 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -585 393 m 1,0,-1 - 214 393 l 1,1,-1 - 214 0 l 1,2,-1 - 98 0 l 1,3,-1 - 98 880 l 1,4,-1 - 214 880 l 1,5,-1 - 214 493 l 1,6,-1 - 585 493 l 1,7,-1 - 585 393 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02EC -Encoding: 748 748 686 -Width: 682 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 649 711 N 1 0 0 1 0 -1625 2 -EndChar - -StartChar: uni02ED -Encoding: 749 749 687 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 5 - 1 - 4 - 0 - 1 - 0 - 8 - 9 - 1 - 6 - 3 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -653 1446 m 1,0,-1 - 29 1446 l 1,1,-1 - 29 1564 l 1,2,-1 - 653 1564 l 1,3,-1 - 653 1446 l 1,0,-1 -653 1239 m 1,4,-1 - 29 1239 l 1,5,-1 - 29 1357 l 1,6,-1 - 653 1357 l 1,7,-1 - 653 1239 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni02EE -Encoding: 750 750 688 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 17 - 15 - 18 - 7 - 18 - 11 - 5 - 1 - 8 - 11 - 8 - 21 - 20 - 18 - 8 - 8 - 19 - 0 - 128 - 15 - 5 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -281 1484 m 1,0,-1 - 281 1338 l 2,1,2 - 281 1241 281 1241 262.5 1167.5 c 128,-1,3 - 244 1094 244 1094 201 1027 c 1,4,-1 - 80 1027 l 1,5,6 - 175 1164 175 1164 175 1289 c 1,7,-1 - 86 1289 l 1,8,-1 - 86 1484 l 1,9,-1 - 281 1484 l 1,0,-1 -590 1484 m 1,10,-1 - 590 1338 l 2,11,12 - 590 1241 590 1241 571.5 1167.5 c 128,-1,13 - 553 1094 553 1094 510 1027 c 1,14,-1 - 389 1027 l 1,15,16 - 484 1164 484 1164 484 1289 c 1,17,-1 - 395 1289 l 1,18,-1 - 395 1484 l 1,19,-1 - 590 1484 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni02EF -Encoding: 751 751 689 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 6 - 2 - 8 - 7 - 4 - 1 - 128 - 5 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -380 -353 m 1,0,-1 - 298 -353 l 1,1,-1 - 129 -72 l 1,2,-1 - 243 -72 l 1,3,-1 - 339 -242 l 1,4,-1 - 435 -72 l 1,5,-1 - 549 -72 l 1,6,-1 - 380 -353 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02F0 -Encoding: 752 752 690 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 4 - 0 - 7 - 8 - 2 - 4 - 1 - 128 - 6 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -549 -353 m 1,0,-1 - 435 -353 l 1,1,-1 - 339 -183 l 1,2,-1 - 243 -353 l 1,3,-1 - 129 -353 l 1,4,-1 - 298 -72 l 1,5,-1 - 380 -72 l 1,6,-1 - 549 -353 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02F1 -Encoding: 753 753 691 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 4 - 0 - 2 - 5 - 0 - 5 - 8 - 7 - 2 - 4 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -481 -6 m 1,0,-1 - 481 -120 l 1,1,-1 - 311 -216 l 1,2,-1 - 481 -312 l 1,3,-1 - 481 -426 l 1,4,-1 - 200 -257 l 1,5,-1 - 200 -175 l 1,6,-1 - 481 -6 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02F2 -Encoding: 754 754 692 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 5 - 2 - 4 - 1 - 2 - 1 - 7 - 8 - 4 - 2 - 128 - 6 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -481 -175 m 1,0,-1 - 481 -257 l 1,1,-1 - 200 -426 l 1,2,-1 - 200 -312 l 1,3,-1 - 370 -216 l 1,4,-1 - 200 -120 l 1,5,-1 - 200 -6 l 1,6,-1 - 481 -175 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02F3 -Encoding: 755 755 693 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 12 - 0 - 18 - 6 - 0 - 6 - 25 - 24 - 21 - 3 - 128 - 15 - 9 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -541 -234 m 0,0,1 - 541 -315 541 -315 481 -370 c 128,-1,2 - 421 -425 421 -425 341 -425 c 256,3,4 - 261 -425 261 -425 201 -369.5 c 128,-1,5 - 141 -314 141 -314 141 -234 c 256,6,7 - 141 -154 141 -154 200.5 -99 c 128,-1,8 - 260 -44 260 -44 341 -44 c 0,9,10 - 423 -44 423 -44 482 -99 c 128,-1,11 - 541 -154 541 -154 541 -234 c 0,0,1 -445 -234 m 256,12,13 - 445 -189 445 -189 415.5 -161.5 c 128,-1,14 - 386 -134 386 -134 341 -134 c 256,15,16 - 296 -134 296 -134 266 -161.5 c 128,-1,17 - 236 -189 236 -189 236 -234 c 256,18,19 - 236 -279 236 -279 266 -307.5 c 128,-1,20 - 296 -336 296 -336 341 -336 c 256,21,22 - 386 -336 386 -336 415.5 -307.5 c 128,-1,23 - 445 -279 445 -279 445 -234 c 256,12,13 -EndSplineSet -EndChar - -StartChar: uni02F4 -Encoding: 756 756 694 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 4 - 1 - 7 - 6 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -431 271 m 1,0,-1 - 141 549 l 1,1,-1 - 141 578 l 1,2,-1 - 348 578 l 1,3,-1 - 525 291 l 1,4,-1 - 525 271 l 1,5,-1 - 431 271 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02F5 -Encoding: 757 757 695 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 11 - 8 - 4 - 4 - 13 - 8 - 12 - 3 - 9 - 128 - 0 - 6 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -611 271 m 1,0,-1 - 321 549 l 1,1,-1 - 321 578 l 1,2,-1 - 528 578 l 1,3,-1 - 705 291 l 1,4,-1 - 705 271 l 1,5,-1 - 611 271 l 1,0,-1 -264 271 m 1,6,-1 - -26 549 l 1,7,-1 - -26 578 l 1,8,-1 - 181 578 l 1,9,-1 - 358 291 l 1,10,-1 - 358 271 l 1,11,-1 - 264 271 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni02F6 -Encoding: 758 758 696 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 6 - 4 - 0 - 9 - 9 - 13 - 0 - 12 - 8 - 3 - 128 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --25 271 m 1,0,-1 - -25 291 l 1,1,-1 - 152 578 l 1,2,-1 - 359 578 l 1,3,-1 - 359 549 l 1,4,-1 - 69 271 l 1,5,-1 - -25 271 l 1,0,-1 -322 271 m 1,6,-1 - 322 291 l 1,7,-1 - 499 578 l 1,8,-1 - 706 578 l 1,9,-1 - 706 549 l 1,10,-1 - 416 271 l 1,11,-1 - 322 271 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni02F7 -Encoding: 759 759 697 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 21 - 25 - 9 - 24 - 18 - 5 - 9 - 0 - 128 - 20 - 13 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -492 -404 m 0,0,1 - 450 -404 450 -404 408 -385.5 c 128,-1,2 - 366 -367 366 -367 327 -344.5 c 128,-1,3 - 288 -322 288 -322 252.5 -303.5 c 128,-1,4 - 217 -285 217 -285 186 -285 c 0,5,6 - 131 -285 131 -285 104 -316 c 128,-1,7 - 77 -347 77 -347 68 -404 c 1,8,-1 - -23 -404 l 1,9,10 - -12 -302 -12 -302 12 -249.5 c 128,-1,11 - 36 -197 36 -197 76.5 -166.5 c 128,-1,12 - 117 -136 117 -136 180 -136 c 0,13,14 - 224 -136 224 -136 266 -154.5 c 128,-1,15 - 308 -173 308 -173 347 -195.5 c 128,-1,16 - 386 -218 386 -218 420.5 -236.5 c 128,-1,17 - 455 -255 455 -255 485 -255 c 0,18,19 - 585 -255 585 -255 602 -136 c 1,20,-1 - 694 -136 l 1,21,22 - 677 -284 677 -284 627 -344 c 128,-1,23 - 577 -404 577 -404 492 -404 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni02F8 -Encoding: 760 760 698 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 0 - 4 - 4 - 3 - 7 - 7 - 8 - 9 - 5 - 0 - 5 - 0 - 2 - 4 - 2 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -187 1277 m 1,0,-1 - 187 1484 l 1,1,-1 - 382 1484 l 1,2,-1 - 382 1277 l 1,3,-1 - 187 1277 l 1,0,-1 -187 402 m 1,4,-1 - 187 609 l 1,5,-1 - 382 609 l 1,6,-1 - 382 402 l 1,7,-1 - 187 402 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni02F9 -Encoding: 761 761 699 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 2 - 3 - 3 - 0 - 6 - 7 - 1 - 5 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -544 1361 m 1,0,-1 - 268 1361 l 1,1,-1 - 268 1148 l 1,2,-1 - 138 1148 l 1,3,-1 - 138 1484 l 1,4,-1 - 544 1484 l 1,5,-1 - 544 1361 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02FA -Encoding: 762 762 700 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 3 - 2 - 0 - 2 - 6 - 7 - 5 - 1 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -138 1484 m 1,0,-1 - 544 1484 l 1,1,-1 - 544 1148 l 1,2,-1 - 414 1148 l 1,3,-1 - 414 1361 l 1,4,-1 - 138 1361 l 1,5,-1 - 138 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02FB -Encoding: 763 763 701 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 4 - 1 - 1 - 0 - 6 - 7 - 4 - 127 - 1 - 1 - 1 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -544 -425 m 1,0,-1 - 138 -425 l 1,1,-1 - 138 -89 l 1,2,-1 - 268 -89 l 1,3,-1 - 268 -302 l 1,4,-1 - 544 -302 l 1,5,-1 - 544 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02FC -Encoding: 764 764 702 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 4 - 0 - 4 - 6 - 7 - 0 - 127 - 5 - 1 - 5 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -138 -302 m 1,0,-1 - 414 -302 l 1,1,-1 - 414 -89 l 1,2,-1 - 544 -89 l 1,3,-1 - 544 -425 l 1,4,-1 - 138 -425 l 1,5,-1 - 138 -302 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02FD -Encoding: 765 765 703 -Width: 814 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 4 - 1 - 5 - 0 - 1 - 0 - 8 - 9 - 4 - 127 - 1 - 1 - 1 - 128 - 6 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -784 -425 m 1,0,-1 - 30 -425 l 1,1,-1 - 30 -89 l 1,2,-1 - 166 -89 l 1,3,-1 - 166 -290 l 1,4,-1 - 647 -290 l 1,5,-1 - 647 -89 l 1,6,-1 - 784 -89 l 1,7,-1 - 784 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02FE -Encoding: 766 766 704 -Width: 814 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 5 - 3 - 5 - 7 - 6 - 2 - 127 - 5 - 1 - 5 - 128 - 1 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -23 -89 m 1,0,-1 - 166 -89 l 1,1,-1 - 166 -289 l 1,2,-1 - 783 -289 l 1,3,-1 - 783 -424 l 1,4,-1 - 23 -424 l 1,5,-1 - 23 -89 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni02FF -Encoding: 767 767 705 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 2 - 7 - 0 - 7 - 4 - 3 - 10 - 11 - 2 - 64 - 13 - 16 - 72 - 2 - 2 - 0 - 9 - 7 -PUSHW_1 - -64 -NPUSHB - 11 - 13 - 16 - 72 - 7 - 7 - 16 - 9 - 32 - 9 - 2 - 9 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -MDAP[rnd] -CALL -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -625 -181 m 1,0,-1 - 199 -181 l 1,1,-1 - 384 -424 l 1,2,-1 - 272 -424 l 1,3,-1 - 58 -141 l 1,4,-1 - 58 -127 l 1,5,-1 - 272 156 l 1,6,-1 - 384 156 l 1,7,-1 - 199 -87 l 1,8,-1 - 625 -87 l 1,9,-1 - 625 -181 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: gravecomb -Encoding: 768 768 706 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" -310 1940 basemark 0 -AnchorPoint: "Anchor-27" -297 1520 mark 0 -AnchorPoint: "Anchor-17" -240 1540 mark 0 -AnchorPoint: "Anchor-16" -297 1540 mark 0 -LayerCount: 2 -Fore -SplineSet --273 1548 m 1,0,-1 - -516 1798 l 1,1,-1 - -516 1827 l 1,2,-1 - -309 1827 l 1,3,-1 - -179 1568 l 1,4,-1 - -179 1548 l 1,5,-1 - -273 1548 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: acutecomb -Encoding: 769 769 707 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" -240 1940 basemark 0 -AnchorPoint: "Anchor-27" -275 1520 mark 0 -AnchorPoint: "Anchor-17" -300 1540 mark 0 -AnchorPoint: "Anchor-16" -275 1540 mark 0 -LayerCount: 2 -Fore -SplineSet --363 1548 m 1,0,-1 - -363 1568 l 1,1,-1 - -233 1827 l 1,2,-1 - -26 1827 l 1,3,-1 - -26 1798 l 1,4,-1 - -269 1548 l 1,5,-1 - -363 1548 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0302 -Encoding: 770 770 708 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 3 - 4 - 9 - 128 - 6 - 2 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1180 mark 0 -AnchorPoint: "Anchor-16" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -331 1221 m 1,0,-1 - 331 1201 l 1,1,-1 - 226 1201 l 1,2,-1 - 7 1370 l 1,3,-1 - 5 1370 l 1,4,-1 - -227 1201 l 1,5,-1 - -331 1201 l 1,6,-1 - -331 1221 l 1,7,-1 - -97 1491 l 1,8,-1 - 107 1491 l 1,9,-1 - 331 1221 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: tildecomb -Encoding: 771 771 709 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-27" 320 1600 basemark 0 -AnchorPoint: "Anchor-27" 330 1180 mark 0 -AnchorPoint: "Anchor-16" 330 1200 mark 0 -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni0304 -Encoding: 772 772 710 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 2 - 142 - 89 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-17" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1230 mark 0 -LayerCount: 2 -Fore -SplineSet -274 1236 m 1,0,-1 - -275 1236 l 1,1,-1 - -275 1363 l 1,2,-1 - 274 1363 l 1,3,-1 - 274 1236 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0305 -Encoding: 773 773 711 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 0 - 1 - 142 - 89 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1800 basemark 0 -AnchorPoint: "Anchor-27" 0 1520 mark 0 -AnchorPoint: "Anchor-16" 0 1560 mark 0 -LayerCount: 2 -Fore -SplineSet --597 1571 m 1,0,-1 - -597 1701 l 1,1,-1 - 596 1701 l 1,2,-1 - 596 1571 l 1,3,-1 - -597 1571 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0306 -Encoding: 774 774 712 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 10 - 4 - 128 - 7 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1180 mark 0 -AnchorPoint: "Anchor-16" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -0 1206 m 256,0,1 - -120 1206 -120 1206 -198.5 1276.5 c 128,-1,2 - -277 1347 -277 1347 -292 1466 c 1,3,-1 - -187 1466 l 1,4,5 - -175 1407 -175 1407 -125.5 1370.5 c 128,-1,6 - -76 1334 -76 1334 0 1334 c 0,7,8 - 74 1334 74 1334 123.5 1369.5 c 128,-1,9 - 173 1405 173 1405 187 1466 c 1,10,-1 - 292 1466 l 1,11,12 - 274 1344 274 1344 197 1275 c 128,-1,13 - 120 1206 120 1206 0 1206 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni0307 -Encoding: 775 775 713 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 0 - 2 - 144 - 89 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1230 mark 0 -LayerCount: 2 -Fore -SplineSet --90 1237 m 1,0,-1 - -90 1409 l 1,1,-1 - 90 1409 l 1,2,-1 - 90 1237 l 1,3,-1 - -90 1237 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0308 -Encoding: 776 776 714 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 5 - 2 - 0 - 2 - 145 - 89 - 4 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1210 mark 0 -LayerCount: 2 -Fore -SplineSet -115 1219 m 1,0,-1 - 115 1403 l 1,1,-1 - 278 1403 l 1,2,-1 - 278 1219 l 1,3,-1 - 115 1219 l 1,0,-1 --279 1219 m 1,4,-1 - -279 1403 l 1,5,-1 - -114 1403 l 1,6,-1 - -114 1219 l 1,7,-1 - -279 1219 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: hookabovecomb -Encoding: 777 777 715 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 3 - 16 - 112 - 8 - 208 - 8 - 224 - 8 - 240 - 8 - 4 - 8 -PUSHW_1 - -64 -PUSHB_5 - 43 - 47 - 72 - 8 - 15 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -CALL -DELTAP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" -290 1940 basemark 0 -AnchorPoint: "Anchor-27" -290 1470 mark 0 -AnchorPoint: "Anchor-16" -290 1474 mark 0 -LayerCount: 2 -Fore -SplineSet --223 1665 m 256,0,1 - -223 1696 -223 1696 -248.5 1713 c 128,-1,2 - -274 1730 -274 1730 -316 1730 c 0,3,4 - -388 1730 -388 1730 -458 1706 c 1,5,-1 - -489 1805 l 1,6,7 - -399 1835 -399 1835 -293 1835 c 0,8,9 - -56 1835 -56 1835 -56 1686 c 0,10,11 - -56 1627 -56 1627 -96.5 1584.5 c 128,-1,12 - -137 1542 -137 1542 -228 1531 c 1,13,-1 - -228 1481 l 1,14,-1 - -340 1481 l 1,15,-1 - -340 1601 l 1,16,17 - -271 1604 -271 1604 -247 1619 c 128,-1,18 - -223 1634 -223 1634 -223 1665 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni030A -Encoding: 778 778 716 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 15 - 9 - 128 - 21 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1220 mark 0 -AnchorPoint: "Anchor-16" 0 1240 mark 0 -LayerCount: 2 -Fore -SplineSet -200 1444 m 0,0,1 - 200 1363 200 1363 140 1308 c 128,-1,2 - 80 1253 80 1253 0 1253 c 256,3,4 - -80 1253 -80 1253 -140 1308.5 c 128,-1,5 - -200 1364 -200 1364 -200 1444 c 256,6,7 - -200 1524 -200 1524 -140.5 1579 c 128,-1,8 - -81 1634 -81 1634 0 1634 c 0,9,10 - 82 1634 82 1634 141 1579 c 128,-1,11 - 200 1524 200 1524 200 1444 c 0,0,1 -104 1444 m 256,12,13 - 104 1489 104 1489 74.5 1516.5 c 128,-1,14 - 45 1544 45 1544 0 1544 c 256,15,16 - -45 1544 -45 1544 -75 1516.5 c 128,-1,17 - -105 1489 -105 1489 -105 1444 c 256,18,19 - -105 1399 -105 1399 -75 1370.5 c 128,-1,20 - -45 1342 -45 1342 0 1342 c 256,21,22 - 45 1342 45 1342 74.5 1370.5 c 128,-1,23 - 104 1399 104 1399 104 1444 c 256,12,13 -EndSplineSet -EndChar - -StartChar: uni030B -Encoding: 779 779 717 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 8 - 3 - 128 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1600 basemark 0 -AnchorPoint: "Anchor-27" -80 1180 mark 0 -AnchorPoint: "Anchor-16" -80 1200 mark 0 -LayerCount: 2 -Fore -SplineSet --385 1201 m 1,0,-1 - -385 1221 l 1,1,-1 - -168 1508 l 1,2,-1 - 39 1508 l 1,3,-1 - 39 1479 l 1,4,-1 - -291 1201 l 1,5,-1 - -385 1201 l 1,0,-1 --38 1201 m 1,6,-1 - -38 1221 l 1,7,-1 - 179 1508 l 1,8,-1 - 386 1508 l 1,9,-1 - 386 1479 l 1,10,-1 - 56 1201 l 1,11,-1 - -38 1201 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni030C -Encoding: 780 780 718 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 5 - 7 - 4 - 128 - 1 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1180 mark 0 -AnchorPoint: "Anchor-17" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -107 1201 m 1,0,-1 - -97 1201 l 1,1,-1 - -331 1471 l 1,2,-1 - -331 1491 l 1,3,-1 - -227 1491 l 1,4,-1 - 5 1322 l 1,5,-1 - 7 1322 l 1,6,-1 - 226 1491 l 1,7,-1 - 331 1491 l 1,8,-1 - 331 1471 l 1,9,-1 - 107 1201 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni030D -Encoding: 781 781 719 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 3 - 128 - 1 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1160 mark 0 -LayerCount: 2 -Fore -SplineSet -58 1152 m 1,0,-1 - -55 1152 l 1,1,-1 - -55 1484 l 1,2,-1 - 58 1484 l 1,3,-1 - 58 1152 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni030E -Encoding: 782 782 720 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 6 - 3 - 128 - 5 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1160 mark 0 -LayerCount: 2 -Fore -SplineSet --54 1152 m 1,0,-1 - -167 1152 l 1,1,-1 - -167 1484 l 1,2,-1 - -54 1484 l 1,3,-1 - -54 1152 l 1,0,-1 -167 1152 m 1,4,-1 - 54 1152 l 1,5,-1 - 54 1484 l 1,6,-1 - 167 1484 l 1,7,-1 - 167 1152 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni030F -Encoding: 783 783 721 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 8 - 128 - 3 - 1 - 3 - 128 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1600 basemark 0 -AnchorPoint: "Anchor-27" 100 1180 mark 0 -AnchorPoint: "Anchor-16" 100 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -292 1201 m 1,0,-1 - -38 1479 l 1,1,-1 - -38 1508 l 1,2,-1 - 169 1508 l 1,3,-1 - 386 1221 l 1,4,-1 - 386 1201 l 1,5,-1 - 292 1201 l 1,0,-1 --55 1201 m 1,6,-1 - -385 1479 l 1,7,-1 - -385 1508 l 1,8,-1 - -178 1508 l 1,9,-1 - 39 1221 l 1,10,-1 - 39 1201 l 1,11,-1 - -55 1201 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni0310 -Encoding: 784 784 722 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 14 - 16 - 10 - 3 - 128 - 7 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp2] -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1180 mark 0 -AnchorPoint: "Anchor-16" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -0 1203 m 256,0,1 - -120 1203 -120 1203 -198.5 1273.5 c 128,-1,2 - -277 1344 -277 1344 -292 1463 c 1,3,-1 - -187 1463 l 1,4,5 - -175 1404 -175 1404 -125.5 1367.5 c 128,-1,6 - -76 1331 -76 1331 0 1331 c 0,7,8 - 74 1331 74 1331 123.5 1366.5 c 128,-1,9 - 173 1402 173 1402 187 1463 c 1,10,-1 - 292 1463 l 1,11,12 - 274 1341 274 1341 197 1272 c 128,-1,13 - 120 1203 120 1203 0 1203 c 256,0,1 -91 1636 m 1,14,-1 - 91 1464 l 1,15,-1 - -89 1464 l 1,16,-1 - -89 1636 l 1,17,-1 - 91 1636 l 1,14,-1 -EndSplineSet -EndChar - -StartChar: uni0311 -Encoding: 785 785 723 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 7 - 0 - 128 - 11 - 4 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1180 mark 0 -AnchorPoint: "Anchor-16" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -0 1466 m 256,0,1 - 119 1466 119 1466 196.5 1397.5 c 128,-1,2 - 274 1329 274 1329 292 1206 c 1,3,-1 - 187 1206 l 1,4,5 - 172 1268 172 1268 123 1303 c 128,-1,6 - 74 1338 74 1338 0 1338 c 0,7,8 - -76 1338 -76 1338 -125.5 1301.5 c 128,-1,9 - -175 1265 -175 1265 -187 1206 c 1,10,-1 - -292 1206 l 1,11,12 - -277 1325 -277 1325 -198 1395.5 c 128,-1,13 - -119 1466 -119 1466 0 1466 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni0312 -Encoding: 786 786 724 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 7 - 7 - 5 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 990 mark 0 -AnchorPoint: "Anchor-16" 0 990 mark 0 -LayerCount: 2 -Fore -SplineSet --101 1003 m 1,0,-1 - -101 1171 l 2,1,2 - -101 1277 -101 1277 -82 1348 c 128,-1,3 - -63 1419 -63 1419 -23 1484 c 1,4,-1 - 100 1484 l 1,5,6 - 6 1348 6 1348 6 1222 c 1,7,-1 - 94 1222 l 1,8,-1 - 94 1003 l 1,9,-1 - -101 1003 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0313 -Encoding: 787 787 725 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 8 - 8 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 990 mark 0 -AnchorPoint: "Anchor-16" 0 990 mark 0 -LayerCount: 2 -Fore -SplineSet -100 1484 m 1,0,-1 - 100 1316 l 2,1,2 - 100 1210 100 1210 81 1139 c 128,-1,3 - 62 1068 62 1068 22 1003 c 1,4,-1 - -101 1003 l 1,5,6 - -7 1139 -7 1139 -7 1265 c 1,7,-1 - -95 1265 l 1,8,-1 - -95 1484 l 1,9,-1 - 100 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0314 -Encoding: 788 788 726 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 2 - 2 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 990 mark 0 -AnchorPoint: "Anchor-16" 0 990 mark 0 -LayerCount: 2 -Fore -SplineSet -94 1484 m 1,0,-1 - 94 1265 l 1,1,-1 - 6 1265 l 1,2,3 - 6 1139 6 1139 100 1003 c 1,4,-1 - -23 1003 l 1,5,6 - -63 1067 -63 1067 -82 1139.5 c 128,-1,7 - -101 1212 -101 1212 -101 1316 c 2,8,-1 - -101 1484 l 1,9,-1 - 94 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0315 -Encoding: 789 789 727 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 8 - 8 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-15" -100 990 mark 0 -LayerCount: 2 -Fore -SplineSet -100 1484 m 1,0,-1 - 100 1316 l 2,1,2 - 100 1210 100 1210 81 1139 c 128,-1,3 - 62 1068 62 1068 22 1003 c 1,4,-1 - -101 1003 l 1,5,6 - -7 1139 -7 1139 -7 1265 c 1,7,-1 - -95 1265 l 1,8,-1 - -95 1484 l 1,9,-1 - 100 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0316 -Encoding: 790 790 728 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 0 - 16 - 0 - 2 - 0 - 3 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -120 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet -78 -407 m 1,0,-1 - -165 -157 l 1,1,-1 - -165 -128 l 1,2,-1 - 42 -128 l 1,3,-1 - 172 -387 l 1,4,-1 - 172 -407 l 1,5,-1 - 78 -407 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0317 -Encoding: 791 791 729 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 0 - 16 - 0 - 2 - 0 - 3 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -120 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet --177 -406 m 1,0,-1 - -177 -386 l 1,1,-1 - -47 -127 l 1,2,-1 - 160 -127 l 1,3,-1 - 160 -156 l 1,4,-1 - -83 -406 l 1,5,-1 - -177 -406 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0318 -Encoding: 792 792 730 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 3 - 4 - 4 - 15 - 1 - 31 - 1 - 2 - 7 - 1 - 192 - 95 - 7 - 111 - 7 - 127 - 7 - 3 - 7 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SMD -MDRP[min,rnd,black] -SDB -DELTAP1 -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet -162 -417 m 1,0,-1 - 51 -417 l 1,1,-1 - 51 -302 l 1,2,-1 - -193 -302 l 1,3,-1 - -193 -189 l 1,4,-1 - 51 -189 l 1,5,-1 - 51 -75 l 1,6,-1 - 162 -75 l 1,7,-1 - 162 -417 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0319 -Encoding: 793 793 731 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 5 - 2 - 2 - 15 - 7 - 31 - 7 - 2 - 7 - 7 - 192 - 95 - 1 - 111 - 1 - 127 - 1 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SMD -MDRP[min,rnd,black] -SDB -DELTAP1 -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet --162 -75 m 1,0,-1 - -51 -75 l 1,1,-1 - -51 -189 l 1,2,-1 - 193 -189 l 1,3,-1 - 193 -302 l 1,4,-1 - -51 -302 l 1,5,-1 - -51 -417 l 1,6,-1 - -162 -417 l 1,7,-1 - -162 -75 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni031A -Encoding: 794 794 732 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 5 - 128 - 1 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1760 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -377 1221 m 1,0,-1 - 234 1221 l 1,1,-1 - 234 1534 l 1,2,-1 - -377 1534 l 1,3,-1 - -377 1672 l 1,4,-1 - 377 1672 l 1,5,-1 - 377 1221 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni031B -Encoding: 795 795 733 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 8 - 8 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-19" 70 1020 mark 0 -LayerCount: 2 -Fore -SplineSet -263 1484 m 1,0,-1 - 263 1338 l 2,1,2 - 263 1241 263 1241 244.5 1167.5 c 128,-1,3 - 226 1094 226 1094 183 1027 c 1,4,-1 - 62 1027 l 1,5,6 - 157 1164 157 1164 157 1289 c 1,7,-1 - 68 1289 l 1,8,-1 - 68 1484 l 1,9,-1 - 263 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni031C -Encoding: 796 796 734 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 13 - 7 - 15 - 0 - 1 - 0 - 128 - 6 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -DELTAP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 20 -50 mark 0 -AnchorPoint: "Anchor-14" 20 -50 mark 0 -LayerCount: 2 -Fore -SplineSet -95 -425 m 1,0,1 - 10 -425 10 -425 -40 -373 c 128,-1,2 - -90 -321 -90 -321 -90 -235 c 0,3,4 - -90 -148 -90 -148 -40 -97 c 128,-1,5 - 10 -46 10 -46 95 -46 c 1,6,-1 - 95 -131 l 1,7,8 - 53 -131 53 -131 25.5 -158.5 c 128,-1,9 - -2 -186 -2 -186 -2 -235 c 256,10,11 - -2 -284 -2 -284 25.5 -312 c 128,-1,12 - 53 -340 53 -340 95 -340 c 1,13,-1 - 95 -425 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni031D -Encoding: 797 797 735 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 6 - 2 - 2 - 127 - 1 - 1 - 1 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -80 mark 0 -LayerCount: 2 -Fore -SplineSet -179 -425 m 1,0,-1 - -180 -425 l 1,1,-1 - -180 -317 l 1,2,-1 - -57 -317 l 1,3,-1 - -57 -88 l 1,4,-1 - 56 -88 l 1,5,-1 - 56 -317 l 1,6,-1 - 179 -317 l 1,7,-1 - 179 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni031E -Encoding: 798 798 736 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 4 - 0 - 0 - 127 - 3 - 1 - 3 - 128 - 7 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -80 mark 0 -LayerCount: 2 -Fore -SplineSet -180 -196 m 1,0,-1 - 57 -196 l 1,1,-1 - 57 -425 l 1,2,-1 - -56 -425 l 1,3,-1 - -56 -196 l 1,4,-1 - -179 -196 l 1,5,-1 - -179 -88 l 1,6,-1 - 180 -88 l 1,7,-1 - 180 -196 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni031F -Encoding: 799 799 737 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 1 - 5 - 5 - 10 - 6 - 6 - 3 - 128 - 111 - 9 - 127 - 9 - 2 - 9 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SMD -MDRP[min,rnd,black] -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -80 mark 0 -LayerCount: 2 -Fore -SplineSet -178 -300 m 1,0,-1 - 55 -300 l 1,1,-1 - 55 -425 l 1,2,-1 - -58 -425 l 1,3,-1 - -58 -300 l 1,4,-1 - -181 -300 l 1,5,-1 - -181 -192 l 1,6,-1 - -58 -192 l 1,7,-1 - -58 -68 l 1,8,-1 - 55 -68 l 1,9,-1 - 55 -192 l 1,10,-1 - 178 -192 l 1,11,-1 - 178 -300 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0320 -Encoding: 800 800 738 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 3 - 0 - 143 - 89 - 3 -SVTCA[y-axis] -MDAP[rnd] -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -420 basemark 0 -AnchorPoint: "Anchor-28" 0 -140 mark 0 -AnchorPoint: "Anchor-14" 0 -140 mark 0 -LayerCount: 2 -Fore -SplineSet -313 -298 m 1,0,-1 - -311 -298 l 1,1,-1 - -311 -157 l 1,2,-1 - 313 -157 l 1,3,-1 - 313 -298 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0321 -Encoding: 801 801 739 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 8 - 127 - 3 - 1 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 90 110 mark 0 -LayerCount: 2 -Fore -SplineSet -178 155 m 1,0,-1 - 178 -129 l 2,1,2 - 178 -425 178 -425 -103 -425 c 0,3,4 - -154 -425 -154 -425 -239 -409 c 1,5,-1 - -239 -245 l 1,6,7 - -189 -263 -189 -263 -120 -263 c 0,8,9 - 0 -263 0 -263 0 -115 c 2,10,-1 - 0 155 l 1,11,-1 - 178 155 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0322 -Encoding: 802 802 740 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 3 - 127 - 8 - 1 - 8 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-26" 90 110 mark 0 -LayerCount: 2 -Fore -SplineSet -178 155 m 1,0,-1 - 178 -115 l 2,1,2 - 178 -263 178 -263 298 -263 c 0,3,4 - 367 -263 367 -263 417 -245 c 1,5,-1 - 417 -409 l 1,6,7 - 332 -425 332 -425 281 -425 c 0,8,9 - 0 -425 0 -425 0 -129 c 2,10,-1 - 0 155 l 1,11,-1 - 178 155 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: dotbelowcomb -Encoding: 803 803 741 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-28" -685 -420 basemark 0 -AnchorPoint: "Anchor-28" -680 -130 mark 0 -AnchorPoint: "Anchor-14" -680 -130 mark 0 -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -528 0 2 -EndChar - -StartChar: uni0324 -Encoding: 804 804 742 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 4 - 0 - 2 - 0 - 145 - 89 - 5 - 2 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -240 mark 0 -AnchorPoint: "Anchor-14" 0 -240 mark 0 -LayerCount: 2 -Fore -SplineSet -115 -425 m 1,0,-1 - 115 -241 l 1,1,-1 - 278 -241 l 1,2,-1 - 278 -425 l 1,3,-1 - 115 -425 l 1,0,-1 --279 -425 m 1,4,-1 - -279 -241 l 1,5,-1 - -114 -241 l 1,6,-1 - -114 -425 l 1,7,-1 - -279 -425 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni0325 -Encoding: 805 805 743 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 21 - 15 - 3 - 1 - 3 - 128 - 15 - 9 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -DELTAP2 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -50 mark 0 -AnchorPoint: "Anchor-14" 0 -50 mark 0 -LayerCount: 2 -Fore -SplineSet -200 -234 m 0,0,1 - 200 -315 200 -315 140 -370 c 128,-1,2 - 80 -425 80 -425 0 -425 c 256,3,4 - -80 -425 -80 -425 -140 -369.5 c 128,-1,5 - -200 -314 -200 -314 -200 -234 c 256,6,7 - -200 -154 -200 -154 -140.5 -99 c 128,-1,8 - -81 -44 -81 -44 0 -44 c 0,9,10 - 82 -44 82 -44 141 -99 c 128,-1,11 - 200 -154 200 -154 200 -234 c 0,0,1 -104 -234 m 256,12,13 - 104 -189 104 -189 74.5 -161.5 c 128,-1,14 - 45 -134 45 -134 0 -134 c 256,15,16 - -45 -134 -45 -134 -75 -161.5 c 128,-1,17 - -105 -189 -105 -189 -105 -234 c 256,18,19 - -105 -279 -105 -279 -75 -307.5 c 128,-1,20 - -45 -336 -45 -336 0 -336 c 256,21,22 - 45 -336 45 -336 74.5 -307.5 c 128,-1,23 - 104 -279 104 -279 104 -234 c 256,12,13 -EndSplineSet -EndChar - -StartChar: uni0326 -Encoding: 806 806 744 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 7 - 7 - 4 - 128 - 0 - 9 - 16 - 9 - 2 - 9 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -90 mark 0 -AnchorPoint: "Anchor-14" 0 -90 mark 0 -LayerCount: 2 -Fore -SplineSet -98 -204 m 2,0,1 - 98 -291 98 -291 76 -349.5 c 128,-1,2 - 54 -408 54 -408 14 -455 c 1,3,-1 - -103 -455 l 1,4,5 - -9 -355 -9 -355 -9 -265 c 1,6,-1 - -97 -265 l 1,7,-1 - -97 -98 l 1,8,-1 - 98 -98 l 1,9,-1 - 98 -204 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0327 -Encoding: 807 807 745 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 12 - 17 - 17 - 7 - 2 - 128 - 16 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-24" -30 15 mark 0 -LayerCount: 2 -Fore -SplineSet -182 -258 m 0,0,1 - 182 -444 182 -444 -92 -444 c 0,2,3 - -149 -444 -149 -444 -182 -440 c 1,4,-1 - -182 -342 l 1,5,6 - -133 -348 -133 -348 -96 -348 c 0,7,8 - 51 -348 51 -348 51 -262 c 0,9,10 - 51 -222 51 -222 20.5 -201 c 128,-1,11 - -10 -180 -10 -180 -82 -180 c 2,12,-1 - -110 -180 l 1,13,-1 - -139 -182 l 1,14,-1 - -74 0 l 1,15,-1 - 33 0 l 1,16,-1 - -6 -100 l 1,17,18 - 88 -103 88 -103 135 -144.5 c 128,-1,19 - 182 -186 182 -186 182 -258 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0328 -Encoding: 808 808 746 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 15 - 2 - 128 - 9 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" -10 -10 mark 0 -LayerCount: 2 -Fore -SplineSet -170 -400 m 1,0,1 - 107 -427 107 -427 31 -427 c 0,2,3 - -74 -427 -74 -427 -127 -376 c 128,-1,4 - -180 -325 -180 -325 -180 -240 c 0,5,6 - -180 -170 -180 -170 -136.5 -104 c 128,-1,7 - -93 -38 -93 -38 -25 0 c 1,8,-1 - 108 0 l 1,9,10 - 44 -36 44 -36 2.5 -98.5 c 128,-1,11 - -39 -161 -39 -161 -39 -227 c 0,12,13 - -39 -269 -39 -269 -14.5 -293 c 128,-1,14 - 10 -317 10 -317 55 -317 c 0,15,16 - 109 -317 109 -317 170 -293 c 1,17,-1 - 170 -400 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0329 -Encoding: 809 809 747 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 111 - 1 - 127 - 1 - 2 - 1 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -60 mark 0 -AnchorPoint: "Anchor-14" 0 -60 mark 0 -LayerCount: 2 -Fore -SplineSet -67 -425 m 1,0,-1 - -67 -425 l 1,1,-1 - -67 -75 l 1,2,-1 - 67 -75 l 1,3,-1 - 67 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni032A -Encoding: 810 810 748 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 5 - 127 - 1 - 1 - 1 - 128 - 2 - 7 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -80 mark 0 -LayerCount: 2 -Fore -SplineSet -377 -425 m 1,0,-1 - 240 -425 l 1,1,-1 - 240 -224 l 1,2,-1 - -241 -224 l 1,3,-1 - -241 -425 l 1,4,-1 - -377 -425 l 1,5,-1 - -377 -89 l 1,6,-1 - 377 -89 l 1,7,-1 - 377 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni032B -Encoding: 811 811 749 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 17 - 10 - 10 - 24 - 3 - 128 - 20 - 13 - 15 - 7 - 1 - 8 - 7 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -SHP[rp1] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -120 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet -0 -277 m 1,0,1 - -24 -315 -24 -315 -62.5 -341.5 c 128,-1,2 - -101 -368 -101 -368 -169 -368 c 0,3,4 - -263 -368 -263 -368 -309 -303.5 c 128,-1,5 - -355 -239 -355 -239 -355 -131 c 1,6,-1 - -258 -131 l 1,7,8 - -258 -207 -258 -207 -235 -240.5 c 128,-1,9 - -212 -274 -212 -274 -166 -274 c 0,10,11 - -111 -274 -111 -274 -78.5 -237 c 128,-1,12 - -46 -200 -46 -200 -46 -131 c 1,13,-1 - 46 -131 l 1,14,15 - 46 -200 46 -200 78.5 -237 c 128,-1,16 - 111 -274 111 -274 166 -274 c 0,17,18 - 212 -274 212 -274 235 -240 c 128,-1,19 - 258 -206 258 -206 258 -131 c 1,20,-1 - 355 -131 l 1,21,22 - 355 -239 355 -239 309 -303.5 c 128,-1,23 - 263 -368 263 -368 169 -368 c 0,24,25 - 55 -368 55 -368 0 -277 c 1,0,1 -EndSplineSet -EndChar - -StartChar: uni032C -Encoding: 812 812 750 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 5 - 6 - 223 - 1 - 1 - 1 - 128 - 7 - 15 - 4 - 31 - 4 - 2 - 7 - 4 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -SHP[rp1] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -150 mark 0 -AnchorPoint: "Anchor-14" 0 -150 mark 0 -LayerCount: 2 -Fore -SplineSet -101 -425 m 1,0,-1 - -103 -425 l 1,1,-1 - -327 -186 l 1,2,-1 - -327 -165 l 1,3,-1 - -223 -165 l 1,4,-1 - -1 -304 l 1,5,-1 - 1 -304 l 1,6,-1 - 220 -165 l 1,7,-1 - 325 -165 l 1,8,-1 - 325 -186 l 1,9,-1 - 101 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni032D -Encoding: 813 813 751 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 6 - 223 - 2 - 1 - 2 - 128 - 15 - 9 - 31 - 9 - 2 - 7 - 9 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -150 mark 0 -AnchorPoint: "Anchor-14" 0 -150 mark 0 -LayerCount: 2 -Fore -SplineSet -321 -404 m 1,0,-1 - 321 -425 l 1,1,-1 - 216 -425 l 1,2,-1 - -3 -286 l 1,3,-1 - -5 -286 l 1,4,-1 - -227 -425 l 1,5,-1 - -331 -425 l 1,6,-1 - -331 -404 l 1,7,-1 - -107 -165 l 1,8,-1 - 97 -165 l 1,9,-1 - 321 -404 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni032E -Encoding: 814 814 752 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 7 - 0 - 128 - 10 - 15 - 4 - 1 - 8 - 4 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -120 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet -0 -398 m 256,0,1 - -120 -398 -120 -398 -198.5 -327.5 c 128,-1,2 - -277 -257 -277 -257 -292 -138 c 1,3,-1 - -187 -138 l 1,4,5 - -175 -197 -175 -197 -125.5 -233.5 c 128,-1,6 - -76 -270 -76 -270 0 -270 c 0,7,8 - 74 -270 74 -270 123.5 -234.5 c 128,-1,9 - 173 -199 173 -199 187 -138 c 1,10,-1 - 292 -138 l 1,11,12 - 274 -260 274 -260 197 -329 c 128,-1,13 - 120 -398 120 -398 0 -398 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni032F -Encoding: 815 815 753 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 11 - 4 - 128 - 7 - 15 - 0 - 1 - 8 - 0 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -SHP[rp2] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -120 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet -0 -138 m 256,0,1 - 119 -138 119 -138 196.5 -206.5 c 128,-1,2 - 274 -275 274 -275 292 -398 c 1,3,-1 - 187 -398 l 1,4,5 - 172 -336 172 -336 123 -301 c 128,-1,6 - 74 -266 74 -266 0 -266 c 0,7,8 - -76 -266 -76 -266 -125.5 -302.5 c 128,-1,9 - -175 -339 -175 -339 -187 -398 c 1,10,-1 - -292 -398 l 1,11,12 - -277 -279 -277 -279 -198 -208.5 c 128,-1,13 - -119 -138 -119 -138 0 -138 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni0330 -Encoding: 816 816 754 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 18 - 5 - 9 - 223 - 0 - 1 - 0 - 128 - 20 - 15 - 13 - 31 - 13 - 2 - 7 - 13 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -SHP[rp1] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -140 mark 0 -AnchorPoint: "Anchor-14" 0 -140 mark 0 -LayerCount: 2 -Fore -SplineSet -157 -425 m 0,0,1 - 115 -425 115 -425 73 -406.5 c 128,-1,2 - 31 -388 31 -388 -8 -365.5 c 128,-1,3 - -47 -343 -47 -343 -82.5 -324.5 c 128,-1,4 - -118 -306 -118 -306 -149 -306 c 0,5,6 - -204 -306 -204 -306 -231 -337 c 128,-1,7 - -258 -368 -258 -368 -267 -425 c 1,8,-1 - -358 -425 l 1,9,10 - -347 -323 -347 -323 -323 -270.5 c 128,-1,11 - -299 -218 -299 -218 -258.5 -187.5 c 128,-1,12 - -218 -157 -218 -157 -155 -157 c 0,13,14 - -111 -157 -111 -157 -69 -175.5 c 128,-1,15 - -27 -194 -27 -194 12 -216.5 c 128,-1,16 - 51 -239 51 -239 85.5 -257.5 c 128,-1,17 - 120 -276 120 -276 150 -276 c 0,18,19 - 250 -276 250 -276 267 -157 c 1,20,-1 - 359 -157 l 1,21,22 - 342 -305 342 -305 292 -365 c 128,-1,23 - 242 -425 242 -425 157 -425 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0331 -Encoding: 817 817 755 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 3 - 0 - 142 - 89 - 3 -SVTCA[y-axis] -MDAP[rnd] -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -420 basemark 0 -AnchorPoint: "Anchor-28" 0 -180 mark 0 -AnchorPoint: "Anchor-14" 0 -180 mark 0 -LayerCount: 2 -Fore -SplineSet -274 -324 m 1,0,-1 - -275 -324 l 1,1,-1 - -275 -197 l 1,2,-1 - 274 -197 l 1,3,-1 - 274 -324 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0332 -Encoding: 818 818 756 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 2 - 3 - 142 - 89 - 2 -SVTCA[y-axis] -MDAP[rnd] -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -260 mark 0 -AnchorPoint: "Anchor-14" 0 -260 mark 0 -LayerCount: 2 -Fore -SplineSet --597 -407 m 1,0,-1 - -597 -277 l 1,1,-1 - 596 -277 l 1,2,-1 - 596 -407 l 1,3,-1 - -597 -407 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0333 -Encoding: 819 819 757 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 0 - 6 - 16 - 5 - 32 - 5 - 48 - 5 - 3 - 127 - 5 - 1 - 5 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -DELTAP1 -DELTAP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -80 mark 0 -LayerCount: 2 -Fore -SplineSet -313 -218 m 1,0,-1 - -311 -218 l 1,1,-1 - -311 -100 l 1,2,-1 - 313 -100 l 1,3,-1 - 313 -218 l 1,0,-1 -313 -425 m 1,4,-1 - -311 -425 l 1,5,-1 - -311 -307 l 1,6,-1 - 313 -307 l 1,7,-1 - 313 -425 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni0334 -Encoding: 820 820 758 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 18 - 5 - 20 - 13 - 128 - 9 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -157 241 m 0,0,1 - 115 241 115 241 73 259.5 c 128,-1,2 - 31 278 31 278 -8 300.5 c 128,-1,3 - -47 323 -47 323 -82.5 341.5 c 128,-1,4 - -118 360 -118 360 -149 360 c 0,5,6 - -204 360 -204 360 -231 329 c 128,-1,7 - -258 298 -258 298 -267 241 c 1,8,-1 - -358 241 l 1,9,10 - -347 343 -347 343 -323 395.5 c 128,-1,11 - -299 448 -299 448 -258.5 478.5 c 128,-1,12 - -218 509 -218 509 -155 509 c 0,13,14 - -111 509 -111 509 -69 490.5 c 128,-1,15 - -27 472 -27 472 12 449.5 c 128,-1,16 - 51 427 51 427 85.5 408.5 c 128,-1,17 - 120 390 120 390 150 390 c 0,18,19 - 250 390 250 390 267 509 c 1,20,-1 - 359 509 l 1,21,22 - 342 361 342 361 292 301 c 128,-1,23 - 242 241 242 241 157 241 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0335 -Encoding: 821 821 759 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -351 274 m 1,0,-1 - -351 274 l 1,1,-1 - -351 417 l 1,2,-1 - 351 417 l 1,3,-1 - 351 274 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0336 -Encoding: 822 822 760 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -598 284 m 1,0,-1 - -595 284 l 1,1,-1 - -595 409 l 1,2,-1 - 598 409 l 1,3,-1 - 598 284 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0337 -Encoding: 823 823 761 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 0 - 3 - 2 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -512 898 m 1,0,-1 - -413 -28 l 1,1,-1 - -512 69 l 1,2,-1 - 413 995 l 1,3,-1 - 512 898 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0338 -Encoding: 824 824 762 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -287 1511 m 1,0,-1 - -137 -35 l 1,1,-1 - -282 -35 l 1,2,-1 - 143 1511 l 1,3,-1 - 287 1511 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0339 -Encoding: 825 825 763 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 6 - 0 - 15 - 13 - 1 - 175 - 13 - 191 - 13 - 2 - 13 - 128 - 7 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -DELTAP1 -DELTAP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" -20 -60 mark 0 -AnchorPoint: "Anchor-14" -20 -50 mark 0 -LayerCount: 2 -Fore -SplineSet --93 -349 m 1,0,1 - -51 -349 -51 -349 -23.5 -321 c 128,-1,2 - 4 -293 4 -293 4 -244 c 256,3,4 - 4 -195 4 -195 -23.5 -167.5 c 128,-1,5 - -51 -140 -51 -140 -93 -140 c 1,6,-1 - -93 -55 l 1,7,8 - -9 -55 -9 -55 41.5 -106 c 128,-1,9 - 92 -157 92 -157 92 -244 c 256,10,11 - 92 -331 92 -331 41.5 -382.5 c 128,-1,12 - -9 -434 -9 -434 -93 -434 c 1,13,-1 - -93 -349 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni033A -Encoding: 826 826 764 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 4 - 127 - 1 - 1 - 1 - 128 - 6 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -80 mark 0 -LayerCount: 2 -Fore -SplineSet -377 -425 m 1,0,-1 - -377 -425 l 1,1,-1 - -377 -89 l 1,2,-1 - -241 -89 l 1,3,-1 - -241 -290 l 1,4,-1 - 240 -290 l 1,5,-1 - 240 -89 l 1,6,-1 - 377 -89 l 1,7,-1 - 377 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni033B -Encoding: 827 827 765 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 7 - 15 - 1 - 1 - 1 - 128 - 5 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -DELTAP2 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -40 mark 0 -AnchorPoint: "Anchor-14" 0 -40 mark 0 -LayerCount: 2 -Fore -SplineSet -188 -425 m 1,0,-1 - -188 -425 l 1,1,-1 - -188 -49 l 1,2,-1 - 188 -49 l 1,3,-1 - 188 -425 l 1,0,-1 -93 -330 m 1,4,-1 - 93 -144 l 1,5,-1 - -93 -144 l 1,6,-1 - -93 -330 l 1,7,-1 - 93 -330 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni033C -Encoding: 828 828 766 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 0 - 11 - 11 - 15 - 2 - 9 - 9 - 17 - 6 - 128 - 20 - 15 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -IP -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -120 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet -252 -294 m 1,0,1 - 235 -220 235 -220 161 -220 c 0,2,3 - 106 -220 106 -220 76 -257 c 128,-1,4 - 46 -294 46 -294 46 -363 c 1,5,-1 - -46 -363 l 1,6,7 - -46 -294 -46 -294 -76 -257 c 128,-1,8 - -106 -220 -106 -220 -161 -220 c 0,9,10 - -235 -220 -235 -220 -252 -294 c 1,11,-1 - -350 -294 l 1,12,13 - -337 -216 -337 -216 -292 -171 c 128,-1,14 - -247 -126 -247 -126 -169 -126 c 0,15,16 - -57 -126 -57 -126 0 -217 c 1,17,18 - 32 -166 32 -166 71 -146 c 128,-1,19 - 110 -126 110 -126 164 -126 c 0,20,21 - 242 -126 242 -126 289.5 -171 c 128,-1,22 - 337 -216 337 -216 350 -294 c 1,23,-1 - 252 -294 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni033D -Encoding: 829 829 767 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 8 - 11 - 5 - 2 - 4 - 9 - 7 - 128 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1140 mark 0 -AnchorPoint: "Anchor-16" 0 1140 mark 0 -LayerCount: 2 -Fore -SplineSet -218 1223 m 1,0,-1 - 131 1138 l 1,1,-1 - -1 1272 l 1,2,-1 - -132 1139 l 1,3,-1 - -218 1222 l 1,4,-1 - -87 1355 l 1,5,-1 - -219 1488 l 1,6,-1 - -132 1573 l 1,7,-1 - 0 1440 l 1,8,-1 - 132 1572 l 1,9,-1 - 218 1489 l 1,10,-1 - 86 1357 l 1,11,-1 - 218 1223 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni033E -Encoding: 830 830 768 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 20 - 8 - 17 - 16 - 128 - 5 - 4 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1760 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1140 mark 0 -LayerCount: 2 -Fore -SplineSet -105 1290 m 0,0,1 - 105 1241 105 1241 81.5 1209.5 c 128,-1,2 - 58 1178 58 1178 18 1160 c 128,-1,3 - -22 1142 -22 1142 -105 1132 c 1,4,-1 - -105 1209 l 1,5,6 - -61 1215 -61 1215 -36.5 1234 c 128,-1,7 - -12 1253 -12 1253 -12 1295 c 0,8,9 - -12 1318 -12 1318 -26.5 1342.5 c 128,-1,10 - -41 1367 -41 1367 -58.5 1393.5 c 128,-1,11 - -76 1420 -76 1420 -90.5 1450 c 128,-1,12 - -105 1480 -105 1480 -105 1514 c 0,13,14 - -105 1582 -105 1582 -57.5 1621 c 128,-1,15 - -10 1660 -10 1660 105 1673 c 1,16,-1 - 105 1597 l 1,17,18 - 60 1589 60 1589 36 1571 c 128,-1,19 - 12 1553 12 1553 12 1509 c 0,20,21 - 12 1485 12 1485 26.5 1460 c 128,-1,22 - 41 1435 41 1435 58.5 1408.5 c 128,-1,23 - 76 1382 76 1382 90.5 1352.5 c 128,-1,24 - 105 1323 105 1323 105 1290 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni033F -Encoding: 831 831 769 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 7 - 1 - 6 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1940 basemark 0 -AnchorPoint: "Anchor-27" 0 1520 mark 0 -AnchorPoint: "Anchor-16" 0 1540 mark 0 -LayerCount: 2 -Fore -SplineSet --596 1548 m 1,0,-1 - -596 1650 l 1,1,-1 - 597 1650 l 1,2,-1 - 597 1548 l 1,3,-1 - -596 1548 l 1,0,-1 --596 1738 m 1,4,-1 - -596 1840 l 1,5,-1 - 597 1840 l 1,6,-1 - 597 1738 l 1,7,-1 - -596 1738 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni0340 -Encoding: 832 832 770 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 0 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --154 1474 m 1,0,-1 - -17 1206 l 1,1,-1 - -17 1194 l 1,2,-1 - -137 1194 l 1,3,-1 - -333 1459 l 1,4,-1 - -333 1474 l 1,5,-1 - -154 1474 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0341 -Encoding: 833 833 771 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 0 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -334 1474 m 1,0,-1 - 334 1459 l 1,1,-1 - 138 1194 l 1,2,-1 - 18 1194 l 1,3,-1 - 18 1206 l 1,4,-1 - 155 1474 l 1,5,-1 - 334 1474 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0342 -Encoding: 834 834 772 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 16 - 5 - 0 - 18 - 18 - 11 - 0 - 128 - 8 - 8 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -MDAP[rnd] -SMD -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -SRP1 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1540 basemark 0 -AnchorPoint: "Anchor-27" 0 1180 mark 0 -AnchorPoint: "Anchor-16" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -140 1211 m 0,0,1 - 98 1211 98 1211 62.5 1226.5 c 128,-1,2 - 27 1242 27 1242 -5.5 1260.5 c 128,-1,3 - -38 1279 -38 1279 -70.5 1294.5 c 128,-1,4 - -103 1310 -103 1310 -140 1310 c 0,5,6 - -187 1310 -187 1310 -212.5 1284 c 128,-1,7 - -238 1258 -238 1258 -247 1201 c 1,8,-1 - -348 1201 l 1,9,10 - -319 1459 -319 1459 -145 1459 c 0,11,12 - -101 1459 -101 1459 -64.5 1443.5 c 128,-1,13 - -28 1428 -28 1428 6 1409.5 c 128,-1,14 - 40 1391 40 1391 72.5 1375.5 c 128,-1,15 - 105 1360 105 1360 141 1360 c 0,16,17 - 232 1360 232 1360 247 1469 c 1,18,-1 - 349 1469 l 1,19,20 - 334 1333 334 1333 281.5 1272 c 128,-1,21 - 229 1211 229 1211 140 1211 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0343 -Encoding: 835 835 773 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 8 - 8 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1020 mark 0 -AnchorPoint: "Anchor-16" 0 1020 mark 0 -LayerCount: 2 -Fore -SplineSet -101 1484 m 1,0,-1 - 101 1338 l 2,1,2 - 101 1241 101 1241 82.5 1167.5 c 128,-1,3 - 64 1094 64 1094 21 1027 c 1,4,-1 - -100 1027 l 1,5,6 - -5 1164 -5 1164 -5 1289 c 1,7,-1 - -94 1289 l 1,8,-1 - -94 1484 l 1,9,-1 - 101 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0344 -Encoding: 836 836 774 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 11 - 7 - 7 - 0 - 128 - 10 - 6 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SMD -MDRP[min,rnd,black] -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1220 mark 0 -LayerCount: 2 -Fore -SplineSet -177 1507 m 1,0,-1 - 177 1492 l 1,1,-1 - -12 1231 l 1,2,-1 - -129 1231 l 1,3,-1 - -129 1243 l 1,4,-1 - 2 1507 l 1,5,-1 - 177 1507 l 1,0,-1 --341 1231 m 1,6,-1 - -341 1403 l 1,7,-1 - -191 1403 l 1,8,-1 - -191 1231 l 1,9,-1 - -341 1231 l 1,6,-1 -189 1231 m 1,10,-1 - 189 1403 l 1,11,-1 - 339 1403 l 1,12,-1 - 339 1231 l 1,13,-1 - 189 1231 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni0345 -Encoding: 837 837 775 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 3 - 31 - 8 - 1 - 8 - 128 - 15 - 12 - 1 - 8 - 12 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -SMD -MDRP[min,rnd,grey] -DELTAP2 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -120 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet -62 -252 m 2,0,1 - 62 -285 62 -285 72.5 -296.5 c 128,-1,2 - 83 -308 83 -308 107 -308 c 0,3,4 - 121 -308 121 -308 154 -302 c 1,5,-1 - 154 -414 l 1,6,7 - 110 -425 110 -425 72 -425 c 0,8,9 - -70 -425 -70 -425 -70 -273 c 2,10,-1 - -70 -127 l 1,11,-1 - 62 -127 l 1,12,-1 - 62 -252 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0346 -Encoding: 838 838 776 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 3 - 7 - 128 - 5 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1220 mark 0 -AnchorPoint: "Anchor-16" 0 1220 mark 0 -LayerCount: 2 -Fore -SplineSet -377 1234 m 1,0,-1 - 240 1234 l 1,1,-1 - 240 1435 l 1,2,-1 - -241 1435 l 1,3,-1 - -241 1234 l 1,4,-1 - -377 1234 l 1,5,-1 - -377 1570 l 1,6,-1 - 377 1570 l 1,7,-1 - 377 1234 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0347 -Encoding: 839 839 777 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 0 - 5 - 31 - 4 - 1 - 144 - 4 - 1 - 4 - 128 - 15 - 2 - 1 - 8 - 2 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -SMD -MDRP[min,rnd,grey] -DELTAP1 -DELTAP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -120 mark 0 -AnchorPoint: "Anchor-14" 0 -120 mark 0 -LayerCount: 2 -Fore -SplineSet --499 -236 m 1,0,-1 - -499 -130 l 1,1,-1 - 496 -130 l 1,2,-1 - 496 -236 l 1,3,-1 - -499 -236 l 1,0,-1 --499 -425 m 1,4,-1 - -499 -319 l 1,5,-1 - 496 -319 l 1,6,-1 - 496 -425 l 1,7,-1 - -499 -425 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni0348 -Encoding: 840 840 778 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 5 - 111 - 1 - 127 - 1 - 2 - 1 - 128 - 6 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -60 mark 0 -AnchorPoint: "Anchor-14" 0 -60 mark 0 -LayerCount: 2 -Fore -SplineSet --51 -425 m 1,0,-1 - -185 -425 l 1,1,-1 - -185 -75 l 1,2,-1 - -51 -75 l 1,3,-1 - -51 -425 l 1,0,-1 -190 -425 m 1,4,-1 - 56 -425 l 1,5,-1 - 56 -75 l 1,6,-1 - 190 -75 l 1,7,-1 - 190 -425 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni0349 -Encoding: 841 841 779 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 5 - 127 - 3 - 1 - 3 - 128 - 1 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -80 mark 0 -LayerCount: 2 -Fore -SplineSet --203 -89 m 1,0,-1 - 203 -89 l 1,1,-1 - 203 -425 l 1,2,-1 - 73 -425 l 1,3,-1 - 73 -212 l 1,4,-1 - -203 -212 l 1,5,-1 - -203 -89 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni034A -Encoding: 842 842 780 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 16 - 2 - 18 - 12 - 9 - 128 - 25 - 4 - 22 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp2] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet --81 1304 m 1,0,1 - -121 1323 -121 1323 -150 1323 c 0,2,3 - -249 1323 -249 1323 -268 1201 c 1,4,-1 - -359 1201 l 1,5,6 - -348 1303 -348 1303 -324 1355.5 c 128,-1,7 - -300 1408 -300 1408 -259.5 1438.5 c 128,-1,8 - -219 1469 -219 1469 -156 1469 c 0,9,10 - -94 1469 -94 1469 -15 1421 c 1,11,-1 - 46 1529 l 1,12,-1 - 143 1475 l 1,13,-1 - 82 1367 l 1,14,15 - 124 1347 124 1347 149 1347 c 0,16,17 - 249 1347 249 1347 266 1469 c 1,18,-1 - 358 1469 l 1,19,20 - 341 1321 341 1321 291 1261 c 128,-1,21 - 241 1201 241 1201 156 1201 c 0,22,23 - 97 1201 97 1201 16 1250 c 1,24,-1 - -45 1141 l 1,25,-1 - -142 1196 l 1,26,-1 - -81 1304 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni034B -Encoding: 843 843 781 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 21 - 18 - 5 - 13 - 8 - 0 - 29 - 30 - 13 - 26 - 0 - 13 - 0 - 13 - 0 - 25 - 30 - 25 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1840 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1130 mark 0 -LayerCount: 2 -Fore -SplineSet -165 1335 m 0,0,1 - 122 1335 122 1335 81.5 1351 c 128,-1,2 - 41 1367 41 1367 3 1386.5 c 128,-1,3 - -35 1406 -35 1406 -69.5 1422.5 c 128,-1,4 - -104 1439 -104 1439 -135 1439 c 0,5,6 - -190 1439 -190 1439 -215 1412.5 c 128,-1,7 - -240 1386 -240 1386 -249 1335 c 1,8,-1 - -353 1335 l 1,9,10 - -342 1424 -342 1424 -318 1470.5 c 128,-1,11 - -294 1517 -294 1517 -253 1544 c 128,-1,12 - -212 1571 -212 1571 -149 1571 c 0,13,14 - -105 1571 -105 1571 -64 1554.5 c 128,-1,15 - -23 1538 -23 1538 14.5 1518.5 c 128,-1,16 - 52 1499 52 1499 86 1482.5 c 128,-1,17 - 120 1466 120 1466 150 1466 c 0,18,19 - 204 1466 204 1466 229 1493.5 c 128,-1,20 - 254 1521 254 1521 262 1571 c 1,21,-1 - 368 1571 l 1,22,23 - 351 1442 351 1442 300.5 1388.5 c 128,-1,24 - 250 1335 250 1335 165 1335 c 0,0,1 --90 1122 m 1,25,-1 - -90 1294 l 1,26,-1 - 90 1294 l 1,27,-1 - 90 1122 l 1,28,-1 - -90 1122 l 1,25,-1 --90 1622 m 1,29,-1 - -90 1794 l 1,30,-1 - 90 1794 l 1,31,-1 - 90 1622 l 1,32,-1 - -90 1622 l 1,29,-1 -EndSplineSet -EndChar - -StartChar: uni034C -Encoding: 844 844 782 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 43 - 30 - 46 - 38 - 33 - 25 - 25 - 18 - 5 - 21 - 13 - 8 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -MDRP[min,rnd,black] -SHP[rp2] -IP -IP -SHP[rp2] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -SHP[rp2] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1840 basemark 0 -AnchorPoint: "Anchor-27" 0 1180 mark 0 -AnchorPoint: "Anchor-16" 0 1220 mark 0 -LayerCount: 2 -Fore -SplineSet -165 1217 m 0,0,1 - 122 1217 122 1217 81.5 1233 c 128,-1,2 - 41 1249 41 1249 3 1268.5 c 128,-1,3 - -35 1288 -35 1288 -69.5 1304.5 c 128,-1,4 - -104 1321 -104 1321 -135 1321 c 0,5,6 - -190 1321 -190 1321 -215 1294.5 c 128,-1,7 - -240 1268 -240 1268 -249 1217 c 1,8,-1 - -353 1217 l 1,9,10 - -342 1306 -342 1306 -318 1352.5 c 128,-1,11 - -294 1399 -294 1399 -253 1426 c 128,-1,12 - -212 1453 -212 1453 -149 1453 c 0,13,14 - -105 1453 -105 1453 -64 1436.5 c 128,-1,15 - -23 1420 -23 1420 14.5 1400.5 c 128,-1,16 - 52 1381 52 1381 86 1364.5 c 128,-1,17 - 120 1348 120 1348 150 1348 c 0,18,19 - 204 1348 204 1348 229 1375.5 c 128,-1,20 - 254 1403 254 1403 262 1453 c 1,21,-1 - 368 1453 l 1,22,23 - 351 1324 351 1324 300.5 1270.5 c 128,-1,24 - 250 1217 250 1217 165 1217 c 0,0,1 -165 1481 m 0,25,26 - 122 1481 122 1481 81.5 1497 c 128,-1,27 - 41 1513 41 1513 3 1532.5 c 128,-1,28 - -35 1552 -35 1552 -69.5 1568.5 c 128,-1,29 - -104 1585 -104 1585 -135 1585 c 0,30,31 - -190 1585 -190 1585 -215 1558.5 c 128,-1,32 - -240 1532 -240 1532 -249 1481 c 1,33,-1 - -353 1481 l 1,34,35 - -342 1570 -342 1570 -318 1616.5 c 128,-1,36 - -294 1663 -294 1663 -253 1690 c 128,-1,37 - -212 1717 -212 1717 -149 1717 c 0,38,39 - -105 1717 -105 1717 -64 1700.5 c 128,-1,40 - -23 1684 -23 1684 14.5 1664.5 c 128,-1,41 - 52 1645 52 1645 86 1628.5 c 128,-1,42 - 120 1612 120 1612 150 1612 c 0,43,44 - 204 1612 204 1612 229 1639.5 c 128,-1,45 - 254 1667 254 1667 262 1717 c 1,46,-1 - 368 1717 l 1,47,48 - 351 1588 351 1588 300.5 1534.5 c 128,-1,49 - 250 1481 250 1481 165 1481 c 0,25,26 -EndSplineSet -EndChar - -StartChar: uni034D -Encoding: 845 845 783 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 7 - 3 - 4 - 6 - 4 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -100 mark 0 -AnchorPoint: "Anchor-14" 0 -100 mark 0 -LayerCount: 2 -Fore -SplineSet -273 -246 m 1,0,-1 - 123 -425 l 1,1,-1 - 123 -297 l 1,2,-1 - -123 -297 l 1,3,-1 - -123 -425 l 1,4,-1 - -273 -246 l 1,5,-1 - -123 -71 l 1,6,-1 - -123 -189 l 1,7,-1 - 123 -189 l 1,8,-1 - 123 -71 l 1,9,-1 - 273 -246 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni034E -Encoding: 846 846 784 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 5 - 2 - 2 - 15 - 0 - 1 - 0 - 128 - 3 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -DELTAP2 -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -60 mark 0 -AnchorPoint: "Anchor-14" 0 -60 mark 0 -LayerCount: 2 -Fore -SplineSet --59 -425 m 1,0,-1 - -59 -187 l 1,1,-1 - -177 -187 l 1,2,-1 - 0 -44 l 1,3,-1 - 177 -187 l 1,4,-1 - 53 -187 l 1,5,-1 - 53 -425 l 1,6,-1 - -59 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni034F -Encoding: 847 847 785 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 90 - 160 - 78 - 166 - 166 - 163 - 7 - 3 - 71 - 71 - 48 - 52 - 24 - 56 - 56 - 28 - 60 - 1 - 73 - 16 - 84 - 84 - 20 - 88 - 32 - 108 - 108 - 36 - 112 - 12 - 156 - 40 - 116 - 116 - 44 - 120 - 64 - 132 - 132 - 68 - 136 - 11 - 155 - 92 - 148 - 148 - 96 - 152 - 100 - 140 - 140 - 104 - 144 - 80 - 164 - 124 - 128 - 52 - 60 - 73 - 88 - 112 - 156 - 120 - 136 - 155 - 152 - 144 - 164 - 128 - 128 - 164 - 144 - 152 - 155 - 136 - 120 - 156 - 112 - 88 - 73 - 60 - 52 - 13 - 8 - 4 - 74 - 159 - 77 - 163 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MDRP[rnd,white] -SHP[rp2] -SHP[rp2] -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -746 1155 m 1,0,-1 - 637 1155 l 1,1,-1 - 637 1375 l 1,2,-1 - 413 1375 l 1,3,-1 - 413 1484 l 1,4,-1 - 746 1484 l 1,5,-1 - 746 1155 l 1,0,-1 -167 1375 m 1,6,-1 - -167 1375 l 1,7,-1 - -167 1484 l 1,8,-1 - 167 1484 l 1,9,-1 - 167 1375 l 1,6,-1 -746 575 m 1,10,-1 - 637 575 l 1,11,-1 - 637 909 l 1,12,-1 - 746 909 l 1,13,-1 - 746 575 l 1,10,-1 -379 1056 m 0,14,15 - 379 1002 379 1002 327 1002 c 0,16,17 - 271 1002 271 1002 271 1056 c 0,18,19 - 271 1111 271 1111 327 1111 c 0,20,21 - 379 1111 379 1111 379 1056 c 0,14,15 -230 1155 m 0,22,23 - 230 1101 230 1101 178 1101 c 0,24,25 - 121 1101 121 1101 121 1155 c 0,26,27 - 121 1210 121 1210 178 1210 c 0,28,29 - 230 1210 230 1210 230 1155 c 0,22,23 -479 907 m 0,30,31 - 479 851 479 851 424 851 c 0,32,33 - 370 851 370 851 370 907 c 0,34,35 - 370 960 370 960 426 960 c 0,36,37 - 479 960 479 960 479 907 c 0,30,31 -515 731 m 0,38,39 - 515 677 515 677 463 677 c 0,40,41 - 407 677 407 677 407 731 c 0,42,43 - 407 786 407 786 463 786 c 0,44,45 - 515 786 515 786 515 731 c 0,38,39 -55 1192 m 0,46,47 - 55 1136 55 1136 1 1136 c 0,48,49 - -54 1136 -54 1136 -54 1192 c 0,50,51 - -54 1245 -54 1245 1 1245 c 0,52,53 - 55 1245 55 1245 55 1192 c 0,46,47 --119 1155 m 0,54,55 - -119 1101 -119 1101 -175 1101 c 0,56,57 - -228 1101 -228 1101 -228 1155 c 0,58,59 - -228 1210 -228 1210 -175 1210 c 0,60,61 - -119 1210 -119 1210 -119 1155 c 0,54,55 -479 556 m 0,62,63 - 479 503 479 503 424 503 c 0,64,65 - 370 503 370 503 370 556 c 0,66,67 - 370 612 370 612 424 612 c 0,68,69 - 479 612 479 612 479 556 c 0,62,63 --413 1375 m 1,70,-1 - -637 1375 l 1,71,-1 - -637 1155 l 1,72,-1 - -746 1155 l 1,73,-1 - -746 1484 l 1,74,-1 - -413 1484 l 1,75,-1 - -413 1375 l 1,70,-1 -746 0 m 1,76,-1 - 413 0 l 1,77,-1 - 413 109 l 1,78,-1 - 637 109 l 1,79,-1 - 637 329 l 1,80,-1 - 746 329 l 1,81,-1 - 746 0 l 1,76,-1 --269 1056 m 0,82,83 - -269 1002 -269 1002 -323 1002 c 256,84,85 - -377 1002 -377 1002 -377 1053 c 0,86,87 - -377 1111 -377 1111 -323 1111 c 256,88,89 - -269 1111 -269 1111 -269 1056 c 0,82,83 -381 405 m 0,90,91 - 381 352 381 352 327 352 c 256,92,93 - 273 352 273 352 273 405 c 0,94,95 - 273 460 273 460 327 460 c 256,96,97 - 381 460 381 460 381 405 c 0,90,91 -231 306 m 0,98,99 - 231 254 231 254 178 254 c 0,100,101 - 122 254 122 254 122 306 c 0,102,103 - 122 363 122 363 178 363 c 0,104,105 - 231 363 231 363 231 306 c 0,98,99 --368 907 m 0,106,107 - -368 851 -368 851 -421 851 c 0,108,109 - -477 851 -477 851 -477 907 c 0,110,111 - -477 960 -477 960 -423 960 c 0,112,113 - -368 960 -368 960 -368 907 c 0,106,107 --403 731 m 0,114,115 - -403 677 -403 677 -457 677 c 256,116,117 - -511 677 -511 677 -511 731 c 0,118,119 - -511 786 -511 786 -457 786 c 256,120,121 - -403 786 -403 786 -403 731 c 0,114,115 -55 273 m 0,122,123 - 55 218 55 218 1 218 c 0,124,125 - -54 218 -54 218 -54 273 c 0,126,127 - -54 326 -54 326 1 326 c 0,128,129 - 55 326 55 326 55 273 c 0,122,123 --368 556 m 0,130,131 - -368 503 -368 503 -423 503 c 0,132,133 - -477 503 -477 503 -477 556 c 0,134,135 - -477 612 -477 612 -423 612 c 0,136,137 - -368 612 -368 612 -368 556 c 0,130,131 --119 310 m 0,138,139 - -119 254 -119 254 -175 254 c 0,140,141 - -228 254 -228 254 -228 306 c 0,142,143 - -228 363 -228 363 -175 363 c 0,144,145 - -119 363 -119 363 -119 310 c 0,138,139 --269 405 m 0,146,147 - -269 352 -269 352 -323 352 c 256,148,149 - -377 352 -377 352 -377 405 c 0,150,151 - -377 460 -377 460 -323 460 c 256,152,153 - -269 460 -269 460 -269 405 c 0,146,147 --637 575 m 1,154,-1 - -746 575 l 1,155,-1 - -746 909 l 1,156,-1 - -637 909 l 1,157,-1 - -637 575 l 1,154,-1 -167 0 m 1,158,-1 - -167 0 l 1,159,-1 - -167 109 l 1,160,-1 - 167 109 l 1,161,-1 - 167 0 l 1,158,-1 --413 0 m 1,162,-1 - -746 0 l 1,163,-1 - -746 329 l 1,164,-1 - -637 329 l 1,165,-1 - -637 109 l 1,166,-1 - -413 109 l 1,167,-1 - -413 0 l 1,162,-1 -EndSplineSet -EndChar - -StartChar: uni0350 -Encoding: 848 848 786 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 4 - 6 - 128 - 2 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1150 mark 0 -LayerCount: 2 -Fore -SplineSet -141 1400 m 1,0,-1 - 141 1318 l 1,1,-1 - -140 1149 l 1,2,-1 - -140 1263 l 1,3,-1 - 30 1359 l 1,4,-1 - -140 1455 l 1,5,-1 - -140 1569 l 1,6,-1 - 141 1400 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0351 -Encoding: 849 849 787 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 7 - 6 - 128 - 13 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,white] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1150 mark 0 -LayerCount: 2 -Fore -SplineSet -92 1144 m 1,0,1 - 7 1144 7 1144 -43 1196 c 128,-1,2 - -93 1248 -93 1248 -93 1334 c 0,3,4 - -93 1421 -93 1421 -43 1472 c 128,-1,5 - 7 1523 7 1523 92 1523 c 1,6,-1 - 92 1438 l 1,7,8 - 50 1438 50 1438 22.5 1410.5 c 128,-1,9 - -5 1383 -5 1383 -5 1334 c 256,10,11 - -5 1285 -5 1285 22.5 1257 c 128,-1,12 - 50 1229 50 1229 92 1229 c 1,13,-1 - 92 1144 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0352 -Encoding: 850 850 788 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 4 - 11 - 15 - 11 - 15 - 11 - 7 - 0 - 14 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -SHP[rp2] -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1780 basemark 0 -AnchorPoint: "Anchor-27" 0 1220 mark 0 -AnchorPoint: "Anchor-16" 0 1230 mark 0 -LayerCount: 2 -Fore -SplineSet -0 1670 m 256,0,1 - 119 1670 119 1670 196.5 1601.5 c 128,-1,2 - 274 1533 274 1533 292 1410 c 1,3,-1 - 187 1410 l 1,4,5 - 172 1472 172 1472 123 1507 c 128,-1,6 - 74 1542 74 1542 0 1542 c 0,7,8 - -76 1542 -76 1542 -125.5 1505.5 c 128,-1,9 - -175 1469 -175 1469 -187 1410 c 1,10,-1 - -292 1410 l 1,11,12 - -277 1529 -277 1529 -198 1599.5 c 128,-1,13 - -119 1670 -119 1670 0 1670 c 256,0,1 --89 1237 m 1,14,-1 - -89 1409 l 1,15,-1 - 91 1409 l 1,16,-1 - 91 1237 l 1,17,-1 - -89 1237 l 1,14,-1 -EndSplineSet -EndChar - -StartChar: uni0353 -Encoding: 851 851 789 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 8 - 11 - 5 - 2 - 4 - 3 - 1 - 128 - 9 - 7 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 0 mark 0 -AnchorPoint: "Anchor-14" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet -218 -361 m 1,0,-1 - 131 -446 l 1,1,-1 - -1 -312 l 1,2,-1 - -132 -445 l 1,3,-1 - -218 -362 l 1,4,-1 - -87 -229 l 1,5,-1 - -219 -96 l 1,6,-1 - -132 -11 l 1,7,-1 - 0 -144 l 1,8,-1 - 132 -12 l 1,9,-1 - 218 -95 l 1,10,-1 - 86 -227 l 1,11,-1 - 218 -361 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0354 -Encoding: 852 852 790 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 3 - 4 - 128 - 1 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,white] -SHP[rp2] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 0 mark 0 -AnchorPoint: "Anchor-14" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet -141 -6 m 1,0,-1 - 141 -120 l 1,1,-1 - -29 -216 l 1,2,-1 - 141 -312 l 1,3,-1 - 141 -426 l 1,4,-1 - -140 -257 l 1,5,-1 - -140 -175 l 1,6,-1 - 141 -6 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0355 -Encoding: 853 853 791 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 4 - 3 - 2 - 128 - 5 - 6 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,white] -SHP[rp2] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 0 mark 0 -AnchorPoint: "Anchor-14" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet -141 -175 m 1,0,-1 - 141 -257 l 1,1,-1 - -140 -426 l 1,2,-1 - -140 -312 l 1,3,-1 - 30 -216 l 1,4,-1 - -140 -120 l 1,5,-1 - -140 -6 l 1,6,-1 - 141 -175 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0356 -Encoding: 854 854 792 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 9 - 8 - 11 - 12 - 4 - 3 - 2 - 128 - 5 - 6 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,white] -SHP[rp2] -IP -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp2] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 30 0 mark 0 -AnchorPoint: "Anchor-14" 30 0 mark 0 -LayerCount: 2 -Fore -SplineSet -1 -175 m 1,0,-1 - 1 -257 l 1,1,-1 - -280 -426 l 1,2,-1 - -280 -312 l 1,3,-1 - -110 -216 l 1,4,-1 - -280 -120 l 1,5,-1 - -280 -6 l 1,6,-1 - 1 -175 l 1,0,-1 -429 -353 m 1,7,-1 - 315 -353 l 1,8,-1 - 219 -183 l 1,9,-1 - 123 -353 l 1,10,-1 - 9 -353 l 1,11,-1 - 178 -72 l 1,12,-1 - 260 -72 l 1,13,-1 - 429 -353 l 1,7,-1 -EndSplineSet -EndChar - -StartChar: uni0357 -Encoding: 855 855 793 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 6 - 7 - 128 - 0 - 13 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,white] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1150 mark 0 -LayerCount: 2 -Fore -SplineSet --92 1229 m 1,0,1 - -50 1229 -50 1229 -22.5 1257 c 128,-1,2 - 5 1285 5 1285 5 1334 c 256,3,4 - 5 1383 5 1383 -22.5 1410.5 c 128,-1,5 - -50 1438 -50 1438 -92 1438 c 1,6,-1 - -92 1523 l 1,7,8 - -8 1523 -8 1523 42.5 1472 c 128,-1,9 - 93 1421 93 1421 93 1334 c 256,10,11 - 93 1247 93 1247 42.5 1195.5 c 128,-1,12 - -8 1144 -8 1144 -92 1144 c 1,13,-1 - -92 1229 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0358 -Encoding: 856 856 794 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 3 - 9 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -245 1286 m 256,0,1 - 245 1325 245 1325 273 1353 c 128,-1,2 - 301 1381 301 1381 340 1381 c 256,3,4 - 379 1381 379 1381 407 1352.5 c 128,-1,5 - 435 1324 435 1324 435 1286 c 0,6,7 - 435 1247 435 1247 406.5 1219 c 128,-1,8 - 378 1191 378 1191 340 1191 c 0,9,10 - 301 1191 301 1191 273 1219 c 128,-1,11 - 245 1247 245 1247 245 1286 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni0359 -Encoding: 857 857 795 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 2 - 1 - 1 - 10 - 11 - 3 - 9 - 6 - 6 - 0 - 12 - 11 - 12 - 7 - 191 - 5 - 1 - 5 - 14 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 0 mark 0 -AnchorPoint: "Anchor-14" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet -32 -202 m 1,0,-1 - 165 -151 l 1,1,-1 - 190 -226 l 1,2,-1 - 48 -263 l 1,3,-1 - 141 -385 l 1,4,-1 - 74 -426 l 1,5,-1 - -1 -299 l 1,6,-1 - -79 -425 l 1,7,-1 - -145 -384 l 1,8,-1 - -51 -263 l 1,9,-1 - -191 -226 l 1,10,-1 - -166 -150 l 1,11,-1 - -32 -203 l 1,12,-1 - -41 -61 l 1,13,-1 - 42 -61 l 1,14,-1 - 32 -202 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni035A -Encoding: 858 858 796 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 15 - 5 - 3 - 35 - 17 - 17 - 29 - 13 - 41 - 3 - 3 - 23 - 7 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp1] -MDAP[rnd] -MDRP[min,rnd,black] -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp1] -MDAP[rnd] -MDRP[min,rnd,black] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -60 mark 0 -AnchorPoint: "Anchor-14" 0 -60 mark 0 -LayerCount: 2 -Fore -SplineSet -325 -246 m 256,0,1 - 325 -324 325 -324 272.5 -374.5 c 128,-1,2 - 220 -425 220 -425 142 -425 c 0,3,4 - 53 -425 53 -425 2 -352 c 1,5,6 - -49 -425 -49 -425 -138 -425 c 0,7,8 - -217 -425 -217 -425 -269 -374.5 c 128,-1,9 - -321 -324 -321 -324 -321 -246 c 256,10,11 - -321 -168 -321 -168 -268.5 -117.5 c 128,-1,12 - -216 -67 -216 -67 -138 -67 c 0,13,14 - -48 -67 -48 -67 2 -139 c 1,15,16 - 52 -67 52 -67 142 -67 c 0,17,18 - 221 -67 221 -67 273 -117.5 c 128,-1,19 - 325 -168 325 -168 325 -246 c 256,0,1 --243 -246 m 256,20,21 - -243 -297 -243 -297 -212.5 -324 c 128,-1,22 - -182 -351 -182 -351 -138 -351 c 256,23,24 - -94 -351 -94 -351 -64.5 -320.5 c 128,-1,25 - -35 -290 -35 -290 -35 -246 c 256,26,27 - -35 -202 -35 -202 -64.5 -171.5 c 128,-1,28 - -94 -141 -94 -141 -138 -141 c 256,29,30 - -182 -141 -182 -141 -212.5 -168 c 128,-1,31 - -243 -195 -243 -195 -243 -246 c 256,20,21 -247 -246 m 256,32,33 - 247 -195 247 -195 216.5 -168 c 128,-1,34 - 186 -141 186 -141 142 -141 c 256,35,36 - 98 -141 98 -141 68.5 -171.5 c 128,-1,37 - 39 -202 39 -202 39 -246 c 256,38,39 - 39 -290 39 -290 68.5 -320.5 c 128,-1,40 - 98 -351 98 -351 142 -351 c 256,41,42 - 186 -351 186 -351 216.5 -324 c 128,-1,43 - 247 -297 247 -297 247 -246 c 256,32,33 -EndSplineSet -EndChar - -StartChar: uni035B -Encoding: 859 859 797 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 3 - 6 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,white] -MDRP[rp0,min,rnd,black] -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1150 mark 0 -LayerCount: 2 -Fore -SplineSet -200 1409 m 1,0,-1 - 105 1127 l 1,1,-1 - -8 1127 l 1,2,-1 - 56 1306 l 1,3,-1 - -200 1306 l 1,4,-1 - -105 1588 l 1,5,-1 - 8 1588 l 1,6,-1 - -56 1409 l 1,7,-1 - 200 1409 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni035C -Encoding: 860 860 798 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 11 - 5 - 5 - 8 - 2 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-20" 600 0 mark 0 -LayerCount: 2 -Fore -SplineSet -1414 -54 m 1,0,1 - 1181 -425 1181 -425 621 -425 c 0,2,3 - 60 -425 60 -425 -173 -54 c 1,4,-1 - -40 -54 l 1,5,6 - 54 -184 54 -184 219 -243 c 128,-1,7 - 384 -302 384 -302 620 -302 c 256,8,9 - 856 -302 856 -302 1021.5 -243 c 128,-1,10 - 1187 -184 1187 -184 1281 -54 c 1,11,-1 - 1414 -54 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni035D -Encoding: 861 861 799 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 4 - 0 - 128 - 8 - 2 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-21" 600 1180 mark 0 -LayerCount: 2 -Fore -SplineSet -1414 1586 m 1,0,1 - 1181 1215 1181 1215 621 1215 c 0,2,3 - 60 1215 60 1215 -173 1586 c 1,4,-1 - -40 1586 l 1,5,6 - 54 1456 54 1456 219 1397 c 128,-1,7 - 384 1338 384 1338 620 1338 c 256,8,9 - 856 1338 856 1338 1021.5 1397 c 128,-1,10 - 1187 1456 1187 1456 1281 1586 c 1,11,-1 - 1414 1586 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni035E -Encoding: 862 862 800 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-21" 370 1280 mark 0 -LayerCount: 2 -Fore -SplineSet -1325 1309 m 1,0,-1 - -603 1309 l 1,1,-1 - -603 1436 l 1,2,-1 - 1325 1436 l 1,3,-1 - 1325 1309 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni035F -Encoding: 863 863 801 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-20" 370 -100 mark 0 -LayerCount: 2 -Fore -SplineSet -1225 -298 m 1,0,-1 - -563 -298 l 1,1,-1 - -563 -171 l 1,2,-1 - 1225 -171 l 1,3,-1 - 1225 -298 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0360 -Encoding: 864 864 802 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 7 - 19 - 21 - 14 - 128 - 10 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-21" 600 1180 mark 0 -LayerCount: 2 -Fore -SplineSet -1413 1535 m 1,0,1 - 1368 1375 1368 1375 1278 1299.5 c 128,-1,2 - 1188 1224 1188 1224 1054 1224 c 0,3,4 - 901 1224 901 1224 622 1310 c 0,5,6 - 342 1395 342 1395 200 1395 c 0,7,8 - 106 1395 106 1395 48 1353 c 128,-1,9 - -10 1311 -10 1311 -40 1219 c 1,10,-1 - -173 1219 l 1,11,12 - -128 1367 -128 1367 -31 1448.5 c 128,-1,13 - 66 1530 66 1530 189 1530 c 0,14,15 - 278 1530 278 1530 380.5 1510 c 128,-1,16 - 483 1490 483 1490 628 1445 c 0,17,18 - 899 1359 899 1359 1069 1359 c 0,19,20 - 1223 1359 1223 1359 1280 1535 c 1,21,-1 - 1413 1535 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0361 -Encoding: 865 865 803 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 4 - 10 - 128 - 8 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-21" 600 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -1414 1219 m 1,0,-1 - 1281 1219 l 1,1,2 - 1187 1349 1187 1349 1021.5 1408 c 128,-1,3 - 856 1467 856 1467 620 1467 c 256,4,5 - 384 1467 384 1467 219 1408 c 128,-1,6 - 54 1349 54 1349 -40 1219 c 1,7,-1 - -173 1219 l 1,8,9 - 61 1590 61 1590 621 1590 c 0,10,11 - 1180 1590 1180 1590 1414 1219 c 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0362 -Encoding: 866 866 804 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 5 - 2 - 1 - 6 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-20" 350 -120 mark 0 -LayerCount: 2 -Fore -SplineSet -975 -246 m 1,0,-1 - 825 -425 l 1,1,-1 - 825 -297 l 1,2,-1 - -173 -297 l 1,3,-1 - -173 -189 l 1,4,-1 - 825 -189 l 1,5,-1 - 825 -71 l 1,6,-1 - 975 -246 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0363 -Encoding: 867 867 805 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -Refer: 1379 7491 N 1 0 0 1 -384 0 2 -EndChar - -StartChar: uni0364 -Encoding: 868 868 806 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -Refer: 1385 7497 N 1 0 0 1 -385 0 2 -EndChar - -StartChar: uni0365 -Encoding: 869 869 807 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 7 - 3 - 1 - 6 - 235 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -SplineSet --60 1415 m 1,0,-1 - -60 1536 l 1,1,-1 - 61 1536 l 1,2,-1 - 61 1415 l 1,3,-1 - -60 1415 l 1,0,-1 --60 490 m 1,4,-1 - -60 1253 l 1,5,-1 - 61 1253 l 1,6,-1 - 61 490 l 1,7,-1 - -60 490 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni0366 -Encoding: 870 870 808 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -Refer: 1394 7506 N 1 0 0 1 -386 0 2 -EndChar - -StartChar: uni0367 -Encoding: 871 871 809 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -Refer: 1400 7512 N 1 0 0 1 -385 0 2 -EndChar - -StartChar: uni0368 -Encoding: 872 872 810 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 15 - 21 - 228 - 89 - 19 - 15 - 236 - 5 - 9 - 9 - 2 - 228 - 89 - 9 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -SplineSet --179 876 m 0,0,1 - -179 577 -179 577 7 577 c 0,2,3 - 73 577 73 577 116 613.5 c 128,-1,4 - 159 650 159 650 170 726 c 1,5,-1 - 294 718 l 1,6,7 - 280 609 280 609 204.5 542.5 c 128,-1,8 - 129 476 129 476 10 476 c 0,9,10 - -142 476 -142 476 -224.5 576.5 c 128,-1,11 - -307 677 -307 677 -307 873 c 0,12,13 - -307 1063 -307 1063 -226.5 1165.5 c 128,-1,14 - -146 1268 -146 1268 9 1268 c 0,15,16 - 123 1268 123 1268 196.5 1208 c 128,-1,17 - 270 1148 270 1148 290 1040 c 1,18,-1 - 164 1030 l 1,19,20 - 142 1168 142 1168 5 1168 c 0,21,22 - -93 1168 -93 1168 -136 1100 c 128,-1,23 - -179 1032 -179 1032 -179 876 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0369 -Encoding: 873 873 811 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -Refer: 1384 7496 N 1 0 0 1 -371 0 2 -EndChar - -StartChar: uni036A -Encoding: 874 874 812 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 8 - 16 - 19 - 3 - 64 - 3 - 12 - 228 - 89 - 3 - 236 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,white] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -SplineSet --178 1122 m 1,0,1 - -137 1199 -137 1199 -81.5 1233 c 128,-1,2 - -26 1267 -26 1267 58 1267 c 0,3,4 - 176 1267 176 1267 233.5 1205.5 c 128,-1,5 - 291 1144 291 1144 291 998 c 2,6,-1 - 291 490 l 1,7,-1 - 168 490 l 1,8,-1 - 168 974 l 2,9,10 - 168 1087 168 1087 133 1128 c 128,-1,11 - 98 1169 98 1169 16 1169 c 0,12,13 - -72 1169 -72 1169 -123 1106.5 c 128,-1,14 - -174 1044 -174 1044 -174 940 c 2,15,-1 - -174 490 l 1,16,-1 - -297 490 l 1,17,-1 - -297 1536 l 1,18,-1 - -174 1536 l 1,19,-1 - -174 1264 l 2,20,21 - -174 1152 -174 1152 -180 1122 c 1,22,-1 - -178 1122 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni036B -Encoding: 875 875 813 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -Refer: 1392 7504 N 1 0 0 1 -580 0 2 -EndChar - -StartChar: uni036C -Encoding: 876 876 814 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 18 - 9 - 14 - 229 - 89 - 9 - 236 - 3 - 235 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -SplineSet --153 490 m 1,0,-1 - -153 1076 l 2,1,2 - -153 1189 -153 1189 -157 1253 c 1,3,-1 - -41 1253 l 1,4,-1 - -36 1098 l 1,5,-1 - -33 1098 l 1,6,7 - -3 1196 -3 1196 34 1231.5 c 128,-1,8 - 71 1267 71 1267 141 1267 c 0,9,10 - 163 1267 163 1267 191 1260 c 1,11,-1 - 191 1144 l 1,12,13 - 163 1151 163 1151 126 1151 c 0,14,15 - 48 1151 48 1151 8.5 1082 c 128,-1,16 - -31 1013 -31 1013 -31 888 c 2,17,-1 - -31 490 l 1,18,-1 - -153 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni036D -Encoding: 877 877 815 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -Refer: 1399 7511 N 1 0 0 1 -201 0 2 -EndChar - -StartChar: uni036E -Encoding: 878 878 816 -Width: 0 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -Refer: 1403 7515 N 1 0 0 1 -329 0 2 -EndChar - -StartChar: uni036F -Encoding: 879 879 817 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 1 - 4 - 10 - 7 - 4 - 2 - 8 - 5 - 235 - 0 - 2 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 480 mark 0 -AnchorPoint: "Anchor-16" 0 480 mark 0 -LayerCount: 2 -Fore -SplineSet -199 490 m 1,0,-1 - 1 804 l 1,1,-1 - -198 490 l 1,2,-1 - -330 490 l 1,3,-1 - -69 883 l 1,4,-1 - -318 1253 l 1,5,-1 - -183 1253 l 1,6,-1 - 1 957 l 1,7,-1 - 183 1253 l 1,8,-1 - 320 1253 l 1,9,-1 - 70 884 l 1,10,-1 - 335 490 l 1,11,-1 - 199 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0374 -Encoding: 884 884 818 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 3 - 0 - 7 - 6 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -249 1195 m 1,0,-1 - 249 1215 l 1,1,-1 - 359 1484 l 1,2,-1 - 566 1484 l 1,3,-1 - 566 1455 l 1,4,-1 - 343 1195 l 1,5,-1 - 249 1195 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0375 -Encoding: 885 885 819 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 3 - 0 - 6 - 7 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -434 -136 m 1,0,-1 - 434 -156 l 1,1,-1 - 324 -425 l 1,2,-1 - 117 -425 l 1,3,-1 - 117 -396 l 1,4,-1 - 340 -136 l 1,5,-1 - 434 -136 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni037A -Encoding: 890 890 820 -Width: 682 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 775 837 N 1 0 0 1 310 0 2 -EndChar - -StartChar: uni037B -Encoding: 891 891 821 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 65 - 6 - 7 - 7 - 19 - 0 - 13 - 19 - 13 - 26 - 27 - 16 - 23 - 80 - 89 - 32 - 20 - 112 - 20 - 128 - 20 - 208 - 20 - 224 - 20 - 5 - 0 - 20 - 16 - 20 - 96 - 20 - 112 - 20 - 128 - 20 - 192 - 20 - 208 - 20 - 7 - 9 - 20 - 20 - 16 - 22 - 15 - 6 - 111 - 6 - 127 - 6 - 207 - 6 - 4 - 10 - 3 - 6 - 6 - 10 - 10 - 3 - 80 - 89 - 10 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SDB -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -757 546 m 0,0,1 - 757 772 757 772 692.5 866.5 c 128,-1,2 - 628 961 628 961 486 961 c 0,3,4 - 381 961 381 961 324 908 c 128,-1,5 - 267 855 267 855 253 765 c 1,6,-1 - 68 779 l 1,7,8 - 97 930 97 930 205.5 1016 c 128,-1,9 - 314 1102 314 1102 481 1102 c 0,10,11 - 705 1102 705 1102 825 958.5 c 128,-1,12 - 945 815 945 815 945 542 c 0,13,14 - 945 267 945 267 825.5 123.5 c 128,-1,15 - 706 -20 706 -20 479 -20 c 0,16,17 - 308 -20 308 -20 195.5 73 c 128,-1,18 - 83 166 83 166 62 322 c 1,19,-1 - 244 334 l 1,20,21 - 259 226 259 226 323.5 174 c 128,-1,22 - 388 122 388 122 484 122 c 0,23,24 - 622 122 622 122 689.5 226.5 c 128,-1,25 - 757 331 757 331 757 546 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni037C -Encoding: 892 892 822 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 1 - 52 - 27 - 84 - 27 - 100 - 27 - 132 - 27 - 164 - 27 - 180 - 27 - 212 - 27 - 7 - 0 - 27 - 1 - 2 - 27 - 1 - 27 - 0 - 27 - 28 - 0 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -MDAP[rnd] -SDS -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 70 99 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 327 -769 2 -EndChar - -StartChar: uni037D -Encoding: 893 893 823 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 1 - 52 - 27 - 84 - 27 - 100 - 27 - 132 - 27 - 164 - 27 - 180 - 27 - 212 - 27 - 7 - 0 - 27 - 1 - 2 - 27 - 1 - 27 - 0 - 27 - 28 - 20 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -MDAP[rnd] -SDS -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 821 891 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 207 -769 2 -EndChar - -StartChar: uni037E -Encoding: 894 894 824 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 30 59 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tonos -Encoding: 900 900 825 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 0 - 3 - 6 - 7 - 2 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -205 1218 m 1,0,-1 - 205 1251 l 1,1,-1 - 274 1543 l 1,2,-1 - 481 1543 l 1,3,-1 - 481 1506 l 1,4,-1 - 280 1218 l 1,5,-1 - 205 1218 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: dieresistonos -Encoding: 901 901 826 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 9 - 6 - 4 - 1 - 10 - 13 - 13 - 1 - 6 - 3 - 14 - 15 - 11 - 7 - 6 - 7 - 144 - 89 - 2 - 0 - 0 - 10 - 192 - 6 - 1 - 15 - 6 - 63 - 6 - 2 - 6 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHP[rp1] -SHP[rp1] -MDAP[rnd] -MDRP[min,rnd,black] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -250 1200 m 1,0,-1 - 250 1233 l 1,1,-1 - 319 1601 l 1,2,-1 - 506 1601 l 1,3,-1 - 506 1564 l 1,4,-1 - 325 1200 l 1,5,-1 - 250 1200 l 1,0,-1 -29 1231 m 1,6,-1 - 29 1403 l 1,7,-1 - 179 1403 l 1,8,-1 - 179 1231 l 1,9,-1 - 29 1231 l 1,6,-1 -501 1231 m 1,10,-1 - 501 1403 l 1,11,-1 - 651 1403 l 1,12,-1 - 651 1231 l 1,13,-1 - 501 1231 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: Alphatonos -Encoding: 902 902 827 -Width: 1367 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 20 -PUSHW_1 - -246 -NPUSHB - 27 - 20 - 20 - 5 - 5 - 37 - 47 - 24 - 1 - 80 - 24 - 176 - 24 - 2 - 48 - 24 - 96 - 24 - 144 - 24 - 192 - 24 - 240 - 24 - 5 - 2 - 19 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP2 -DELTAP1 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 2 -Refer: 825 900 N 1 0 0 1 -148 -132 2 -Kerns2: 889 -37 "'kern' Horizontal Kerning lookup 17 subtable" 879 -37 "'kern' Horizontal Kerning lookup 17 subtable" 869 -37 "'kern' Horizontal Kerning lookup 17 subtable" 861 -152 "'kern' Horizontal Kerning lookup 17 subtable" 856 -59 "'kern' Horizontal Kerning lookup 17 subtable" 855 -152 "'kern' Horizontal Kerning lookup 17 subtable" 854 -152 "'kern' Horizontal Kerning lookup 17 subtable" 850 -43 "'kern' Horizontal Kerning lookup 17 subtable" 843 -43 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: anoteleia -Encoding: 903 903 828 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 0 - 5 - 4 - 2 - 5 - 1 - 212 - 5 - 228 - 5 - 244 - 5 - 3 - 5 -PUSHW_1 - -64 -NPUSHB - 23 - 119 - 124 - 72 - 82 - 5 - 98 - 5 - 2 - 1 - 32 - 5 - 48 - 5 - 64 - 5 - 3 - 4 - 5 - 20 - 5 - 2 - 112 - 5 -PUSHW_1 - -128 -NPUSHB - 9 - 103 - 111 - 72 - 68 - 5 - 84 - 5 - 2 - 5 -PUSHW_1 - -64 -PUSHB_4 - 99 - 102 - 72 - 5 -PUSHW_1 - -128 -PUSHB_4 - 92 - 95 - 72 - 5 -PUSHW_1 - -64 -PUSHB_4 - 87 - 91 - 72 - 5 -PUSHW_1 - -128 -NPUSHB - 21 - 81 - 86 - 72 - 36 - 5 - 52 - 5 - 68 - 5 - 3 - 228 - 5 - 1 - 176 - 5 - 192 - 5 - 208 - 5 - 3 - 5 -PUSHW_1 - -64 -NPUSHB - 16 - 67 - 70 - 72 - 48 - 5 - 1 - 36 - 5 - 1 - 0 - 5 - 16 - 5 - 2 - 60 - 5 -PUSHW_1 - -64 -NPUSHB - 12 - 56 - 59 - 72 - 187 - 5 - 1 - 128 - 5 - 144 - 5 - 2 - 5 -PUSHW_1 - -64 -NPUSHB - 43 - 45 - 48 - 72 - 11 - 5 - 1 - 208 - 5 - 224 - 5 - 2 - 164 - 5 - 180 - 5 - 196 - 5 - 3 - 32 - 5 - 48 - 5 - 2 - 2 - 0 - 5 - 16 - 5 - 2 - 240 - 5 - 1 - 159 - 5 - 175 - 5 - 2 - 0 - 5 - 1 - 9 - 3 - 5 -PUSHW_1 - -64 -PUSHB_8 - 13 - 17 - 72 - 1 - 0 - 155 - 89 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -CALL -DELTAP3 -DELTAP3 -CALL -SDB -DELTAP1 -DELTAP1 -DELTAP1 -CALL -DELTAP1 -DELTAP1 -DELTAP2 -CALL -CALL -CALL -CALL -DELTAP3 -CALL -SDB -DELTAP1 -DELTAP1 -SDS -DELTAP1 -CALL -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -187 446 m 1,0,-1 - 187 666 l 1,1,-1 - 382 666 l 1,2,-1 - 382 446 l 1,3,-1 - 187 446 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: Epsilontonos -Encoding: 904 904 829 -Width: 1606 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 1 - 14 - 3 - 1 - 15 - 4 - 15 - 20 - 15 - 2 -PUSHW_1 - -143 -NPUSHB - 16 - 15 - 15 - 1 - 1 - 37 - 0 - 47 - 0 - 1 - 2 - 191 - 0 - 1 - 208 - 0 - 1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -SHC[rp1] -CALL -DELTAP1 -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 240 0 2 -Refer: 825 900 N 1 0 0 1 -216 -132 2 -EndChar - -StartChar: Etatonos -Encoding: 905 905 830 -Width: 1716 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 80 - 19 - 128 - 19 - 160 - 19 - 176 - 19 - 192 - 19 - 5 - 1 - 14 - 3 - 1 - 15 - 0 - 15 - 16 - 15 - 2 -PUSHW_1 - -143 -NPUSHB - 15 - 15 - 15 - 5 - 5 - 37 - 0 - 47 - 0 - 111 - 0 - 191 - 0 - 207 - 0 - 4 -DELTAP1 -SHC[rp1] -CALL -DELTAP1 -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 237 0 2 -Refer: 825 900 N 1 0 0 1 -219 -132 2 -EndChar - -StartChar: Iotatonos -Encoding: 906 906 831 -Width: 786 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 11 - 11 - 43 - 11 - 2 - 52 - 11 - 132 - 11 - 2 - 1 - 6 - 3 - 1 - 7 - 4 - 7 - 20 - 7 - 2 -PUSHW_1 - -154 -NPUSHB - 22 - 7 - 7 - 1 - 1 - 37 - 0 - 47 - 0 - 1 - 2 - 79 - 0 - 95 - 0 - 111 - 0 - 127 - 0 - 4 - 128 - 0 - 1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -SHC[rp1] -CALL -DELTAP1 -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 217 0 2 -Refer: 825 900 N 1 0 0 1 -229 -132 2 -EndChar - -StartChar: Omicrontonos -Encoding: 908 908 832 -Width: 1586 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 2 - 29 - 3 - 2 - 27 - 0 - 27 - 192 - 27 - 2 -PUSHW_1 - -162 -NPUSHB - 10 - 27 - 27 - 8 - 8 - 37 - 1 - 0 - 47 - 0 - 1 -DELTAP1 -SHC[rp1] -SHC[rp1] -CALL -DELTAP1 -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 -4 0 2 -Refer: 825 900 N 1 0 0 1 -274 -132 2 -Kerns2: 855 -66 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Upsilontonos -Encoding: 910 910 833 -Width: 1752 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 9 - 16 - 1 - 153 - 40 - 16 - 1 - 24 - 16 - 72 - 16 - 88 - 16 - 184 - 16 - 200 - 16 - 232 - 16 - 6 - 8 - 16 - 104 - 16 - 120 - 16 - 136 - 16 - 4 - 199 - 24 - 16 - 56 - 16 - 2 - 168 - 16 - 200 - 16 - 2 - 8 - 16 - 24 - 16 - 88 - 16 - 200 - 16 - 216 - 16 - 248 - 16 - 6 - 151 - 8 - 16 - 1 - 11 - 23 - 16 - 135 - 16 - 167 - 16 - 3 - 71 - 16 - 103 - 16 - 215 - 16 - 3 - 7 - 16 - 23 - 16 - 2 - 182 - 167 - 16 - 1 - 7 - 16 - 55 - 16 - 247 - 16 - 3 - 7 - 16 - 55 - 16 - 87 - 16 - 103 - 16 - 119 - 16 - 151 - 16 - 231 - 16 - 7 - 130 - 87 - 16 - 1 - 7 - 16 - 23 - 16 - 119 - 16 - 135 - 16 - 167 - 16 - 5 - 60 - 39 - 16 - 103 - 16 - 135 - 16 - 151 - 16 - 247 - 16 - 5 - 7 - 16 - 23 - 16 - 39 - 16 - 55 - 16 - 71 - 16 - 87 - 16 - 119 - 16 - 183 - 16 - 199 - 16 - 215 - 16 - 231 - 16 - 11 - 7 - 16 - 39 - 16 - 55 - 16 - 87 - 16 - 151 - 16 - 167 - 16 - 199 - 16 - 215 - 16 - 231 - 16 - 247 - 16 - 10 - 12 - 6 - 16 - 22 - 16 - 2 - 6 - 16 - 54 - 16 - 118 - 16 - 150 - 16 - 166 - 16 - 230 - 16 - 6 - 131 - 86 - 16 - 198 - 16 - 230 - 16 - 3 - 6 - 16 - 38 - 16 - 134 - 16 - 166 - 16 - 198 - 16 - 5 - 6 - 16 - 38 - 16 - 86 - 16 - 118 - 16 - 150 - 16 - 166 - 16 - 182 - 16 - 246 - 16 - 8 - 64 - 6 - 16 - 22 - 16 - 54 - 16 - 102 - 16 - 118 - 16 - 134 - 16 - 150 - 16 - 166 - 16 - 230 - 16 - 246 - 16 - 10 - 38 - 16 - 70 - 16 -NPUSHB - 141 - 86 - 16 - 102 - 16 - 182 - 16 - 198 - 16 - 214 - 16 - 246 - 16 - 8 - 6 - 16 - 118 - 16 - 2 - 16 - 5 - 16 - 37 - 16 - 69 - 16 - 149 - 16 - 165 - 16 - 181 - 16 - 6 - 113 - 5 - 16 - 37 - 16 - 53 - 16 - 85 - 16 - 101 - 16 - 117 - 16 - 149 - 16 - 197 - 16 - 229 - 16 - 245 - 16 - 10 - 37 - 16 - 53 - 16 - 69 - 16 - 85 - 16 - 101 - 16 - 133 - 16 - 165 - 16 - 197 - 16 - 213 - 16 - 229 - 16 - 245 - 16 - 11 - 5 - 16 - 117 - 16 - 181 - 16 - 197 - 16 - 213 - 16 - 5 - 65 - 4 - 16 - 36 - 16 - 68 - 16 - 84 - 16 - 116 - 16 - 180 - 16 - 196 - 16 - 228 - 16 - 244 - 16 - 9 - 4 - 16 - 116 - 16 - 148 - 16 - 3 - 98 - 3 - 16 - 115 - 16 - 2 - 120 - 0 - 1 - 11 - 3 - 1 - 12 - 0 - 12 - 16 - 12 - 64 - 12 - 96 - 12 - 112 - 12 - 128 - 12 - 6 -PUSHW_1 - -90 -NPUSHB - 11 - 12 - 12 - 4 - 4 - 37 - 0 - 0 - 0 - 176 - 0 - 2 -DELTAP1 -SHC[rp1] -CALL -DELTAP1 -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SDB -DELTAP1 -DELTAP2 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -EndTTInstrs -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 386 0 2 -Refer: 825 900 N 1 0 0 1 -140 -132 2 -Kerns2: 894 -186 "'kern' Horizontal Kerning lookup 17 subtable" 892 98 "'kern' Horizontal Kerning lookup 17 subtable" 888 -186 "'kern' Horizontal Kerning lookup 17 subtable" 885 -186 "'kern' Horizontal Kerning lookup 17 subtable" 881 -186 "'kern' Horizontal Kerning lookup 17 subtable" 878 -152 "'kern' Horizontal Kerning lookup 17 subtable" 876 -152 "'kern' Horizontal Kerning lookup 17 subtable" 875 -76 "'kern' Horizontal Kerning lookup 17 subtable" 873 -152 "'kern' Horizontal Kerning lookup 17 subtable" 867 -186 "'kern' Horizontal Kerning lookup 17 subtable" 865 -76 "'kern' Horizontal Kerning lookup 17 subtable" 864 -152 "'kern' Horizontal Kerning lookup 17 subtable" 859 -98 "'kern' Horizontal Kerning lookup 17 subtable" 856 -115 "'kern' Horizontal Kerning lookup 17 subtable" 850 -115 "'kern' Horizontal Kerning lookup 17 subtable" 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 843 -115 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 835 170 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Omegatonos -Encoding: 911 911 834 -Width: 1541 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 175 - 43 - 1 - 1 - 38 - 3 - 1 - 36 - 16 - 36 - 144 - 36 - 2 -PUSHW_1 - -194 -NPUSHB - 22 - 36 - 36 - 33 - 33 - 37 - 0 - 31 - 0 - 95 - 0 - 159 - 0 - 3 - 31 - 0 - 159 - 0 - 175 - 0 - 223 - 0 - 4 -DELTAP1 -DELTAP2 -SHC[rp1] -CALL -DELTAP1 -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 10 0 2 -Refer: 825 900 N 1 0 0 1 -274 -132 2 -Kerns2: 861 -47 "'kern' Horizontal Kerning lookup 17 subtable" 855 -47 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: iotadieresistonos -Encoding: 912 912 835 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 190 - 15 - 25 - 31 - 25 - 239 - 25 - 255 - 25 - 4 - 212 - 47 - 25 - 63 - 25 - 79 - 25 - 255 - 25 - 4 - 47 - 25 - 1 - 15 - 25 - 63 - 25 - 79 - 25 - 223 - 25 - 4 - 164 - 15 - 25 - 207 - 25 - 223 - 25 - 239 - 25 - 4 - 111 - 25 - 127 - 25 - 2 - 15 - 25 - 31 - 25 - 175 - 25 - 3 - 109 - 143 - 25 - 207 - 25 - 223 - 25 - 3 - 47 - 25 - 223 - 25 - 239 - 25 - 255 - 25 - 4 - 15 - 25 - 1 - 56 - 15 - 25 - 31 - 25 - 47 - 25 - 191 - 25 - 239 - 25 - 255 - 25 - 6 - 15 - 25 - 95 - 25 - 2 - 15 - 25 - 31 - 25 - 255 - 25 - 3 - 8 - 0 - 25 - 1 - 223 - 0 - 25 - 16 - 25 - 208 - 25 - 224 - 25 - 4 - 32 - 25 - 240 - 25 - 2 - 0 - 25 - 16 - 25 - 2 - 174 - 64 - 25 - 80 - 25 - 208 - 25 - 224 - 25 - 4 - 0 - 25 - 224 - 25 - 2 - 115 - 0 - 25 - 16 - 25 - 208 - 25 - 3 - 32 - 25 - 112 - 25 - 2 - 0 - 25 - 1 - 61 - 144 - 25 - 160 - 25 - 176 - 25 - 3 - 176 - 25 - 192 - 25 - 208 - 25 - 3 - 0 - 25 - 144 - 25 - 160 - 25 - 224 - 25 - 4 - 7 - 3 - 2 - 1 - 10 - 10 - 17 - 38 - 3 - 2 - 1 - 16 -PUSHW_1 - -36 -PUSHB_5 - 16 - 22 - 3 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[x-axis] -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 2 -Refer: 826 901 N 1 0 0 1 -109 0 2 -EndChar - -StartChar: Alpha -Encoding: 913 913 836 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Kerns2: 2021 -152 "'kern' Horizontal Kerning lookup 17 subtable" 889 -37 "'kern' Horizontal Kerning lookup 17 subtable" 879 -37 "'kern' Horizontal Kerning lookup 17 subtable" 869 -37 "'kern' Horizontal Kerning lookup 17 subtable" 861 -152 "'kern' Horizontal Kerning lookup 17 subtable" 856 -59 "'kern' Horizontal Kerning lookup 17 subtable" 855 -152 "'kern' Horizontal Kerning lookup 17 subtable" 854 -152 "'kern' Horizontal Kerning lookup 17 subtable" 850 -43 "'kern' Horizontal Kerning lookup 17 subtable" 843 -43 "'kern' Horizontal Kerning lookup 17 subtable" 3 -113 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Beta -Encoding: 914 914 837 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 37 66 N 1 0 0 1 0 0 3 -EndChar - -StartChar: Gamma -Encoding: 915 915 838 -Width: 1128 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 4 - 0 - 4 - 7 - 6 - 5 - 2 - 95 - 89 - 5 - 3 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1071 1410 m 1,0,-1 - 1071 1254 l 1,1,-1 - 359 1254 l 1,2,-1 - 359 1 l 1,3,-1 - 168 1 l 1,4,-1 - 168 1410 l 1,5,-1 - 1071 1410 l 1,0,-1 -EndSplineSet -Kerns2: 892 88 "'kern' Horizontal Kerning lookup 17 subtable" 875 -88 "'kern' Horizontal Kerning lookup 17 subtable" 846 -188 "'kern' Horizontal Kerning lookup 17 subtable" 839 -188 "'kern' Horizontal Kerning lookup 17 subtable" 836 -188 "'kern' Horizontal Kerning lookup 17 subtable" 835 164 "'kern' Horizontal Kerning lookup 17 subtable" 17 -225 "'kern' Horizontal Kerning lookup 17 subtable" 15 -225 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Delta -Encoding: 916 916 839 -Width: 1368 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 6 - 2 - 1 - 0 - 10 - 14 - 5 - 5 - 10 - 2 - 3 - 16 - 15 - 16 - 16 - 1 - 15 - 16 - 1 - 11 - 3 - 5 - 2 - 14 - 4 - 14 - 95 - 89 - 4 - 18 - 10 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -579 1409 m 1,0,-1 - 796 1409 l 1,1,-1 - 1306 141 l 1,2,-1 - 1306 0 l 1,3,-1 - 61 0 l 1,4,-1 - 62 141 l 1,5,-1 - 579 1409 l 1,0,-1 -1106 156 m 1,6,-1 - 768 1018 l 2,7,8 - 738 1092 738 1092 712.5 1172.5 c 128,-1,9 - 687 1253 687 1253 685 1265 c 1,10,-1 - 676 1233 l 2,11,12 - 645 1122 645 1122 602 1016 c 2,13,-1 - 263 156 l 1,14,-1 - 1106 156 l 1,6,-1 -EndSplineSet -Kerns2: 861 -152 "'kern' Horizontal Kerning lookup 17 subtable" 855 -152 "'kern' Horizontal Kerning lookup 17 subtable" 854 -119 "'kern' Horizontal Kerning lookup 17 subtable" 850 -43 "'kern' Horizontal Kerning lookup 17 subtable" 843 -43 "'kern' Horizontal Kerning lookup 17 subtable" 3 -113 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Epsilon -Encoding: 917 917 840 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -EndChar - -StartChar: Zeta -Encoding: 918 918 841 -Width: 1251 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 61 90 N 1 0 0 1 0 0 3 -EndChar - -StartChar: Eta -Encoding: 919 919 842 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -EndChar - -StartChar: Theta -Encoding: 920 920 843 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 30 - 21 - 15 - 15 - 0 - 21 - 8 - 0 - 8 - 32 - 31 - 0 - 32 - 96 - 32 - 2 - 11 - 3 - 27 - 30 - 95 - 89 - 15 - 27 - 1 - 11 - 3 - 27 - 27 - 4 - 11 - 11 - 18 - 95 - 89 - 11 - 4 - 4 - 24 - 95 - 89 - 4 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1495 711 m 0,0,1 - 1495 490 1495 490 1410.5 324 c 128,-1,2 - 1326 158 1326 158 1168 69 c 128,-1,3 - 1010 -20 1010 -20 795 -20 c 0,4,5 - 578 -20 578 -20 420.5 68 c 128,-1,6 - 263 156 263 156 180 322.5 c 128,-1,7 - 97 489 97 489 97 711 c 0,8,9 - 97 1049 97 1049 282 1239.5 c 128,-1,10 - 467 1430 467 1430 797 1430 c 0,11,12 - 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 - 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 - 1495 933 1495 933 1495 711 c 0,0,1 -1300 711 m 0,15,16 - 1300 974 1300 974 1168.5 1124 c 128,-1,17 - 1037 1274 1037 1274 797 1274 c 0,18,19 - 555 1274 555 1274 423 1126 c 128,-1,20 - 291 978 291 978 291 711 c 0,21,22 - 291 446 291 446 424.5 290.5 c 128,-1,23 - 558 135 558 135 795 135 c 0,24,25 - 1039 135 1039 135 1169.5 285.5 c 128,-1,26 - 1300 436 1300 436 1300 711 c 0,15,16 -502 794 m 1,27,-1 - 1089 794 l 1,28,-1 - 1089 634 l 1,29,-1 - 502 634 l 1,30,-1 - 502 794 l 1,27,-1 -EndSplineSet -Kerns2: 861 -66 "'kern' Horizontal Kerning lookup 17 subtable" 855 -66 "'kern' Horizontal Kerning lookup 17 subtable" 846 -37 "'kern' Horizontal Kerning lookup 17 subtable" 839 -37 "'kern' Horizontal Kerning lookup 17 subtable" 836 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Iota -Encoding: 921 921 844 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -EndChar - -StartChar: Kappa -Encoding: 922 922 845 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 46 75 N 1 0 0 1 0 0 3 -Kerns2: 896 -25 "'kern' Horizontal Kerning lookup 17 subtable" 894 -25 "'kern' Horizontal Kerning lookup 17 subtable" 891 -25 "'kern' Horizontal Kerning lookup 17 subtable" 888 -25 "'kern' Horizontal Kerning lookup 17 subtable" 885 -25 "'kern' Horizontal Kerning lookup 17 subtable" 881 -25 "'kern' Horizontal Kerning lookup 17 subtable" 880 -25 "'kern' Horizontal Kerning lookup 17 subtable" 874 -25 "'kern' Horizontal Kerning lookup 17 subtable" 872 -25 "'kern' Horizontal Kerning lookup 17 subtable" 870 -25 "'kern' Horizontal Kerning lookup 17 subtable" 867 -25 "'kern' Horizontal Kerning lookup 17 subtable" 862 -25 "'kern' Horizontal Kerning lookup 17 subtable" 856 -113 "'kern' Horizontal Kerning lookup 17 subtable" 850 -63 "'kern' Horizontal Kerning lookup 17 subtable" 843 -63 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Lambda -Encoding: 923 923 846 -Width: 1368 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 8 - 7 - 3 - 5 - 6 - 1 - 0 - 6 - 3 - 0 - 3 - 10 - 9 - 118 - 3 - 134 - 3 - 2 - 3 - 7 - 3 - 6 - 0 - 18 - 111 - 10 - 1 - 48 - 10 - 1 - 47 - 10 - 1 - 0 - 10 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1358 1 m 1,0,-1 - 1157 1 l 1,1,-1 - 769 993 l 1,2,-1 - 685 1242 l 1,3,-1 - 601 993 l 1,4,-1 - 211 1 l 1,5,-1 - 10 1 l 1,6,-1 - 585 1410 l 1,7,-1 - 783 1410 l 1,8,-1 - 1358 1 l 1,0,-1 -EndSplineSet -Kerns2: 861 -152 "'kern' Horizontal Kerning lookup 17 subtable" 855 -152 "'kern' Horizontal Kerning lookup 17 subtable" 854 -152 "'kern' Horizontal Kerning lookup 17 subtable" 850 -43 "'kern' Horizontal Kerning lookup 17 subtable" 843 -43 "'kern' Horizontal Kerning lookup 17 subtable" 3 -113 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Mu -Encoding: 924 924 847 -Width: 1706 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 48 77 N 1 0 0 1 0 0 3 -EndChar - -StartChar: Nu -Encoding: 925 925 848 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -EndChar - -StartChar: Xi -Encoding: 926 926 849 -Width: 1331 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 3 - 10 - 9 - 6 - 2 - 5 - 6 - 5 - 12 - 13 - 11 - 10 - 95 - 89 - 11 - 11 - 7 - 0 - 6 - 7 - 95 - 89 - 6 - 18 - 0 - 3 - 95 - 89 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -125 1409 m 1,0,-1 - 1206 1409 l 1,1,-1 - 1206 1253 l 1,2,-1 - 125 1253 l 1,3,-1 - 125 1409 l 1,0,-1 -1241 156 m 1,4,-1 - 1241 0 l 1,5,-1 - 90 0 l 1,6,-1 - 90 156 l 1,7,-1 - 1241 156 l 1,4,-1 -1086 801 m 1,8,-1 - 1086 647 l 1,9,-1 - 245 647 l 1,10,-1 - 245 801 l 1,11,-1 - 1086 801 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: Omicron -Encoding: 927 927 850 -Width: 1593 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Kerns2: 861 -66 "'kern' Horizontal Kerning lookup 17 subtable" 855 -66 "'kern' Horizontal Kerning lookup 17 subtable" 846 -37 "'kern' Horizontal Kerning lookup 17 subtable" 839 -43 "'kern' Horizontal Kerning lookup 17 subtable" 836 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Pi -Encoding: 928 928 851 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 0 - 7 - 3 - 4 - 7 - 4 - 9 - 8 - 0 - 9 - 1 - 0 - 9 - 128 - 9 - 144 - 9 - 160 - 9 - 4 - 11 - 3 - 9 -PUSHW_1 - -64 -NPUSHB - 12 - 14 - 17 - 72 - 5 - 2 - 95 - 89 - 5 - 3 - 4 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -CALL -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1121 0 m 1,0,-1 - 1121 1248 l 1,1,-1 - 359 1248 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 1312 1409 l 1,6,-1 - 1312 0 l 1,7,-1 - 1121 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: Rho -Encoding: 929 929 852 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 51 80 N 1 0 0 1 0 0 3 -Kerns2: 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 17 -262 "'kern' Horizontal Kerning lookup 17 subtable" 15 -262 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Sigma -Encoding: 931 931 853 -Width: 1266 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 7 - 3 - 3 - 10 - 8 - 2 - 2 - 6 - 1 - 11 - 1 - 11 - 13 - 14 - 3 - 7 - 4 - 7 - 95 - 89 - 9 - 2 - 8 - 3 - 0 - 4 - 3 - 1 - 10 - 0 - 10 - 95 - 89 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP2 -SLOOP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -108 0 m 1,0,-1 - 108 162 l 1,1,-1 - 646 741 l 1,2,-1 - 125 1248 l 1,3,-1 - 125 1409 l 1,4,-1 - 1124 1409 l 1,5,-1 - 1124 1253 l 1,6,-1 - 340 1253 l 1,7,-1 - 798 808 l 1,8,-1 - 798 684 l 1,9,-1 - 308 156 l 1,10,-1 - 1185 156 l 1,11,-1 - 1185 0 l 1,12,-1 - 108 0 l 1,0,-1 -EndSplineSet -Kerns2: 886 -98 "'kern' Horizontal Kerning lookup 17 subtable" 882 -98 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Tau -Encoding: 932 932 854 -Width: 1251 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 55 84 N 1 0 0 1 0 0 3 -Kerns2: 895 -178 "'kern' Horizontal Kerning lookup 17 subtable" 894 -225 "'kern' Horizontal Kerning lookup 17 subtable" 893 -178 "'kern' Horizontal Kerning lookup 17 subtable" 892 188 "'kern' Horizontal Kerning lookup 17 subtable" 890 -150 "'kern' Horizontal Kerning lookup 17 subtable" 889 -113 "'kern' Horizontal Kerning lookup 17 subtable" 888 -225 "'kern' Horizontal Kerning lookup 17 subtable" 887 -176 "'kern' Horizontal Kerning lookup 17 subtable" 885 -225 "'kern' Horizontal Kerning lookup 17 subtable" 881 -225 "'kern' Horizontal Kerning lookup 17 subtable" 879 -113 "'kern' Horizontal Kerning lookup 17 subtable" 878 -150 "'kern' Horizontal Kerning lookup 17 subtable" 875 -76 "'kern' Horizontal Kerning lookup 17 subtable" 873 -150 "'kern' Horizontal Kerning lookup 17 subtable" 871 -225 "'kern' Horizontal Kerning lookup 17 subtable" 869 -178 "'kern' Horizontal Kerning lookup 17 subtable" 867 -225 "'kern' Horizontal Kerning lookup 17 subtable" 866 -178 "'kern' Horizontal Kerning lookup 17 subtable" 863 -225 "'kern' Horizontal Kerning lookup 17 subtable" 862 -225 "'kern' Horizontal Kerning lookup 17 subtable" 859 -37 "'kern' Horizontal Kerning lookup 17 subtable" 856 -37 "'kern' Horizontal Kerning lookup 17 subtable" 850 -37 "'kern' Horizontal Kerning lookup 17 subtable" 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 843 -37 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 835 188 "'kern' Horizontal Kerning lookup 17 subtable" 30 -225 "'kern' Horizontal Kerning lookup 17 subtable" 29 -225 "'kern' Horizontal Kerning lookup 17 subtable" 17 -225 "'kern' Horizontal Kerning lookup 17 subtable" 15 -225 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Upsilon -Encoding: 933 933 855 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Kerns2: 894 -186 "'kern' Horizontal Kerning lookup 17 subtable" 892 121 "'kern' Horizontal Kerning lookup 17 subtable" 888 -186 "'kern' Horizontal Kerning lookup 17 subtable" 885 -186 "'kern' Horizontal Kerning lookup 17 subtable" 881 -186 "'kern' Horizontal Kerning lookup 17 subtable" 878 -152 "'kern' Horizontal Kerning lookup 17 subtable" 876 -152 "'kern' Horizontal Kerning lookup 17 subtable" 875 -76 "'kern' Horizontal Kerning lookup 17 subtable" 873 -152 "'kern' Horizontal Kerning lookup 17 subtable" 869 -98 "'kern' Horizontal Kerning lookup 17 subtable" 867 -186 "'kern' Horizontal Kerning lookup 17 subtable" 865 -76 "'kern' Horizontal Kerning lookup 17 subtable" 864 -152 "'kern' Horizontal Kerning lookup 17 subtable" 859 -98 "'kern' Horizontal Kerning lookup 17 subtable" 856 -115 "'kern' Horizontal Kerning lookup 17 subtable" 850 -115 "'kern' Horizontal Kerning lookup 17 subtable" 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 843 -115 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 835 188 "'kern' Horizontal Kerning lookup 17 subtable" 30 -113 "'kern' Horizontal Kerning lookup 17 subtable" 29 -113 "'kern' Horizontal Kerning lookup 17 subtable" 17 -262 "'kern' Horizontal Kerning lookup 17 subtable" 16 -186 "'kern' Horizontal Kerning lookup 17 subtable" 15 -262 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Phi -Encoding: 934 934 856 -Width: 1634 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 32 - 13 - 28 - 20 - 6 - 6 - 36 - 17 - 7 - 24 - 0 - 0 - 7 - 13 - 3 - 41 - 42 - 180 - 42 - 228 - 42 - 2 - 160 - 42 - 1 - 36 - 42 - 68 - 42 - 100 - 42 - 148 - 42 - 4 - 16 - 42 - 1 - 2 - 0 - 42 - 1 - 15 - 3 - 42 -PUSHW_1 - -64 -NPUSHB - 28 - 10 - 13 - 72 - 28 - 35 - 9 - 35 - 96 - 89 - 5 - 9 - 27 - 38 - 16 - 38 - 96 - 89 - 20 - 16 - 9 - 16 - 9 - 16 - 6 - 18 - 3 - 6 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1518 736 m 0,0,1 - 1518 583 1518 583 1454.5 464.5 c 128,-1,2 - 1391 346 1391 346 1272 281 c 128,-1,3 - 1153 216 1153 216 993 216 c 2,4,-1 - 910 216 l 1,5,-1 - 910 -11 l 1,6,-1 - 725 -11 l 1,7,-1 - 725 216 l 1,8,-1 - 642 216 l 2,9,10 - 481 216 481 216 362 281.5 c 128,-1,11 - 243 347 243 347 180 465.5 c 128,-1,12 - 117 584 117 584 117 736 c 0,13,14 - 117 974 117 974 256.5 1105.5 c 128,-1,15 - 396 1237 396 1237 653 1237 c 2,16,-1 - 725 1237 l 1,17,-1 - 725 1419 l 1,18,-1 - 910 1419 l 1,19,-1 - 910 1237 l 1,20,-1 - 981 1237 l 2,21,22 - 1239 1237 1239 1237 1378.5 1105 c 128,-1,23 - 1518 973 1518 973 1518 736 c 0,0,1 -1326 732 m 0,24,25 - 1326 1099 1326 1099 958 1099 c 2,26,-1 - 910 1099 l 1,27,-1 - 910 353 l 1,28,-1 - 966 353 l 2,29,30 - 1140 353 1140 353 1233 449 c 128,-1,31 - 1326 545 1326 545 1326 732 c 0,24,25 -309 732 m 256,32,33 - 309 545 309 545 402 449 c 128,-1,34 - 495 353 495 353 669 353 c 2,35,-1 - 725 353 l 1,36,-1 - 725 1099 l 1,37,-1 - 673 1099 l 2,38,39 - 491 1099 491 1099 400 1009 c 128,-1,40 - 309 919 309 919 309 732 c 256,32,33 -EndSplineSet -Kerns2: 861 -66 "'kern' Horizontal Kerning lookup 17 subtable" 855 -66 "'kern' Horizontal Kerning lookup 17 subtable" 836 -59 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Chi -Encoding: 935 935 857 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 59 88 N 1 0 0 1 0 0 3 -EndChar - -StartChar: Psi -Encoding: 936 936 858 -Width: 1711 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 57 - 20 - 23 - 16 - 29 - 29 - 13 - 0 - 9 - 6 - 6 - 0 - 23 - 3 - 31 - 30 - 4 - 31 - 68 - 31 - 132 - 31 - 148 - 31 - 4 - 164 - 31 - 180 - 31 - 196 - 31 - 228 - 31 - 244 - 31 - 5 - 96 - 31 - 1 - 68 - 31 - 84 - 31 - 2 - 32 - 31 - 48 - 31 - 2 - 20 - 31 - 1 - 0 - 31 - 1 - 13 - 2 - 31 -PUSHW_1 - -64 -NPUSHB - 21 - 9 - 12 - 72 - 28 - 2 - 12 - 2 - 96 - 89 - 16 - 239 - 12 - 1 - 12 - 12 - 21 - 14 - 7 - 3 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -IP -MDAP[rnd] -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -763 0 m 1,0,-1 - 763 427 l 1,1,-1 - 680 427 l 2,2,3 - 519 427 519 427 397 492.5 c 128,-1,4 - 275 558 275 558 210 676.5 c 128,-1,5 - 145 795 145 795 145 946 c 2,6,-1 - 145 1409 l 1,7,-1 - 336 1409 l 1,8,-1 - 336 942 l 2,9,10 - 336 770 336 770 435.5 669 c 128,-1,11 - 535 568 535 568 707 568 c 2,12,-1 - 763 568 l 1,13,-1 - 763 1409 l 1,14,-1 - 948 1409 l 1,15,-1 - 948 568 l 1,16,-1 - 1004 568 l 2,17,18 - 1180 568 1180 568 1277.5 667.5 c 128,-1,19 - 1375 767 1375 767 1375 942 c 2,20,-1 - 1375 1409 l 1,21,-1 - 1566 1409 l 1,22,-1 - 1566 946 l 2,23,24 - 1566 797 1566 797 1500.5 678 c 128,-1,25 - 1435 559 1435 559 1313.5 493 c 128,-1,26 - 1192 427 1192 427 1031 427 c 2,27,-1 - 948 427 l 1,28,-1 - 948 0 l 1,29,-1 - 763 0 l 1,0,-1 -EndSplineSet -Kerns2: 896 -78 "'kern' Horizontal Kerning lookup 17 subtable" 894 -78 "'kern' Horizontal Kerning lookup 17 subtable" 891 -78 "'kern' Horizontal Kerning lookup 17 subtable" 888 -78 "'kern' Horizontal Kerning lookup 17 subtable" 885 -78 "'kern' Horizontal Kerning lookup 17 subtable" 881 -78 "'kern' Horizontal Kerning lookup 17 subtable" 874 -39 "'kern' Horizontal Kerning lookup 17 subtable" 870 -78 "'kern' Horizontal Kerning lookup 17 subtable" 867 -78 "'kern' Horizontal Kerning lookup 17 subtable" 862 -78 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Omega -Encoding: 937 937 859 -Width: 1531 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 30 - 25 - 6 - 11 - 25 - 11 - 21 - 15 - 21 - 26 - 33 - 15 - 10 - 3 - 33 - 3 - 36 - 37 - 15 - 37 - 1 - 14 - 3 - 30 - 24 - 12 - 8 - 6 - 27 - 26 - 27 - 95 - 89 - 11 - 26 - 18 - 0 - 18 - 95 - 89 - 0 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -765 1430 m 256,0,1 - 1068 1430 1068 1430 1241.5 1262.5 c 128,-1,2 - 1415 1095 1415 1095 1415 801 c 0,3,4 - 1415 600 1415 600 1307.5 430 c 128,-1,5 - 1200 260 1200 260 991 145 c 1,6,-1 - 1072 150 l 1,7,-1 - 1199 156 l 1,8,-1 - 1443 156 l 1,9,-1 - 1443 0 l 1,10,-1 - 854 0 l 1,11,-1 - 854 224 l 1,12,13 - 1033 319 1033 319 1126.5 461.5 c 128,-1,14 - 1220 604 1220 604 1220 788 c 0,15,16 - 1220 1020 1220 1020 1101 1147 c 128,-1,17 - 982 1274 982 1274 766 1274 c 0,18,19 - 548 1274 548 1274 429 1147 c 128,-1,20 - 310 1020 310 1020 310 788 c 0,21,22 - 310 605 310 605 403 462.5 c 128,-1,23 - 496 320 496 320 676 224 c 1,24,-1 - 676 0 l 1,25,-1 - 87 0 l 1,26,-1 - 87 156 l 1,27,-1 - 331 156 l 1,28,-1 - 458 150 l 1,29,-1 - 539 145 l 1,30,31 - 331 258 331 258 223 428.5 c 128,-1,32 - 115 599 115 599 115 801 c 0,33,34 - 115 1095 115 1095 288.5 1262.5 c 128,-1,35 - 462 1430 462 1430 765 1430 c 256,0,1 -EndSplineSet -Kerns2: 861 -47 "'kern' Horizontal Kerning lookup 17 subtable" 855 -47 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: Iotadieresis -Encoding: 938 938 860 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 4 - 4 - 5 - 38 - 2 - 1 - 8 - 1 - 8 - 6 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 -38 0 2 -EndChar - -StartChar: Upsilondieresis -Encoding: 939 939 861 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 9 - 12 - 16 - 13 - 12 - 6 - 13 - 12 - 4 - 17 - 18 - 10 - 14 - 13 - 14 - 145 - 89 - 9 - 13 - 6 - 0 - 3 - 8 - 3 - 24 - 3 - 72 - 3 - 3 - 12 - 3 - 1 - 8 - 4 - 3 - 1 - 18 - 118 - 18 - 1 - 98 - 18 - 1 - 84 - 18 - 1 - 70 - 18 - 1 - 54 - 18 - 1 - 36 - 18 - 1 - 22 - 18 - 1 - 4 - 18 - 1 - 242 - 18 - 1 - 1 - 224 - 18 - 1 - 208 - 18 - 1 - 196 - 18 - 1 - 176 - 18 - 1 - 160 - 18 - 1 - 148 - 18 - 1 - 112 - 18 - 1 - 100 - 18 - 1 - 64 - 18 - 1 - 52 - 18 - 1 - 36 - 18 - 1 - 20 - 18 - 1 - 0 - 18 - 1 - 105 - 244 - 18 - 1 - 228 - 18 - 1 - 208 - 18 - 1 - 196 - 18 - 1 - 180 - 18 - 1 - 164 - 18 - 1 - 144 - 18 - 1 - 128 - 18 - 1 - 116 - 18 - 1 - 96 - 18 - 1 - 80 - 18 - 1 - 68 - 18 - 1 - 32 - 18 - 1 - 20 - 18 - 1 - 4 - 18 - 1 - 244 - 18 - 1 - 224 - 18 - 1 - 212 - 18 - 1 - 196 - 18 - 1 - 176 - 18 - 1 - 164 - 18 - 1 - 148 - 18 - 1 - 116 - 18 - 1 - 100 - 18 - 1 - 84 - 18 - 1 - 64 - 18 - 1 - 48 - 18 - 1 - 36 - 18 - 1 - 0 - 18 - 1 - 244 - 18 - 1 - 196 - 18 - 1 - 144 - 18 - 1 - 132 - 18 - 1 - 116 - 18 - 1 - 84 - 18 - 1 - 68 - 18 - 1 - 36 - 18 - 1 - 20 - 18 - 1 - 4 - 18 - 1 - 57 - 224 - 18 - 1 - 212 - 18 - 1 - 164 - 18 - 1 - 132 - 18 - 1 - 112 - 18 - 1 - 100 - 18 - 1 - 84 - 18 - 1 - 52 - 18 - 1 - 36 - 18 - 1 - 4 - 18 - 1 - 244 - 18 -NPUSHB - 56 - 1 - 228 - 18 - 1 - 192 - 18 - 1 - 180 - 18 - 1 - 144 - 18 - 1 - 132 - 18 - 1 - 84 - 18 - 1 - 52 - 18 - 1 - 20 - 18 - 1 - 4 - 18 - 1 - 228 - 18 - 1 - 212 - 18 - 1 - 187 - 18 - 1 - 164 - 18 - 1 - 112 - 18 - 1 - 2 - 96 - 18 - 1 - 48 - 18 - 1 - 47 - 18 - 1 - 15 - 18 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -SDB -DELTAP1 -SRP1 -SHP[rp1] -SHP[rp1] -MDRP[min,rnd,white] -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -777 584 m 1,0,-1 - 777 0 l 1,1,-1 - 587 0 l 1,2,-1 - 589 584 l 1,3,-1 - 45 1409 l 1,4,-1 - 250 1409 l 1,5,-1 - 684 738 l 1,6,-1 - 1116 1409 l 1,7,-1 - 1321 1409 l 1,8,-1 - 777 584 l 1,0,-1 -802 1530 m 1,9,-1 - 802 1714 l 1,10,-1 - 965 1714 l 1,11,-1 - 965 1530 l 1,12,-1 - 802 1530 l 1,9,-1 -408 1530 m 1,13,-1 - 408 1714 l 1,14,-1 - 573 1714 l 1,15,-1 - 573 1530 l 1,16,-1 - 408 1530 l 1,13,-1 -EndSplineSet -Kerns2: 894 -186 "'kern' Horizontal Kerning lookup 17 subtable" 892 98 "'kern' Horizontal Kerning lookup 17 subtable" 888 -186 "'kern' Horizontal Kerning lookup 17 subtable" 885 -186 "'kern' Horizontal Kerning lookup 17 subtable" 881 -186 "'kern' Horizontal Kerning lookup 17 subtable" 878 -152 "'kern' Horizontal Kerning lookup 17 subtable" 876 -152 "'kern' Horizontal Kerning lookup 17 subtable" 875 -76 "'kern' Horizontal Kerning lookup 17 subtable" 873 -152 "'kern' Horizontal Kerning lookup 17 subtable" 867 -186 "'kern' Horizontal Kerning lookup 17 subtable" 865 -76 "'kern' Horizontal Kerning lookup 17 subtable" 864 -152 "'kern' Horizontal Kerning lookup 17 subtable" 859 -98 "'kern' Horizontal Kerning lookup 17 subtable" 856 -115 "'kern' Horizontal Kerning lookup 17 subtable" 850 -115 "'kern' Horizontal Kerning lookup 17 subtable" 846 -152 "'kern' Horizontal Kerning lookup 17 subtable" 843 -115 "'kern' Horizontal Kerning lookup 17 subtable" 839 -152 "'kern' Horizontal Kerning lookup 17 subtable" 836 -152 "'kern' Horizontal Kerning lookup 17 subtable" 835 170 "'kern' Horizontal Kerning lookup 17 subtable" 3 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: alphatonos -Encoding: 940 940 862 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 39 - 17 - 38 - 2 - 39 - 26 - 39 - 42 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 289 0 2 -EndChar - -StartChar: epsilontonos -Encoding: 941 941 863 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 39 - 17 - 38 - 1 - 39 - 73 - 39 - 42 - 10 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 871 949 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 202 0 2 -EndChar - -StartChar: etatonos -Encoding: 942 942 864 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 26 - 17 - 38 - 1 - 26 - 100 - 26 - 29 - 13 - 24 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 313 0 2 -EndChar - -StartChar: iotatonos -Encoding: 943 943 865 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 1 - 10 - 17 - 38 - 1 - 10 - 0 - 10 - 16 - 10 - 2 - 29 - 10 - 13 - 3 - 9 - 37 -CALL -DELTAP1 -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 -47 0 2 -EndChar - -StartChar: upsilondieresistonos -Encoding: 944 944 866 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 3 - 2 - 1 - 22 - 22 - 17 - 38 - 3 - 2 - 1 - 28 -PUSHW_1 - -15 -PUSHB_5 - 28 - 34 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 826 901 N 1 0 0 1 222 0 2 -EndChar - -StartChar: alpha -Encoding: 945 945 867 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 15 - 16 - 16 - 19 - 19 - 12 - 0 - 33 - 33 - 40 - 27 - 6 - 23 - 22 - 6 - 22 - 39 - 40 - 0 - 40 - 1 - 10 - 3 - 0 - 33 - 19 - 12 - 4 - 16 - 22 - 21 - 16 - 15 - 9 - 36 - 80 - 89 - 9 - 16 - 3 - 30 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -843 237 m 1,0,1 - 780 101 780 101 692.5 40.5 c 128,-1,2 - 605 -20 605 -20 484 -20 c 0,3,4 - 279 -20 279 -20 182.5 118 c 128,-1,5 - 86 256 86 256 86 536 c 0,6,7 - 86 820 86 820 194.5 961 c 128,-1,8 - 303 1102 303 1102 512 1102 c 0,9,10 - 638 1102 638 1102 727.5 1035 c 128,-1,11 - 817 968 817 968 862 847 c 1,12,-1 - 864 847 l 1,13,14 - 887 966 887 966 937 1082 c 1,15,-1 - 1125 1082 l 1,16,17 - 1075 976 1075 976 1033 822.5 c 128,-1,18 - 991 669 991 669 983 571 c 1,19,20 - 988 411 988 411 1017.5 257 c 128,-1,21 - 1047 103 1047 103 1094 0 c 1,22,-1 - 911 0 l 1,23,24 - 887 61 887 61 869.5 132.5 c 128,-1,25 - 852 204 852 204 847 237 c 1,26,-1 - 843 237 l 1,0,1 -275 542 m 0,27,28 - 275 320 275 320 332 219.5 c 128,-1,29 - 389 119 389 119 521 119 c 0,30,31 - 641 119 641 119 723.5 234.5 c 128,-1,32 - 806 350 806 350 832 546 c 1,33,34 - 803 757 803 757 727 863 c 128,-1,35 - 651 969 651 969 532 969 c 0,36,37 - 396 969 396 969 335.5 868.5 c 128,-1,38 - 275 768 275 768 275 542 c 0,27,28 -EndSplineSet -EndChar - -StartChar: beta -Encoding: 946 946 868 -Width: 1178 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 19 - 31 - 17 - 31 - 10 - 28 - 28 - 0 - 35 - 17 - 17 - 0 - 22 - 9 - 9 - 10 - 0 - 10 - 43 - 42 - 19 - 32 - 31 - 32 - 31 - 80 - 89 - 32 - 32 - 14 - 3 - 14 - 38 - 80 - 89 - 14 - 0 - 9 - 27 - 3 - 25 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1097 405 m 0,0,1 - 1097 207 1097 207 978.5 93.5 c 128,-1,2 - 860 -20 860 -20 640 -20 c 0,3,4 - 457 -20 457 -20 322 74 c 1,5,-1 - 316 74 l 1,6,7 - 322 -40 322 -40 322 -128 c 2,8,-1 - 322 -425 l 1,9,-1 - 142 -425 l 1,10,-1 - 142 1027 l 2,11,12 - 142 1264 142 1264 256 1374 c 128,-1,13 - 370 1484 370 1484 596 1484 c 0,14,15 - 793 1484 793 1484 897.5 1392.5 c 128,-1,16 - 1002 1301 1002 1301 1002 1135 c 0,17,18 - 1002 882 1002 882 779 795 c 1,19,20 - 927 766 927 766 1012 664 c 128,-1,21 - 1097 562 1097 562 1097 405 c 0,0,1 -322 205 m 1,22,23 - 386 162 386 162 468.5 137.5 c 128,-1,24 - 551 113 551 113 632 113 c 0,25,26 - 773 113 773 113 849 190 c 128,-1,27 - 925 267 925 267 925 402 c 0,28,29 - 925 547 925 547 838.5 625 c 128,-1,30 - 752 703 752 703 589 703 c 1,31,-1 - 589 845 l 1,32,33 - 716 872 716 872 772.5 941.5 c 128,-1,34 - 829 1011 829 1011 829 1133 c 0,35,36 - 829 1231 829 1231 768.5 1287 c 128,-1,37 - 708 1343 708 1343 598 1343 c 0,38,39 - 451 1343 451 1343 386.5 1265.5 c 128,-1,40 - 322 1188 322 1188 322 1021 c 2,41,-1 - 322 205 l 1,22,23 -EndSplineSet -EndChar - -StartChar: gamma -Encoding: 947 947 869 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 10 - 11 - 18 - 12 - 7 - 15 - 16 - 1 - 0 - 0 - 16 - 7 - 11 - 4 - 20 - 19 - 64 - 20 - 1 - 0 - 20 - 48 - 20 - 96 - 20 - 144 - 20 - 4 - 20 -PUSHW_1 - -64 -NPUSHB - 13 - 21 - 26 - 72 - 12 - 7 - 18 - 18 - 15 - 27 - 10 - 10 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SVTCA[x-axis] -CALL -DELTAP1 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -7 1082 m 1,0,-1 - 199 1082 l 1,1,-1 - 444 407 l 2,2,3 - 451 385 451 385 461.5 353.5 c 128,-1,4 - 472 322 472 322 482 288.5 c 128,-1,5 - 492 255 492 255 500.5 223.5 c 128,-1,6 - 509 192 509 192 513 170 c 1,7,8 - 535 261 535 261 587 405 c 2,9,-1 - 826 1082 l 1,10,-1 - 1017 1082 l 1,11,-1 - 627 53 l 2,12,13 - 593 -37 593 -37 564 -172.5 c 128,-1,14 - 535 -308 535 -308 522 -424 c 1,15,-1 - 331 -424 l 1,16,17 - 356 -232 356 -232 420 11 c 1,18,-1 - 7 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: delta -Encoding: 948 948 870 -Width: 1140 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 7 - 14 - 29 - 4 - 28 - 29 - 3 - 25 - 0 - 32 - 19 - 25 - 19 - 33 - 34 - 29 - 13 - 30 - 13 - 80 - 89 - 4 - 28 - 22 - 30 - 0 - 22 - 10 - 80 - 89 - 22 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -864 471 m 0,0,1 - 864 558 864 558 837.5 634.5 c 128,-1,2 - 811 711 811 711 769.5 776.5 c 128,-1,3 - 728 842 728 842 644 929 c 1,4,5 - 465 865 465 865 370 746 c 128,-1,6 - 275 627 275 627 275 471 c 0,7,8 - 275 302 275 302 353.5 207.5 c 128,-1,9 - 432 113 432 113 571 113 c 0,10,11 - 715 113 715 113 789.5 203 c 128,-1,12 - 864 293 864 293 864 471 c 0,0,1 -607 1352 m 1,13,-1 - 453 1360 l 1,14,-1 - 769 1036 l 2,15,16 - 890 912 890 912 942.5 832.5 c 128,-1,17 - 995 753 995 753 1024 665.5 c 128,-1,18 - 1053 578 1053 578 1053 475 c 0,19,20 - 1053 248 1053 248 924 114 c 128,-1,21 - 795 -20 795 -20 571 -20 c 0,22,23 - 345 -20 345 -20 215.5 111 c 128,-1,24 - 86 242 86 242 86 473 c 0,25,26 - 86 667 86 667 203 806.5 c 128,-1,27 - 320 946 320 946 551 1026 c 1,28,-1 - 232 1365 l 1,29,-1 - 232 1484 l 1,30,-1 - 965 1484 l 1,31,-1 - 965 1352 l 1,32,-1 - 607 1352 l 1,13,-1 -EndSplineSet -Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: epsilon -Encoding: 949 949 871 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 36 - 28 - 17 - 32 - 13 - 17 - 3 - 10 - 22 - 4 - 10 - 4 - 39 - 40 - 15 - 40 - 79 - 40 - 2 - 10 - 0 - 40 - 1 - 33 - 3 - 13 - 31 - 32 - 31 - 32 - 80 - 89 - 15 - 31 - 1 - 11 - 3 - 31 - 31 - 7 - 20 - 20 - 25 - 80 - 89 - 23 - 20 - 16 - 7 - 0 - 80 - 89 - 3 - 7 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -456 114 m 0,0,1 - 543 114 543 114 626.5 158.5 c 128,-1,2 - 710 203 710 203 769 275 c 1,3,-1 - 874 175 l 1,4,5 - 794 78 794 78 685 29 c 128,-1,6 - 576 -20 576 -20 444 -20 c 0,7,8 - 263 -20 263 -20 166.5 63 c 128,-1,9 - 70 146 70 146 70 295 c 0,10,11 - 70 405 70 405 144.5 479 c 128,-1,12 - 219 553 219 553 334 564 c 1,13,-1 - 334 566 l 1,14,15 - 228 578 228 578 165.5 646 c 128,-1,16 - 103 714 103 714 103 813 c 0,17,18 - 103 943 103 943 204.5 1022.5 c 128,-1,19 - 306 1102 306 1102 471 1102 c 0,20,21 - 722 1102 722 1102 847 917 c 1,22,-1 - 719 829 l 1,23,24 - 627 968 627 968 472 968 c 0,25,26 - 381 968 381 968 333 925.5 c 128,-1,27 - 285 883 285 883 285 809 c 0,28,29 - 285 718 285 718 363 675.5 c 128,-1,30 - 441 633 441 633 643 633 c 1,31,-1 - 643 498 l 1,32,33 - 490 498 490 498 414 478.5 c 128,-1,34 - 338 459 338 459 297.5 416 c 128,-1,35 - 257 373 257 373 257 298 c 0,36,37 - 257 211 257 211 310.5 162.5 c 128,-1,38 - 364 114 364 114 456 114 c 0,0,1 -EndSplineSet -EndChar - -StartChar: zeta -Encoding: 950 950 872 -Width: 903 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 28 - 34 - 34 - 16 - 9 - 31 - 0 - 26 - 9 - 26 - 38 - 37 - 34 - 31 - 32 - 31 - 80 - 89 - 4 - 20 - 0 -PUSHW_1 - -16 -NPUSHB - 31 - 19 - 22 - 72 - 135 - 0 - 151 - 0 - 2 - 218 - 26 - 1 - 169 - 26 - 185 - 26 - 201 - 26 - 3 - 136 - 26 - 152 - 26 - 2 - 20 - 26 - 0 - 3 - 12 - 32 - 0 - 12 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -CALL -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -277 379 m 0,0,1 - 277 312 277 312 301 270.5 c 128,-1,2 - 325 229 325 229 371.5 202.5 c 128,-1,3 - 418 176 418 176 551 141 c 0,4,5 - 605 126 605 126 660.5 109 c 128,-1,6 - 716 92 716 92 761 63.5 c 128,-1,7 - 806 35 806 35 835 -9 c 128,-1,8 - 864 -53 864 -53 864 -121 c 0,9,10 - 864 -165 864 -165 846 -219.5 c 128,-1,11 - 828 -274 828 -274 781 -353 c 1,12,-1 - 655 -297 l 1,13,14 - 678 -266 678 -266 694 -225 c 128,-1,15 - 710 -184 710 -184 710 -156 c 0,16,17 - 710 -120 710 -120 689 -96 c 128,-1,18 - 668 -72 668 -72 626.5 -54 c 128,-1,19 - 585 -36 585 -36 457 -6 c 0,20,21 - 342 21 342 21 296.5 40 c 128,-1,22 - 251 59 251 59 211.5 85.5 c 128,-1,23 - 172 112 172 112 144.5 149.5 c 128,-1,24 - 117 187 117 187 101.5 237.5 c 128,-1,25 - 86 288 86 288 86 354 c 0,26,27 - 86 744 86 744 659 1353 c 1,28,-1 - 659 1357 l 1,29,-1 - 532 1353 l 1,30,-1 - 187 1353 l 1,31,-1 - 187 1484 l 1,32,-1 - 829 1484 l 1,33,-1 - 829 1357 l 1,34,35 - 539 1030 539 1030 408 791.5 c 128,-1,36 - 277 553 277 553 277 379 c 0,0,1 -EndSplineSet -Kerns2: 896 -137 "'kern' Horizontal Kerning lookup 17 subtable" 894 -137 "'kern' Horizontal Kerning lookup 17 subtable" 891 -137 "'kern' Horizontal Kerning lookup 17 subtable" 888 -137 "'kern' Horizontal Kerning lookup 17 subtable" 886 -86 "'kern' Horizontal Kerning lookup 17 subtable" 885 -137 "'kern' Horizontal Kerning lookup 17 subtable" 882 -86 "'kern' Horizontal Kerning lookup 17 subtable" 881 -137 "'kern' Horizontal Kerning lookup 17 subtable" 879 -86 "'kern' Horizontal Kerning lookup 17 subtable" 876 -37 "'kern' Horizontal Kerning lookup 17 subtable" 875 -37 "'kern' Horizontal Kerning lookup 17 subtable" 874 -98 "'kern' Horizontal Kerning lookup 17 subtable" 873 -37 "'kern' Horizontal Kerning lookup 17 subtable" 870 -76 "'kern' Horizontal Kerning lookup 17 subtable" 869 -86 "'kern' Horizontal Kerning lookup 17 subtable" 867 -137 "'kern' Horizontal Kerning lookup 17 subtable" 864 -37 "'kern' Horizontal Kerning lookup 17 subtable" 862 -137 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: eta -Encoding: 951 951 873 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 0 - 25 - 17 - 9 - 9 - 10 - 25 - 10 - 27 - 26 - 128 - 27 - 1 - 143 - 27 - 1 - 0 - 27 - 1 - 16 - 3 - 27 -PUSHW_1 - -64 -NPUSHB - 18 - 19 - 23 - 72 - 25 - 27 - 17 - 21 - 9 - 21 - 5 - 80 - 89 - 21 - 16 - 13 - 15 - 9 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -825 -424 m 1,0,-1 - 825 686 l 2,1,2 - 825 793 825 793 804 852 c 128,-1,3 - 783 911 783 911 737 937 c 128,-1,4 - 691 963 691 963 602 963 c 0,5,6 - 472 963 472 963 397 874 c 128,-1,7 - 322 785 322 785 322 627 c 2,8,-1 - 322 0 l 1,9,-1 - 142 0 l 1,10,-1 - 142 851 l 2,11,12 - 142 974 142 974 106 1082 c 1,13,-1 - 276 1082 l 1,14,15 - 293 1043 293 1043 303.5 990.5 c 128,-1,16 - 314 938 314 938 314 897 c 1,17,-1 - 317 897 l 1,18,19 - 379 1009 379 1009 460.5 1055.5 c 128,-1,20 - 542 1102 542 1102 663 1102 c 0,21,22 - 841 1102 841 1102 923.5 1013.5 c 128,-1,23 - 1006 925 1006 925 1006 721 c 2,24,-1 - 1006 -424 l 1,25,-1 - 825 -424 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: theta -Encoding: 952 952 874 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 21 - 15 - 15 - 6 - 14 - 22 - 22 - 0 - 6 - 0 - 25 - 26 - 96 - 26 - 1 - 26 -PUSHW_1 - -64 -NPUSHB - 28 - 30 - 35 - 72 - 15 - 26 - 1 - 22 - 3 - 21 - 15 - 80 - 89 - 21 - 21 - 3 - 8 - 8 - 18 - 80 - 89 - 8 - 0 - 3 - 11 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -CALL -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1033 733 m 256,0,1 - 1033 352 1033 352 913 166 c 128,-1,2 - 793 -20 793 -20 565 -20 c 0,3,4 - 341 -20 341 -20 223.5 170.5 c 128,-1,5 - 106 361 106 361 106 733 c 0,6,7 - 106 1483 106 1483 571 1483 c 0,8,9 - 810 1483 810 1483 921.5 1298.5 c 128,-1,10 - 1033 1114 1033 1114 1033 733 c 256,0,1 -563 113 m 0,11,12 - 706 113 706 113 772 249.5 c 128,-1,13 - 838 386 838 386 843 673 c 1,14,-1 - 296 673 l 1,15,16 - 301 397 301 397 365.5 255 c 128,-1,17 - 430 113 430 113 563 113 c 0,11,12 -574 1354 m 0,18,19 - 432 1354 432 1354 367 1220.5 c 128,-1,20 - 302 1087 302 1087 296 804 c 1,21,-1 - 843 804 l 1,22,23 - 838 1087 838 1087 775.5 1220.5 c 128,-1,24 - 713 1354 713 1354 574 1354 c 0,18,19 -EndSplineSet -Kerns2: 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: iota -Encoding: 953 953 875 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 131 - 9 - 6 - 6 - 3 - 3 - 10 - 11 - 4 - 15 - 0 - 21 - 223 - 11 - 1 - 144 - 11 - 1 - 79 - 11 - 1 - 63 - 11 - 1 - 0 - 11 - 1 - 106 - 239 - 11 - 1 - 223 - 11 - 1 - 159 - 11 - 1 - 112 - 11 - 1 - 96 - 11 - 1 - 15 - 11 - 1 - 255 - 11 - 1 - 239 - 11 - 1 - 208 - 11 - 1 - 128 - 11 - 1 - 63 - 11 - 1 - 96 - 11 - 1 - 31 - 11 - 1 - 15 - 11 - 1 - 55 - 255 - 11 - 1 - 207 - 11 - 1 - 176 - 11 - 1 - 160 - 11 - 1 - 144 - 11 - 1 - 63 - 11 - 1 - 47 - 11 - 1 - 31 - 11 - 1 - 208 - 11 - 1 - 192 - 11 - 1 - 176 - 11 - 1 - 111 - 11 - 1 - 31 - 11 - 1 - 15 - 11 - 1 - 224 - 11 - 1 - 160 - 11 - 1 - 144 - 11 - 1 - 63 - 11 - 1 - 31 - 11 - 1 - 0 - 11 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -199 0 m 1,0,1 - 169 32 169 32 153 99.5 c 128,-1,2 - 137 167 137 167 137 236 c 2,3,-1 - 137 1082 l 1,4,-1 - 317 1082 l 1,5,-1 - 317 227 l 2,6,7 - 317 162 317 162 338.5 101 c 128,-1,8 - 360 40 360 40 397 0 c 1,9,-1 - 199 0 l 1,0,1 -EndSplineSet -EndChar - -StartChar: kappa -Encoding: 954 954 876 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 0 - 13 - 7 - 3 - 3 - 4 - 8 - 9 - 9 - 10 - 4 - 3 - 12 - 11 - 13 - 128 - 13 - 192 - 13 - 224 - 13 - 3 - 63 - 13 - 1 - 2 - 1 - 7 - 10 - 4 - 8 - 8 - 5 - 15 - 4 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -SRP1 -SLOOP -IP -SVTCA[x-axis] -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -816 0 m 1,0,-1 - 450 494 l 1,1,-1 - 318 385 l 1,2,-1 - 318 0 l 1,3,-1 - 138 0 l 1,4,-1 - 138 1082 l 1,5,-1 - 318 1082 l 1,6,-1 - 318 557 l 1,7,-1 - 793 1082 l 1,8,-1 - 1004 1082 l 1,9,-1 - 565 617 l 1,10,-1 - 1027 0 l 1,11,-1 - 816 0 l 1,0,-1 -EndSplineSet -Kerns2: 896 -25 "'kern' Horizontal Kerning lookup 17 subtable" 894 -25 "'kern' Horizontal Kerning lookup 17 subtable" 891 -25 "'kern' Horizontal Kerning lookup 17 subtable" 888 -25 "'kern' Horizontal Kerning lookup 17 subtable" 885 -25 "'kern' Horizontal Kerning lookup 17 subtable" 884 -25 "'kern' Horizontal Kerning lookup 17 subtable" 881 -25 "'kern' Horizontal Kerning lookup 17 subtable" 880 -25 "'kern' Horizontal Kerning lookup 17 subtable" 874 -25 "'kern' Horizontal Kerning lookup 17 subtable" 872 -25 "'kern' Horizontal Kerning lookup 17 subtable" 870 -25 "'kern' Horizontal Kerning lookup 17 subtable" 867 -25 "'kern' Horizontal Kerning lookup 17 subtable" 862 -25 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: lambda -Encoding: 955 955 877 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 15 - 14 - 18 - 13 - 0 - 21 - 22 - 22 - 0 - 8 - 14 - 4 - 24 - 23 - 0 - 24 - 48 - 24 - 96 - 24 - 160 - 24 - 176 - 24 - 5 - 9 - 3 - 18 - 0 - 10 - 22 - 14 - 21 - 10 - 5 - 80 - 89 - 10 - 0 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -463 965 m 1,0,1 - 395 1153 395 1153 373.5 1203 c 128,-1,2 - 352 1253 352 1253 330.5 1282.5 c 128,-1,3 - 309 1312 309 1312 282 1326 c 128,-1,4 - 255 1340 255 1340 216 1340 c 0,5,6 - 187 1340 187 1340 167 1330 c 1,7,-1 - 132 1460 l 1,8,9 - 199 1484 199 1484 261 1484 c 0,10,11 - 368 1484 368 1484 436 1411 c 128,-1,12 - 504 1338 504 1338 579 1141 c 2,13,-1 - 1006 0 l 1,14,-1 - 816 0 l 1,15,-1 - 609 577 l 2,16,17 - 568 689 568 689 544 791 c 1,18,19 - 529 745 529 745 507.5 691.5 c 128,-1,20 - 486 638 486 638 201 0 c 1,21,-1 - 14 0 l 1,22,-1 - 463 965 l 1,0,1 -EndSplineSet -Kerns2: 896 -31 "'kern' Horizontal Kerning lookup 17 subtable" 895 -49 "'kern' Horizontal Kerning lookup 17 subtable" 894 -31 "'kern' Horizontal Kerning lookup 17 subtable" 891 -31 "'kern' Horizontal Kerning lookup 17 subtable" 888 -37 "'kern' Horizontal Kerning lookup 17 subtable" 887 -49 "'kern' Horizontal Kerning lookup 17 subtable" 885 -31 "'kern' Horizontal Kerning lookup 17 subtable" 884 -47 "'kern' Horizontal Kerning lookup 17 subtable" 881 -31 "'kern' Horizontal Kerning lookup 17 subtable" 880 -31 "'kern' Horizontal Kerning lookup 17 subtable" 870 -31 "'kern' Horizontal Kerning lookup 17 subtable" 867 -31 "'kern' Horizontal Kerning lookup 17 subtable" 862 -31 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: mu -Encoding: 956 956 878 -Width: 1180 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 3 - 25 - 25 - 26 - 18 - 14 - 14 - 15 - 26 - 15 - 31 - 30 - 0 - 31 - 32 - 31 - 2 - 15 - 3 - 31 -PUSHW_1 - -64 -NPUSHB - 18 - 20 - 23 - 72 - 3 - 10 - 16 - 29 - 21 - 25 - 16 - 15 - 14 - 7 - 21 - 80 - 89 - 7 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -IP -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -862 0 m 1,0,1 - 860 12 860 12 856.5 81.5 c 128,-1,2 - 853 151 853 151 852 190 c 1,3,-1 - 848 190 l 1,4,5 - 788 72 788 72 721.5 26 c 128,-1,6 - 655 -20 655 -20 554 -20 c 0,7,8 - 472 -20 472 -20 412 12 c 128,-1,9 - 352 44 352 44 320 102 c 1,10,-1 - 316 102 l 1,11,12 - 320 59 320 59 320 -20 c 2,13,-1 - 320 -393 l 1,14,-1 - 138 -393 l 1,15,-1 - 138 1082 l 1,16,-1 - 320 1082 l 1,17,-1 - 320 438 l 2,18,19 - 320 277 320 277 383 199 c 128,-1,20 - 446 121 446 121 576 121 c 0,21,22 - 700 121 700 121 771.5 212 c 128,-1,23 - 843 303 843 303 843 465 c 2,24,-1 - 843 1082 l 1,25,-1 - 1024 1082 l 1,26,-1 - 1024 233 l 2,27,28 - 1024 42 1024 42 1030 0 c 1,29,-1 - 862 0 l 1,0,1 -EndSplineSet -EndChar - -StartChar: nu -Encoding: 957 957 879 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 216 - 9 - 0 - 4 - 3 - 7 - 6 - 5 - 5 - 7 - 0 - 3 - 15 - 14 - 155 - 15 - 1 - 132 - 15 - 1 - 96 - 15 - 1 - 68 - 15 - 84 - 15 - 2 - 32 - 15 - 1 - 4 - 15 - 20 - 15 - 2 - 224 - 15 - 1 - 196 - 15 - 212 - 15 - 2 - 160 - 15 - 1 - 132 - 15 - 148 - 15 - 2 - 96 - 15 - 1 - 4 - 15 - 20 - 15 - 68 - 15 - 84 - 15 - 4 - 103 - 4 - 15 - 20 - 15 - 68 - 15 - 84 - 15 - 132 - 15 - 148 - 15 - 196 - 15 - 212 - 15 - 8 - 219 - 15 - 1 - 196 - 15 - 1 - 155 - 15 - 1 - 132 - 15 - 1 - 91 - 15 - 1 - 68 - 15 - 1 - 27 - 15 - 1 - 4 - 15 - 1 - 219 - 15 - 1 - 196 - 15 - 1 - 11 - 15 - 27 - 15 - 75 - 15 - 91 - 15 - 139 - 15 - 155 - 15 - 6 - 55 - 75 - 15 - 91 - 15 - 139 - 15 - 155 - 15 - 203 - 15 - 219 - 15 - 6 - 63 - 15 - 1 - 32 - 15 - 1 - 4 - 15 - 20 - 15 - 2 - 224 - 15 - 1 - 196 - 15 - 212 - 15 - 2 - 160 - 15 - 1 - 132 - 15 - 148 - 15 - 2 - 96 - 15 - 1 - 68 - 15 - 84 - 15 - 2 - 32 - 15 - 1 - 4 - 15 - 20 - 15 - 2 - 196 - 15 - 212 - 15 - 2 - 160 - 15 - 1 - 132 - 15 - 148 - 15 - 2 - 96 - 15 - 1 - 2 - 80 - 15 - 1 - 47 - 15 - 1 - 0 - 15 - 16 - 15 - 2 - 7 - 11 - 5 - 15 - 7 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SVTCA[x-axis] -SDB -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -946 846 m 0,0,1 - 946 672 946 672 842.5 445.5 c 128,-1,2 - 739 219 739 219 560 0 c 1,3,-1 - 390 0 l 1,4,-1 - 0 1082 l 1,5,-1 - 189 1082 l 1,6,-1 - 500 154 l 1,7,8 - 766 501 766 501 766 837 c 0,9,10 - 766 972 766 972 717 1082 c 1,11,-1 - 894 1082 l 1,12,13 - 946 985 946 985 946 846 c 0,0,1 -EndSplineSet -EndChar - -StartChar: xi -Encoding: 958 958 880 -Width: 917 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 27 - 43 - 36 - 19 - 7 - 13 - 7 - 3 - 3 - 0 - 24 - 11 - 16 - 16 - 36 - 0 - 36 - 53 - 54 - 3 - 23 - 24 - 23 - 24 - 80 - 89 - 19 - 7 - 14 - 27 -PUSHW_1 - -16 -NPUSHB - 37 - 19 - 22 - 72 - 119 - 27 - 1 - 0 - 16 - 19 - 22 - 72 - 120 - 0 - 1 - 36 - 0 - 27 - 3 - 39 - 0 - 23 - 1 - 11 - 3 - 23 - 23 - 14 - 39 - 16 - 11 - 13 - 14 - 13 - 80 - 89 - 14 - 0 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP2 -SLOOP -IP -DELTAP1 -CALL -DELTAP1 -CALL -SRP2 -IP -IP -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -86 354 m 0,0,1 - 86 533 86 533 206.5 655 c 128,-1,2 - 327 777 327 777 547 810 c 1,3,-1 - 547 812 l 1,4,5 - 397 823 397 823 310 896 c 128,-1,6 - 223 969 223 969 223 1082 c 0,7,8 - 223 1185 223 1185 295 1255.5 c 128,-1,9 - 367 1326 367 1326 496 1353 c 1,10,-1 - 496 1361 l 1,11,-1 - 242 1353 l 1,12,-1 - 168 1353 l 1,13,-1 - 168 1484 l 1,14,-1 - 802 1484 l 1,15,-1 - 802 1359 l 1,16,17 - 595 1335 595 1335 498 1271 c 128,-1,18 - 401 1207 401 1207 401 1100 c 0,19,20 - 401 1031 401 1031 439.5 986 c 128,-1,21 - 478 941 478 941 549.5 915 c 128,-1,22 - 621 889 621 889 759 877 c 1,23,-1 - 759 746 l 1,24,25 - 522 715 522 715 399.5 620.5 c 128,-1,26 - 277 526 277 526 277 379 c 0,27,28 - 277 312 277 312 301 270.5 c 128,-1,29 - 325 229 325 229 371.5 202.5 c 128,-1,30 - 418 176 418 176 551 141 c 0,31,32 - 605 126 605 126 662 109 c 128,-1,33 - 719 92 719 92 766 63.5 c 128,-1,34 - 813 35 813 35 843.5 -9 c 128,-1,35 - 874 -53 874 -53 874 -121 c 0,36,37 - 874 -165 874 -165 856 -219.5 c 128,-1,38 - 838 -274 838 -274 791 -353 c 1,39,-1 - 665 -297 l 1,40,41 - 688 -266 688 -266 704 -225 c 128,-1,42 - 720 -184 720 -184 720 -156 c 0,43,44 - 720 -120 720 -120 697.5 -96 c 128,-1,45 - 675 -72 675 -72 631 -54 c 128,-1,46 - 587 -36 587 -36 457 -6 c 0,47,48 - 342 21 342 21 296.5 40 c 128,-1,49 - 251 59 251 59 211.5 85.5 c 128,-1,50 - 172 112 172 112 144.5 149.5 c 128,-1,51 - 117 187 117 187 101.5 237.5 c 128,-1,52 - 86 288 86 288 86 354 c 0,0,1 -EndSplineSet -Kerns2: 894 -55 "'kern' Horizontal Kerning lookup 17 subtable" 888 -55 "'kern' Horizontal Kerning lookup 17 subtable" 885 -55 "'kern' Horizontal Kerning lookup 17 subtable" 884 -55 "'kern' Horizontal Kerning lookup 17 subtable" 881 -55 "'kern' Horizontal Kerning lookup 17 subtable" 880 -55 "'kern' Horizontal Kerning lookup 17 subtable" 872 -55 "'kern' Horizontal Kerning lookup 17 subtable" 870 -55 "'kern' Horizontal Kerning lookup 17 subtable" 867 -55 "'kern' Horizontal Kerning lookup 17 subtable" 862 -55 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: omicron -Encoding: 959 959 881 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: pi -Encoding: 960 960 882 -Width: 1413 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 9 - 10 - 10 - 17 - 5 - 14 - 25 - 3 - 29 - 22 - 22 - 3 - 14 - 3 - 32 - 33 - 15 - 33 - 47 - 33 - 2 - 9 - 3 - 24 - 5 - 14 - 21 - 14 - 80 - 89 - 21 - 15 - 10 - 21 - 0 - 28 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1126 -20 m 0,0,1 - 1011 -20 1011 -20 960 36.5 c 128,-1,2 - 909 93 909 93 909 227 c 2,3,-1 - 909 951 l 1,4,-1 - 507 951 l 1,5,-1 - 507 879 l 2,6,7 - 507 650 507 650 481 415.5 c 128,-1,8 - 455 181 455 181 409 0 c 1,9,-1 - 221 0 l 1,10,11 - 273 206 273 206 302 437.5 c 128,-1,12 - 331 669 331 669 331 871 c 2,13,-1 - 331 951 l 1,14,15 - 265 951 265 951 185 940 c 128,-1,16 - 105 929 105 929 79 914 c 1,17,-1 - 79 1053 l 1,18,19 - 103 1065 103 1065 156.5 1073.5 c 128,-1,20 - 210 1082 210 1082 262 1082 c 2,21,-1 - 1323 1082 l 1,22,-1 - 1323 951 l 1,23,-1 - 1089 951 l 1,24,-1 - 1089 266 l 2,25,26 - 1089 190 1089 190 1110 155.5 c 128,-1,27 - 1131 121 1131 121 1183 121 c 1,28,-1 - 1269 129 l 1,29,-1 - 1269 0 l 1,30,31 - 1192 -20 1192 -20 1126 -20 c 0,0,1 -EndSplineSet -Kerns2: 896 -29 "'kern' Horizontal Kerning lookup 17 subtable" 891 -29 "'kern' Horizontal Kerning lookup 17 subtable" 888 -29 "'kern' Horizontal Kerning lookup 17 subtable" 885 -29 "'kern' Horizontal Kerning lookup 17 subtable" 884 -29 "'kern' Horizontal Kerning lookup 17 subtable" 881 -29 "'kern' Horizontal Kerning lookup 17 subtable" 872 -29 "'kern' Horizontal Kerning lookup 17 subtable" 867 -29 "'kern' Horizontal Kerning lookup 17 subtable" 862 -29 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: rho -Encoding: 961 961 883 -Width: 1165 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 19 - 0 - 25 - 10 - 10 - 11 - 0 - 11 - 32 - 31 - 208 - 32 - 1 - 32 -PUSHW_1 - -64 -NPUSHB - 30 - 30 - 35 - 72 - 127 - 32 - 1 - 0 - 32 - 32 - 32 - 2 - 15 - 3 - 6 - 15 - 3 - 15 - 22 - 80 - 89 - 15 - 16 - 10 - 27 - 3 - 28 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1083 516 m 0,0,1 - 1083 278 1083 278 961.5 129 c 128,-1,2 - 840 -20 840 -20 646 -20 c 0,3,4 - 536 -20 536 -20 456 14 c 128,-1,5 - 376 48 376 48 312 123 c 1,6,-1 - 308 123 l 1,7,8 - 312 63 312 63 312 0 c 2,9,-1 - 312 -425 l 1,10,-1 - 132 -425 l 1,11,-1 - 132 581 l 2,12,13 - 132 826 132 826 253 964.5 c 128,-1,14 - 374 1103 374 1103 587 1103 c 0,15,16 - 729 1103 729 1103 843 1030.5 c 128,-1,17 - 957 958 957 958 1020 823.5 c 128,-1,18 - 1083 689 1083 689 1083 516 c 0,0,1 -890 524 m 0,19,20 - 890 733 890 733 804.5 851.5 c 128,-1,21 - 719 970 719 970 575 970 c 0,22,23 - 312 970 312 970 312 577 c 2,24,-1 - 312 260 l 1,25,26 - 367 191 367 191 451 152 c 128,-1,27 - 535 113 535 113 623 113 c 0,28,29 - 750 113 750 113 820 219 c 128,-1,30 - 890 325 890 325 890 524 c 0,19,20 -EndSplineSet -Kerns2: 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: sigma1 -Encoding: 962 962 884 -Width: 987 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 32 - 17 - 10 - 4 - 24 - 10 - 24 - 36 - 35 - 95 - 36 - 1 - 176 - 36 - 1 - 3 - 36 -PUSHW_1 - -64 -NPUSHB - 23 - 30 - 35 - 72 - 7 - 20 - 24 - 16 - 19 - 22 - 72 - 15 - 24 - 31 - 24 - 2 - 0 - 4 - 16 - 4 - 2 - 17 - 6 - 4 -PUSHW_1 - -16 -NPUSHB - 17 - 19 - 22 - 72 - 20 - 4 - 24 - 3 - 13 - 33 - 29 - 29 - 0 - 80 - 89 - 29 - 16 - 13 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -SLOOP -IP -CALL -SDS -SDB -DELTAP1 -DELTAP1 -CALL -SRP1 -SHP[rp1] -SVTCA[x-axis] -CALL -SDS -DELTAP1 -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -582 961 m 0,0,1 - 500 961 500 961 433.5 900 c 128,-1,2 - 367 839 367 839 322 716 c 128,-1,3 - 277 593 277 593 277 472 c 0,4,5 - 277 343 277 343 341.5 277.5 c 128,-1,6 - 406 212 406 212 601 149 c 2,7,-1 - 711 114 l 2,8,9 - 924 44 924 44 924 -121 c 0,10,11 - 924 -165 924 -165 906 -219.5 c 128,-1,12 - 888 -274 888 -274 841 -353 c 1,13,-1 - 715 -297 l 1,14,15 - 738 -266 738 -266 754 -225 c 128,-1,16 - 770 -184 770 -184 770 -156 c 0,17,18 - 770 -108 770 -108 720 -75 c 128,-1,19 - 670 -42 670 -42 507 2 c 0,20,21 - 329 50 329 50 246 106.5 c 128,-1,22 - 163 163 163 163 124.5 251.5 c 128,-1,23 - 86 340 86 340 86 475 c 0,24,25 - 86 586 86 586 125.5 710.5 c 128,-1,26 - 165 835 165 835 229.5 921.5 c 128,-1,27 - 294 1008 294 1008 382.5 1055 c 128,-1,28 - 471 1102 471 1102 582 1102 c 0,29,30 - 683 1102 683 1102 758 1075 c 128,-1,31 - 833 1048 833 1048 898 980 c 1,32,-1 - 782 861 l 1,33,34 - 687 961 687 961 582 961 c 0,0,1 -EndSplineSet -EndChar - -StartChar: sigma -Encoding: 963 963 885 -Width: 1264 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 23 - 6 - 17 - 11 - 0 - 6 - 0 - 28 - 29 - 13 - 20 - 9 - 20 - 80 - 89 - 9 - 15 - 3 - 25 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1072 491 m 0,0,1 - 1072 250 1072 250 941.5 115 c 128,-1,2 - 811 -20 811 -20 582 -20 c 0,3,4 - 342 -20 342 -20 214 120.5 c 128,-1,5 - 86 261 86 261 86 524 c 0,6,7 - 86 789 86 789 236 935.5 c 128,-1,8 - 386 1082 386 1082 664 1082 c 2,9,-1 - 1233 1082 l 1,10,-1 - 1233 951 l 1,11,-1 - 1068 951 l 1,12,-1 - 920 957 l 1,13,-1 - 920 953 l 1,14,15 - 1001 832 1001 832 1036.5 721 c 128,-1,16 - 1072 610 1072 610 1072 491 c 0,0,1 -883 488 m 0,17,18 - 883 743 883 743 759 951 c 1,19,-1 - 670 951 l 2,20,21 - 486 951 486 951 381 839 c 128,-1,22 - 276 727 276 727 276 526 c 0,23,24 - 276 113 276 113 574 113 c 0,25,26 - 725 113 725 113 804 209.5 c 128,-1,27 - 883 306 883 306 883 488 c 0,17,18 -EndSplineSet -EndChar - -StartChar: tau -Encoding: 964 964 886 -Width: 809 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 16 - 9 - 3 - 11 - 11 - 21 - 21 - 23 - 24 - 63 - 24 - 1 - 192 - 24 - 1 - 143 - 24 - 1 - 0 - 24 - 1 - 10 - 3 - 24 -PUSHW_1 - -64 -NPUSHB - 17 - 14 - 17 - 72 - 18 - 14 - 80 - 89 - 18 - 22 - 10 - 22 - 7 - 22 - 80 - 89 - 7 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -281 951 m 2,0,1 - 215 951 215 951 135 940 c 128,-1,2 - 55 929 55 929 29 914 c 1,3,-1 - 29 1053 l 1,4,5 - 53 1065 53 1065 106.5 1073.5 c 128,-1,6 - 160 1082 160 1082 212 1082 c 2,7,-1 - 792 1082 l 1,8,-1 - 792 951 l 1,9,-1 - 488 951 l 1,10,-1 - 488 266 l 2,11,12 - 488 190 488 190 509 155.5 c 128,-1,13 - 530 121 530 121 582 121 c 1,14,-1 - 668 129 l 1,15,-1 - 668 0 l 1,16,17 - 591 -20 591 -20 525 -20 c 0,18,19 - 410 -20 410 -20 359 36.5 c 128,-1,20 - 308 93 308 93 308 227 c 2,21,-1 - 308 951 l 1,22,-1 - 281 951 l 2,0,1 -EndSplineSet -Kerns2: 896 -29 "'kern' Horizontal Kerning lookup 17 subtable" 891 -29 "'kern' Horizontal Kerning lookup 17 subtable" 888 -29 "'kern' Horizontal Kerning lookup 17 subtable" 885 -29 "'kern' Horizontal Kerning lookup 17 subtable" 884 -29 "'kern' Horizontal Kerning lookup 17 subtable" 881 -29 "'kern' Horizontal Kerning lookup 17 subtable" 872 -29 "'kern' Horizontal Kerning lookup 17 subtable" 870 -29 "'kern' Horizontal Kerning lookup 17 subtable" 867 -29 "'kern' Horizontal Kerning lookup 17 subtable" 862 -29 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: upsilon -Encoding: 965 965 887 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 15 - 0 - 9 - 6 - 0 - 6 - 23 - 22 - 224 - 23 - 1 - 239 - 23 - 1 - 96 - 23 - 1 - 23 -PUSHW_1 - -64 -NPUSHB - 17 - 20 - 23 - 72 - 15 - 23 - 1 - 10 - 3 - 18 - 7 - 15 - 3 - 12 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -CALL -DELTAP1 -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1022 571 m 0,0,1 - 1022 278 1022 278 905 129 c 128,-1,2 - 788 -20 788 -20 557 -20 c 0,3,4 - 334 -20 334 -20 233.5 86 c 128,-1,5 - 133 192 133 192 133 419 c 2,6,-1 - 133 1082 l 1,7,-1 - 314 1082 l 1,8,-1 - 314 413 l 2,9,10 - 314 267 314 267 372.5 193 c 128,-1,11 - 431 119 431 119 565 119 c 0,12,13 - 712 119 712 119 774.5 222.5 c 128,-1,14 - 837 326 837 326 837 567 c 0,15,16 - 837 695 837 695 802 846 c 128,-1,17 - 767 997 767 997 723 1082 c 1,18,-1 - 911 1082 l 1,19,20 - 964 964 964 964 993 826 c 128,-1,21 - 1022 688 1022 688 1022 571 c 0,0,1 -EndSplineSet -EndChar - -StartChar: phi -Encoding: 966 966 888 -Width: 1328 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 13 - 16 - 16 - 9 - 32 - 4 - 4 - 19 - 5 - 26 - 0 - 0 - 5 - 9 - 3 - 35 - 36 - 0 - 36 - 1 - 29 - 3 - 12 - 13 - 80 - 89 - 12 - 12 - 23 - 23 - 29 - 80 - 89 - 23 - 16 - 32 - 19 - 6 - 19 - 80 - 89 - 3 - 6 - 22 - 4 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1242 565 m 0,0,1 - 1242 293 1242 293 1115.5 144.5 c 128,-1,2 - 989 -4 989 -4 742 -18 c 1,3,-1 - 742 -425 l 1,4,-1 - 572 -425 l 1,5,-1 - 572 -18 l 1,6,7 - 330 -7 330 -7 207.5 136 c 128,-1,8 - 85 279 85 279 85 545 c 0,9,10 - 85 776 85 776 196.5 925 c 128,-1,11 - 308 1074 308 1074 505 1106 c 1,12,-1 - 526 970 l 1,13,14 - 402 943 402 943 338 834 c 128,-1,15 - 274 725 274 725 274 541 c 0,16,17 - 274 328 274 328 347.5 227.5 c 128,-1,18 - 421 127 421 127 572 119 c 1,19,-1 - 572 699 l 2,20,21 - 572 892 572 892 649 998 c 128,-1,22 - 726 1104 726 1104 884 1104 c 0,23,24 - 1051 1104 1051 1104 1146.5 958 c 128,-1,25 - 1242 812 1242 812 1242 565 c 0,0,1 -1053 567 m 0,26,27 - 1053 760 1053 760 1009.5 865.5 c 128,-1,28 - 966 971 966 971 886 971 c 0,29,30 - 742 971 742 971 742 702 c 2,31,-1 - 742 119 l 1,32,33 - 904 126 904 126 978.5 235 c 128,-1,34 - 1053 344 1053 344 1053 567 c 0,26,27 -EndSplineSet -Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: chi -Encoding: 967 967 889 -Width: 1075 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 17 - 18 - 18 - 21 - 19 - 16 - 0 - 3 - 4 - 20 - 10 - 1 - 2 - 20 - 2 - 23 - 22 - 36 - 23 - 1 - 11 - 23 - 1 - 9 - 16 -PUSHW_1 - -48 -NPUSHB - 40 - 14 - 17 - 72 - 22 - 16 - 1 - 5 - 16 - 1 - 12 - 27 - 0 - 1 - 13 - 0 - 1 - 16 - 2 - 0 - 32 - 12 - 15 - 72 - 0 - 19 - 3 - 16 - 4 - 1 - 17 - 15 - 12 - 7 - 80 - 89 - 12 - 16 - 21 - 1 - 27 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -SLOOP -IP -CALL -SDS -SDB -DELTAP1 -DELTAP1 -SDB -DELTAP1 -DELTAP1 -CALL -SVTCA[x-axis] -SDB -DELTAP1 -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -542 239 m 1,0,-1 - 209 -424 l 1,1,-1 - 21 -424 l 1,2,-1 - 461 401 l 1,3,-1 - 291 744 l 2,4,5 - 218 889 218 889 184.5 926 c 128,-1,6 - 151 963 151 963 113 963 c 0,7,8 - 86 963 86 963 63 953 c 1,9,-1 - 29 1084 l 1,10,11 - 82 1104 82 1104 147 1104 c 0,12,13 - 233 1104 233 1104 286.5 1054 c 128,-1,14 - 340 1004 340 1004 420 838 c 2,15,-1 - 562 543 l 1,16,-1 - 826 1082 l 1,17,-1 - 1013 1082 l 1,18,-1 - 645 385 l 1,19,-1 - 1051 -424 l 1,20,-1 - 861 -424 l 1,21,-1 - 542 239 l 1,0,-1 -EndSplineSet -Kerns2: 896 -55 "'kern' Horizontal Kerning lookup 17 subtable" 894 -55 "'kern' Horizontal Kerning lookup 17 subtable" 891 -55 "'kern' Horizontal Kerning lookup 17 subtable" 888 -55 "'kern' Horizontal Kerning lookup 17 subtable" 885 -55 "'kern' Horizontal Kerning lookup 17 subtable" 884 -55 "'kern' Horizontal Kerning lookup 17 subtable" 881 -55 "'kern' Horizontal Kerning lookup 17 subtable" 872 -55 "'kern' Horizontal Kerning lookup 17 subtable" 870 -55 "'kern' Horizontal Kerning lookup 17 subtable" 867 -55 "'kern' Horizontal Kerning lookup 17 subtable" 862 -55 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: psi -Encoding: 968 968 890 -Width: 1460 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 58 - 18 - 15 - 0 - 10 - 10 - 21 - 11 - 3 - 6 - 6 - 11 - 15 - 3 - 24 - 25 - 48 - 25 - 96 - 25 - 144 - 25 - 3 - 31 - 25 - 1 - 208 - 25 - 1 - 175 - 25 - 1 - 0 - 25 - 48 - 25 - 64 - 25 - 112 - 25 - 4 - 14 - 3 - 22 - 22 - 4 - 16 - 15 - 0 - 21 - 12 - 21 - 80 - 89 - 9 - 12 - 22 - 10 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -814 119 m 1,0,1 - 997 121 997 121 1069.5 191.5 c 128,-1,2 - 1142 262 1142 262 1142 436 c 2,3,-1 - 1142 1082 l 1,4,-1 - 1324 1082 l 1,5,-1 - 1324 438 l 2,6,7 - 1324 197 1324 197 1203.5 89.5 c 128,-1,8 - 1083 -18 1083 -18 814 -20 c 1,9,-1 - 814 -425 l 1,10,-1 - 644 -425 l 1,11,-1 - 644 -20 l 1,12,13 - 377 -18 377 -18 256 89 c 128,-1,14 - 135 196 135 196 135 438 c 2,15,-1 - 135 1082 l 1,16,-1 - 316 1082 l 1,17,-1 - 316 436 l 2,18,19 - 316 266 316 266 388 193.5 c 128,-1,20 - 460 121 460 121 644 119 c 1,21,-1 - 644 1340 l 1,22,-1 - 814 1340 l 1,23,-1 - 814 119 l 1,0,1 -EndSplineSet -EndChar - -StartChar: omega -Encoding: 969 969 891 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 31 - 9 - 34 - 6 - 34 - 27 - 20 - 0 - 0 - 40 - 6 - 14 - 14 - 40 - 27 - 3 - 43 - 44 - 0 - 44 - 1 - 48 - 44 - 1 - 240 - 44 - 1 - 44 -PUSHW_1 - -64 -NPUSHB - 40 - 30 - 35 - 72 - 175 - 44 - 223 - 44 - 2 - 0 - 44 - 32 - 44 - 64 - 44 - 3 - 9 - 3 - 21 - 41 - 41 - 24 - 10 - 3 - 37 - 24 - 37 - 80 - 89 - 17 - 24 - 22 - 31 - 9 - 10 - 9 - 80 - 89 - 30 - 10 - 16 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -883 449 m 2,0,1 - 883 292 883 292 940 205.5 c 128,-1,2 - 997 119 997 119 1099 119 c 0,3,4 - 1213 119 1213 119 1269.5 212 c 128,-1,5 - 1326 305 1326 305 1326 512 c 0,6,7 - 1326 697 1326 697 1260 816.5 c 128,-1,8 - 1194 936 1194 936 1072 964 c 1,9,-1 - 1095 1103 l 1,10,11 - 1225 1082 1225 1082 1319.5 1001.5 c 128,-1,12 - 1414 921 1414 921 1464.5 794.5 c 128,-1,13 - 1515 668 1515 668 1515 517 c 0,14,15 - 1515 261 1515 261 1411.5 120.5 c 128,-1,16 - 1308 -20 1308 -20 1118 -20 c 0,17,18 - 992 -20 992 -20 913.5 44.5 c 128,-1,19 - 835 109 835 109 801 247 c 1,20,-1 - 797 247 l 1,21,22 - 763 109 763 109 684.5 44.5 c 128,-1,23 - 606 -20 606 -20 480 -20 c 0,24,25 - 290 -20 290 -20 186.5 120.5 c 128,-1,26 - 83 261 83 261 83 517 c 0,27,28 - 83 751 83 751 196 911 c 128,-1,29 - 309 1071 309 1071 503 1103 c 1,30,-1 - 526 964 l 1,31,32 - 407 938 407 938 339.5 820.5 c 128,-1,33 - 272 703 272 703 272 512 c 0,34,35 - 272 306 272 306 327.5 212.5 c 128,-1,36 - 383 119 383 119 497 119 c 0,37,38 - 599 119 599 119 658 205.5 c 128,-1,39 - 717 292 717 292 717 449 c 2,40,-1 - 717 701 l 1,41,-1 - 883 701 l 1,42,-1 - 883 449 l 2,0,1 -EndSplineSet -Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: iotadieresis -Encoding: 970 970 892 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 10 - 10 - 17 - 38 - 2 - 1 - 14 -PUSHW_1 - -39 -PUSHB_5 - 14 - 12 - 3 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -96 0 2 -EndChar - -StartChar: upsilondieresis -Encoding: 971 971 893 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 22 - 22 - 17 - 38 - 2 - 1 - 26 -PUSHW_1 - -12 -PUSHB_5 - 26 - 24 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 242 0 2 -EndChar - -StartChar: omicrontonos -Encoding: 972 972 894 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 23 - 17 - 38 - 2 - 23 - 70 - 23 - 26 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 297 0 2 -Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: upsilontonos -Encoding: 973 973 895 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 22 - 17 - 38 - 1 - 22 - 17 - 22 - 25 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 252 0 2 -EndChar - -StartChar: omegatonos -Encoding: 974 974 896 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 43 - 17 - 38 - 1 - 43 - 55 - 43 - 46 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 511 0 2 -Kerns2: 889 -55 "'kern' Horizontal Kerning lookup 17 subtable" 886 -29 "'kern' Horizontal Kerning lookup 17 subtable" 882 -29 "'kern' Horizontal Kerning lookup 17 subtable" 877 -39 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni03D0 -Encoding: 976 976 897 -Width: 1178 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 52 - 28 - 2 - 2 - 0 - 46 - 16 - 40 - 23 - 23 - 34 - 9 - 16 - 9 - 50 - 51 - 6 - 37 - 80 - 89 - 48 - 26 - 80 - 89 - 3 - 32 - 6 - 1 - 15 - 48 - 31 - 48 - 2 - 9 - 3 - 6 - 48 - 6 - 48 - 12 - 19 - 19 - 43 - 80 - 89 - 19 - 0 - 12 - 31 - 81 - 89 - 12 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -IP -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -315 1066 m 1,0,1 - 277 935 277 935 277 786 c 1,2,-1 - 282 670 l 1,3,4 - 324 745 324 745 418.5 791.5 c 128,-1,5 - 513 838 513 838 612 838 c 0,6,7 - 826 838 826 838 942.5 726.5 c 128,-1,8 - 1059 615 1059 615 1059 411 c 0,9,10 - 1059 206 1059 206 941.5 93 c 128,-1,11 - 824 -20 824 -20 610 -20 c 0,12,13 - 444 -20 444 -20 333.5 55 c 128,-1,14 - 223 130 223 130 169 288 c 128,-1,15 - 115 446 115 446 115 738 c 0,16,17 - 115 1117 115 1117 238 1300.5 c 128,-1,18 - 361 1484 361 1484 611 1484 c 0,19,20 - 705 1484 705 1484 781 1453.5 c 128,-1,21 - 857 1423 857 1423 901.5 1365 c 128,-1,22 - 946 1307 946 1307 946 1226 c 0,23,24 - 946 1112 946 1112 857.5 1045.5 c 128,-1,25 - 769 979 769 979 626 979 c 0,26,27 - 463 979 463 979 315 1066 c 1,0,1 -342 409 m 0,28,29 - 342 264 342 264 411.5 187 c 128,-1,30 - 481 110 481 110 610 110 c 256,31,32 - 739 110 739 110 808.5 187.5 c 128,-1,33 - 878 265 878 265 878 409 c 0,34,35 - 878 555 878 555 809 630 c 128,-1,36 - 740 705 740 705 612 705 c 0,37,38 - 482 705 482 705 412 628.5 c 128,-1,39 - 342 552 342 552 342 409 c 0,28,29 -779 1230 m 0,40,41 - 779 1284 779 1284 733 1314.5 c 128,-1,42 - 687 1345 687 1345 609 1345 c 256,43,44 - 531 1345 531 1345 466.5 1309 c 128,-1,45 - 402 1273 402 1273 361 1201 c 1,46,47 - 476 1122 476 1122 619 1122 c 0,48,49 - 779 1122 779 1122 779 1230 c 0,40,41 -EndSplineSet -EndChar - -StartChar: uni03D1 -Encoding: 977 977 898 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 44 - 42 - 42 - 32 - 1 - 21 - 11 - 49 - 36 - 25 - 7 - 16 - 7 - 36 - 11 - 1 - 5 - 53 - 52 - 18 - 13 - 80 - 89 - 1 - 32 - 44 - 32 - 80 - 89 - 42 - 44 - 25 - 18 - 44 - 18 - 44 - 5 - 39 - 39 - 47 - 81 - 89 - 39 - 0 - 5 - 28 - 80 - 89 - 5 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -IP -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1104 761 m 1,0,-1 - 1007 761 l 1,1,2 - 1007 539 1007 539 940.5 355.5 c 128,-1,3 - 874 172 874 172 757.5 76 c 128,-1,4 - 641 -20 641 -20 491 -20 c 0,5,6 - 188 -20 188 -20 188 248 c 0,7,8 - 188 297 188 297 212 390 c 256,9,10 - 236 483 236 483 236 518 c 0,11,12 - 236 578 236 578 178 578 c 0,13,14 - 129 578 129 578 33 529 c 1,15,-1 - 9 670 l 1,16,17 - 115 724 115 724 194 724 c 0,18,19 - 287 724 287 724 339 674.5 c 128,-1,20 - 391 625 391 625 391 537 c 0,21,22 - 391 487 391 487 367 394 c 0,23,24 - 342 301 342 301 342 251 c 0,25,26 - 342 185 342 185 383 148.5 c 128,-1,27 - 424 112 424 112 494 112 c 0,28,29 - 597 112 597 112 676 190.5 c 128,-1,30 - 755 269 755 269 802 426.5 c 128,-1,31 - 849 584 849 584 849 761 c 1,32,33 - 650 764 650 764 506.5 812.5 c 128,-1,34 - 363 861 363 861 294 947 c 128,-1,35 - 225 1033 225 1033 225 1151 c 0,36,37 - 225 1304 225 1304 327 1394 c 128,-1,38 - 429 1484 429 1484 599 1484 c 0,39,40 - 795 1484 795 1484 899 1336 c 128,-1,41 - 1003 1188 1003 1188 1007 900 c 1,42,-1 - 1104 900 l 1,43,-1 - 1104 761 l 1,0,-1 -849 899 m 1,44,45 - 849 1100 849 1100 783 1227 c 128,-1,46 - 717 1354 717 1354 599 1354 c 0,47,48 - 393 1354 393 1354 393 1153 c 0,49,50 - 393 1030 393 1030 511.5 964.5 c 128,-1,51 - 630 899 630 899 849 899 c 1,44,45 -EndSplineSet -EndChar - -StartChar: uni03D2 -Encoding: 978 978 899 -Width: 1582 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 16 - 15 - 12 - 13 - 3 - 13 - 15 - 3 - 21 - 22 - 10 - 17 - 13 - 15 - 3 - 13 - 18 - 0 - 7 - 95 - 89 - 0 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1293 1421 m 0,0,1 - 1353 1421 1353 1421 1419.5 1398.5 c 128,-1,2 - 1486 1376 1486 1376 1545 1325 c 1,3,-1 - 1461 1189 l 1,4,5 - 1435 1213 1435 1213 1388 1235.5 c 128,-1,6 - 1341 1258 1341 1258 1304 1258 c 0,7,8 - 1268 1258 1268 1258 1243.5 1243.5 c 128,-1,9 - 1219 1229 1219 1229 1187 1181 c 2,10,-1 - 789 584 l 1,11,-1 - 789 0 l 1,12,-1 - 599 0 l 1,13,-1 - 599 584 l 1,14,-1 - 57 1409 l 1,15,-1 - 271 1409 l 1,16,-1 - 699 738 l 1,17,-1 - 1039 1264 l 2,18,19 - 1094 1350 1094 1350 1154 1385.5 c 128,-1,20 - 1214 1421 1214 1421 1293 1421 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni03D3 -Encoding: 979 979 900 -Width: 1962 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 24 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 899 978 N 1 0 0 1 380 0 2 -Refer: 818 884 N 1 0 0 1 -221 0 2 -EndChar - -StartChar: uni03D4 -Encoding: 980 980 901 -Width: 1582 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 28 - 28 - 5 - 38 - 2 - 1 - 26 -PUSHW_1 - -100 -PUSHB_5 - 26 - 24 - 15 - 3 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 899 978 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 377 0 2 -EndChar - -StartChar: uni03D5 -Encoding: 981 981 902 -Width: 1147 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 16 - 12 - 20 - 9 - 15 - 15 - 26 - 6 - 0 - 23 - 4 - 4 - 0 - 12 - 3 - 31 - 30 - 14 - 20 - 80 - 89 - 14 - 21 - 9 - 19 - 80 - 89 - 9 - 15 - 7 - 0 - 6 - 27 - 80 - 89 - 6 - 15 - 1 - 26 - 80 - 89 - 1 - 21 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -486 -425 m 1,0,-1 - 486 -3 l 1,1,2 - 285 22 285 22 182.5 159.5 c 128,-1,3 - 80 297 80 297 80 542 c 0,4,5 - 80 1032 80 1032 486 1084 c 1,6,-1 - 486 1484 l 1,7,-1 - 650 1484 l 1,8,-1 - 650 1085 l 1,9,10 - 862 1065 862 1065 964.5 933 c 128,-1,11 - 1067 801 1067 801 1067 542 c 0,12,13 - 1067 43 1067 43 650 -3 c 1,14,-1 - 650 -425 l 1,15,-1 - 486 -425 l 1,0,-1 -884 542 m 0,16,17 - 884 731 884 731 828 830 c 128,-1,18 - 772 929 772 929 650 950 c 1,19,-1 - 650 132 l 1,20,21 - 772 156 772 156 828 257.5 c 128,-1,22 - 884 359 884 359 884 542 c 0,16,17 -263 542 m 0,23,24 - 263 367 263 367 316.5 266 c 128,-1,25 - 370 165 370 165 486 134 c 1,26,-1 - 486 945 l 1,27,28 - 369 916 369 916 316 815.5 c 128,-1,29 - 263 715 263 715 263 542 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni03D6 -Encoding: 982 982 903 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 47 - 3 - 27 - 27 - 2 - 6 - 43 - 12 - 40 - 22 - 34 - 34 - 23 - 19 - 19 - 40 - 6 - 3 - 47 - 46 - 13 - 16 - 0 - 16 - 37 - 80 - 89 - 16 - 22 - 41 - 41 - 3 - 24 - 9 - 24 - 80 - 89 - 9 - 22 - 3 - 31 - 23 - 0 - 23 - 80 - 89 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -82 1082 m 1,0,-1 - 1517 1082 l 1,1,-1 - 1517 943 l 1,2,-1 - 1409 943 l 1,3,4 - 1457 850 1457 850 1485.5 734 c 128,-1,5 - 1514 618 1514 618 1514 517 c 0,6,7 - 1514 261 1514 261 1410.5 120.5 c 128,-1,8 - 1307 -20 1307 -20 1117 -20 c 0,9,10 - 991 -20 991 -20 912.5 44.5 c 128,-1,11 - 834 109 834 109 800 247 c 1,12,-1 - 796 247 l 1,13,14 - 762 109 762 109 683.5 44.5 c 128,-1,15 - 605 -20 605 -20 479 -20 c 0,16,17 - 289 -20 289 -20 185.5 120.5 c 128,-1,18 - 82 261 82 261 82 517 c 0,19,20 - 82 623 82 623 109 734 c 128,-1,21 - 136 845 136 845 187 943 c 1,22,-1 - 82 943 l 1,23,-1 - 82 1082 l 1,0,-1 -1100 119 m 0,24,25 - 1216 119 1216 119 1274 215 c 128,-1,26 - 1332 311 1332 311 1332 512 c 0,27,28 - 1332 630 1332 630 1301 750 c 128,-1,29 - 1270 870 1270 870 1222 943 c 1,30,-1 - 373 943 l 1,31,32 - 324 868 324 868 294 747.5 c 128,-1,33 - 264 627 264 627 264 512 c 0,34,35 - 264 310 264 310 322 214.5 c 128,-1,36 - 380 119 380 119 496 119 c 0,37,38 - 598 119 598 119 657 205.5 c 128,-1,39 - 716 292 716 292 716 449 c 2,40,-1 - 716 801 l 1,41,-1 - 882 801 l 1,42,-1 - 882 449 l 2,43,44 - 882 292 882 292 941 205.5 c 128,-1,45 - 1000 119 1000 119 1100 119 c 0,24,25 -EndSplineSet -EndChar - -StartChar: uni03D7 -Encoding: 983 983 904 -Width: 1231 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 2 - 9 - 14 - 1 - 4 - 42 - 19 - 23 - 38 - 28 - 28 - 23 - 33 - 4 - 9 - 5 - 46 - 47 - 39 - 25 - 80 - 89 - 39 - 22 - 30 - 35 - 83 - 89 - 30 - 27 - 18 - 0 - 2 - 19 - 15 - 11 - 6 - 83 - 89 - 11 - 15 - 2 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -884 799 m 1,0,-1 - 333 0 l 1,1,-1 - 68 0 l 1,2,3 - 306 336 306 336 306 697 c 0,4,5 - 306 928 306 928 187 928 c 0,6,7 - 158 928 158 928 102 914 c 1,8,-1 - 68 1067 l 1,9,10 - 134 1086 134 1086 209 1086 c 0,11,12 - 333 1086 333 1086 394 1010 c 128,-1,13 - 455 934 455 934 455 753 c 0,14,15 - 455 636 455 636 428 499 c 128,-1,16 - 401 362 401 362 365 289 c 1,17,-1 - 370 287 l 1,18,-1 - 914 1082 l 1,19,-1 - 1183 1082 l 1,20,21 - 1072 932 1072 932 1011.5 746 c 128,-1,22 - 951 560 951 560 951 369 c 0,23,24 - 951 138 951 138 1070 138 c 0,25,26 - 1112 138 1112 138 1162 151 c 1,27,-1 - 1162 -129 l 2,28,29 - 1162 -425 1162 -425 922 -425 c 0,30,31 - 858 -425 858 -425 791 -413 c 1,32,-1 - 791 -252 l 1,33,34 - 834 -265 834 -265 887 -265 c 0,35,36 - 942 -265 942 -265 970 -231 c 128,-1,37 - 998 -197 998 -197 998 -116 c 2,38,-1 - 998 -16 l 1,39,40 - 899 -2 899 -2 850.5 72.5 c 128,-1,41 - 802 147 802 147 802 313 c 0,42,43 - 802 453 802 453 828.5 592 c 128,-1,44 - 855 731 855 731 889 797 c 1,45,-1 - 884 799 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03D8 -Encoding: 984 984 905 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 16 - 11 - 15 - 0 - 22 - 4 - 4 - 0 - 11 - 3 - 29 - 28 - 7 - 19 - 95 - 89 - 7 - 4 - 1 - 25 - 95 - 89 - 14 - 1 - 19 - 0 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -703 -425 m 1,0,-1 - 703 -15 l 1,1,2 - 419 11 419 11 258 203 c 128,-1,3 - 97 395 97 395 97 711 c 0,4,5 - 97 1049 97 1049 282 1239.5 c 128,-1,6 - 467 1430 467 1430 797 1430 c 0,7,8 - 1012 1430 1012 1430 1170 1344.5 c 128,-1,9 - 1328 1259 1328 1259 1411.5 1096 c 128,-1,10 - 1495 933 1495 933 1495 711 c 0,11,12 - 1495 401 1495 401 1334 208.5 c 128,-1,13 - 1173 16 1173 16 894 -14 c 1,14,-1 - 894 -425 l 1,15,-1 - 703 -425 l 1,0,-1 -1300 711 m 0,16,17 - 1300 974 1300 974 1168.5 1124 c 128,-1,18 - 1037 1274 1037 1274 797 1274 c 0,19,20 - 555 1274 555 1274 423 1126 c 128,-1,21 - 291 978 291 978 291 711 c 0,22,23 - 291 446 291 446 424.5 290.5 c 128,-1,24 - 558 135 558 135 795 135 c 0,25,26 - 1039 135 1039 135 1169.5 285.5 c 128,-1,27 - 1300 436 1300 436 1300 711 c 0,16,17 -EndSplineSet -EndChar - -StartChar: uni03D9 -Encoding: 985 985 906 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 20 - 4 - 13 - 0 - 14 - 9 - 9 - 0 - 4 - 3 - 26 - 27 - 6 - 17 - 80 - 89 - 6 - 16 - 1 - 23 - 81 - 89 - 12 - 1 - 22 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -476 -425 m 1,0,-1 - 476 -14 l 1,1,2 - 290 11 290 11 188 148 c 128,-1,3 - 86 285 86 285 86 542 c 0,4,5 - 86 1102 86 1102 571 1102 c 0,6,7 - 819 1102 819 1102 936 965.5 c 128,-1,8 - 1053 829 1053 829 1053 542 c 0,9,10 - 1053 286 1053 286 951 148 c 128,-1,11 - 849 10 849 10 656 -14 c 1,12,-1 - 656 -425 l 1,13,-1 - 476 -425 l 1,0,-1 -864 542 m 0,14,15 - 864 766 864 766 797.5 867.5 c 128,-1,16 - 731 969 731 969 574 969 c 0,17,18 - 416 969 416 969 345.5 865.5 c 128,-1,19 - 275 762 275 762 275 542 c 0,20,21 - 275 328 275 328 344.5 220.5 c 128,-1,22 - 414 113 414 113 563 113 c 0,23,24 - 725 113 725 113 794.5 217 c 128,-1,25 - 864 321 864 321 864 542 c 0,14,15 -EndSplineSet -EndChar - -StartChar: uni03DA -Encoding: 986 986 907 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 13 - 12 - 25 - 0 - 20 - 5 - 5 - 0 - 12 - 3 - 27 - 26 - 23 - 1 - 95 - 89 - 23 - 13 - 23 - 13 - 0 - 9 - 9 - 16 - 95 - 89 - 9 - 4 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -680 0 m 1,0,-1 - 680 285 l 1,1,2 - 510 297 510 297 381.5 371.5 c 128,-1,3 - 253 446 253 446 183.5 571.5 c 128,-1,4 - 114 697 114 697 114 851 c 0,5,6 - 114 1008 114 1008 196.5 1142.5 c 128,-1,7 - 279 1277 279 1277 425.5 1353.5 c 128,-1,8 - 572 1430 572 1430 762 1430 c 0,9,10 - 981 1430 981 1430 1126.5 1345.5 c 128,-1,11 - 1272 1261 1272 1261 1360 1078 c 1,12,-1 - 1184 1011 l 1,13,14 - 1133 1137 1133 1137 1021.5 1205.5 c 128,-1,15 - 910 1274 910 1274 763 1274 c 0,16,17 - 622 1274 622 1274 518 1218.5 c 128,-1,18 - 414 1163 414 1163 358.5 1066.5 c 128,-1,19 - 303 970 303 970 303 852 c 0,20,21 - 303 651 303 651 436.5 543.5 c 128,-1,22 - 570 436 570 436 810 436 c 1,23,-1 - 871 439 l 1,24,-1 - 871 0 l 1,25,-1 - 680 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03DB -Encoding: 987 987 908 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 14 - 0 - 32 - 38 - 21 - 21 - 8 - 32 - 8 - 46 - 45 - 39 - 0 - 21 - 35 - 11 - 35 - 42 - 80 - 89 - 35 - 27 - 11 - 18 - 80 - 89 - 15 - 11 - 16 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -752 -119 m 0,0,1 - 752 -78 752 -78 732 -51 c 128,-1,2 - 712 -24 712 -24 672 -5.5 c 128,-1,3 - 632 13 632 13 529 33 c 0,4,5 - 360 63 360 63 268 127 c 128,-1,6 - 176 191 176 191 133 297 c 128,-1,7 - 90 403 90 403 90 554 c 0,8,9 - 90 823 90 823 208.5 962.5 c 128,-1,10 - 327 1102 327 1102 557 1102 c 0,11,12 - 724 1102 724 1102 834.5 1016 c 128,-1,13 - 945 930 945 930 974 779 c 1,14,-1 - 789 765 l 1,15,16 - 775 855 775 855 716 908 c 128,-1,17 - 657 961 657 961 552 961 c 0,18,19 - 407 961 407 961 341 866.5 c 128,-1,20 - 275 772 275 772 275 550 c 0,21,22 - 275 475 275 475 287 421.5 c 128,-1,23 - 299 368 299 368 321 330 c 128,-1,24 - 343 292 343 292 377 266.5 c 128,-1,25 - 411 241 411 241 457 222.5 c 128,-1,26 - 503 204 503 204 630 175 c 0,27,28 - 687 162 687 162 741.5 147 c 128,-1,29 - 796 132 796 132 839.5 102 c 128,-1,30 - 883 72 883 72 909.5 22.5 c 128,-1,31 - 936 -27 936 -27 936 -109 c 0,32,33 - 936 -263 936 -263 830.5 -344 c 128,-1,34 - 725 -425 725 -425 509 -425 c 0,35,36 - 416 -425 416 -425 334.5 -410.5 c 128,-1,37 - 253 -396 253 -396 203 -373 c 1,38,-1 - 203 -205 l 1,39,40 - 313 -248 313 -248 380.5 -262.5 c 128,-1,41 - 448 -277 448 -277 516 -277 c 0,42,43 - 634 -277 634 -277 693 -240 c 128,-1,44 - 752 -203 752 -203 752 -119 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni03DC -Encoding: 988 988 909 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 1 - 7 - 7 - 8 - 11 - 4 - 3 - 8 - 3 - 12 - 13 - 1 - 6 - 95 - 89 - 4 - 1 - 4 - 1 - 8 - 9 - 9 - 0 - 95 - 89 - 9 - 3 - 8 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -359 1253 m 1,0,-1 - 359 810 l 1,1,-1 - 1059 810 l 1,2,-1 - 1059 443 l 1,3,-1 - 878 443 l 1,4,-1 - 878 652 l 1,5,-1 - 359 652 l 1,6,-1 - 359 0 l 1,7,-1 - 168 0 l 1,8,-1 - 168 1409 l 1,9,-1 - 1169 1409 l 1,10,-1 - 1169 1253 l 1,11,-1 - 359 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03DD -Encoding: 989 989 910 -Width: 827 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 5 - 0 - 4 - 2 - 8 - 8 - 9 - 4 - 9 - 13 - 12 - 2 - 7 - 80 - 89 - 5 - 2 - 5 - 2 - 9 - 10 - 10 - 1 - 80 - 89 - 10 - 15 - 9 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -747 943 m 1,0,-1 - 311 943 l 1,1,-1 - 311 654 l 1,2,-1 - 697 654 l 1,3,-1 - 697 320 l 1,4,-1 - 539 320 l 1,5,-1 - 539 505 l 1,6,-1 - 311 505 l 1,7,-1 - 311 -424 l 1,8,-1 - 136 -424 l 1,9,-1 - 136 1082 l 1,10,-1 - 747 1082 l 1,11,-1 - 747 943 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03DE -Encoding: 990 990 911 -Width: 1279 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 38 - 22 - 25 - 14 - 0 - 3 - 9 - 3 - 25 - 32 - 4 - 43 - 44 - 17 - 42 - 41 - 21 - 42 - 21 - 42 - 21 - 11 - 31 - 34 - 34 - 29 - 95 - 89 - 34 - 8 - 11 - 11 - 6 - 95 - 89 - 11 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1122 1102 m 1,0,1 - 1085 954 1085 954 1053.5 728.5 c 128,-1,2 - 1022 503 1022 503 1022 355 c 0,3,4 - 1022 255 1022 255 1053.5 200.5 c 128,-1,5 - 1085 146 1085 146 1144 146 c 0,6,7 - 1175 146 1175 146 1234 161 c 1,8,-1 - 1270 1 l 1,9,10 - 1206 -19 1206 -19 1122 -19 c 0,11,12 - 992 -19 992 -19 924.5 62 c 128,-1,13 - 857 143 857 143 857 320 c 0,14,15 - 857 437 857 437 872.5 574.5 c 128,-1,16 - 888 712 888 712 909 813 c 1,17,18 - 776 719 776 719 536 563 c 0,19,20 - 308 414 308 414 164 312 c 1,21,-1 - 135 323 l 1,22,23 - 167 448 167 448 199 693 c 128,-1,24 - 231 938 231 938 231 1111 c 0,25,26 - 231 1196 231 1196 221 1235.5 c 128,-1,27 - 211 1275 211 1275 188.5 1297.5 c 128,-1,28 - 166 1320 166 1320 127 1320 c 0,29,30 - 95 1320 95 1320 37 1305 c 1,31,-1 - 1 1465 l 1,32,33 - 65 1485 65 1485 149 1485 c 0,34,35 - 239 1485 239 1485 292.5 1448.5 c 128,-1,36 - 346 1412 346 1412 371 1343 c 128,-1,37 - 396 1274 396 1274 396 1146 c 0,38,39 - 396 1027 396 1027 381 872 c 128,-1,40 - 366 717 366 717 348 630 c 1,41,-1 - 1091 1118 l 1,42,-1 - 1122 1102 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni03DF -Encoding: 991 991 912 -Width: 1084 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 7 - 6 - 6 - 8 - 4 - 2 - 1 - 1 - 3 - 0 - 4 - 0 - 10 - 11 - 8 - 4 - 80 - 89 - 8 - 8 - 2 - 6 - 2 - 21 -SVTCA[y-axis] -MIAP[rnd] -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1034 764 m 1,0,-1 - 758 0 l 1,1,-1 - 564 0 l 1,2,-1 - 796 652 l 1,3,-1 - 50 652 l 1,4,-1 - 50 701 l 1,5,-1 - 326 1409 l 1,6,-1 - 520 1409 l 1,7,-1 - 288 813 l 1,8,-1 - 1034 813 l 1,9,-1 - 1034 764 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03E0 -Encoding: 992 992 913 -Width: 1549 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 17 - 12 - 7 - 7 - 0 - 24 - 16 - 4 - 11 - 0 - 5 - 32 - 31 - 10 - 9 - 8 - 12 - 15 - 14 - 17 - 12 - 17 - 3 - 27 - 23 - 23 - 27 - 27 - 20 - 96 - 89 - 27 - 4 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1462 520 m 0,0,1 - 1462 135 1462 135 1266.5 -92 c 128,-1,2 - 1071 -319 1071 -319 638 -423 c 1,3,-1 - 592 -272 l 1,4,5 - 928 -210 928 -210 1105.5 -8.5 c 128,-1,6 - 1283 193 1283 193 1283 515 c 2,7,-1 - 1283 533 l 1,8,-1 - 1282 550 l 1,9,-1 - 696 265 l 1,10,-1 - 630 397 l 1,11,-1 - 1267 707 l 1,12,13 - 1243 845 1243 845 1187 962 c 1,14,-1 - 552 653 l 1,15,-1 - 486 785 l 1,16,-1 - 1111 1089 l 1,17,18 - 1021 1212 1021 1212 899 1275 c 128,-1,19 - 777 1338 777 1338 631 1338 c 0,20,21 - 492 1338 492 1338 363 1271 c 128,-1,22 - 234 1204 234 1204 144 1084 c 1,23,-1 - 46 1200 l 1,24,25 - 175 1351 175 1351 324 1417.5 c 128,-1,26 - 473 1484 473 1484 668 1484 c 0,27,28 - 890 1484 890 1484 1070 1358 c 128,-1,29 - 1250 1232 1250 1232 1356 1004.5 c 128,-1,30 - 1462 777 1462 777 1462 520 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni03E1 -Encoding: 993 993 914 -Width: 1181 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 15 - 10 - 5 - 0 - 0 - 9 - 14 - 17 - 4 - 21 - 22 - 13 - 12 - 15 - 8 - 7 - 10 - 15 - 10 - 3 - 18 - 0 - 3 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1129 106 m 0,0,1 - 1129 -114 1129 -114 1083 -372 c 1,2,-1 - 889 -426 l 1,3,4 - 944 -143 944 -143 944 91 c 0,5,6 - 944 297 944 297 900 443 c 1,7,-1 - 544 270 l 1,8,-1 - 474 413 l 1,9,-1 - 856 600 l 1,10,11 - 811 719 811 719 740 832 c 1,12,-1 - 360 647 l 1,13,-1 - 289 791 l 1,14,-1 - 657 972 l 1,15,16 - 447 1236 447 1236 99 1407 c 1,17,-1 - 271 1492 l 1,18,19 - 683 1296 683 1296 906 937.5 c 128,-1,20 - 1129 579 1129 579 1129 106 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni03E2 -Encoding: 994 994 915 -Width: 1824 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 36 - 33 - 28 - 1 - 42 - 7 - 20 - 20 - 10 - 10 - 42 - 15 - 33 - 4 - 44 - 45 - 21 - 29 - 31 - 43 - 8 - 34 - 3 - 31 - 39 - 96 - 89 - 31 - 19 - 15 - 16 - 96 - 89 - 15 - 25 - 64 - 25 - 4 - 96 - 89 - 25 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1012 1409 m 1,0,-1 - 1012 398 l 2,1,2 - 1012 245 1012 245 1058.5 183 c 128,-1,3 - 1105 121 1105 121 1220 121 c 0,4,5 - 1336 121 1336 121 1404 210 c 128,-1,6 - 1472 299 1472 299 1472 457 c 2,7,-1 - 1472 1409 l 1,8,-1 - 1661 1409 l 1,9,-1 - 1661 94 l 2,10,11 - 1661 -102 1661 -102 1613 -211.5 c 128,-1,12 - 1565 -321 1565 -321 1459.5 -372.5 c 128,-1,13 - 1354 -424 1354 -424 1179 -424 c 2,14,-1 - 174 -424 l 1,15,-1 - 174 -277 l 1,16,-1 - 1172 -277 l 2,17,18 - 1333 -277 1333 -277 1409.5 -195.5 c 128,-1,19 - 1486 -114 1486 -114 1486 66 c 2,20,-1 - 1486 155 l 1,21,-1 - 1482 155 l 1,22,23 - 1440 67 1440 67 1366 23.5 c 128,-1,24 - 1292 -20 1292 -20 1170 -20 c 0,25,26 - 1047 -20 1047 -20 966.5 23 c 128,-1,27 - 886 66 886 66 849 165 c 1,28,-1 - 846 165 l 1,29,30 - 752 -20 752 -20 515 -20 c 0,31,32 - 166 -20 166 -20 166 361 c 2,33,-1 - 166 1409 l 1,34,-1 - 355 1409 l 1,35,-1 - 355 398 l 2,36,37 - 355 247 355 247 400.5 184 c 128,-1,38 - 446 121 446 121 562 121 c 0,39,40 - 681 121 681 121 752 210 c 128,-1,41 - 823 299 823 299 823 457 c 2,42,-1 - 823 1409 l 1,43,-1 - 1012 1409 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03E3 -Encoding: 995 995 916 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 38 - 35 - 28 - 1 - 44 - 7 - 21 - 21 - 10 - 10 - 44 - 35 - 15 - 4 - 46 - 47 - 29 - 22 - 32 - 45 - 8 - 36 - 15 - 15 - 16 - 80 - 89 - 15 - 32 - 32 - 41 - 80 - 89 - 32 - 22 - 25 - 4 - 80 - 89 - 25 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -939 1082 m 1,0,-1 - 939 396 l 2,1,2 - 939 239 939 239 982 179 c 128,-1,3 - 1025 119 1025 119 1137 119 c 0,4,5 - 1252 119 1252 119 1319 207 c 128,-1,6 - 1386 295 1386 295 1386 455 c 2,7,-1 - 1386 1082 l 1,8,-1 - 1565 1082 l 1,9,-1 - 1565 108 l 2,10,11 - 1565 -90 1565 -90 1516.5 -203 c 128,-1,12 - 1468 -316 1468 -316 1362.5 -370 c 128,-1,13 - 1257 -424 1257 -424 1083 -424 c 2,14,-1 - 132 -424 l 1,15,-1 - 132 -285 l 1,16,-1 - 1092 -285 l 2,17,18 - 1246 -285 1246 -285 1321 -205.5 c 128,-1,19 - 1396 -126 1396 -126 1400 44 c 2,20,-1 - 1404 185 l 1,21,-1 - 1400 185 l 1,22,23 - 1344 76 1344 76 1265 28 c 128,-1,24 - 1186 -20 1186 -20 1074 -20 c 0,25,26 - 951 -20 951 -20 879.5 29 c 128,-1,27 - 808 78 808 78 780 185 c 1,28,-1 - 777 185 l 1,29,30 - 721 76 721 76 641.5 28 c 128,-1,31 - 562 -20 562 -20 449 -20 c 0,32,33 - 285 -20 285 -20 210.5 69 c 128,-1,34 - 136 158 136 158 136 361 c 2,35,-1 - 136 1082 l 1,36,-1 - 314 1082 l 1,37,-1 - 314 396 l 2,38,39 - 314 239 314 239 357 179 c 128,-1,40 - 400 119 400 119 512 119 c 0,41,42 - 630 119 630 119 695.5 206.5 c 128,-1,43 - 761 294 761 294 761 455 c 2,44,-1 - 761 1082 l 1,45,-1 - 939 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03E4 -Encoding: 996 996 917 -Width: 1381 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 11 - 15 - 15 - 27 - 14 - 5 - 21 - 14 - 21 - 29 - 28 - 24 - 2 - 95 - 89 - 24 - 4 - 8 - 18 - 95 - 89 - 8 - 8 - 12 - 15 - 18 - 12 - 3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -685 1224 m 1,0,1 - 613 1276 613 1276 528 1276 c 0,2,3 - 409 1276 409 1276 349.5 1192 c 128,-1,4 - 290 1108 290 1108 290 948 c 0,5,6 - 290 784 290 784 376.5 694 c 128,-1,7 - 463 604 463 604 625 604 c 0,8,9 - 719 604 719 604 835.5 631 c 128,-1,10 - 952 658 952 658 1025 694 c 1,11,-1 - 1025 1410 l 1,12,-1 - 1215 1410 l 1,13,-1 - 1215 0 l 1,14,-1 - 1025 0 l 1,15,-1 - 1025 533 l 1,16,17 - 804 450 804 450 622 450 c 0,18,19 - 376 450 376 450 238 580 c 128,-1,20 - 100 710 100 710 100 942 c 0,21,22 - 100 1180 100 1180 208.5 1305 c 128,-1,23 - 317 1430 317 1430 526 1430 c 0,24,25 - 610 1430 610 1430 670 1410.5 c 128,-1,26 - 730 1391 730 1391 781 1353 c 1,27,-1 - 685 1224 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni03E5 -Encoding: 997 997 918 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 18 - 7 - 25 - 0 - 0 - 28 - 28 - 13 - 7 - 3 - 29 - 30 - 22 - 4 - 80 - 89 - 1 - 26 - 15 - 22 - 31 - 22 - 2 - 9 - 3 - 22 - 22 - 0 - 26 - 0 - 10 - 15 - 83 - 89 - 10 - 1 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP2 -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -825 0 m 1,0,-1 - 825 553 l 1,1,2 - 774 462 774 462 691.5 422 c 128,-1,3 - 609 382 609 382 485 382 c 0,4,5 - 309 382 309 382 225.5 469.5 c 128,-1,6 - 142 557 142 557 142 763 c 2,7,-1 - 142 1200 l 2,8,9 - 142 1496 142 1496 423 1496 c 0,10,11 - 474 1496 474 1496 559 1480 c 1,12,-1 - 559 1313 l 1,13,14 - 501 1334 501 1334 440 1334 c 0,15,16 - 323 1334 323 1334 323 1186 c 2,17,-1 - 323 798 l 2,18,19 - 323 684 323 684 344 628.5 c 128,-1,20 - 365 573 365 573 413 547 c 128,-1,21 - 461 521 461 521 546 521 c 0,22,23 - 673 521 673 521 749.5 609 c 128,-1,24 - 826 697 826 697 826 846 c 2,25,-1 - 826 1484 l 1,26,-1 - 1006 1484 l 1,27,-1 - 1006 0 l 1,28,-1 - 825 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03E6 -Encoding: 998 998 919 -Width: 1380 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 18 - 14 - 14 - 31 - 15 - 7 - 24 - 15 - 24 - 32 - 33 - 21 - 10 - 95 - 89 - 18 - 21 - 21 - 15 - 16 - 3 - 31 - 0 - 95 - 89 - 31 - 15 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,white] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -164 -275 m 1,0,-1 - 466 -275 l 2,1,2 - 650 -275 650 -275 735.5 -258 c 128,-1,3 - 821 -241 821 -241 885.5 -202.5 c 128,-1,4 - 950 -164 950 -164 995 -96.5 c 128,-1,5 - 1040 -29 1040 -29 1064.5 75 c 128,-1,6 - 1089 179 1089 179 1089 325 c 0,7,8 - 1089 544 1089 544 995 661 c 128,-1,9 - 901 778 901 778 722 778 c 0,10,11 - 637 778 637 778 539 754 c 128,-1,12 - 441 730 441 730 354 688 c 1,13,-1 - 354 0 l 1,14,-1 - 164 0 l 1,15,-1 - 164 1410 l 1,16,-1 - 354 1410 l 1,17,-1 - 354 845 l 1,18,-1 - 424 874 l 2,19,20 - 569 932 569 932 729 932 c 0,21,22 - 987 932 987 932 1133 772.5 c 128,-1,23 - 1279 613 1279 613 1279 331 c 0,24,25 - 1279 176 1279 176 1251.5 55.5 c 128,-1,26 - 1224 -65 1224 -65 1171 -153 c 128,-1,27 - 1118 -241 1118 -241 1034.5 -301.5 c 128,-1,28 - 951 -362 951 -362 830 -393 c 128,-1,29 - 709 -424 709 -424 509 -424 c 2,30,-1 - 164 -424 l 1,31,-1 - 164 -275 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03E7 -Encoding: 999 999 920 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 51 - 44 - 21 - 7 - 2 - 32 - 49 - 4 - 36 - 30 - 5 - 9 - 36 - 9 - 51 - 52 - 21 - 21 - 32 - 49 - 7 - 2 - 4 - 0 - 34 - 47 - 34 - 80 - 89 - 24 - 18 - 80 - 89 - 47 - 24 - 47 - 24 - 0 - 13 - 13 - 28 - 80 - 89 - 13 - 22 - 0 - 40 - 80 - 89 - 4 - 0 - 16 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -505 1102 m 0,0,1 - 674 1102 674 1102 786 1023 c 1,2,3 - 838 1101 838 1101 873 1174 c 1,4,-1 - 997 1082 l 1,5,6 - 925 966 925 966 888 916 c 1,7,8 - 987 772 987 772 987 540 c 0,9,10 - 987 360 987 360 930 234.5 c 128,-1,11 - 873 109 873 109 772.5 44.5 c 128,-1,12 - 672 -20 672 -20 539 -20 c 0,13,14 - 472 -20 472 -20 424.5 -5 c 128,-1,15 - 377 10 377 10 341 27.5 c 128,-1,16 - 305 45 305 45 277.5 60 c 128,-1,17 - 250 75 250 75 223 75 c 0,18,19 - 162 75 162 75 162 0 c 1,20,-1 - 10 0 l 1,21,22 - 10 105 10 105 64.5 164 c 128,-1,23 - 119 223 119 223 203 223 c 0,24,25 - 282 223 282 223 369 173 c 0,26,27 - 455 123 455 123 534 123 c 0,28,29 - 799 123 799 123 799 536 c 0,30,31 - 799 666 799 666 765 768 c 1,32,33 - 574 572 574 572 376 572 c 0,34,35 - 109 572 109 572 109 801 c 0,36,37 - 109 891 109 891 158 961.5 c 128,-1,38 - 207 1032 207 1032 294.5 1067 c 128,-1,39 - 382 1102 382 1102 505 1102 c 0,0,1 -514 968 m 0,40,41 - 431 968 431 968 374.5 947 c 128,-1,42 - 318 926 318 926 287.5 892 c 128,-1,43 - 257 858 257 858 257 817 c 0,44,45 - 257 760 257 760 289 735 c 128,-1,46 - 321 710 321 710 381 710 c 0,47,48 - 542 710 542 710 691 896 c 1,49,50 - 623 968 623 968 514 968 c 0,40,41 -EndSplineSet -EndChar - -StartChar: uni03E8 -Encoding: 1000 1000 921 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 34 - 0 - 17 - 18 - 11 - 24 - 40 - 45 - 45 - 24 - 18 - 0 - 4 - 51 - 52 - 34 - 11 - 48 - 21 - 43 - 43 - 48 - 48 - 37 - 95 - 89 - 48 - 19 - 17 - 17 - 21 - 21 - 14 - 96 - 89 - 21 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -110 389 m 0,0,1 - 110 466 110 466 131.5 523.5 c 128,-1,2 - 153 581 153 581 192 623 c 128,-1,3 - 231 665 231 665 285 695.5 c 128,-1,4 - 339 726 339 726 404.5 748.5 c 128,-1,5 - 470 771 470 771 644 811 c 0,6,7 - 723 829 723 829 794.5 847 c 128,-1,8 - 866 865 866 865 920 892 c 128,-1,9 - 974 919 974 919 1005.5 959.5 c 128,-1,10 - 1037 1000 1037 1000 1037 1063 c 0,11,12 - 1037 1173 1037 1173 951 1229.5 c 128,-1,13 - 865 1286 865 1286 705 1286 c 0,14,15 - 540 1286 540 1286 450 1235.5 c 128,-1,16 - 360 1185 360 1185 331 1073 c 1,17,-1 - 143 1106 l 1,18,19 - 191 1279 191 1279 320 1354.5 c 128,-1,20 - 449 1430 449 1430 706 1430 c 0,21,22 - 953 1430 953 1430 1088 1331 c 128,-1,23 - 1223 1232 1223 1232 1223 1053 c 0,24,25 - 1223 975 1223 975 1196.5 914 c 128,-1,26 - 1170 853 1170 853 1120.5 807.5 c 128,-1,27 - 1071 762 1071 762 984.5 724.5 c 128,-1,28 - 898 687 898 687 730 650 c 0,29,30 - 634 628 634 628 555 609 c 128,-1,31 - 476 590 476 590 419 562 c 128,-1,32 - 362 534 362 534 330.5 491 c 128,-1,33 - 299 448 299 448 299 379 c 0,34,35 - 299 257 299 257 398.5 193 c 128,-1,36 - 498 129 498 129 685 129 c 0,37,38 - 891 129 891 129 997 198 c 128,-1,39 - 1103 267 1103 267 1103 404 c 0,40,41 - 1103 493 1103 493 1050 597 c 1,42,-1 - 1222 651 l 1,43,44 - 1289 529 1289 529 1289 412 c 0,45,46 - 1289 215 1289 215 1128 97.5 c 128,-1,47 - 967 -20 967 -20 692 -20 c 0,48,49 - 415 -20 415 -20 262.5 87.5 c 128,-1,50 - 110 195 110 195 110 389 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni03E9 -Encoding: 1001 1001 922 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 16 - 28 - 21 - 22 - 38 - 5 - 5 - 22 - 0 - 28 - 4 - 46 - 45 - 16 - 38 - 25 - 2 - 21 - 21 - 25 - 25 - 18 - 80 - 89 - 25 - 0 - 44 - 44 - 2 - 2 - 41 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1218 43 m 1,0,1 - 994 -20 994 -20 706 -20 c 0,2,3 - 423 -20 423 -20 266.5 89.5 c 128,-1,4 - 110 199 110 199 110 389 c 0,5,6 - 110 466 110 466 131.5 523.5 c 128,-1,7 - 153 581 153 581 192 623 c 128,-1,8 - 231 665 231 665 285 695.5 c 128,-1,9 - 339 726 339 726 404.5 748.5 c 128,-1,10 - 470 771 470 771 644 811 c 0,11,12 - 723 829 723 829 794.5 847 c 128,-1,13 - 866 865 866 865 920 892 c 128,-1,14 - 974 919 974 919 1005.5 959.5 c 128,-1,15 - 1037 1000 1037 1000 1037 1063 c 0,16,17 - 1037 1286 1037 1286 698 1286 c 0,18,19 - 539 1286 539 1286 449 1233.5 c 128,-1,20 - 359 1181 359 1181 331 1073 c 1,21,-1 - 143 1106 l 1,22,23 - 190 1276 190 1276 321 1353 c 128,-1,24 - 452 1430 452 1430 701 1430 c 0,25,26 - 957 1430 957 1430 1090 1332.5 c 128,-1,27 - 1223 1235 1223 1235 1223 1053 c 0,28,29 - 1223 975 1223 975 1196.5 914 c 128,-1,30 - 1170 853 1170 853 1120.5 807.5 c 128,-1,31 - 1071 762 1071 762 984.5 724.5 c 128,-1,32 - 898 687 898 687 730 650 c 0,33,34 - 634 628 634 628 555 609 c 128,-1,35 - 476 590 476 590 419 562 c 128,-1,36 - 362 534 362 534 330.5 491 c 128,-1,37 - 299 448 299 448 299 379 c 0,38,39 - 299 258 299 258 408 193.5 c 128,-1,40 - 517 129 517 129 706 129 c 0,41,42 - 839 129 839 129 954.5 143.5 c 128,-1,43 - 1070 158 1070 158 1205 198 c 1,44,-1 - 1218 43 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni03EA -Encoding: 1002 1002 923 -Width: 1248 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 11 - 37 - 31 - 16 - 4 - 35 - 36 - 36 - 13 - 35 - 14 - 24 - 14 - 13 - 3 - 4 - 39 - 38 - 37 - 11 - 16 - 31 - 4 - 13 - 23 - 27 - 27 - 20 - 95 - 89 - 27 - 4 - 15 - 12 - 36 - 13 - 36 - 95 - 89 - 13 - 18 - 0 - 7 - 95 - 89 - 4 - 0 - 4 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -940 1430 m 0,0,1 - 1016 1430 1016 1430 1095 1379.5 c 128,-1,2 - 1174 1329 1174 1329 1238 1221 c 1,3,-1 - 1136 1111 l 1,4,-1 - 1102 1162 l 2,5,6 - 1032 1264 1032 1264 967 1264 c 0,7,8 - 926 1264 926 1264 901.5 1245 c 128,-1,9 - 877 1226 877 1226 857 1180 c 2,10,-1 - 733 882 l 1,11,-1 - 1048 145 l 1,12,-1 - 1048 0 l 1,13,-1 - 202 0 l 1,14,-1 - 202 145 l 1,15,-1 - 512 882 l 1,16,-1 - 388 1180 l 2,17,18 - 369 1226 369 1226 344 1245 c 128,-1,19 - 319 1264 319 1264 278 1264 c 0,20,21 - 213 1264 213 1264 144 1162 c 2,22,-1 - 109 1111 l 1,23,-1 - 7 1221 l 1,24,25 - 71 1329 71 1329 150 1379.5 c 128,-1,26 - 229 1430 229 1430 305 1430 c 0,27,28 - 400 1430 400 1430 458 1383.5 c 128,-1,29 - 516 1337 516 1337 556 1224 c 2,30,-1 - 623 1032 l 1,31,-1 - 689 1224 l 2,32,33 - 726 1333 726 1333 784 1381.5 c 128,-1,34 - 842 1430 842 1430 940 1430 c 0,0,1 -392 161 m 1,35,-1 - 862 161 l 1,36,-1 - 624 745 l 1,37,-1 - 392 161 l 1,35,-1 -EndSplineSet -EndChar - -StartChar: uni03EB -Encoding: 1003 1003 924 -Width: 1221 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 1 - 16 - 2 - 15 - 6 - 15 - 13 - 0 - 33 - 18 - 16 - 26 - 8 - 36 - 37 - 0 - 18 - 13 - 33 - 4 - 16 - 25 - 29 - 29 - 22 - 80 - 89 - 29 - 15 - 17 - 14 - 1 - 16 - 1 - 80 - 89 - 16 - 21 - 3 - 10 - 80 - 89 - 7 - 3 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -611 404 m 1,0,-1 - 502 145 l 1,1,-1 - 723 145 l 1,2,-1 - 611 404 l 1,0,-1 -921 1089 m 0,3,4 - 997 1089 997 1089 1069 1041 c 128,-1,5 - 1141 993 1141 993 1197 901 c 1,6,-1 - 1093 790 l 1,7,-1 - 1060 841 l 2,8,9 - 994 939 994 939 934 939 c 0,10,11 - 858 939 858 939 821 845 c 2,12,-1 - 700 542 l 1,13,-1 - 869 139 l 1,14,-1 - 869 0 l 1,15,-1 - 352 0 l 1,16,-1 - 352 139 l 1,17,-1 - 519 541 l 1,18,-1 - 397 848 l 2,19,20 - 376 901 376 901 348 920 c 128,-1,21 - 320 939 320 939 285 939 c 0,22,23 - 225 939 225 939 160 841 c 2,24,-1 - 126 790 l 1,25,-1 - 22 901 l 1,26,27 - 78 993 78 993 150 1041 c 128,-1,28 - 222 1089 222 1089 298 1089 c 0,29,30 - 396 1089 396 1089 456.5 1030 c 128,-1,31 - 517 971 517 971 553 862 c 2,32,-1 - 609 691 l 1,33,-1 - 666 862 l 2,34,35 - 740 1089 740 1089 921 1089 c 0,3,4 -EndSplineSet -EndChar - -StartChar: uni03EC -Encoding: 1004 1004 925 -Width: 1509 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 17 - 28 - 28 - 6 - 12 - 22 - 22 - 0 - 6 - 0 - 34 - 35 - 19 - 25 - 96 - 89 - 17 - 0 - 19 - 16 - 19 - 2 - 9 - 3 - 19 - 19 - 3 - 10 - 10 - 13 - 95 - 89 - 10 - 3 - 3 - 31 - 96 - 89 - 3 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1407 556 m 0,0,1 - 1407 282 1407 282 1233.5 131 c 128,-1,2 - 1060 -20 1060 -20 751 -20 c 0,3,4 - 425 -20 425 -20 261 143.5 c 128,-1,5 - 97 307 97 307 97 623 c 0,6,7 - 97 899 97 899 168 1072 c 128,-1,8 - 239 1245 239 1245 390.5 1327 c 128,-1,9 - 542 1409 542 1409 824 1409 c 2,10,-1 - 1219 1409 l 1,11,-1 - 1219 1260 l 1,12,-1 - 831 1260 l 2,13,14 - 652 1260 652 1260 556 1230.5 c 128,-1,15 - 460 1201 460 1201 399 1137.5 c 128,-1,16 - 338 1074 338 1074 314 966 c 1,17,18 - 476 1102 476 1102 753 1102 c 0,19,20 - 1072 1102 1072 1102 1239.5 963.5 c 128,-1,21 - 1407 825 1407 825 1407 556 c 0,0,1 -1217 556 m 0,22,23 - 1217 765 1217 765 1103.5 865 c 128,-1,24 - 990 965 990 965 753 965 c 0,25,26 - 512 965 512 965 399 867 c 128,-1,27 - 286 769 286 769 286 556 c 0,28,29 - 286 340 286 340 402.5 227.5 c 128,-1,30 - 519 115 519 115 751 115 c 0,31,32 - 988 115 988 115 1102.5 224.5 c 128,-1,33 - 1217 334 1217 334 1217 556 c 0,22,23 -EndSplineSet -EndChar - -StartChar: uni03ED -Encoding: 1005 1005 926 -Width: 1134 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 29 - 17 - 17 - 6 - 23 - 12 - 0 - 6 - 0 - 35 - 36 - 32 - 26 - 80 - 89 - 32 - 32 - 3 - 9 - 9 - 13 - 80 - 89 - 9 - 16 - 3 - 20 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1066 378 m 256,0,1 - 1066 194 1066 194 932 87 c 128,-1,2 - 798 -20 798 -20 564 -20 c 0,3,4 - 326 -20 326 -20 199.5 126 c 128,-1,5 - 73 272 73 272 73 550 c 0,6,7 - 73 816 73 816 228.5 951.5 c 128,-1,8 - 384 1087 384 1087 705 1097 c 0,9,10 - 860 1102 860 1102 985 1102 c 1,11,-1 - 985 952 l 1,12,-1 - 691 945 l 2,13,14 - 498 937 498 937 415 897 c 128,-1,15 - 332 857 332 857 295 770 c 128,-1,16 - 258 683 258 683 258 525 c 0,17,18 - 258 324 258 324 336.5 218 c 128,-1,19 - 415 112 415 112 575 112 c 0,20,21 - 731 112 731 112 810 182 c 128,-1,22 - 889 252 889 252 889 380 c 0,23,24 - 889 498 889 498 822 553.5 c 128,-1,25 - 755 609 755 609 588 609 c 0,26,27 - 516 609 516 609 457 598 c 2,28,-1 - 410 590 l 1,29,-1 - 410 724 l 1,30,31 - 525 747 525 747 626 747 c 0,32,33 - 851 747 851 747 958.5 654.5 c 128,-1,34 - 1066 562 1066 562 1066 378 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni03EE -Encoding: 1006 1006 927 -Width: 950 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 5 - 0 - 25 - 9 - 9 - 22 - 10 - 14 - 19 - 19 - 10 - 0 - 3 - 29 - 28 - 2 - 17 - 8 - 12 - 21 - 12 - 95 - 89 - 25 - 21 - 17 - 21 - 17 - 21 - 10 - 23 - 3 - 10 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -930 888 m 0,0,1 - 930 822 930 822 911 757 c 1,2,-1 - 764 788 l 1,3,4 - 778 844 778 844 778 873 c 0,5,6 - 778 1003 778 1003 624 1003 c 2,7,-1 - 570 1003 l 1,8,-1 - 570 0 l 1,9,-1 - 379 0 l 1,10,-1 - 379 1003 l 1,11,-1 - 325 1003 l 2,12,13 - 172 1003 172 1003 172 873 c 0,14,15 - 172 844 172 844 186 788 c 1,16,-1 - 39 757 l 1,17,18 - 20 822 20 822 20 888 c 0,19,20 - 20 1160 20 1160 333 1160 c 2,21,-1 - 379 1160 l 1,22,-1 - 379 1410 l 1,23,-1 - 570 1410 l 1,24,-1 - 570 1160 l 1,25,-1 - 618 1160 l 2,26,27 - 930 1160 930 1160 930 888 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni03EF -Encoding: 1007 1007 928 -Width: 839 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 16 - 11 - 11 - 2 - 5 - 10 - 5 - 17 - 3 - 19 - 18 - 12 - 1 - 1 - 7 - 10 - 7 - 80 - 89 - 16 - 10 - 15 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -799 942 m 1,0,-1 - 510 942 l 1,1,-1 - 510 -15 l 1,2,-1 - 235 85 l 1,3,-1 - 235 113 l 1,4,-1 - 336 113 l 1,5,-1 - 336 942 l 1,6,-1 - 138 942 l 1,7,-1 - 64 794 l 1,8,-1 - 40 794 l 1,9,-1 - 40 1082 l 1,10,-1 - 336 1082 l 1,11,-1 - 336 1496 l 1,12,-1 - 611 1396 l 1,13,-1 - 611 1369 l 1,14,-1 - 510 1369 l 1,15,-1 - 510 1082 l 1,16,-1 - 799 1082 l 1,17,-1 - 799 942 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03F0 -Encoding: 1008 1008 929 -Width: 1231 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 14 - 1 - 4 - 33 - 19 - 23 - 28 - 23 - 4 - 9 - 2 - 5 - 37 - 38 - 30 - 25 - 83 - 89 - 30 - 22 - 18 - 0 - 2 - 19 - 15 - 11 - 6 - 83 - 89 - 11 - 15 - 2 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -884 799 m 1,0,-1 - 333 0 l 1,1,-1 - 68 0 l 1,2,3 - 306 336 306 336 306 697 c 0,4,5 - 306 928 306 928 187 928 c 0,6,7 - 158 928 158 928 102 914 c 1,8,-1 - 68 1067 l 1,9,10 - 134 1086 134 1086 209 1086 c 0,11,12 - 333 1086 333 1086 394 1010 c 128,-1,13 - 455 934 455 934 455 753 c 0,14,15 - 455 636 455 636 428 499 c 128,-1,16 - 401 362 401 362 365 289 c 1,17,-1 - 370 287 l 1,18,-1 - 914 1082 l 1,19,-1 - 1183 1082 l 1,20,21 - 1072 932 1072 932 1011.5 746 c 128,-1,22 - 951 560 951 560 951 369 c 0,23,24 - 951 138 951 138 1070 138 c 0,25,26 - 1099 138 1099 138 1155 152 c 1,27,-1 - 1189 -1 l 1,28,29 - 1123 -20 1123 -20 1048 -20 c 0,30,31 - 924 -20 924 -20 863 56 c 128,-1,32 - 802 132 802 132 802 313 c 0,33,34 - 802 453 802 453 828.5 592 c 128,-1,35 - 855 731 855 731 889 797 c 1,36,-1 - 884 799 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03F1 -Encoding: 1009 1009 930 -Width: 1173 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 32 - 21 - 13 - 39 - 0 - 8 - 8 - 0 - 46 - 45 - 26 - 17 - 80 - 89 - 26 - 26 - 22 - 27 - 13 - 11 - 5 - 11 - 42 - 80 - 89 - 11 - 21 - 5 - 36 - 80 - 89 - 5 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -IP -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -98 353 m 0,0,1 - 98 594 98 594 125 726 c 128,-1,2 - 152 858 152 858 211.5 939.5 c 128,-1,3 - 271 1021 271 1021 367.5 1061.5 c 128,-1,4 - 464 1102 464 1102 600 1102 c 0,5,6 - 853 1102 853 1102 972.5 967 c 128,-1,7 - 1092 832 1092 832 1092 552 c 0,8,9 - 1092 276 1092 276 965.5 138 c 128,-1,10 - 839 0 839 0 594 0 c 0,11,12 - 366 0 366 0 244 151 c 1,13,14 - 250 17 250 17 298 -62.5 c 128,-1,15 - 346 -142 346 -142 436.5 -178 c 128,-1,16 - 527 -214 527 -214 707 -214 c 0,17,18 - 862 -214 862 -214 930.5 -232 c 128,-1,19 - 999 -250 999 -250 1032 -293 c 128,-1,20 - 1065 -336 1065 -336 1072 -425 c 1,21,-1 - 913 -425 l 1,22,23 - 907 -403 907 -403 889 -392 c 128,-1,24 - 871 -381 871 -381 831.5 -376.5 c 128,-1,25 - 792 -372 792 -372 644 -372 c 0,26,27 - 508 -372 508 -372 414.5 -341.5 c 128,-1,28 - 321 -311 321 -311 259.5 -257 c 128,-1,29 - 198 -203 198 -203 163.5 -124.5 c 128,-1,30 - 129 -46 129 -46 113.5 52 c 128,-1,31 - 98 150 98 150 98 353 c 0,0,1 -903 552 m 0,32,33 - 903 700 903 700 871.5 792 c 128,-1,34 - 840 884 840 884 777.5 926.5 c 128,-1,35 - 715 969 715 969 603 969 c 0,36,37 - 439 969 439 969 366.5 866.5 c 128,-1,38 - 294 764 294 764 294 552 c 0,39,40 - 294 342 294 342 366 237.5 c 128,-1,41 - 438 133 438 133 592 133 c 0,42,43 - 760 133 760 133 831.5 234 c 128,-1,44 - 903 335 903 335 903 552 c 0,32,33 -EndSplineSet -EndChar - -StartChar: uni03F2 -Encoding: 1010 1010 931 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 70 99 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni03F3 -Encoding: 1011 1011 932 -Width: 455 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 77 106 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni03F4 -Encoding: 1012 1012 933 -Width: 1593 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1177 1256 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni03F5 -Encoding: 1013 1013 934 -Width: 905 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 9 - 0 - 13 - 16 - 16 - 15 - 4 - 0 - 0 - 4 - 21 - 20 - 13 - 16 - 80 - 89 - 15 - 13 - 1 - 11 - 3 - 13 - 13 - 1 - 7 - 7 - 10 - 80 - 89 - 7 - 15 - 1 - 18 - 80 - 89 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -825 0 m 1,0,-1 - 546 0 l 2,1,2 - 317 0 317 0 198.5 135.5 c 128,-1,3 - 80 271 80 271 80 531 c 0,4,5 - 80 787 80 787 207.5 934.5 c 128,-1,6 - 335 1082 335 1082 563 1082 c 2,7,-1 - 825 1082 l 1,8,-1 - 825 942 l 1,9,-1 - 555 942 l 2,10,11 - 416 942 416 942 340.5 855 c 128,-1,12 - 265 768 265 768 265 613 c 1,13,-1 - 640 613 l 1,14,-1 - 640 481 l 1,15,-1 - 265 481 l 1,16,17 - 265 140 265 140 556 140 c 2,18,-1 - 825 140 l 1,19,-1 - 825 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03F6 -Encoding: 1014 1014 935 -Width: 905 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 6 - 3 - 3 - 15 - 10 - 0 - 0 - 4 - 15 - 3 - 21 - 20 - 5 - 4 - 80 - 89 - 15 - 5 - 1 - 11 - 3 - 5 - 5 - 19 - 11 - 19 - 0 - 80 - 89 - 19 - 21 - 11 - 10 - 80 - 89 - 11 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -80 140 m 1,0,-1 - 349 140 l 2,1,2 - 640 140 640 140 640 481 c 1,3,-1 - 265 481 l 1,4,-1 - 265 613 l 1,5,-1 - 640 613 l 1,6,7 - 640 769 640 769 565 855.5 c 128,-1,8 - 490 942 490 942 350 942 c 2,9,-1 - 80 942 l 1,10,-1 - 80 1082 l 1,11,-1 - 342 1082 l 2,12,13 - 569 1082 569 1082 697 934.5 c 128,-1,14 - 825 787 825 787 825 531 c 0,15,16 - 825 272 825 272 707 136 c 128,-1,17 - 589 0 589 0 359 0 c 2,18,-1 - 80 0 l 1,19,-1 - 80 140 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03F7 -Encoding: 1015 1015 936 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 160 222 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni03F8 -Encoding: 1016 1016 937 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 192 254 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni03F9 -Encoding: 1017 1017 938 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 38 67 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni03FA -Encoding: 1018 1018 939 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 8 - 5 - 5 - 6 - 10 - 0 - 0 - 12 - 12 - 9 - 6 - 3 - 13 - 14 - 11 - 3 - 9 - 4 - 1 - 7 - 3 - 3 - 6 - 7 - 3 - 0 - 6 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -IP -SHP[rp1] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1366 0 m 1,0,-1 - 1366 1240 l 1,1,-1 - 923 620 l 1,2,-1 - 789 620 l 1,3,-1 - 338 1240 l 1,4,-1 - 338 0 l 1,5,-1 - 168 0 l 1,6,-1 - 168 1409 l 1,7,-1 - 419 1409 l 1,8,-1 - 857 812 l 1,9,-1 - 1293 1409 l 1,10,-1 - 1538 1409 l 1,11,-1 - 1538 0 l 1,12,-1 - 1366 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03FB -Encoding: 1019 1019 940 -Width: 1408 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 8 - 5 - 5 - 6 - 14 - 17 - 17 - 16 - 6 - 16 - 21 - 22 - 20 - 2 - 11 - 3 - 14 - 17 - 21 - 14 - 15 - 7 - 15 - 6 - 27 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -787 0 m 1,0,-1 - 634 0 l 1,1,-1 - 310 951 l 1,2,3 - 316 795 316 795 316 724 c 2,4,-1 - 316 -425 l 1,5,-1 - 142 -425 l 1,6,-1 - 142 1082 l 1,7,-1 - 422 1082 l 1,8,-1 - 642 421 l 1,9,10 - 694 278 694 278 710 135 c 1,11,12 - 732 296 732 296 778 421 c 1,13,-1 - 998 1082 l 1,14,-1 - 1267 1082 l 1,15,-1 - 1267 0 l 1,16,-1 - 1094 0 l 1,17,-1 - 1094 724 l 1,18,-1 - 1097 838 l 1,19,-1 - 1102 953 l 1,20,-1 - 787 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03FC -Encoding: 1020 1020 941 -Width: 1165 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 32 - 20 - 20 - 15 - 10 - 14 - 14 - 18 - 15 - 27 - 0 - 0 - 12 - 15 - 3 - 39 - 40 - 6 - 23 - 3 - 23 - 30 - 80 - 89 - 23 - 16 - 16 - 19 - 19 - 13 - 64 - 10 - 10 - 3 - 14 - 3 - 36 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp1] -MDAP[rnd] -MDRP[min,rnd,black] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1083 516 m 0,0,1 - 1083 278 1083 278 961.5 129 c 128,-1,2 - 840 -20 840 -20 646 -20 c 0,3,4 - 536 -20 536 -20 456 14 c 128,-1,5 - 376 48 376 48 312 123 c 1,6,-1 - 308 123 l 1,7,8 - 312 63 312 63 312 0 c 2,9,-1 - 312 -125 l 1,10,-1 - 631 -125 l 1,11,-1 - 631 -260 l 1,12,-1 - 312 -260 l 1,13,-1 - 312 -425 l 1,14,-1 - 132 -425 l 1,15,-1 - 132 -260 l 1,16,-1 - 10 -260 l 1,17,-1 - 10 -125 l 1,18,-1 - 132 -125 l 1,19,-1 - 132 581 l 2,20,21 - 132 826 132 826 253 964.5 c 128,-1,22 - 374 1103 374 1103 587 1103 c 0,23,24 - 729 1103 729 1103 843 1030.5 c 128,-1,25 - 957 958 957 958 1020 823.5 c 128,-1,26 - 1083 689 1083 689 1083 516 c 0,0,1 -890 524 m 0,27,28 - 890 733 890 733 804.5 851.5 c 128,-1,29 - 719 970 719 970 575 970 c 0,30,31 - 312 970 312 970 312 577 c 2,32,-1 - 312 260 l 1,33,34 - 367 191 367 191 451 152 c 128,-1,35 - 535 113 535 113 623 113 c 0,36,37 - 750 113 750 113 820 219 c 128,-1,38 - 890 325 890 325 890 524 c 0,27,28 -EndSplineSet -EndChar - -StartChar: uni03FD -Encoding: 1021 1021 942 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 328 390 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni03FE -Encoding: 1022 1022 943 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 38 67 N 1 0 0 1 0 0 2 -Refer: 17 46 N 1 0 0 1 512 605 2 -EndChar - -StartChar: uni03FF -Encoding: 1023 1023 944 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 328 390 N 1 0 0 1 0 0 3 -Refer: 17 46 N 1 0 0 1 422 605 2 -EndChar - -StartChar: uni0400 -Encoding: 1024 1024 945 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 17 - 17 - 5 - 38 - 1 - 14 -PUSHW_1 - -63 -PUSHB_5 - 14 - 17 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 342 0 2 -EndChar - -StartChar: uni0401 -Encoding: 1025 1025 946 -Width: 1367 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 16 - 21 - 64 - 21 - 2 - 32 - 21 - 80 - 21 - 128 - 21 - 176 - 21 - 224 - 21 - 5 - 0 - 21 - 48 - 21 - 96 - 21 - 144 - 21 - 192 - 21 - 240 - 21 - 6 - 197 - 32 - 21 - 1 - 2 - 1 - 12 - 12 - 5 - 38 - 2 - 1 - 16 -PUSHW_1 - -22 -PUSHB_5 - 16 - 14 - 0 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -SDB -DELTAP1 -DELTAP2 -DELTAP3 -EndTTInstrs -AnchorPoint: "Anchor-17" 685 1840 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 2 -Refer: 2306 -1 N 1 0 0 1 377 0 2 -EndChar - -StartChar: uni0402 -Encoding: 1026 1026 947 -Width: 1771 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 20 - 8 - 31 - 1 - 28 - 28 - 34 - 29 - 29 - 13 - 8 - 3 - 36 - 35 - 0 - 31 - 32 - 31 - 95 - 89 - 27 - 24 - 4 - 24 - 95 - 89 - 1 - 4 - 4 - 29 - 32 - 3 - 29 - 18 - 10 - 17 - 95 - 89 - 63 - 14 - 1 - 14 - 10 - 19 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -720 1253 m 1,0,-1 - 720 901 l 1,1,2 - 837 926 837 926 962.5 943 c 128,-1,3 - 1088 960 1088 960 1172 960 c 0,4,5 - 1398 960 1398 960 1506.5 866.5 c 128,-1,6 - 1615 773 1615 773 1615 585 c 2,7,-1 - 1615 371 l 2,8,9 - 1615 -20 1615 -20 1263 -20 c 0,10,11 - 1169 -20 1169 -20 1096 8.5 c 128,-1,12 - 1023 37 1023 37 954 103 c 1,13,-1 - 1065 226 l 1,14,15 - 1125 173 1125 173 1169.5 153.5 c 128,-1,16 - 1214 134 1214 134 1261 134 c 0,17,18 - 1345 134 1345 134 1385 184.5 c 128,-1,19 - 1425 235 1425 235 1425 346 c 2,20,-1 - 1425 565 l 2,21,22 - 1425 684 1425 684 1360.5 745 c 128,-1,23 - 1296 806 1296 806 1152 806 c 0,24,25 - 1060 806 1060 806 923.5 789 c 128,-1,26 - 787 772 787 772 720 756 c 1,27,-1 - 720 0 l 1,28,-1 - 530 0 l 1,29,-1 - 530 1253 l 1,30,-1 - 46 1253 l 1,31,-1 - 46 1409 l 1,32,-1 - 1204 1409 l 1,33,-1 - 1204 1253 l 1,34,-1 - 720 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0403 -Encoding: 1027 1027 948 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 6 - 5 - 38 - 1 - 6 - 33 - 6 - 9 - 4 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 838 915 N 1 0 0 1 0 0 2 -Refer: 2303 -1 N 1 0 0 1 369 0 2 -Kerns2: 2016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 125 -137 "'kern' Horizontal Kerning lookup 17 subtable" 109 -137 "'kern' Horizontal Kerning lookup 17 subtable" 17 -250 "'kern' Horizontal Kerning lookup 17 subtable" 15 -250 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0404 -Encoding: 1028 1028 949 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 79 - 5 - 13 - 3 - 6 - 6 - 20 - 27 - 26 - 26 - 12 - 13 - 20 - 13 - 30 - 31 - 0 - 31 - 1 - 11 - 3 - 3 - 6 - 95 - 89 - 95 - 3 - 143 - 3 - 2 - 15 - 3 - 1 - 11 - 3 - 3 - 16 - 23 - 15 - 27 - 1 - 13 - 3 - 27 - 27 - 23 - 23 - 0 - 95 - 89 - 23 - 4 - 0 - 12 - 16 - 12 - 64 - 12 - 80 - 12 - 144 - 12 - 160 - 12 - 224 - 12 - 240 - 12 - 8 - 12 - 3 - 12 - 12 - 16 - 16 - 9 - 95 - 89 - 16 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -MDAP[rnd] -SDB -DELTAP1 -DELTAP2 -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -792 1274 m 0,0,1 - 579 1274 579 1274 450.5 1147.5 c 128,-1,2 - 322 1021 322 1021 301 792 c 1,3,-1 - 955 792 l 1,4,-1 - 955 638 l 1,5,-1 - 301 638 l 1,6,7 - 319 409 319 409 452.5 273 c 128,-1,8 - 586 137 586 137 800 137 c 0,9,10 - 947 137 947 137 1060.5 211 c 128,-1,11 - 1174 285 1174 285 1245 429 c 1,12,-1 - 1401 352 l 1,13,14 - 1304 160 1304 160 1152.5 70 c 128,-1,15 - 1001 -20 1001 -20 791 -20 c 0,16,17 - 578 -20 578 -20 422.5 68.5 c 128,-1,18 - 267 157 267 157 185.5 321.5 c 128,-1,19 - 104 486 104 486 104 711 c 0,20,21 - 104 1048 104 1048 286 1239 c 128,-1,22 - 468 1430 468 1430 790 1430 c 0,23,24 - 1015 1430 1015 1430 1166 1342 c 128,-1,25 - 1317 1254 1317 1254 1388 1081 c 1,26,-1 - 1207 1021 l 1,27,28 - 1158 1144 1158 1144 1049.5 1209 c 128,-1,29 - 941 1274 941 1274 792 1274 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0405 -Encoding: 1029 1029 950 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni0406 -Encoding: 1030 1030 951 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni0407 -Encoding: 1031 1031 952 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 4 - 4 - 5 - 38 - 2 - 1 - 8 - 1 - 8 - 6 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 -38 0 2 -EndChar - -StartChar: uni0408 -Encoding: 1032 1032 953 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 45 74 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni0409 -Encoding: 1033 1033 954 -Width: 2165 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 28 - 0 - 24 - 33 - 33 - 4 - 6 - 22 - 14 - 22 - 4 - 0 - 4 - 38 - 37 - 24 - 32 - 95 - 89 - 24 - 24 - 4 - 22 - 22 - 6 - 95 - 89 - 22 - 3 - 11 - 16 - 95 - 89 - 11 - 19 - 4 - 33 - 95 - 89 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -2059 413 m 0,0,1 - 2059 226 2059 226 1930 113 c 128,-1,2 - 1801 0 1801 0 1574 0 c 2,3,-1 - 989 0 l 1,4,-1 - 989 1249 l 1,5,-1 - 573 1249 l 1,6,-1 - 524 881 l 2,7,8 - 473 483 473 483 425.5 308 c 128,-1,9 - 378 133 378 133 306 58.5 c 128,-1,10 - 234 -16 234 -16 104 -16 c 0,11,12 - 46 -16 46 -16 18 -6 c 1,13,-1 - 18 146 l 1,14,15 - 37 139 37 139 74 139 c 0,16,17 - 127 139 127 139 160.5 171.5 c 128,-1,18 - 194 204 194 204 223 279.5 c 128,-1,19 - 252 355 252 355 281 503.5 c 128,-1,20 - 310 652 310 652 339 869.5 c 128,-1,21 - 368 1087 368 1087 410 1409 c 1,22,-1 - 1180 1409 l 1,23,-1 - 1180 813 l 1,24,-1 - 1562 813 l 2,25,26 - 1798 813 1798 813 1928.5 708 c 128,-1,27 - 2059 603 2059 603 2059 413 c 0,0,1 -1867 411 m 0,28,29 - 1867 532 1867 532 1785 596.5 c 128,-1,30 - 1703 661 1703 661 1539 661 c 2,31,-1 - 1180 661 l 1,32,-1 - 1180 151 l 1,33,-1 - 1547 151 l 2,34,35 - 1711 151 1711 151 1789 219 c 128,-1,36 - 1867 287 1867 287 1867 411 c 0,28,29 -EndSplineSet -Kerns2: 2021 -160 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni040A -Encoding: 1034 1034 955 -Width: 2069 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 11 - 7 - 7 - 8 - 15 - 24 - 24 - 12 - 4 - 19 - 0 - 0 - 4 - 8 - 3 - 28 - 29 - 15 - 23 - 95 - 89 - 15 - 15 - 11 - 11 - 6 - 95 - 89 - 11 - 11 - 8 - 13 - 9 - 3 - 8 - 18 - 4 - 24 - 95 - 89 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1963 413 m 0,0,1 - 1963 226 1963 226 1834 113 c 128,-1,2 - 1705 0 1705 0 1478 0 c 2,3,-1 - 933 0 l 1,4,-1 - 933 653 l 1,5,-1 - 359 653 l 1,6,-1 - 359 0 l 1,7,-1 - 168 0 l 1,8,-1 - 168 1409 l 1,9,-1 - 359 1409 l 1,10,-1 - 359 813 l 1,11,-1 - 933 813 l 1,12,-1 - 933 1409 l 1,13,-1 - 1124 1409 l 1,14,-1 - 1124 813 l 1,15,-1 - 1466 813 l 2,16,17 - 1702 813 1702 813 1832.5 708 c 128,-1,18 - 1963 603 1963 603 1963 413 c 0,0,1 -1771 411 m 0,19,20 - 1771 532 1771 532 1689 596.5 c 128,-1,21 - 1607 661 1607 661 1443 661 c 2,22,-1 - 1124 661 l 1,23,-1 - 1124 151 l 1,24,-1 - 1451 151 l 2,25,26 - 1615 151 1615 151 1693 219 c 128,-1,27 - 1771 287 1771 287 1771 411 c 0,19,20 -EndSplineSet -Kerns2: 2021 -137 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni040B -Encoding: 1035 1035 956 -Width: 1749 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 60 - 0 - 20 - 15 - 10 - 7 - 7 - 13 - 8 - 20 - 8 - 22 - 21 - 160 - 22 - 176 - 22 - 192 - 22 - 3 - 160 - 22 - 224 - 22 - 2 - 239 - 22 - 1 - 0 - 22 - 96 - 22 - 144 - 22 - 160 - 22 - 4 - 10 - 3 - 6 - 4 - 17 - 4 - 95 - 89 - 15 - 17 - 17 - 0 - 11 - 14 - 10 - 11 - 10 - 95 - 89 - 11 - 3 - 8 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1393 0 m 1,0,-1 - 1393 575 l 2,1,2 - 1393 697 1393 697 1329 751.5 c 128,-1,3 - 1265 806 1265 806 1132 806 c 0,4,5 - 970 806 970 806 720 756 c 1,6,-1 - 720 0 l 1,7,-1 - 530 0 l 1,8,-1 - 530 1253 l 1,9,-1 - 46 1253 l 1,10,-1 - 46 1409 l 1,11,-1 - 1249 1409 l 1,12,-1 - 1249 1253 l 1,13,-1 - 720 1253 l 1,14,-1 - 720 901 l 1,15,16 - 986 960 986 960 1140 960 c 0,17,18 - 1583 960 1583 960 1583 595 c 2,19,-1 - 1583 0 l 1,20,-1 - 1393 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni040C -Encoding: 1036 1036 957 -Width: 1193 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 20 - 5 - 38 - 1 - 20 - 37 - 20 - 23 - 0 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 971 1050 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 428 0 2 -EndChar - -StartChar: uni040D -Encoding: 1037 1037 958 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 19 - 19 - 5 - 38 - 1 - 16 -PUSHW_1 - -78 -PUSHB_5 - 16 - 19 - 1 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 969 1048 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 340 0 2 -EndChar - -StartChar: uni040E -Encoding: 1038 1038 959 -Width: 1301 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 20 - 20 - 5 - 38 - 1 - 22 - 7 - 22 - 28 - 11 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-17" 675 1900 basechar 0 -LayerCount: 2 -Fore -Refer: 980 1059 N 1 0 0 1 0 0 3 -Refer: 2299 -1 N 1 0 0 1 350 330 2 -EndChar - -StartChar: uni040F -Encoding: 1039 1039 960 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 5 - 2 - 11 - 0 - 6 - 9 - 9 - 0 - 2 - 3 - 12 - 13 - 16 - 13 - 1 - 32 - 13 - 128 - 13 - 224 - 13 - 3 - 15 - 13 - 1 - 9 - 3 - 7 - 7 - 3 - 3 - 10 - 2 - 2 - 5 - 95 - 89 - 2 - 18 - 0 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -646 -408 m 1,0,-1 - 646 0 l 1,1,-1 - 168 0 l 1,2,-1 - 168 1409 l 1,3,-1 - 359 1409 l 1,4,-1 - 359 160 l 1,5,-1 - 1118 160 l 1,6,-1 - 1118 1409 l 1,7,-1 - 1304 1409 l 1,8,-1 - 1304 0 l 1,9,-1 - 826 0 l 1,10,-1 - 826 -408 l 1,11,-1 - 646 -408 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0410 -Encoding: 1040 1040 961 -Width: 1366 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-17" 680 1540 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Kerns2: 2021 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1022 45 "'kern' Horizontal Kerning lookup 17 subtable" 1013 23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" 990 -45 "'kern' Horizontal Kerning lookup 17 subtable" 984 -160 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 980 -90 "'kern' Horizontal Kerning lookup 17 subtable" 979 -160 "'kern' Horizontal Kerning lookup 17 subtable" 978 -45 "'kern' Horizontal Kerning lookup 17 subtable" 976 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 972 45 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 965 68 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0411 -Encoding: 1041 1041 962 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 9 - 18 - 18 - 4 - 13 - 7 - 0 - 4 - 0 - 22 - 23 - 96 - 23 - 1 - 23 -PUSHW_1 - -64 -NPUSHB - 37 - 30 - 35 - 72 - 15 - 23 - 1 - 22 - 3 - 9 - 17 - 95 - 89 - 0 - 9 - 48 - 9 - 160 - 9 - 3 - 19 - 3 - 9 - 9 - 4 - 5 - 5 - 8 - 95 - 89 - 5 - 3 - 4 - 18 - 95 - 89 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -CALL -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1238 413 m 0,0,1 - 1238 226 1238 226 1109 113 c 128,-1,2 - 980 0 980 0 753 0 c 2,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 1094 1409 l 1,6,-1 - 1094 1253 l 1,7,-1 - 359 1253 l 1,8,-1 - 359 813 l 1,9,-1 - 741 813 l 2,10,11 - 977 813 977 813 1107.5 708 c 128,-1,12 - 1238 603 1238 603 1238 413 c 0,0,1 -1046 411 m 0,13,14 - 1046 532 1046 532 964 596.5 c 128,-1,15 - 882 661 882 661 718 661 c 2,16,-1 - 359 661 l 1,17,-1 - 359 151 l 1,18,-1 - 726 151 l 2,19,20 - 890 151 890 151 968 219 c 128,-1,21 - 1046 287 1046 287 1046 411 c 0,13,14 -EndSplineSet -Kerns2: 1012 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -23 "'kern' Horizontal Kerning lookup 17 subtable" 992 -23 "'kern' Horizontal Kerning lookup 17 subtable" 990 -23 "'kern' Horizontal Kerning lookup 17 subtable" 987 -68 "'kern' Horizontal Kerning lookup 17 subtable" 984 -92 "'kern' Horizontal Kerning lookup 17 subtable" 982 -45 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" 980 -47 "'kern' Horizontal Kerning lookup 17 subtable" 979 -92 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -23 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0412 -Encoding: 1042 1042 963 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 37 66 N 1 0 0 1 0 0 3 -Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -23 "'kern' Horizontal Kerning lookup 17 subtable" 992 -68 "'kern' Horizontal Kerning lookup 17 subtable" 987 -115 "'kern' Horizontal Kerning lookup 17 subtable" 984 -92 "'kern' Horizontal Kerning lookup 17 subtable" 982 -90 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 980 -68 "'kern' Horizontal Kerning lookup 17 subtable" 979 -137 "'kern' Horizontal Kerning lookup 17 subtable" 978 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -68 "'kern' Horizontal Kerning lookup 17 subtable" 972 -23 "'kern' Horizontal Kerning lookup 17 subtable" 968 -68 "'kern' Horizontal Kerning lookup 17 subtable" 967 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -45 "'kern' Horizontal Kerning lookup 17 subtable" 961 -68 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0413 -Encoding: 1043 1043 964 -Width: 1109 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 838 915 N 1 0 0 1 0 0 2 -Kerns2: 2016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1024 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1023 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1021 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1020 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1009 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1006 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1001 -115 "'kern' Horizontal Kerning lookup 17 subtable" 998 -137 "'kern' Horizontal Kerning lookup 17 subtable" 997 -137 "'kern' Horizontal Kerning lookup 17 subtable" 995 -115 "'kern' Horizontal Kerning lookup 17 subtable" 993 -115 "'kern' Horizontal Kerning lookup 17 subtable" 992 -68 "'kern' Horizontal Kerning lookup 17 subtable" 978 -92 "'kern' Horizontal Kerning lookup 17 subtable" 975 -115 "'kern' Horizontal Kerning lookup 17 subtable" 973 -47 "'kern' Horizontal Kerning lookup 17 subtable" 972 -115 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -137 "'kern' Horizontal Kerning lookup 17 subtable" 961 -137 "'kern' Horizontal Kerning lookup 17 subtable" 125 -137 "'kern' Horizontal Kerning lookup 17 subtable" 109 -137 "'kern' Horizontal Kerning lookup 17 subtable" 17 -250 "'kern' Horizontal Kerning lookup 17 subtable" 15 -250 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0414 -Encoding: 1044 1044 965 -Width: 1387 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 6 - 7 - 21 - 9 - 17 - 13 - 0 - 15 - 3 - 2 - 2 - 15 - 13 - 9 - 7 - 5 - 22 - 23 - 15 - 23 - 47 - 23 - 2 - 9 - 3 - 13 - 17 - 95 - 89 - 13 - 3 - 8 - 0 - 21 - 5 - 21 - 95 - 89 - 5 - 18 - 7 - 2 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1174 160 m 1,0,-1 - 1349 160 l 1,1,-1 - 1349 -408 l 1,2,-1 - 1169 -408 l 1,3,-1 - 1169 0 l 1,4,-1 - 195 0 l 1,5,-1 - 195 -408 l 1,6,-1 - 15 -408 l 1,7,-1 - 15 160 l 1,8,-1 - 159 160 l 1,9,10 - 237 257 237 257 291.5 432.5 c 128,-1,11 - 346 608 346 608 383 899 c 2,12,-1 - 450 1409 l 1,13,-1 - 1174 1409 l 1,14,-1 - 1174 160 l 1,0,-1 -988 160 m 1,15,-1 - 988 1249 l 1,16,-1 - 613 1249 l 1,17,-1 - 564 881 l 2,18,19 - 527 607 527 607 482 434 c 128,-1,20 - 437 261 437 261 374 160 c 1,21,-1 - 988 160 l 1,15,-1 -EndSplineSet -Kerns2: 1012 45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 68 "'kern' Horizontal Kerning lookup 17 subtable" 984 -70 "'kern' Horizontal Kerning lookup 17 subtable" 981 -45 "'kern' Horizontal Kerning lookup 17 subtable" 980 23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0415 -Encoding: 1045 1045 966 -Width: 1366 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-17" 700 1540 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Kerns2: 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0416 -Encoding: 1046 1046 967 -Width: 1891 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 81 - 30 - 27 - 17 - 23 - 24 - 24 - 29 - 28 - 6 - 3 - 9 - 16 - 16 - 35 - 17 - 34 - 34 - 35 - 10 - 9 - 9 - 4 - 5 - 5 - 35 - 28 - 3 - 37 - 36 - 47 - 37 - 1 - 2 - 15 - 37 - 1 - 9 - 0 - 37 - 48 - 37 - 64 - 37 - 160 - 37 - 4 - 13 - 3 - 27 - 6 - 30 - 3 - 6 - 3 - 15 - 33 - 0 - 15 - 0 - 96 - 89 - 18 - 127 - 15 - 175 - 15 - 2 - 47 - 15 - 1 - 15 - 15 - 4 - 23 - 16 - 9 - 3 - 35 - 29 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -DELTAP1 -DELTAP2 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SDB -DELTAP1 -SDS -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -850 645 m 1,0,1 - 813 645 813 645 757.5 658 c 128,-1,2 - 702 671 702 671 677 683 c 1,3,-1 - 250 0 l 1,4,-1 - 28 0 l 1,5,-1 - 537 775 l 1,6,7 - 489 810 489 810 358 999 c 2,8,-1 - 75 1409 l 1,9,-1 - 275 1409 l 1,10,-1 - 480 1104 l 2,11,12 - 591 937 591 937 639 883.5 c 128,-1,13 - 687 830 687 830 731 810 c 128,-1,14 - 775 790 775 790 850 790 c 1,15,-1 - 850 1409 l 1,16,-1 - 1041 1409 l 1,17,-1 - 1041 790 l 1,18,19 - 1116 790 1116 790 1161 810.5 c 128,-1,20 - 1206 831 1206 831 1255 886.5 c 128,-1,21 - 1304 942 1304 942 1411 1104 c 2,22,-1 - 1616 1409 l 1,23,-1 - 1816 1409 l 1,24,-1 - 1533 999 l 2,25,26 - 1402 810 1402 810 1354 775 c 1,27,-1 - 1863 0 l 1,28,-1 - 1641 0 l 1,29,-1 - 1214 683 l 1,30,31 - 1189 671 1189 671 1134.5 658 c 128,-1,32 - 1080 645 1080 645 1041 645 c 1,33,-1 - 1041 0 l 1,34,-1 - 850 0 l 1,35,-1 - 850 645 l 1,0,1 -EndSplineSet -Kerns2: 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -25 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" 987 45 "'kern' Horizontal Kerning lookup 17 subtable" 980 45 "'kern' Horizontal Kerning lookup 17 subtable" 979 23 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0417 -Encoding: 1047 1047 968 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 66 - 34 - 14 - 31 - 24 - 25 - 25 - 4 - 3 - 18 - 31 - 31 - 9 - 37 - 3 - 37 - 40 - 41 - 34 - 14 - 13 - 14 - 13 - 95 - 89 - 15 - 14 - 63 - 14 - 2 - 32 - 3 - 14 - 14 - 0 - 28 - 24 - 64 - 13 - 16 - 72 - 24 - 24 - 28 - 28 - 21 - 95 - 89 - 28 - 4 - 0 - 6 - 95 - 89 - 32 - 4 - 48 - 4 - 112 - 4 - 128 - 4 - 4 - 208 - 4 - 1 - 4 -PUSHW_1 - -64 -PUSHB_7 - 13 - 17 - 72 - 4 - 4 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -CALL -DELTAP1 -DELTAP2 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -621 -20 m 0,0,1 - 417 -20 417 -20 285 60.5 c 128,-1,2 - 153 141 153 141 67 328 c 1,3,-1 - 232 405 l 1,4,5 - 351 133 351 133 614 133 c 0,6,7 - 767 133 767 133 855 204 c 128,-1,8 - 943 275 943 275 943 403 c 0,9,10 - 943 536 943 536 847 595 c 128,-1,11 - 751 654 751 654 549 654 c 2,12,-1 - 478 654 l 1,13,-1 - 478 802 l 1,14,-1 - 549 802 l 2,15,16 - 730 802 730 802 816.5 861.5 c 128,-1,17 - 903 921 903 921 903 1044 c 0,18,19 - 903 1151 903 1151 830.5 1212.5 c 128,-1,20 - 758 1274 758 1274 623 1274 c 0,21,22 - 497 1274 497 1274 411 1215.5 c 128,-1,23 - 325 1157 325 1157 274 1027 c 1,24,-1 - 96 1088 l 1,25,26 - 166 1261 166 1261 298 1345 c 128,-1,27 - 430 1429 430 1429 630 1429 c 0,28,29 - 842 1429 842 1429 968 1329.5 c 128,-1,30 - 1094 1230 1094 1230 1094 1061 c 0,31,32 - 1094 934 1094 934 1022 851 c 128,-1,33 - 950 768 950 768 814 736 c 1,34,35 - 966 713 966 713 1051 625.5 c 128,-1,36 - 1136 538 1136 538 1136 406 c 0,37,38 - 1136 211 1136 211 997.5 95.5 c 128,-1,39 - 859 -20 859 -20 621 -20 c 0,0,1 -EndSplineSet -Kerns2: 992 -23 "'kern' Horizontal Kerning lookup 17 subtable" 984 -45 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" 980 -23 "'kern' Horizontal Kerning lookup 17 subtable" 979 -45 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -23 "'kern' Horizontal Kerning lookup 17 subtable" 972 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0418 -Encoding: 1048 1048 969 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 13 - 2 - 2 - 1 - 6 - 9 - 9 - 8 - 1 - 8 - 14 - 15 - 15 - 15 - 47 - 15 - 2 - 12 - 1 - 6 - 6 - 1 - 3 - 9 - 9 - 5 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SHP[rp1] -SVTCA[x-axis] -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 700 1540 basechar 0 -LayerCount: 2 -Fore -SplineSet -168 0 m 1,0,-1 - 168 1409 l 1,1,-1 - 340 1409 l 1,2,-1 - 340 485 l 2,3,4 - 340 371 340 371 332 211 c 1,5,-1 - 1082 1409 l 1,6,-1 - 1304 1409 l 1,7,-1 - 1304 0 l 1,8,-1 - 1134 0 l 1,9,-1 - 1134 936 l 2,10,11 - 1134 1058 1134 1058 1140 1190 c 1,12,-1 - 398 0 l 1,13,-1 - 168 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0419 -Encoding: 1049 1049 970 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 14 - 14 - 5 - 38 - 1 - 16 - 6 - 16 - 22 - 0 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-17" 730 1900 basechar 0 -LayerCount: 2 -Fore -Refer: 969 1048 N 1 0 0 1 0 0 3 -Refer: 2299 -1 N 1 0 0 1 402 330 2 -EndChar - -StartChar: uni041A -Encoding: 1050 1050 971 -Width: 1193 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 11 - 14 - 8 - 2 - 2 - 18 - 18 - 19 - 7 - 8 - 8 - 13 - 12 - 19 - 12 - 20 - 21 - 15 - 21 - 1 - 11 - 3 - 14 - 2 - 11 - 17 - 2 - 17 - 96 - 89 - 47 - 2 - 1 - 2 - 2 - 19 - 12 - 18 - 7 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -IP -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -168 1409 m 1,0,-1 - 359 1409 l 1,1,-1 - 359 790 l 1,2,3 - 434 790 434 790 479 810.5 c 128,-1,4 - 524 831 524 831 573 886.5 c 128,-1,5 - 622 942 622 942 729 1104 c 2,6,-1 - 934 1409 l 1,7,-1 - 1134 1409 l 1,8,-1 - 851 999 l 2,9,10 - 720 810 720 810 672 775 c 1,11,-1 - 1181 0 l 1,12,-1 - 959 0 l 1,13,-1 - 532 683 l 1,14,15 - 507 671 507 671 452.5 658 c 128,-1,16 - 398 645 398 645 359 645 c 1,17,-1 - 359 0 l 1,18,-1 - 168 0 l 1,19,-1 - 168 1409 l 1,0,-1 -EndSplineSet -Kerns2: 981 -70 "'kern' Horizontal Kerning lookup 17 subtable" 980 23 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -23 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni041B -Encoding: 1051 1051 972 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 19 - 20 - 1 - 17 - 8 - 17 - 20 - 3 - 22 - 21 - 0 - 22 - 1 - 17 - 3 - 20 - 18 - 17 - 1 - 95 - 89 - 17 - 3 - 6 - 11 - 95 - 89 - 6 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -991 1249 m 1,0,-1 - 573 1249 l 1,1,-1 - 524 881 l 2,2,3 - 473 483 473 483 425.5 308 c 128,-1,4 - 378 133 378 133 306 58.5 c 128,-1,5 - 234 -16 234 -16 104 -16 c 0,6,7 - 46 -16 46 -16 18 -6 c 1,8,-1 - 18 146 l 1,9,10 - 37 139 37 139 74 139 c 0,11,12 - 127 139 127 139 160.5 171.5 c 128,-1,13 - 194 204 194 204 223 279.5 c 128,-1,14 - 252 355 252 355 281 503.5 c 128,-1,15 - 310 652 310 652 339 869.5 c 128,-1,16 - 368 1087 368 1087 410 1409 c 1,17,-1 - 1177 1409 l 1,18,-1 - 1177 0 l 1,19,-1 - 991 0 l 1,20,-1 - 991 1249 l 1,0,-1 -EndSplineSet -Kerns2: 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 994 23 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni041C -Encoding: 1052 1052 973 -Width: 1706 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 48 77 N 1 0 0 1 0 0 3 -Kerns2: 1022 23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 998 23 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" 984 -23 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni041D -Encoding: 1053 1053 974 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni041E -Encoding: 1054 1054 975 -Width: 1593 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-17" 800 1540 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Kerns2: 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 984 -45 "'kern' Horizontal Kerning lookup 17 subtable" 982 -92 "'kern' Horizontal Kerning lookup 17 subtable" 980 -45 "'kern' Horizontal Kerning lookup 17 subtable" 972 -23 "'kern' Horizontal Kerning lookup 17 subtable" 967 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -45 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni041F -Encoding: 1055 1055 976 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 15 - 9 - 1 - 32 - 9 - 1 - 32 - 9 - 80 - 9 - 96 - 9 - 112 - 9 - 128 - 9 - 160 - 9 - 176 - 9 - 192 - 9 - 8 -DELTAP1 -DELTAP2 -DELTAP1 -EndTTInstrs -LayerCount: 2 -Fore -Refer: 851 928 N 1 0 0 1 -2 0 2 -EndChar - -StartChar: uni0420 -Encoding: 1056 1056 977 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 51 80 N 1 0 0 1 0 0 3 -Kerns2: 1024 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1022 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -90 "'kern' Horizontal Kerning lookup 17 subtable" 998 -90 "'kern' Horizontal Kerning lookup 17 subtable" 997 -160 "'kern' Horizontal Kerning lookup 17 subtable" 993 -68 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 982 -92 "'kern' Horizontal Kerning lookup 17 subtable" 981 -23 "'kern' Horizontal Kerning lookup 17 subtable" 980 -45 "'kern' Horizontal Kerning lookup 17 subtable" 979 -92 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 973 -23 "'kern' Horizontal Kerning lookup 17 subtable" 972 -115 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" 967 -23 "'kern' Horizontal Kerning lookup 17 subtable" 965 -137 "'kern' Horizontal Kerning lookup 17 subtable" 961 -137 "'kern' Horizontal Kerning lookup 17 subtable" 125 -115 "'kern' Horizontal Kerning lookup 17 subtable" 30 -45 "'kern' Horizontal Kerning lookup 17 subtable" 29 -45 "'kern' Horizontal Kerning lookup 17 subtable" 17 -387 "'kern' Horizontal Kerning lookup 17 subtable" 15 -387 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0421 -Encoding: 1057 1057 978 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 38 67 N 1 0 0 1 0 0 3 -Kerns2: 1016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 999 45 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" 990 -23 "'kern' Horizontal Kerning lookup 17 subtable" 987 -70 "'kern' Horizontal Kerning lookup 17 subtable" 984 -68 "'kern' Horizontal Kerning lookup 17 subtable" 982 -115 "'kern' Horizontal Kerning lookup 17 subtable" 980 -68 "'kern' Horizontal Kerning lookup 17 subtable" 979 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 973 -23 "'kern' Horizontal Kerning lookup 17 subtable" 972 -68 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 965 -45 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0422 -Encoding: 1058 1058 979 -Width: 1251 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 55 84 N 1 0 0 1 0 0 3 -Kerns2: 2016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1024 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1023 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1021 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1020 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1018 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1009 -115 "'kern' Horizontal Kerning lookup 17 subtable" 1008 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -160 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1003 -90 "'kern' Horizontal Kerning lookup 17 subtable" 1001 -90 "'kern' Horizontal Kerning lookup 17 subtable" 998 -115 "'kern' Horizontal Kerning lookup 17 subtable" 995 -90 "'kern' Horizontal Kerning lookup 17 subtable" 993 -92 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -92 "'kern' Horizontal Kerning lookup 17 subtable" 972 -45 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 967 23 "'kern' Horizontal Kerning lookup 17 subtable" 965 -68 "'kern' Horizontal Kerning lookup 17 subtable" 961 -68 "'kern' Horizontal Kerning lookup 17 subtable" 125 -90 "'kern' Horizontal Kerning lookup 17 subtable" 109 -90 "'kern' Horizontal Kerning lookup 17 subtable" 17 -227 "'kern' Horizontal Kerning lookup 17 subtable" 15 -227 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0423 -Encoding: 1059 1059 980 -Width: 1301 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 13 - 10 - 12 - 11 - 11 - 3 - 10 - 3 - 21 - 20 - 14 - 15 - 15 - 21 - 13 - 10 - 11 - 0 - 14 - 14 - 11 - 3 - 4 - 6 - 0 - 6 - 95 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SRP2 -IP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 660 1540 basechar 0 -LayerCount: 2 -Fore -SplineSet -332 -20 m 0,0,1 - 270 -20 270 -20 202.5 -1 c 128,-1,2 - 135 18 135 18 89 50 c 1,3,-1 - 170 194 l 1,4,5 - 264 135 264 135 336 135 c 0,6,7 - 387 135 387 135 421.5 154.5 c 128,-1,8 - 456 174 456 174 491 221.5 c 128,-1,9 - 526 269 526 269 628 455 c 1,10,-1 - 55 1409 l 1,11,-1 - 273 1409 l 1,12,-1 - 722 625 l 1,13,-1 - 1106 1409 l 1,14,-1 - 1311 1409 l 1,15,-1 - 734 318 l 2,16,17 - 649 158 649 158 596 97 c 128,-1,18 - 543 36 543 36 480.5 8 c 128,-1,19 - 418 -20 418 -20 332 -20 c 0,0,1 -EndSplineSet -Kerns2: 2016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1024 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1023 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1018 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1017 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1015 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1009 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1008 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1006 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1003 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1002 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1001 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -115 "'kern' Horizontal Kerning lookup 17 subtable" 999 -68 "'kern' Horizontal Kerning lookup 17 subtable" 998 -137 "'kern' Horizontal Kerning lookup 17 subtable" 997 -160 "'kern' Horizontal Kerning lookup 17 subtable" 996 -92 "'kern' Horizontal Kerning lookup 17 subtable" 995 -115 "'kern' Horizontal Kerning lookup 17 subtable" 994 -45 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 990 -45 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -68 "'kern' Horizontal Kerning lookup 17 subtable" 972 -68 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -92 "'kern' Horizontal Kerning lookup 17 subtable" 961 -137 "'kern' Horizontal Kerning lookup 17 subtable" 125 -92 "'kern' Horizontal Kerning lookup 17 subtable" 109 -90 "'kern' Horizontal Kerning lookup 17 subtable" 30 -45 "'kern' Horizontal Kerning lookup 17 subtable" 29 -45 "'kern' Horizontal Kerning lookup 17 subtable" 17 -272 "'kern' Horizontal Kerning lookup 17 subtable" 15 -272 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0424 -Encoding: 1060 1060 981 -Width: 1557 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 60 - 32 - 13 - 28 - 20 - 6 - 6 - 35 - 17 - 7 - 24 - 0 - 0 - 7 - 13 - 3 - 41 - 42 - 16 - 42 - 1 - 96 - 42 - 192 - 42 - 208 - 42 - 3 - 63 - 42 - 1 - 0 - 42 - 1 - 10 - 3 - 29 - 36 - 9 - 36 - 96 - 89 - 5 - 9 - 27 - 38 - 16 - 38 - 96 - 89 - 20 - 16 - 9 - 16 - 9 - 16 - 6 - 18 - 3 - 6 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1439 736 m 0,0,1 - 1439 583 1439 583 1375.5 464.5 c 128,-1,2 - 1312 346 1312 346 1193 281 c 128,-1,3 - 1074 216 1074 216 914 216 c 2,4,-1 - 874 216 l 1,5,-1 - 874 -11 l 1,6,-1 - 683 -11 l 1,7,-1 - 683 216 l 1,8,-1 - 643 216 l 2,9,10 - 482 216 482 216 363 281.5 c 128,-1,11 - 244 347 244 347 181 465.5 c 128,-1,12 - 118 584 118 584 118 736 c 0,13,14 - 118 974 118 974 257.5 1105.5 c 128,-1,15 - 397 1237 397 1237 654 1237 c 2,16,-1 - 683 1237 l 1,17,-1 - 683 1419 l 1,18,-1 - 874 1419 l 1,19,-1 - 874 1237 l 1,20,-1 - 902 1237 l 2,21,22 - 1160 1237 1160 1237 1299.5 1105 c 128,-1,23 - 1439 973 1439 973 1439 736 c 0,0,1 -1247 732 m 0,24,25 - 1247 1099 1247 1099 879 1099 c 2,26,-1 - 874 1099 l 1,27,-1 - 874 353 l 1,28,-1 - 887 353 l 2,29,30 - 1061 353 1061 353 1154 449 c 128,-1,31 - 1247 545 1247 545 1247 732 c 0,24,25 -310 732 m 256,32,33 - 310 545 310 545 403 449 c 128,-1,34 - 496 353 496 353 670 353 c 2,35,-1 - 683 353 l 1,36,-1 - 683 1099 l 1,37,-1 - 674 1099 l 2,38,39 - 492 1099 492 1099 401 1009 c 128,-1,40 - 310 919 310 919 310 732 c 256,32,33 -EndSplineSet -Kerns2: 1004 -68 "'kern' Horizontal Kerning lookup 17 subtable" 992 -70 "'kern' Horizontal Kerning lookup 17 subtable" 984 -45 "'kern' Horizontal Kerning lookup 17 subtable" 980 -92 "'kern' Horizontal Kerning lookup 17 subtable" 979 -115 "'kern' Horizontal Kerning lookup 17 subtable" 972 -68 "'kern' Horizontal Kerning lookup 17 subtable" 965 -68 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0425 -Encoding: 1061 1061 982 -Width: 1366 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 59 88 N 1 0 0 1 0 0 3 -Kerns2: 1012 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 990 -70 "'kern' Horizontal Kerning lookup 17 subtable" 981 -68 "'kern' Horizontal Kerning lookup 17 subtable" 978 -68 "'kern' Horizontal Kerning lookup 17 subtable" 975 -68 "'kern' Horizontal Kerning lookup 17 subtable" 968 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0426 -Encoding: 1062 1062 983 -Width: 1515 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 7 - 4 - 8 - 11 - 11 - 2 - 2 - 1 - 4 - 1 - 12 - 13 - 0 - 13 - 192 - 13 - 2 - 11 - 3 - 9 - 9 - 5 - 3 - 11 - 11 - 7 - 4 - 7 - 95 - 89 - 4 - 18 - 2 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1477 160 m 1,0,-1 - 1477 -408 l 1,1,-1 - 1297 -408 l 1,2,-1 - 1297 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 359 1409 l 1,6,-1 - 359 160 l 1,7,-1 - 1116 160 l 1,8,-1 - 1116 1409 l 1,9,-1 - 1302 1409 l 1,10,-1 - 1302 160 l 1,11,-1 - 1477 160 l 1,0,-1 -EndSplineSet -Kerns2: 993 45 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0427 -Encoding: 1063 1063 984 -Width: 1365 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 18 - 15 - 15 - 16 - 8 - 7 - 16 - 7 - 20 - 19 - 0 - 20 - 1 - 0 - 20 - 1 - 11 - 3 - 20 -PUSHW_1 - -64 -NPUSHB - 22 - 14 - 17 - 72 - 0 - 3 - 12 - 3 - 95 - 89 - 14 - 47 - 12 - 1 - 12 - 12 - 7 - 17 - 18 - 15 - 15 - 7 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1008 508 m 1,0,1 - 853 474 853 474 762 462 c 128,-1,2 - 671 450 671 450 600 450 c 0,3,4 - 378 450 378 450 269 540.5 c 128,-1,5 - 160 631 160 631 160 815 c 2,6,-1 - 160 1409 l 1,7,-1 - 350 1409 l 1,8,-1 - 350 835 l 2,9,10 - 350 712 350 712 415 658 c 128,-1,11 - 480 604 480 604 614 604 c 0,12,13 - 763 604 763 604 1008 653 c 1,14,-1 - 1008 1409 l 1,15,-1 - 1198 1409 l 1,16,-1 - 1198 0 l 1,17,-1 - 1008 0 l 1,18,-1 - 1008 508 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0428 -Encoding: 1064 1064 985 -Width: 1877 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 49 - 8 - 11 - 7 - 4 - 3 - 0 - 0 - 4 - 11 - 3 - 13 - 12 - 235 - 13 - 1 - 196 - 13 - 1 - 187 - 13 - 1 - 132 - 13 - 1 - 112 - 13 - 1 - 2 - 64 - 13 - 1 - 15 - 13 - 1 - 9 - 3 - 9 - 5 - 1 - 3 - 7 - 7 - 3 - 0 - 3 - 95 - 89 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -168 0 m 1,0,-1 - 168 1409 l 1,1,-1 - 359 1409 l 1,2,-1 - 359 160 l 1,3,-1 - 848 160 l 1,4,-1 - 848 1409 l 1,5,-1 - 1034 1409 l 1,6,-1 - 1034 160 l 1,7,-1 - 1523 160 l 1,8,-1 - 1523 1409 l 1,9,-1 - 1709 1409 l 1,10,-1 - 1709 0 l 1,11,-1 - 168 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0429 -Encoding: 1065 1065 986 -Width: 1920 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 12 - 15 - 15 - 2 - 2 - 1 - 11 - 8 - 7 - 4 - 4 - 8 - 1 - 3 - 17 - 16 - 48 - 17 - 64 - 17 - 96 - 17 - 3 - 47 - 17 - 1 - 0 - 17 - 1 - 13 - 3 - 13 - 9 - 5 - 3 - 15 - 15 - 7 - 11 - 11 - 7 - 4 - 7 - 95 - 89 - 4 - 18 - 2 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1839 160 m 1,0,-1 - 1839 -408 l 1,1,-1 - 1659 -408 l 1,2,-1 - 1659 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 359 1409 l 1,6,-1 - 359 160 l 1,7,-1 - 826 160 l 1,8,-1 - 826 1409 l 1,9,-1 - 1012 1409 l 1,10,-1 - 1012 160 l 1,11,-1 - 1478 160 l 1,12,-1 - 1478 1409 l 1,13,-1 - 1664 1409 l 1,14,-1 - 1664 160 l 1,15,-1 - 1839 160 l 1,0,-1 -EndSplineSet -Kerns2: 1012 45 "'kern' Horizontal Kerning lookup 17 subtable" 993 23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni042A -Encoding: 1066 1066 987 -Width: 1621 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 10 - 0 - 18 - 18 - 8 - 13 - 4 - 8 - 4 - 22 - 23 - 0 - 23 - 1 - 11 - 3 - 0 - 17 - 95 - 89 - 0 - 0 - 8 - 11 - 11 - 10 - 95 - 89 - 11 - 3 - 8 - 18 - 95 - 89 - 8 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -696 813 m 1,0,-1 - 1018 813 l 2,1,2 - 1254 813 1254 813 1384.5 708 c 128,-1,3 - 1515 603 1515 603 1515 413 c 0,4,5 - 1515 226 1515 226 1386 113 c 128,-1,6 - 1257 0 1257 0 1030 0 c 2,7,-1 - 505 0 l 1,8,-1 - 505 1253 l 1,9,-1 - 46 1253 l 1,10,-1 - 46 1409 l 1,11,-1 - 696 1409 l 1,12,-1 - 696 813 l 1,0,-1 -1323 411 m 0,13,14 - 1323 532 1323 532 1241 596.5 c 128,-1,15 - 1159 661 1159 661 995 661 c 2,16,-1 - 696 661 l 1,17,-1 - 696 151 l 1,18,-1 - 1003 151 l 2,19,20 - 1167 151 1167 151 1245 219 c 128,-1,21 - 1323 287 1323 287 1323 411 c 0,13,14 -EndSplineSet -Kerns2: 2021 -137 "'kern' Horizontal Kerning lookup 17 subtable" 992 -68 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni042B -Encoding: 1067 1067 988 -Width: 1813 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 20 - 23 - 0 - 11 - 7 - 16 - 16 - 23 - 11 - 25 - 4 - 0 - 25 - 1 - 17 - 3 - 25 -PUSHW_1 - -64 -NPUSHB - 24 - 11 - 14 - 72 - 7 - 15 - 95 - 89 - 7 - 7 - 4 - 5 - 21 - 21 - 5 - 3 - 20 - 20 - 4 - 4 - 16 - 95 - 89 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 900 1540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1238 413 m 0,0,1 - 1238 226 1238 226 1109 113 c 128,-1,2 - 980 0 980 0 753 0 c 2,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 359 1409 l 1,6,-1 - 359 813 l 1,7,-1 - 741 813 l 2,8,9 - 977 813 977 813 1107.5 708 c 128,-1,10 - 1238 603 1238 603 1238 413 c 0,0,1 -1046 411 m 0,11,12 - 1046 532 1046 532 964 596.5 c 128,-1,13 - 882 661 882 661 718 661 c 2,14,-1 - 359 661 l 1,15,-1 - 359 151 l 1,16,-1 - 726 151 l 2,17,18 - 890 151 890 151 968 219 c 128,-1,19 - 1046 287 1046 287 1046 411 c 0,11,12 -1454 0 m 1,20,-1 - 1454 1409 l 1,21,-1 - 1645 1409 l 1,22,-1 - 1645 0 l 1,23,-1 - 1454 0 l 1,20,-1 -EndSplineSet -EndChar - -StartChar: uni042C -Encoding: 1068 1068 989 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 11 - 0 - 7 - 16 - 16 - 4 - 0 - 4 - 20 - 19 - 111 - 20 - 1 - 0 - 20 - 64 - 20 - 80 - 20 - 3 - 13 - 3 - 7 - 15 - 95 - 89 - 7 - 7 - 4 - 5 - 3 - 4 - 16 - 95 - 89 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1238 413 m 0,0,1 - 1238 226 1238 226 1109 113 c 128,-1,2 - 980 0 980 0 753 0 c 2,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 359 1409 l 1,6,-1 - 359 813 l 1,7,-1 - 741 813 l 2,8,9 - 977 813 977 813 1107.5 708 c 128,-1,10 - 1238 603 1238 603 1238 413 c 0,0,1 -1046 407 m 0,11,12 - 1046 528 1046 528 964 593.5 c 128,-1,13 - 882 659 882 659 718 659 c 2,14,-1 - 359 659 l 1,15,-1 - 359 151 l 1,16,-1 - 726 151 l 2,17,18 - 1046 151 1046 151 1046 407 c 0,11,12 -EndSplineSet -Kerns2: 2021 -160 "'kern' Horizontal Kerning lookup 17 subtable" 992 -92 "'kern' Horizontal Kerning lookup 17 subtable" 990 -23 "'kern' Horizontal Kerning lookup 17 subtable" 984 -160 "'kern' Horizontal Kerning lookup 17 subtable" 982 -92 "'kern' Horizontal Kerning lookup 17 subtable" 979 -205 "'kern' Horizontal Kerning lookup 17 subtable" 978 -45 "'kern' Horizontal Kerning lookup 17 subtable" 975 -45 "'kern' Horizontal Kerning lookup 17 subtable" 973 -45 "'kern' Horizontal Kerning lookup 17 subtable" 972 -70 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 967 -68 "'kern' Horizontal Kerning lookup 17 subtable" 965 -45 "'kern' Horizontal Kerning lookup 17 subtable" 961 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni042D -Encoding: 1069 1069 990 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 74 - 17 - 16 - 3 - 4 - 26 - 23 - 23 - 10 - 4 - 16 - 16 - 24 - 10 - 3 - 30 - 29 - 26 - 23 - 95 - 89 - 95 - 26 - 143 - 26 - 2 - 15 - 26 - 1 - 11 - 3 - 26 - 26 - 14 - 7 - 14 - 20 - 95 - 89 - 0 - 17 - 16 - 17 - 64 - 17 - 80 - 17 - 144 - 17 - 160 - 17 - 224 - 17 - 240 - 17 - 8 - 12 - 17 - 17 - 14 - 19 - 15 - 3 - 1 - 13 - 3 - 3 - 3 - 7 - 7 - 0 - 95 - 89 - 7 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 720 1540 basechar 0 -LayerCount: 2 -Fore -SplineSet -713 1274 m 0,0,1 - 561 1274 561 1274 452 1206.5 c 128,-1,2 - 343 1139 343 1139 298 1021 c 1,3,-1 - 117 1081 l 1,4,5 - 188 1254 188 1254 339 1342 c 128,-1,6 - 490 1430 490 1430 715 1430 c 0,7,8 - 1037 1430 1037 1430 1219 1239 c 128,-1,9 - 1401 1048 1401 1048 1401 711 c 0,10,11 - 1401 488 1401 488 1320 323 c 128,-1,12 - 1239 158 1239 158 1084.5 69 c 128,-1,13 - 930 -20 930 -20 715 -20 c 0,14,15 - 289 -20 289 -20 105 352 c 1,16,-1 - 261 430 l 1,17,18 - 330 290 330 290 445 213.5 c 128,-1,19 - 560 137 560 137 705 137 c 0,20,21 - 918 137 918 137 1051.5 272.5 c 128,-1,22 - 1185 408 1185 408 1204 638 c 1,23,-1 - 550 638 l 1,24,-1 - 550 792 l 1,25,-1 - 1204 792 l 1,26,27 - 1183 1021 1183 1021 1054.5 1147.5 c 128,-1,28 - 926 1274 926 1274 713 1274 c 0,0,1 -EndSplineSet -Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -68 "'kern' Horizontal Kerning lookup 17 subtable" 999 23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -68 "'kern' Horizontal Kerning lookup 17 subtable" 992 -45 "'kern' Horizontal Kerning lookup 17 subtable" 982 -70 "'kern' Horizontal Kerning lookup 17 subtable" 972 -68 "'kern' Horizontal Kerning lookup 17 subtable" 968 -23 "'kern' Horizontal Kerning lookup 17 subtable" 967 -25 "'kern' Horizontal Kerning lookup 17 subtable" 965 -68 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni042E -Encoding: 1070 1070 991 -Width: 2069 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 56 - 13 - 9 - 9 - 10 - 26 - 14 - 7 - 20 - 0 - 10 - 7 - 0 - 3 - 33 - 32 - 0 - 33 - 1 - 17 - 3 - 17 - 23 - 95 - 89 - 17 - 4 - 13 - 8 - 95 - 89 - 15 - 13 - 1 - 8 - 0 - 13 - 48 - 13 - 160 - 13 - 3 - 19 - 3 - 13 - 13 - 10 - 11 - 3 - 10 - 18 - 4 - 29 - 95 - 89 - 4 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -SDB -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 960 1540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1971 711 m 0,0,1 - 1971 490 1971 490 1891 323.5 c 128,-1,2 - 1811 157 1811 157 1661 68.5 c 128,-1,3 - 1511 -20 1511 -20 1311 -20 c 0,4,5 - 1016 -20 1016 -20 842.5 159 c 128,-1,6 - 669 338 669 338 654 653 c 1,7,-1 - 359 653 l 1,8,-1 - 359 0 l 1,9,-1 - 168 0 l 1,10,-1 - 168 1409 l 1,11,-1 - 359 1409 l 1,12,-1 - 359 813 l 1,13,-1 - 657 813 l 1,14,15 - 684 1105 684 1105 855.5 1267.5 c 128,-1,16 - 1027 1430 1027 1430 1313 1430 c 0,17,18 - 1623 1430 1623 1430 1797 1238.5 c 128,-1,19 - 1971 1047 1971 1047 1971 711 c 0,0,1 -1776 711 m 0,20,21 - 1776 974 1776 974 1654.5 1124 c 128,-1,22 - 1533 1274 1533 1274 1313 1274 c 0,23,24 - 1090 1274 1090 1274 968.5 1126 c 128,-1,25 - 847 978 847 978 847 711 c 0,26,27 - 847 446 847 446 970.5 290.5 c 128,-1,28 - 1094 135 1094 135 1311 135 c 0,29,30 - 1534 135 1534 135 1655 284.5 c 128,-1,31 - 1776 434 1776 434 1776 711 c 0,20,21 -EndSplineSet -Kerns2: 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -92 "'kern' Horizontal Kerning lookup 17 subtable" 997 -92 "'kern' Horizontal Kerning lookup 17 subtable" 984 -68 "'kern' Horizontal Kerning lookup 17 subtable" 982 -92 "'kern' Horizontal Kerning lookup 17 subtable" 979 -115 "'kern' Horizontal Kerning lookup 17 subtable" 978 -23 "'kern' Horizontal Kerning lookup 17 subtable" 975 -23 "'kern' Horizontal Kerning lookup 17 subtable" 972 -92 "'kern' Horizontal Kerning lookup 17 subtable" 967 -45 "'kern' Horizontal Kerning lookup 17 subtable" 965 -90 "'kern' Horizontal Kerning lookup 17 subtable" 961 -68 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni042F -Encoding: 1071 1071 992 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 12 - 1 - 1 - 18 - 14 - 4 - 4 - 13 - 0 - 18 - 10 - 10 - 9 - 0 - 9 - 23 - 24 - 1 - 11 - 18 - 11 - 95 - 89 - 15 - 18 - 63 - 18 - 79 - 18 - 111 - 18 - 4 - 11 - 3 - 18 - 18 - 0 - 7 - 7 - 20 - 95 - 89 - 7 - 3 - 10 - 10 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 810 1540 basechar 0 -LayerCount: 2 -Fore -SplineSet -96 0 m 1,0,-1 - 496 607 l 1,1,2 - 335 635 335 635 243.5 742 c 128,-1,3 - 152 849 152 849 152 1006 c 0,4,5 - 152 1196 152 1196 281 1302.5 c 128,-1,6 - 410 1409 410 1409 649 1409 c 2,7,-1 - 1312 1409 l 1,8,-1 - 1312 0 l 1,9,-1 - 1121 0 l 1,10,-1 - 1121 585 l 1,11,-1 - 682 585 l 1,12,-1 - 316 0 l 1,13,-1 - 96 0 l 1,0,-1 -344 1004 m 0,14,15 - 344 877 344 877 426.5 806.5 c 128,-1,16 - 509 736 509 736 660 736 c 2,17,-1 - 1121 736 l 1,18,-1 - 1121 1256 l 1,19,-1 - 668 1256 l 2,20,21 - 511 1256 511 1256 427.5 1191.5 c 128,-1,22 - 344 1127 344 1127 344 1004 c 0,14,15 -EndSplineSet -EndChar - -StartChar: uni0430 -Encoding: 1072 1072 993 -Width: 1139 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-17" 555 1200 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0431 -Encoding: 1073 1073 994 -Width: 1173 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 28 - 0 - 15 - 32 - 6 - 6 - 21 - 15 - 21 - 36 - 35 - 0 - 36 - 176 - 36 - 2 - 17 - 3 - 36 -PUSHW_1 - -64 -NPUSHB - 28 - 30 - 35 - 72 - 12 - 3 - 80 - 89 - 32 - 12 - 12 - 18 - 28 - 0 - 27 - 176 - 27 - 240 - 27 - 3 - 13 - 3 - 27 - 18 - 9 - 80 - 89 - 18 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -SRP2 -IP -MDAP[rnd] -IP -CALL -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -898 502 m 256,0,1 - 898 704 898 704 832 799.5 c 128,-1,2 - 766 895 766 895 617 895 c 0,3,4 - 458 895 458 895 383.5 798 c 128,-1,5 - 309 701 309 701 309 502 c 0,6,7 - 309 308 309 308 378.5 210.5 c 128,-1,8 - 448 113 448 113 597 113 c 0,9,10 - 758 113 758 113 828 206.5 c 128,-1,11 - 898 300 898 300 898 502 c 256,0,1 -655 1027 m 0,12,13 - 877 1027 877 1027 982 896.5 c 128,-1,14 - 1087 766 1087 766 1087 504 c 0,15,16 - 1087 239 1087 239 962 109.5 c 128,-1,17 - 837 -20 837 -20 599 -20 c 0,18,19 - 353 -20 353 -20 236.5 141 c 128,-1,20 - 120 302 120 302 120 636 c 0,21,22 - 120 806 120 806 143 934.5 c 128,-1,23 - 166 1063 166 1063 215 1156 c 128,-1,24 - 264 1249 264 1249 341.5 1311 c 128,-1,25 - 419 1373 419 1373 536.5 1411 c 128,-1,26 - 654 1449 654 1449 1036 1502 c 1,27,-1 - 1036 1341 l 1,28,29 - 617 1287 617 1287 493.5 1238 c 128,-1,30 - 370 1189 370 1189 320 1082 c 128,-1,31 - 270 975 270 975 266 762 c 1,32,33 - 309 887 309 887 410 957 c 128,-1,34 - 511 1027 511 1027 655 1027 c 0,12,13 -EndSplineSet -Kerns2: 1024 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1022 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1019 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -92 "'kern' Horizontal Kerning lookup 17 subtable" 993 -47 "'kern' Horizontal Kerning lookup 17 subtable" -Substitution2: "'locl' Localized Forms in Cyrillic lookup 0 subtable" S_BE -EndChar - -StartChar: uni0432 -Encoding: 1074 1074 995 -Width: 1088 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 6 - 26 - 3 - 26 - 16 - 16 - 14 - 30 - 3 - 3 - 20 - 10 - 14 - 10 - 34 - 35 - 48 - 35 - 1 - 35 -PUSHW_1 - -64 -NPUSHB - 47 - 30 - 35 - 72 - 15 - 35 - 47 - 35 - 223 - 35 - 3 - 9 - 3 - 6 - 26 - 24 - 26 - 24 - 81 - 89 - 111 - 26 - 127 - 26 - 143 - 26 - 3 - 15 - 26 - 1 - 11 - 3 - 26 - 26 - 14 - 15 - 15 - 25 - 80 - 89 - 15 - 15 - 14 - 16 - 80 - 89 - 14 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -CALL -DELTAP2 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -564 1082 m 2,0,1 - 764 1082 764 1082 864 1012 c 128,-1,2 - 964 942 964 942 964 811 c 0,3,4 - 964 718 964 718 907 656 c 128,-1,5 - 850 594 850 594 741 573 c 1,6,-1 - 741 566 l 1,7,8 - 870 549 870 549 934.5 484 c 128,-1,9 - 999 419 999 419 999 312 c 0,10,11 - 999 165 999 165 889.5 82.5 c 128,-1,12 - 780 0 780 0 587 0 c 2,13,-1 - 142 0 l 1,14,-1 - 142 1082 l 1,15,-1 - 564 1082 l 2,0,1 -322 133 m 1,16,-1 - 558 133 l 2,17,18 - 696 133 696 133 752 175.5 c 128,-1,19 - 808 218 808 218 808 311 c 0,20,21 - 808 412 808 412 748.5 453.5 c 128,-1,22 - 689 495 689 495 546 495 c 2,23,-1 - 322 495 l 1,24,-1 - 322 133 l 1,16,-1 -322 945 m 1,25,-1 - 322 625 l 1,26,-1 - 538 625 l 2,27,28 - 666 625 666 625 720.5 661 c 128,-1,29 - 775 697 775 697 775 787 c 0,30,31 - 775 869 775 869 724 907 c 128,-1,32 - 673 945 673 945 552 945 c 2,33,-1 - 322 945 l 1,25,-1 -EndSplineSet -Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1019 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -92 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -47 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -23 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" 993 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0433 -Encoding: 1075 1075 996 -Width: 747 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 4 - 4 - 0 - 6 - 7 - 5 - 2 - 80 - 89 - 5 - 15 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -687 1082 m 1,0,-1 - 687 951 l 1,1,-1 - 322 951 l 1,2,-1 - 322 0 l 1,3,-1 - 142 0 l 1,4,-1 - 142 1082 l 1,5,-1 - 687 1082 l 1,0,-1 -EndSplineSet -Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -45 "'kern' Horizontal Kerning lookup 17 subtable" 997 -92 "'kern' Horizontal Kerning lookup 17 subtable" 993 -45 "'kern' Horizontal Kerning lookup 17 subtable" 17 -250 "'kern' Horizontal Kerning lookup 17 subtable" 15 -250 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0434 -Encoding: 1076 1076 997 -Width: 1195 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 5 - 18 - 18 - 7 - 7 - 6 - 1 - 16 - 4 - 13 - 13 - 10 - 11 - 11 - 16 - 6 - 3 - 21 - 20 - 16 - 1 - 80 - 89 - 16 - 15 - 18 - 4 - 12 - 9 - 12 - 80 - 89 - 9 - 21 - 11 - 6 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -834 951 m 1,0,-1 - 528 951 l 1,1,2 - 491 679 491 679 446 477.5 c 128,-1,3 - 401 276 401 276 337 131 c 1,4,-1 - 834 131 l 1,5,-1 - 834 951 l 1,0,-1 -1160 -408 m 1,6,-1 - 997 -408 l 1,7,-1 - 997 0 l 1,8,-1 - 183 0 l 1,9,-1 - 183 -408 l 1,10,-1 - 20 -408 l 1,11,-1 - 20 131 l 1,12,-1 - 139 131 l 1,13,14 - 214 256 214 256 269 486 c 128,-1,15 - 324 716 324 716 370 1082 c 1,16,-1 - 1014 1082 l 1,17,-1 - 1014 131 l 1,18,-1 - 1160 131 l 1,19,-1 - 1160 -408 l 1,6,-1 -EndSplineSet -Kerns2: 1022 23 "'kern' Horizontal Kerning lookup 17 subtable" 1019 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0435 -Encoding: 1077 1077 998 -Width: 1139 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-17" 580 1200 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Kerns2: 1016 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0436 -Encoding: 1078 1078 999 -Width: 1370 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 73 - 6 - 3 - 15 - 10 - 9 - 9 - 4 - 5 - 27 - 30 - 24 - 18 - 18 - 34 - 34 - 15 - 35 - 23 - 24 - 24 - 29 - 28 - 28 - 35 - 5 - 3 - 36 - 37 - 207 - 37 - 223 - 37 - 2 - 112 - 37 - 1 - 63 - 37 - 111 - 37 - 2 - 32 - 37 - 1 - 15 - 37 - 1 - 240 - 37 - 1 - 159 - 37 - 1 - 80 - 37 - 96 - 37 - 2 - 31 - 37 - 47 - 37 - 2 - 0 - 37 - 1 - 10 - 3 - 27 - 6 - 30 - 3 - 6 -PUSHW_1 - -16 -NPUSHB - 41 - 11 - 17 - 72 - 6 - 3 - 15 - 33 - 0 - 15 - 0 - 80 - 89 - 18 - 15 - 15 - 31 - 15 - 79 - 15 - 95 - 15 - 4 - 15 - 15 - 31 - 15 - 79 - 15 - 3 - 7 - 15 - 15 - 4 - 23 - 16 - 9 - 15 - 35 - 29 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SDB -DELTAP1 -DELTAP2 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -IP -CALL -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -595 477 m 1,0,1 - 569 477 569 477 536.5 483 c 128,-1,2 - 504 489 504 489 485 497 c 1,3,-1 - 207 0 l 1,4,-1 - 7 0 l 1,5,-1 - 360 592 l 1,6,7 - 325 621 325 621 232 757 c 2,8,-1 - 16 1082 l 1,9,-1 - 204 1082 l 1,10,-1 - 352 843 l 2,11,12 - 418 737 418 737 454 690.5 c 128,-1,13 - 490 644 490 644 519.5 626 c 128,-1,14 - 549 608 549 608 595 608 c 1,15,-1 - 595 1082 l 1,16,-1 - 775 1082 l 1,17,-1 - 775 608 l 1,18,19 - 805 608 805 608 829 616 c 128,-1,20 - 853 624 853 624 879 649.5 c 128,-1,21 - 905 675 905 675 938 721 c 128,-1,22 - 971 767 971 767 1166 1082 c 1,23,-1 - 1354 1082 l 1,24,-1 - 1138 757 l 2,25,26 - 1045 621 1045 621 1010 592 c 1,27,-1 - 1363 0 l 1,28,-1 - 1163 0 l 1,29,-1 - 885 497 l 1,30,31 - 866 489 866 489 833.5 483 c 128,-1,32 - 801 477 801 477 775 477 c 1,33,-1 - 775 0 l 1,34,-1 - 595 0 l 1,35,-1 - 595 477 l 1,0,1 -EndSplineSet -Kerns2: 1019 45 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 994 23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0437 -Encoding: 1079 1079 1000 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 82 - 12 - 30 - 27 - 21 - 22 - 22 - 4 - 3 - 15 - 27 - 27 - 9 - 34 - 3 - 34 - 37 - 38 - 0 - 38 - 1 - 10 - 3 - 30 - 12 - 11 - 12 - 11 - 80 - 89 - 15 - 12 - 31 - 12 - 2 - 255 - 12 - 1 - 12 - 12 - 24 - 0 - 0 - 21 - 80 - 21 - 96 - 21 - 112 - 21 - 4 - 18 - 3 - 21 - 21 - 24 - 24 - 18 - 80 - 89 - 24 - 16 - 0 - 6 - 80 - 89 - 96 - 4 - 112 - 4 - 128 - 4 - 3 - 239 - 4 - 1 - 32 - 4 - 1 - 4 - 4 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -458 -20 m 0,0,1 - 291 -20 291 -20 192.5 42.5 c 128,-1,2 - 94 105 94 105 49 234 c 1,3,-1 - 208 278 l 1,4,5 - 261 114 261 114 462 114 c 0,6,7 - 558 114 558 114 614.5 161 c 128,-1,8 - 671 208 671 208 671 299 c 0,9,10 - 671 499 671 499 340 499 c 1,11,-1 - 340 636 l 1,12,13 - 501 636 501 636 577 678 c 128,-1,14 - 653 720 653 720 653 808 c 0,15,16 - 653 882 653 882 603.5 925 c 128,-1,17 - 554 968 554 968 461 968 c 0,18,19 - 372 968 372 968 315.5 931 c 128,-1,20 - 259 894 259 894 247 824 c 1,21,-1 - 85 844 l 1,22,23 - 131 1102 131 1102 462 1102 c 0,24,25 - 630 1102 630 1102 733 1022.5 c 128,-1,26 - 836 943 836 943 836 817 c 0,27,28 - 836 716 836 716 763.5 648 c 128,-1,29 - 691 580 691 580 588 571 c 1,30,-1 - 588 569 l 1,31,32 - 709 556 709 556 785.5 484.5 c 128,-1,33 - 862 413 862 413 862 304 c 0,34,35 - 862 152 862 152 754.5 66 c 128,-1,36 - 647 -20 647 -20 458 -20 c 0,0,1 -EndSplineSet -Kerns2: 1019 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -68 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0438 -Encoding: 1080 1080 1001 -Width: 1144 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 11 - 1 - 1 - 12 - 3 - 6 - 6 - 5 - 12 - 5 - 14 - 15 - 176 - 15 - 192 - 15 - 208 - 15 - 3 - 176 - 15 - 240 - 15 - 2 - 112 - 15 - 128 - 15 - 160 - 15 - 176 - 15 - 192 - 15 - 5 - 10 - 3 - 13 - 15 - 6 - 2 - 12 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 560 1200 basechar 0 -LayerCount: 2 -Fore -SplineSet -316 1082 m 1,0,-1 - 316 490 l 1,1,-1 - 306 213 l 1,2,-1 - 805 1082 l 1,3,-1 - 1002 1082 l 1,4,-1 - 1002 0 l 1,5,-1 - 830 0 l 1,6,-1 - 830 660 l 2,7,8 - 830 696 830 696 833.5 769 c 128,-1,9 - 837 842 837 842 840 873 c 1,10,-1 - 334 0 l 1,11,-1 - 142 0 l 1,12,-1 - 142 1082 l 1,13,-1 - 316 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0439 -Encoding: 1081 1081 1002 -Width: 1144 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 14 - 14 - 17 - 38 - 1 - 16 - 2 - 16 - 22 - 12 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-17" 585 1580 basechar 0 -LayerCount: 2 -Fore -Refer: 1001 1080 N 1 0 0 1 0 0 3 -Refer: 2299 -1 N 1 0 0 1 234 0 2 -EndChar - -StartChar: uni043A -Encoding: 1082 1082 1003 -Width: 896 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 57 - 14 - 11 - 2 - 8 - 2 - 18 - 18 - 19 - 19 - 20 - 21 - 7 - 8 - 8 - 13 - 12 - 12 - 21 - 15 - 21 - 47 - 21 - 2 - 10 - 3 - 11 - 17 - 2 - 17 - 80 - 89 - 15 - 2 - 63 - 2 - 79 - 2 - 3 - 15 - 2 - 63 - 2 - 255 - 2 - 3 - 8 - 2 - 2 - 12 - 19 - 19 - 12 - 21 - 7 - 7 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -IP -MDAP[rnd] -SDB -DELTAP1 -DELTAP2 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -138 1082 m 1,0,-1 - 318 1082 l 1,1,-1 - 318 608 l 1,2,3 - 348 608 348 608 372 616 c 128,-1,4 - 396 624 396 624 422 649.5 c 128,-1,5 - 448 675 448 675 481 721 c 128,-1,6 - 514 767 514 767 709 1082 c 1,7,-1 - 897 1082 l 1,8,-1 - 681 757 l 2,9,10 - 588 621 588 621 553 592 c 1,11,-1 - 906 0 l 1,12,-1 - 706 0 l 1,13,-1 - 428 497 l 1,14,15 - 409 489 409 489 376.5 483 c 128,-1,16 - 344 477 344 477 318 477 c 1,17,-1 - 318 0 l 1,18,-1 - 138 0 l 1,19,-1 - 138 1082 l 1,0,-1 -EndSplineSet -Kerns2: 1022 23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 23 "'kern' Horizontal Kerning lookup 17 subtable" 998 23 "'kern' Horizontal Kerning lookup 17 subtable" 994 45 "'kern' Horizontal Kerning lookup 17 subtable" 993 45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni043B -Encoding: 1083 1083 1004 -Width: 1195 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 51 - 0 - 19 - 2 - 17 - 10 - 17 - 19 - 3 - 21 - 20 - 112 - 21 - 128 - 21 - 144 - 21 - 3 - 112 - 21 - 176 - 21 - 2 - 0 - 21 - 32 - 21 - 48 - 21 - 96 - 21 - 112 - 21 - 128 - 21 - 6 - 13 - 3 - 17 - 2 - 80 - 89 - 17 - 15 - 7 - 12 - 80 - 89 - 7 - 22 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -872 0 m 1,0,-1 - 872 951 l 1,1,-1 - 497 951 l 1,2,3 - 438 515 438 515 406 362.5 c 128,-1,4 - 374 210 374 210 337 132 c 128,-1,5 - 300 54 300 54 245.5 17 c 128,-1,6 - 191 -20 191 -20 105 -20 c 0,7,8 - 55 -20 55 -20 11 -7 c 1,9,-1 - 11 122 l 1,10,11 - 36 113 36 113 79 113 c 0,12,13 - 134 113 134 113 167.5 168 c 128,-1,14 - 201 223 201 223 228.5 358 c 128,-1,15 - 256 493 256 493 291 757 c 2,16,-1 - 335 1082 l 1,17,-1 - 1053 1082 l 1,18,-1 - 1053 0 l 1,19,-1 - 872 0 l 1,0,-1 -EndSplineSet -Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni043C -Encoding: 1084 1084 1005 -Width: 1408 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 14 - 17 - 17 - 16 - 1 - 0 - 11 - 8 - 5 - 5 - 6 - 6 - 11 - 16 - 3 - 22 - 21 - 128 - 22 - 176 - 22 - 192 - 22 - 3 - 63 - 22 - 1 - 20 - 2 - 2 - 14 - 7 - 15 - 17 - 11 - 1 - 6 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -787 0 m 1,0,-1 - 634 0 l 1,1,-1 - 310 951 l 1,2,3 - 316 795 316 795 316 724 c 2,4,-1 - 316 0 l 1,5,-1 - 142 0 l 1,6,-1 - 142 1082 l 1,7,-1 - 422 1082 l 1,8,-1 - 642 421 l 1,9,10 - 694 278 694 278 710 135 c 1,11,12 - 732 296 732 296 778 421 c 1,13,-1 - 998 1082 l 1,14,-1 - 1267 1082 l 1,15,-1 - 1267 0 l 1,16,-1 - 1094 0 l 1,17,-1 - 1094 724 l 1,18,-1 - 1097 838 l 1,19,-1 - 1102 953 l 1,20,-1 - 787 0 l 1,0,-1 -EndSplineSet -Kerns2: 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni043D -Encoding: 1085 1085 1006 -Width: 1131 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 1 - 9 - 9 - 10 - 2 - 6 - 6 - 5 - 10 - 5 - 12 - 13 - 64 - 13 - 80 - 13 - 96 - 13 - 3 - 64 - 13 - 128 - 13 - 2 - 0 - 13 - 1 - 16 - 3 - 13 -PUSHW_1 - -64 -NPUSHB - 33 - 19 - 23 - 72 - 1 - 8 - 80 - 89 - 176 - 1 - 192 - 1 - 2 - 159 - 1 - 175 - 1 - 191 - 1 - 3 - 15 - 1 - 63 - 1 - 2 - 8 - 1 - 1 - 10 - 5 - 21 - 3 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -IP -MDAP[rnd] -SDB -DELTAP1 -DELTAP2 -DELTAP3 -CALL -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -322 1082 m 1,0,-1 - 322 624 l 1,1,-1 - 809 624 l 1,2,-1 - 809 1082 l 1,3,-1 - 989 1082 l 1,4,-1 - 989 0 l 1,5,-1 - 809 0 l 1,6,-1 - 809 493 l 1,7,-1 - 322 493 l 1,8,-1 - 322 0 l 1,9,-1 - 142 0 l 1,10,-1 - 142 1082 l 1,11,-1 - 322 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni043E -Encoding: 1086 1086 1007 -Width: 1139 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-17" 555 1200 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni043F -Encoding: 1087 1087 1008 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 5 - 6 - 2 - 1 - 6 - 1 - 8 - 9 - 160 - 9 - 176 - 9 - 192 - 9 - 3 - 160 - 9 - 224 - 9 - 2 - 96 - 9 - 144 - 9 - 160 - 9 - 176 - 9 - 4 - 15 - 9 - 1 - 10 - 3 - 7 - 4 - 80 - 89 - 7 - 15 - 6 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -967 1082 m 1,0,-1 - 967 0 l 1,1,-1 - 787 0 l 1,2,-1 - 787 951 l 1,3,-1 - 322 951 l 1,4,-1 - 322 0 l 1,5,-1 - 142 0 l 1,6,-1 - 142 1082 l 1,7,-1 - 967 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0440 -Encoding: 1088 1088 1009 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 83 112 N 1 0 0 1 0 0 3 -Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -70 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -47 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0441 -Encoding: 1089 1089 1010 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 70 99 N 1 0 0 1 0 0 3 -Kerns2: 1022 23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 999 23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0442 -Encoding: 1090 1090 1011 -Width: 938 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 3 - 6 - 2 - 6 - 7 - 3 - 8 - 9 - 128 - 9 - 1 - 63 - 9 - 1 - 16 - 9 - 32 - 9 - 2 - 15 - 9 - 1 - 11 - 3 - 4 - 21 - 3 - 6 - 0 - 6 - 81 - 89 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -35 1082 m 1,0,-1 - 903 1082 l 1,1,-1 - 903 951 l 1,2,-1 - 559 951 l 1,3,-1 - 559 0 l 1,4,-1 - 379 0 l 1,5,-1 - 379 951 l 1,6,-1 - 35 951 l 1,7,-1 - 35 1082 l 1,0,-1 -EndSplineSet -Kerns2: 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 68 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -68 "'kern' Horizontal Kerning lookup 17 subtable" 993 -23 "'kern' Horizontal Kerning lookup 17 subtable" 17 -227 "'kern' Horizontal Kerning lookup 17 subtable" 15 -227 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0443 -Encoding: 1091 1091 1012 -Width: 1024 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-17" 510 1200 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1022 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1009 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -25 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -68 "'kern' Horizontal Kerning lookup 17 subtable" 994 23 "'kern' Horizontal Kerning lookup 17 subtable" 993 -23 "'kern' Horizontal Kerning lookup 17 subtable" 125 23 "'kern' Horizontal Kerning lookup 17 subtable" 17 -205 "'kern' Horizontal Kerning lookup 17 subtable" 15 -205 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0444 -Encoding: 1092 1092 1013 -Width: 1685 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 103 - 51 - 0 - 58 - 44 - 44 - 30 - 27 - 10 - 38 - 20 - 20 - 10 - 0 - 3 - 66 - 65 - 5 - 13 - 31 - 25 - 4 - 35 - 3 - 35 - 54 - 80 - 89 - 35 - 16 - 29 - 0 - 22 - 48 - 80 - 89 - 22 - 16 - 17 - 41 - 80 - 89 - 17 - 22 - 9 - 27 - 3 - 62 - 80 - 89 - 3 - 22 - 164 - 66 - 1 - 148 - 66 - 1 - 132 - 66 - 1 - 116 - 66 - 1 - 100 - 66 - 1 - 84 - 66 - 1 - 52 - 66 - 1 - 219 - 66 - 1 - 148 - 66 - 1 - 132 - 66 - 1 - 100 - 66 - 1 - 84 - 66 - 1 - 64 - 66 - 1 - 2 - 48 - 66 - 1 - 32 - 66 - 1 - 31 - 66 - 1 - 0 - 66 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1598 546 m 0,0,1 - 1598 262 1598 262 1505.5 121 c 128,-1,2 - 1413 -20 1413 -20 1233 -20 c 0,3,4 - 1007 -20 1007 -20 928 168 c 1,5,-1 - 922 168 l 1,6,7 - 927 81 927 81 927 -2 c 2,8,-1 - 927 -425 l 1,9,-1 - 757 -425 l 1,10,-1 - 757 -2 l 2,11,12 - 757 107 757 107 762 174 c 1,13,-1 - 757 174 l 1,14,15 - 711 70 711 70 636.5 25 c 128,-1,16 - 562 -20 562 -20 451 -20 c 0,17,18 - 265 -20 265 -20 175.5 117.5 c 128,-1,19 - 86 255 86 255 86 536 c 0,20,21 - 86 1102 86 1102 451 1102 c 0,22,23 - 563 1102 563 1102 637.5 1057 c 128,-1,24 - 712 1012 712 1012 757 914 c 1,25,-1 - 762 914 l 1,26,-1 - 757 1065 l 1,27,-1 - 757 1484 l 1,28,-1 - 927 1484 l 1,29,-1 - 927 1064 l 1,30,-1 - 924 908 l 1,31,-1 - 929 908 l 1,32,33 - 975 1012 975 1012 1047 1056.5 c 128,-1,34 - 1119 1101 1119 1101 1233 1101 c 0,35,36 - 1416 1101 1416 1101 1507 964.5 c 128,-1,37 - 1598 828 1598 828 1598 546 c 0,0,1 -275 542 m 0,38,39 - 275 317 275 317 329.5 218 c 128,-1,40 - 384 119 384 119 502 119 c 0,41,42 - 632 119 632 119 693 217.5 c 128,-1,43 - 754 316 754 316 757 530 c 2,44,-1 - 757 554 l 2,45,46 - 757 765 757 765 697.5 867 c 128,-1,47 - 638 969 638 969 504 969 c 0,48,49 - 383 969 383 969 329 866 c 128,-1,50 - 275 763 275 763 275 542 c 0,38,39 -1409 542 m 0,51,52 - 1409 760 1409 760 1355.5 861 c 128,-1,53 - 1302 962 1302 962 1182 962 c 0,54,55 - 1088 962 1088 962 1035 916 c 128,-1,56 - 982 870 982 870 954.5 775.5 c 128,-1,57 - 927 681 927 681 927 528 c 2,58,-1 - 927 505 l 2,59,60 - 929 304 929 304 990 208.5 c 128,-1,61 - 1051 113 1051 113 1180 113 c 0,62,63 - 1299 113 1299 113 1354 215.5 c 128,-1,64 - 1409 318 1409 318 1409 542 c 0,51,52 -EndSplineSet -Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1012 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0445 -Encoding: 1093 1093 1014 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 91 120 N 1 0 0 1 0 0 3 -Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1013 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" 994 -23 "'kern' Horizontal Kerning lookup 17 subtable" 993 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0446 -Encoding: 1094 1094 1015 -Width: 1173 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 2 - 5 - 5 - 8 - 8 - 7 - 1 - 10 - 7 - 10 - 13 - 12 - 15 - 13 - 1 - 14 - 3 - 5 - 1 - 10 - 1 - 80 - 89 - 10 - 21 - 8 - 3 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -322 1082 m 1,0,-1 - 322 131 l 1,1,-1 - 799 131 l 1,2,-1 - 799 1082 l 1,3,-1 - 979 1082 l 1,4,-1 - 979 131 l 1,5,-1 - 1126 131 l 1,6,-1 - 1126 -408 l 1,7,-1 - 963 -408 l 1,8,-1 - 963 0 l 1,9,-1 - 142 0 l 1,10,-1 - 142 1082 l 1,11,-1 - 322 1082 l 1,0,-1 -EndSplineSet -Kerns2: 1010 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0447 -Encoding: 1095 1095 1016 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 5 - 9 - 9 - 8 - 1 - 16 - 8 - 16 - 19 - 18 - 10 - 13 - 3 - 13 - 80 - 89 - 5 - 15 - 3 - 31 - 3 - 2 - 3 - 3 - 8 - 21 - 6 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -IP -MDAP[rnd] -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -302 1082 m 1,0,-1 - 302 680 l 2,1,2 - 302 518 302 518 468 518 c 0,3,4 - 578 518 578 518 744 565 c 1,5,-1 - 744 1082 l 1,6,-1 - 924 1082 l 1,7,-1 - 924 0 l 1,8,-1 - 744 0 l 1,9,-1 - 744 461 l 1,10,-1 - 666 431 l 2,11,12 - 520 375 520 375 394 375 c 0,13,14 - 265 375 265 375 193.5 452.5 c 128,-1,15 - 122 530 122 530 122 671 c 2,16,-1 - 122 1082 l 1,17,-1 - 302 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0448 -Encoding: 1096 1096 1017 -Width: 1643 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 3 - 0 - 7 - 4 - 8 - 11 - 11 - 4 - 0 - 3 - 12 - 13 - 171 - 13 - 1 - 100 - 13 - 132 - 13 - 2 - 48 - 13 - 1 - 2 - 32 - 13 - 1 - 15 - 13 - 1 - 13 - 3 - 13 -PUSHW_1 - -64 -NPUSHB - 15 - 9 - 12 - 72 - 9 - 5 - 1 - 15 - 7 - 3 - 0 - 3 - 80 - 89 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -142 0 m 1,0,-1 - 142 1082 l 1,1,-1 - 322 1082 l 1,2,-1 - 322 131 l 1,3,-1 - 732 131 l 1,4,-1 - 732 1082 l 1,5,-1 - 912 1082 l 1,6,-1 - 912 131 l 1,7,-1 - 1321 131 l 1,8,-1 - 1321 1082 l 1,9,-1 - 1501 1082 l 1,10,-1 - 1501 0 l 1,11,-1 - 142 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0449 -Encoding: 1097 1097 1018 -Width: 1685 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 59 - 8 - 11 - 11 - 14 - 14 - 13 - 7 - 4 - 3 - 0 - 0 - 4 - 13 - 3 - 17 - 16 - 219 - 17 - 1 - 180 - 17 - 1 - 96 - 17 - 144 - 17 - 2 - 2 - 64 - 17 - 80 - 17 - 2 - 63 - 17 - 1 - 0 - 17 - 16 - 17 - 32 - 17 - 3 - 10 - 3 - 14 - 9 - 5 - 1 - 15 - 11 - 7 - 3 - 0 - 3 - 80 - 89 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -142 0 m 1,0,-1 - 142 1082 l 1,1,-1 - 322 1082 l 1,2,-1 - 322 131 l 1,3,-1 - 727 131 l 1,4,-1 - 727 1082 l 1,5,-1 - 907 1082 l 1,6,-1 - 907 131 l 1,7,-1 - 1311 131 l 1,8,-1 - 1311 1082 l 1,9,-1 - 1491 1082 l 1,10,-1 - 1491 131 l 1,11,-1 - 1638 131 l 1,12,-1 - 1638 -408 l 1,13,-1 - 1475 -408 l 1,14,-1 - 1475 0 l 1,15,-1 - 142 0 l 1,0,-1 -EndSplineSet -Kerns2: 1012 23 "'kern' Horizontal Kerning lookup 17 subtable" 1007 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 -23 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni044A -Encoding: 1098 1098 1019 -Width: 1280 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 12 - 9 - 13 - 13 - 7 - 17 - 3 - 3 - 7 - 23 - 22 - 15 - 23 - 1 - 22 - 0 - 23 - 1 - 28 - 3 - 23 -PUSHW_1 - -64 -NPUSHB - 39 - 30 - 35 - 72 - 12 - 21 - 81 - 89 - 175 - 12 - 191 - 12 - 207 - 12 - 3 - 15 - 12 - 31 - 12 - 79 - 12 - 3 - 7 - 3 - 12 - 12 - 7 - 10 - 10 - 9 - 80 - 89 - 10 - 15 - 7 - 13 - 81 - 89 - 7 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -781 624 m 2,0,1 - 986 624 986 624 1091 550.5 c 128,-1,2 - 1196 477 1196 477 1196 318 c 0,3,4 - 1196 164 1196 164 1088 82 c 128,-1,5 - 980 0 980 0 782 0 c 2,6,-1 - 373 0 l 1,7,-1 - 373 951 l 1,8,-1 - 45 951 l 1,9,-1 - 45 1082 l 1,10,-1 - 553 1082 l 1,11,-1 - 553 624 l 1,12,-1 - 781 624 l 2,0,1 -553 127 m 1,13,-1 - 755 127 l 2,14,15 - 885 127 885 127 945 173 c 128,-1,16 - 1005 219 1005 219 1005 318 c 0,17,18 - 1005 412 1005 412 947 455.5 c 128,-1,19 - 889 499 889 499 756 499 c 2,20,-1 - 553 499 l 1,21,-1 - 553 127 l 1,13,-1 -EndSplineSet -EndChar - -StartChar: uni044B -Encoding: 1099 1099 1020 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 10 - 11 - 11 - 7 - 3 - 15 - 20 - 23 - 23 - 15 - 7 - 3 - 24 - 25 - 10 - 19 - 81 - 89 - 175 - 10 - 191 - 10 - 207 - 10 - 3 - 15 - 10 - 31 - 10 - 79 - 10 - 3 - 7 - 3 - 10 - 10 - 7 - 21 - 8 - 15 - 20 - 7 - 7 - 11 - 81 - 89 - 7 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 720 1200 basechar 0 -LayerCount: 2 -Fore -SplineSet -550 624 m 2,0,1 - 755 624 755 624 860 550.5 c 128,-1,2 - 965 477 965 477 965 318 c 0,3,4 - 965 164 965 164 857 82 c 128,-1,5 - 749 0 749 0 551 0 c 2,6,-1 - 142 0 l 1,7,-1 - 142 1082 l 1,8,-1 - 322 1082 l 1,9,-1 - 322 624 l 1,10,-1 - 550 624 l 2,0,1 -322 127 m 1,11,-1 - 524 127 l 2,12,13 - 654 127 654 127 714 173 c 128,-1,14 - 774 219 774 219 774 318 c 0,15,16 - 774 412 774 412 716 455.5 c 128,-1,17 - 658 499 658 499 525 499 c 2,18,-1 - 322 499 l 1,19,-1 - 322 127 l 1,11,-1 -1150 0 m 1,20,-1 - 1150 1082 l 1,21,-1 - 1330 1082 l 1,22,-1 - 1330 0 l 1,23,-1 - 1150 0 l 1,20,-1 -EndSplineSet -EndChar - -StartChar: uni044C -Encoding: 1100 1100 1021 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 72 - 10 - 11 - 11 - 7 - 15 - 3 - 7 - 3 - 20 - 21 - 127 - 21 - 255 - 21 - 2 - 15 - 21 - 47 - 21 - 79 - 21 - 111 - 21 - 143 - 21 - 159 - 21 - 175 - 21 - 207 - 21 - 255 - 21 - 9 - 10 - 3 - 21 - 64 - 35 - 39 - 72 - 10 - 19 - 81 - 89 - 175 - 10 - 191 - 10 - 207 - 10 - 3 - 15 - 10 - 31 - 10 - 79 - 10 - 3 - 7 - 3 - 10 - 10 - 7 - 8 - 15 - 7 - 11 - 81 - 89 - 7 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SVTCA[x-axis] -CALL -SDS -SDB -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -568 624 m 2,0,1 - 773 624 773 624 878 550.5 c 128,-1,2 - 983 477 983 477 983 318 c 0,3,4 - 983 164 983 164 875 82 c 128,-1,5 - 767 0 767 0 569 0 c 2,6,-1 - 142 0 l 1,7,-1 - 142 1082 l 1,8,-1 - 322 1082 l 1,9,-1 - 322 624 l 1,10,-1 - 568 624 l 2,0,1 -322 127 m 1,11,-1 - 542 127 l 2,12,13 - 672 127 672 127 732 173 c 128,-1,14 - 792 219 792 219 792 318 c 0,15,16 - 792 412 792 412 734 455.5 c 128,-1,17 - 676 499 676 499 543 499 c 2,18,-1 - 322 499 l 1,19,-1 - 322 127 l 1,11,-1 -EndSplineSet -Kerns2: 1016 -137 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -160 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni044D -Encoding: 1101 1101 1022 -Width: 1045 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 66 - 10 - 7 - 7 - 22 - 15 - 16 - 16 - 1 - 0 - 0 - 8 - 22 - 3 - 29 - 28 - 9 - 8 - 80 - 89 - 15 - 9 - 31 - 9 - 111 - 9 - 127 - 9 - 143 - 9 - 5 - 15 - 9 - 207 - 9 - 223 - 9 - 3 - 11 - 3 - 9 - 9 - 25 - 19 - 25 - 4 - 80 - 89 - 0 - 1 - 16 - 1 - 32 - 1 - 96 - 1 - 112 - 1 - 128 - 1 - 192 - 1 - 208 - 1 - 8 - 9 - 1 -PUSHW_1 - -64 -NPUSHB - 34 - 27 - 34 - 72 - 1 - 1 - 25 - 22 - 15 - 15 - 31 - 15 - 111 - 15 - 127 - 15 - 207 - 15 - 5 - 10 - 3 - 15 - 64 - 29 - 32 - 72 - 15 - 15 - 19 - 19 - 13 - 80 - 89 - 19 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SDS -SDB -DELTAP1 -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 490 1200 basechar 0 -LayerCount: 2 -Fore -SplineSet -55 315 m 1,0,-1 - 237 327 l 1,1,2 - 253 219 253 219 319.5 167 c 128,-1,3 - 386 115 386 115 486 115 c 0,4,5 - 615 115 615 115 686 203.5 c 128,-1,6 - 757 292 757 292 769 482 c 1,7,-1 - 356 482 l 1,8,-1 - 356 613 l 1,9,-1 - 769 613 l 1,10,11 - 761 802 761 802 693.5 885 c 128,-1,12 - 626 968 626 968 488 968 c 0,13,14 - 278 968 278 968 246 772 c 1,15,-1 - 61 786 l 1,16,17 - 89 935 89 935 200.5 1018.5 c 128,-1,18 - 312 1102 312 1102 483 1102 c 0,19,20 - 713 1102 713 1102 835.5 958 c 128,-1,21 - 958 814 958 814 958 542 c 0,22,23 - 958 266 958 266 835.5 123 c 128,-1,24 - 713 -20 713 -20 481 -20 c 0,25,26 - 304 -20 304 -20 190 70 c 128,-1,27 - 76 160 76 160 55 315 c 1,0,-1 -EndSplineSet -Kerns2: 1024 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1007 23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1000 -23 "'kern' Horizontal Kerning lookup 17 subtable" 998 23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni044E -Encoding: 1102 1102 1023 -Width: 1536 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 18 - 0 - 24 - 13 - 6 - 12 - 8 - 8 - 9 - 9 - 6 - 0 - 3 - 31 - 30 - 15 - 21 - 80 - 89 - 15 - 16 - 12 - 7 - 80 - 89 - 15 - 12 - 1 - 11 - 3 - 12 - 12 - 9 - 10 - 15 - 9 - 21 - 3 - 27 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 705 1200 basechar 0 -LayerCount: 2 -Fore -SplineSet -1450 542 m 0,0,1 - 1450 258 1450 258 1332.5 119 c 128,-1,2 - 1215 -20 1215 -20 992 -20 c 0,3,4 - 780 -20 780 -20 666.5 111.5 c 128,-1,5 - 553 243 553 243 544 493 c 1,6,-1 - 322 493 l 1,7,-1 - 322 0 l 1,8,-1 - 142 0 l 1,9,-1 - 142 1082 l 1,10,-1 - 322 1082 l 1,11,-1 - 322 624 l 1,12,-1 - 545 624 l 1,13,14 - 578 1102 578 1102 998 1102 c 0,15,16 - 1235 1102 1235 1102 1342.5 962 c 128,-1,17 - 1450 822 1450 822 1450 542 c 0,0,1 -1261 542 m 0,18,19 - 1261 766 1261 766 1201 867.5 c 128,-1,20 - 1141 969 1141 969 1001 969 c 0,21,22 - 859 969 859 969 795.5 865.5 c 128,-1,23 - 732 762 732 762 732 542 c 0,24,25 - 732 324 732 324 795 218.5 c 128,-1,26 - 858 113 858 113 991 113 c 0,27,28 - 1137 113 1137 113 1199 217.5 c 128,-1,29 - 1261 322 1261 322 1261 542 c 0,18,19 -EndSplineSet -Kerns2: 1016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1014 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1011 -45 "'kern' Horizontal Kerning lookup 17 subtable" 1005 -23 "'kern' Horizontal Kerning lookup 17 subtable" 1004 -45 "'kern' Horizontal Kerning lookup 17 subtable" 999 -23 "'kern' Horizontal Kerning lookup 17 subtable" 997 -45 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni044F -Encoding: 1103 1103 1024 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 0 - 3 - 3 - 21 - 5 - 21 - 11 - 11 - 10 - 17 - 5 - 5 - 1 - 2 - 10 - 2 - 23 - 22 - 3 - 0 - 20 - 0 - 81 - 89 - 15 - 20 - 1 - 11 - 3 - 20 - 20 - 1 - 8 - 8 - 14 - 81 - 89 - 8 - 15 - 11 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-17" 610 1200 basechar 0 -LayerCount: 2 -Fore -SplineSet -535 458 m 1,0,-1 - 220 0 l 1,1,-1 - 17 0 l 1,2,-1 - 361 471 l 1,3,4 - 112 522 112 522 112 783 c 0,5,6 - 112 932 112 932 220 1007 c 128,-1,7 - 328 1082 328 1082 535 1082 c 2,8,-1 - 967 1082 l 1,9,-1 - 967 0 l 1,10,-1 - 787 0 l 1,11,-1 - 787 458 l 1,12,-1 - 535 458 l 1,0,-1 -787 955 m 1,13,-1 - 553 955 l 2,14,15 - 423 955 423 955 363 909 c 128,-1,16 - 303 863 303 863 303 770 c 0,17,18 - 303 676 303 676 356.5 629.5 c 128,-1,19 - 410 583 410 583 534 583 c 2,20,-1 - 787 583 l 1,21,-1 - 787 955 l 1,13,-1 -EndSplineSet -EndChar - -StartChar: uni0450 -Encoding: 1104 1104 1025 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 31 - 31 - 17 - 38 - 2 - 28 -PUSHW_1 - -51 -PUSHB_5 - 28 - 31 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 198 0 2 -EndChar - -StartChar: uni0451 -Encoding: 1105 1105 1026 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 26 - 26 - 17 - 38 - 3 - 2 - 30 - 4 - 30 - 28 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-17" 570 1540 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 248 0 2 -EndChar - -StartChar: uni0452 -Encoding: 1106 1106 1027 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 65 - 10 - 7 - 41 - 41 - 4 - 3 - 0 - 0 - 27 - 22 - 9 - 4 - 42 - 32 - 43 - 143 - 43 - 1 - 64 - 43 - 80 - 43 - 96 - 43 - 3 - 64 - 43 - 128 - 43 - 2 - 0 - 43 - 48 - 43 - 64 - 43 - 3 - 16 - 3 - 14 - 18 - 41 - 21 - 25 - 29 - 80 - 89 - 25 - 27 - 10 - 2 - 3 - 2 - 81 - 89 - 7 - 3 - 3 - 18 - 5 - 18 - 37 - 80 - 89 - 18 -PUSHW_1 - -64 -PUSHB_7 - 7 - 12 - 72 - 18 - 15 - 5 - 0 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP3 -DELTAP1 -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -142 0 m 1,0,-1 - 142 1206 l 1,1,-1 - 10 1206 l 1,2,-1 - 10 1337 l 1,3,-1 - 142 1337 l 1,4,-1 - 142 1484 l 1,5,-1 - 322 1484 l 1,6,-1 - 322 1337 l 1,7,-1 - 622 1337 l 1,8,-1 - 622 1206 l 1,9,-1 - 322 1206 l 1,10,-1 - 322 1058 l 2,11,12 - 322 997 322 997 318.5 932 c 128,-1,13 - 315 867 315 867 314 857 c 1,14,-1 - 317 857 l 1,15,16 - 375 963 375 963 456.5 1012.5 c 128,-1,17 - 538 1062 538 1062 663 1062 c 0,18,19 - 839 1062 839 1062 922.5 974.5 c 128,-1,20 - 1006 887 1006 887 1006 681 c 2,21,-1 - 1006 -134 l 2,22,23 - 1006 -287 1006 -287 946 -356 c 128,-1,24 - 886 -425 886 -425 766 -425 c 0,25,26 - 689 -425 689 -425 639 -416 c 1,27,-1 - 639 -277 l 1,28,-1 - 701 -283 l 1,29,30 - 771 -283 771 -283 798 -247 c 128,-1,31 - 825 -211 825 -211 825 -107 c 2,32,-1 - 825 646 l 2,33,34 - 825 760 825 760 804 815.5 c 128,-1,35 - 783 871 783 871 735 897 c 128,-1,36 - 687 923 687 923 602 923 c 0,37,38 - 475 923 475 923 398.5 835 c 128,-1,39 - 322 747 322 747 322 598 c 2,40,-1 - 322 0 l 1,41,-1 - 142 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0453 -Encoding: 1107 1107 1028 -Width: 747 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 6 - 17 - 38 - 1 - 6 - 85 - 6 - 9 - 4 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 996 1075 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 216 0 2 -EndChar - -StartChar: uni0454 -Encoding: 1108 1108 1029 -Width: 1045 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 92 - 10 - 9 - 9 - 23 - 24 - 15 - 18 - 18 - 3 - 3 - 17 - 24 - 3 - 28 - 27 - 15 - 28 - 1 - 10 - 3 - 15 - 18 - 80 - 89 - 15 - 15 - 31 - 15 - 111 - 15 - 127 - 15 - 143 - 15 - 5 - 15 - 15 - 207 - 15 - 223 - 15 - 3 - 11 - 3 - 15 - 15 - 0 - 6 - 6 - 12 - 80 - 89 - 31 - 10 - 47 - 10 - 127 - 10 - 143 - 10 - 223 - 10 - 5 - 10 - 64 - 29 - 32 - 72 - 10 - 10 - 6 - 16 - 0 - 23 - 16 - 23 - 32 - 23 - 96 - 23 - 112 - 23 - 128 - 23 - 192 - 23 - 208 - 23 - 8 - 9 - 3 - 23 -PUSHW_1 - -64 -NPUSHB - 12 - 27 - 34 - 72 - 23 - 23 - 0 - 0 - 20 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SDS -SDB -DELTAP1 -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -564 -20 m 0,0,1 - 332 -20 332 -20 209.5 123.5 c 128,-1,2 - 87 267 87 267 87 542 c 0,3,4 - 87 813 87 813 209 957.5 c 128,-1,5 - 331 1102 331 1102 562 1102 c 0,6,7 - 733 1102 733 1102 844 1018.5 c 128,-1,8 - 955 935 955 935 984 786 c 1,9,-1 - 799 772 l 1,10,11 - 767 968 767 968 557 968 c 0,12,13 - 418 968 418 968 351 884.5 c 128,-1,14 - 284 801 284 801 276 613 c 1,15,-1 - 688 613 l 1,16,-1 - 688 482 l 1,17,-1 - 275 482 l 1,18,19 - 293 115 293 115 559 115 c 0,20,21 - 659 115 659 115 725.5 166.5 c 128,-1,22 - 792 218 792 218 808 327 c 1,23,-1 - 990 315 l 1,24,25 - 969 161 969 161 855 70.5 c 128,-1,26 - 741 -20 741 -20 564 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0455 -Encoding: 1109 1109 1030 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni0456 -Encoding: 1110 1110 1031 -Width: 455 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 76 105 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni0457 -Encoding: 1111 1111 1032 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 4 - 4 - 17 - 38 - 2 - 1 - 8 -PUSHW_1 - -13 -PUSHB_5 - 8 - 6 - 0 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -53 0 2 -EndChar - -StartChar: uni0458 -Encoding: 1112 1112 1033 -Width: 455 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 77 106 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni0459 -Encoding: 1113 1113 1034 -Width: 1856 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 31 - 3 - 26 - 27 - 27 - 7 - 9 - 24 - 24 - 17 - 17 - 7 - 3 - 3 - 37 - 36 - 32 - 37 - 1 - 37 -PUSHW_1 - -64 -NPUSHB - 53 - 30 - 35 - 72 - 207 - 37 - 1 - 0 - 37 - 1 - 10 - 3 - 26 - 35 - 81 - 89 - 175 - 26 - 191 - 26 - 207 - 26 - 3 - 15 - 26 - 31 - 26 - 79 - 26 - 3 - 7 - 3 - 26 - 26 - 7 - 24 - 24 - 9 - 80 - 89 - 24 - 15 - 14 - 19 - 80 - 89 - 14 - 22 - 7 - 27 - 81 - 89 - 7 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -DELTAP2 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1357 624 m 2,0,1 - 1562 624 1562 624 1667 550.5 c 128,-1,2 - 1772 477 1772 477 1772 318 c 0,3,4 - 1772 164 1772 164 1664 82 c 128,-1,5 - 1556 0 1556 0 1358 0 c 2,6,-1 - 908 0 l 1,7,-1 - 908 951 l 1,8,-1 - 497 951 l 1,9,10 - 438 515 438 515 406 362.5 c 128,-1,11 - 374 210 374 210 337 132 c 128,-1,12 - 300 54 300 54 245.5 17 c 128,-1,13 - 191 -20 191 -20 105 -20 c 0,14,15 - 55 -20 55 -20 11 -7 c 1,16,-1 - 11 122 l 1,17,18 - 36 113 36 113 79 113 c 0,19,20 - 134 113 134 113 167.5 168 c 128,-1,21 - 201 223 201 223 228.5 358 c 128,-1,22 - 256 493 256 493 291 757 c 2,23,-1 - 335 1082 l 1,24,-1 - 1089 1082 l 1,25,-1 - 1089 624 l 1,26,-1 - 1357 624 l 2,0,1 -1089 127 m 1,27,-1 - 1331 127 l 2,28,29 - 1461 127 1461 127 1521 173 c 128,-1,30 - 1581 219 1581 219 1581 318 c 0,31,32 - 1581 412 1581 412 1523 455.5 c 128,-1,33 - 1465 499 1465 499 1332 499 c 2,34,-1 - 1089 499 l 1,35,-1 - 1089 127 l 1,27,-1 -EndSplineSet -EndChar - -StartChar: uni045A -Encoding: 1114 1114 1035 -Width: 1664 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 23 - 5 - 1 - 19 - 19 - 17 - 9 - 16 - 12 - 12 - 13 - 13 - 9 - 5 - 3 - 29 - 28 - 96 - 29 - 1 - 29 -PUSHW_1 - -64 -NPUSHB - 49 - 30 - 35 - 72 - 15 - 29 - 1 - 22 - 3 - 1 - 27 - 81 - 89 - 1 - 1 - 16 - 16 - 11 - 80 - 89 - 175 - 16 - 191 - 16 - 207 - 16 - 3 - 15 - 16 - 31 - 16 - 79 - 16 - 3 - 7 - 3 - 16 - 16 - 0 - 13 - 21 - 9 - 19 - 81 - 89 - 9 - 21 - 14 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -CALL -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -937 1082 m 1,0,-1 - 937 624 l 1,1,-1 - 1165 624 l 2,2,3 - 1370 624 1370 624 1475 550.5 c 128,-1,4 - 1580 477 1580 477 1580 318 c 0,5,6 - 1580 164 1580 164 1472 82 c 128,-1,7 - 1364 0 1364 0 1166 0 c 2,8,-1 - 756 0 l 1,9,-1 - 756 493 l 1,10,-1 - 322 493 l 1,11,-1 - 322 0 l 1,12,-1 - 142 0 l 1,13,-1 - 142 1082 l 1,14,-1 - 322 1082 l 1,15,-1 - 322 624 l 1,16,-1 - 756 624 l 1,17,-1 - 756 1082 l 1,18,-1 - 937 1082 l 1,0,-1 -937 127 m 1,19,-1 - 1139 127 l 2,20,21 - 1269 127 1269 127 1329 173 c 128,-1,22 - 1389 219 1389 219 1389 318 c 0,23,24 - 1389 412 1389 412 1331 455.5 c 128,-1,25 - 1273 499 1273 499 1140 499 c 2,26,-1 - 937 499 l 1,27,-1 - 937 127 l 1,19,-1 -EndSplineSet -EndChar - -StartChar: uni045B -Encoding: 1115 1115 1036 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 60 - 28 - 25 - 17 - 17 - 22 - 21 - 18 - 7 - 26 - 18 - 3 - 33 - 8 - 34 - 64 - 34 - 80 - 34 - 96 - 34 - 3 - 64 - 34 - 128 - 34 - 2 - 143 - 34 - 1 - 0 - 34 - 48 - 34 - 64 - 34 - 3 - 16 - 3 - 28 - 20 - 21 - 20 - 81 - 89 - 25 - 21 - 21 - 3 - 23 - 0 - 18 - 7 - 21 - 0 - 13 - 3 - 13 - 80 - 89 - 3 -PUSHW_1 - -64 -PUSHB_5 - 7 - 12 - 72 - 3 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -317 857 m 1,0,1 - 375 963 375 963 456.5 1012.5 c 128,-1,2 - 538 1062 538 1062 663 1062 c 0,3,4 - 839 1062 839 1062 922.5 974.5 c 128,-1,5 - 1006 887 1006 887 1006 681 c 2,6,-1 - 1006 0 l 1,7,-1 - 825 0 l 1,8,-1 - 825 646 l 2,9,10 - 825 760 825 760 804 815.5 c 128,-1,11 - 783 871 783 871 735 897 c 128,-1,12 - 687 923 687 923 602 923 c 0,13,14 - 475 923 475 923 398.5 835 c 128,-1,15 - 322 747 322 747 322 598 c 2,16,-1 - 322 0 l 1,17,-1 - 142 0 l 1,18,-1 - 142 1206 l 1,19,-1 - 10 1206 l 1,20,-1 - 10 1337 l 1,21,-1 - 142 1337 l 1,22,-1 - 142 1484 l 1,23,-1 - 322 1484 l 1,24,-1 - 322 1337 l 1,25,-1 - 622 1337 l 1,26,-1 - 622 1206 l 1,27,-1 - 322 1206 l 1,28,-1 - 322 1058 l 2,29,30 - 322 997 322 997 318.5 932 c 128,-1,31 - 315 867 315 867 314 857 c 1,32,-1 - 317 857 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni045C -Encoding: 1116 1116 1037 -Width: 896 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 20 - 17 - 38 - 1 - 20 - 81 - 20 - 23 - 0 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1003 1082 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 319 0 2 -EndChar - -StartChar: uni045D -Encoding: 1117 1117 1038 -Width: 1144 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 19 - 19 - 17 - 38 - 1 - 16 -PUSHW_1 - -84 -PUSHB_5 - 16 - 19 - 13 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1001 1080 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 170 0 2 -EndChar - -StartChar: uni045E -Encoding: 1118 1118 1039 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 23 - 23 - 17 - 38 - 1 - 25 - 10 - 25 - 31 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-17" 510 1580 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 2299 -1 N 1 0 0 1 183 0 2 -Kerns2: 17 -205 "'kern' Horizontal Kerning lookup 17 subtable" 15 -205 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni045F -Encoding: 1119 1119 1040 -Width: 1131 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 4 - 7 - 9 - 10 - 3 - 0 - 0 - 10 - 7 - 3 - 13 - 12 - 64 - 13 - 80 - 13 - 96 - 13 - 3 - 64 - 13 - 128 - 13 - 2 - 0 - 13 - 48 - 13 - 64 - 13 - 80 - 13 - 4 - 16 - 3 - 9 - 5 - 1 - 15 - 8 - 0 - 0 - 3 - 80 - 89 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -142 0 m 1,0,-1 - 142 1082 l 1,1,-1 - 322 1082 l 1,2,-1 - 322 131 l 1,3,-1 - 809 131 l 1,4,-1 - 809 1082 l 1,5,-1 - 989 1082 l 1,6,-1 - 989 0 l 1,7,-1 - 647 0 l 1,8,-1 - 647 -408 l 1,9,-1 - 484 -408 l 1,10,-1 - 484 0 l 1,11,-1 - 142 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0460 -Encoding: 1120 1120 1041 -Width: 2740 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 9 - 15 - 3 - 3 - 39 - 0 - 0 - 21 - 45 - 33 - 21 - 33 - 54 - 53 - 27 - 1 - 1 - 29 - 36 - 36 - 42 - 95 - 89 - 40 - 36 - 4 - 29 - 49 - 95 - 89 - 29 - 19 - 25 - 6 - 95 - 89 - 25 - 19 - 14 - 18 - 18 - 12 - 95 - 89 - 18 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1282 306 m 1,0,-1 - 1282 699 l 1,1,-1 - 1473 699 l 1,2,-1 - 1473 300 l 1,3,4 - 1547 224 1547 224 1659.5 181 c 128,-1,5 - 1772 138 1772 138 1905 138 c 0,6,7 - 2145 138 2145 138 2290.5 295.5 c 128,-1,8 - 2436 453 2436 453 2436 711 c 0,9,10 - 2436 974 2436 974 2306.5 1124 c 128,-1,11 - 2177 1274 2177 1274 1942 1274 c 0,12,13 - 1756 1274 1756 1274 1629 1170 c 1,14,-1 - 1513 1294 l 1,15,16 - 1590 1365 1590 1365 1693.5 1397.5 c 128,-1,17 - 1797 1430 1797 1430 1944 1430 c 0,18,19 - 2266 1430 2266 1430 2448 1239 c 128,-1,20 - 2630 1048 2630 1048 2630 711 c 0,21,22 - 2630 493 2630 493 2543.5 326 c 128,-1,23 - 2457 159 2457 159 2296.5 69.5 c 128,-1,24 - 2136 -20 2136 -20 1920 -20 c 0,25,26 - 1576 -20 1576 -20 1372 158 c 1,27,28 - 1166 -20 1166 -20 824 -20 c 0,29,30 - 609 -20 609 -20 448.5 69 c 128,-1,31 - 288 158 288 158 201 325 c 128,-1,32 - 114 492 114 492 114 711 c 0,33,34 - 114 1048 114 1048 296 1239 c 128,-1,35 - 478 1430 478 1430 800 1430 c 0,36,37 - 947 1430 947 1430 1050.5 1397.5 c 128,-1,38 - 1154 1365 1154 1365 1231 1294 c 1,39,-1 - 1115 1170 l 1,40,41 - 988 1274 988 1274 802 1274 c 0,42,43 - 568 1274 568 1274 438 1123.5 c 128,-1,44 - 308 973 308 973 308 711 c 0,45,46 - 308 543 308 543 374 412 c 128,-1,47 - 440 281 440 281 561 209.5 c 128,-1,48 - 682 138 682 138 839 138 c 0,49,50 - 974 138 974 138 1087 182 c 128,-1,51 - 1200 226 1200 226 1279 308 c 1,52,-1 - 1282 306 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0461 -Encoding: 1121 1121 1042 -Width: 1278 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 19 - 2 - 15 - 14 - 14 - 12 - 11 - 10 - 10 - 12 - 7 - 16 - 2 - 5 - 23 - 22 - 16 - 12 - 12 - 7 - 9 - 21 - 14 - 10 - 15 - 6 - 9 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1175 1082 m 1,0,1 - 1225 961 1225 961 1225 819 c 0,2,3 - 1225 652 1225 652 1153 442.5 c 128,-1,4 - 1081 233 1081 233 941 0 c 1,5,-1 - 781 0 l 1,6,-1 - 670 392 l 1,7,-1 - 535 0 l 1,8,-1 - 365 0 l 1,9,-1 - 15 1082 l 1,10,-1 - 198 1082 l 1,11,-1 - 465 168 l 1,12,-1 - 611 598 l 1,13,-1 - 474 1082 l 1,14,-1 - 657 1082 l 1,15,-1 - 881 168 l 1,16,17 - 964 322 964 322 1010 487.5 c 128,-1,18 - 1056 653 1056 653 1056 804 c 0,19,20 - 1056 960 1056 960 1008 1082 c 1,21,-1 - 1175 1082 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0462 -Encoding: 1122 1122 1043 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 19 - 12 - 8 - 4 - 24 - 24 - 1 - 16 - 0 - 16 - 6 - 12 - 4 - 28 - 27 - 8 - 23 - 95 - 89 - 7 - 18 - 0 - 18 - 96 - 89 - 4 - 0 - 8 - 0 - 8 - 0 - 16 - 2 - 16 - 24 - 95 - 89 - 16 - 18 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -21 1194 m 1,0,-1 - 417 1194 l 1,1,-1 - 417 1409 l 1,2,-1 - 608 1409 l 1,3,-1 - 608 1194 l 1,4,-1 - 1003 1194 l 1,5,-1 - 1003 1047 l 1,6,-1 - 608 1047 l 1,7,-1 - 608 813 l 1,8,-1 - 1015 813 l 2,9,10 - 1251 813 1251 813 1381.5 708 c 128,-1,11 - 1512 603 1512 603 1512 413 c 0,12,13 - 1512 226 1512 226 1383 113 c 128,-1,14 - 1254 0 1254 0 1027 0 c 2,15,-1 - 417 0 l 1,16,-1 - 417 1047 l 1,17,-1 - 21 1047 l 1,18,-1 - 21 1194 l 1,0,-1 -1320 407 m 0,19,20 - 1320 528 1320 528 1238 593.5 c 128,-1,21 - 1156 659 1156 659 992 659 c 2,22,-1 - 608 659 l 1,23,-1 - 608 151 l 1,24,-1 - 1000 151 l 2,25,26 - 1320 151 1320 151 1320 407 c 0,19,20 -EndSplineSet -EndChar - -StartChar: uni0463 -Encoding: 1123 1123 1044 -Width: 1255 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 22 - 12 - 8 - 4 - 19 - 19 - 1 - 16 - 0 - 16 - 6 - 12 - 4 - 28 - 27 - 8 - 26 - 81 - 89 - 8 - 8 - 16 - 0 - 16 - 19 - 81 - 89 - 16 - 21 - 2 - 0 - 7 - 18 - 0 - 18 - 80 - 89 - 4 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -21 1082 m 1,0,-1 - 322 1082 l 1,1,-1 - 322 1483 l 1,2,-1 - 502 1483 l 1,3,-1 - 502 1082 l 1,4,-1 - 800 1082 l 1,5,-1 - 800 943 l 1,6,-1 - 502 943 l 1,7,-1 - 502 660 l 1,8,-1 - 775 660 l 2,9,10 - 980 660 980 660 1085 576 c 128,-1,11 - 1190 492 1190 492 1190 333 c 0,12,13 - 1190 176 1190 176 1081.5 88 c 128,-1,14 - 973 0 973 0 776 0 c 2,15,-1 - 322 0 l 1,16,-1 - 322 943 l 1,17,-1 - 21 943 l 1,18,-1 - 21 1082 l 1,0,-1 -502 127 m 1,19,-1 - 749 127 l 2,20,21 - 999 127 999 127 999 333 c 0,22,23 - 999 427 999 427 941 478 c 128,-1,24 - 883 529 883 529 750 529 c 2,25,-1 - 502 529 l 1,26,-1 - 502 127 l 1,19,-1 -EndSplineSet -EndChar - -StartChar: uni0464 -Encoding: 1124 1124 1045 -Width: 1945 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 75 - 3 - 33 - 33 - 0 - 17 - 9 - 16 - 16 - 19 - 19 - 4 - 31 - 10 - 9 - 9 - 24 - 25 - 25 - 31 - 0 - 3 - 34 - 35 - 0 - 24 - 16 - 24 - 64 - 24 - 80 - 24 - 144 - 24 - 160 - 24 - 208 - 24 - 224 - 24 - 8 - 12 - 3 - 24 - 24 - 28 - 28 - 22 - 95 - 89 - 28 - 19 - 7 - 13 - 95 - 89 - 10 - 10 - 7 - 4 - 19 - 32 - 3 - 32 - 95 - 89 - 16 - 47 - 3 - 1 - 3 - 3 - 1 - 3 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -189 0 m 1,0,-1 - 189 1409 l 1,1,-1 - 380 1409 l 1,2,-1 - 380 791 l 1,3,-1 - 582 791 l 1,4,5 - 603 1096 603 1096 779.5 1263 c 128,-1,6 - 956 1430 956 1430 1255 1430 c 0,7,8 - 1700 1430 1700 1430 1843 1081 c 1,9,-1 - 1662 1021 l 1,10,11 - 1612 1147 1612 1147 1508 1210.5 c 128,-1,12 - 1404 1274 1404 1274 1257 1274 c 0,13,14 - 1045 1274 1045 1274 921 1148 c 128,-1,15 - 797 1022 797 1022 776 792 c 1,16,-1 - 1410 792 l 1,17,-1 - 1410 638 l 1,18,-1 - 776 638 l 1,19,20 - 795 407 795 407 924 272 c 128,-1,21 - 1053 137 1053 137 1265 137 c 0,22,23 - 1557 137 1557 137 1700 429 c 1,24,-1 - 1856 352 l 1,25,26 - 1757 157 1757 157 1610 68.5 c 128,-1,27 - 1463 -20 1463 -20 1256 -20 c 0,28,29 - 953 -20 953 -20 776.5 154.5 c 128,-1,30 - 600 329 600 329 581 638 c 1,31,-1 - 380 638 l 1,32,-1 - 380 0 l 1,33,-1 - 189 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0465 -Encoding: 1125 1125 1046 -Width: 1461 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 90 - 10 - 25 - 3 - 33 - 33 - 16 - 19 - 19 - 4 - 31 - 31 - 18 - 0 - 25 - 25 - 0 - 35 - 34 - 32 - 24 - 112 - 24 - 128 - 24 - 208 - 24 - 224 - 24 - 5 - 0 - 24 - 16 - 24 - 96 - 24 - 112 - 24 - 128 - 24 - 192 - 24 - 208 - 24 - 7 - 9 - 3 - 24 - 24 - 28 - 28 - 21 - 80 - 89 - 28 - 22 - 7 - 13 - 80 - 89 - 15 - 11 - 111 - 11 - 127 - 11 - 207 - 11 - 4 - 10 - 3 - 11 - 11 - 7 - 16 - 19 - 32 - 3 - 32 - 81 - 89 - 16 - 47 - 3 - 1 - 3 - 3 - 1 - 15 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -136 0 m 1,0,-1 - 136 1082 l 1,1,-1 - 316 1082 l 1,2,-1 - 316 613 l 1,3,-1 - 499 613 l 1,4,5 - 514 852 514 852 636 977 c 128,-1,6 - 758 1102 758 1102 972 1102 c 0,7,8 - 1143 1102 1143 1102 1254 1018.5 c 128,-1,9 - 1365 935 1365 935 1394 786 c 1,10,-1 - 1209 772 l 1,11,12 - 1177 968 1177 968 967 968 c 0,13,14 - 828 968 828 968 761 884.5 c 128,-1,15 - 694 801 694 801 686 613 c 1,16,-1 - 1098 613 l 1,17,-1 - 1098 482 l 1,18,-1 - 685 482 l 1,19,20 - 703 115 703 115 969 115 c 0,21,22 - 1069 115 1069 115 1135.5 166.5 c 128,-1,23 - 1202 218 1202 218 1218 327 c 1,24,-1 - 1400 315 l 1,25,26 - 1379 161 1379 161 1265 70.5 c 128,-1,27 - 1151 -20 1151 -20 974 -20 c 0,28,29 - 755 -20 755 -20 633.5 108 c 128,-1,30 - 512 236 512 236 498 482 c 1,31,-1 - 316 482 l 1,32,-1 - 316 0 l 1,33,-1 - 136 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0466 -Encoding: 1126 1126 1047 -Width: 1368 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 7 - 6 - 2 - 3 - 17 - 10 - 10 - 16 - 11 - 3 - 6 - 11 - 3 - 22 - 21 - 9 - 1 - 16 - 1 - 95 - 89 - 12 - 4 - 16 - 16 - 3 - 4 - 3 - 11 - 7 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -596 532 m 1,0,-1 - 411 532 l 1,1,-1 - 202 0 l 1,2,-1 - 4 0 l 1,3,-1 - 579 1409 l 1,4,-1 - 796 1409 l 1,5,-1 - 1362 0 l 1,6,-1 - 1167 0 l 1,7,-1 - 959 532 l 1,8,-1 - 771 532 l 1,9,-1 - 771 0 l 1,10,-1 - 596 0 l 1,11,-1 - 596 532 l 1,0,-1 -685 1265 m 1,12,-1 - 676 1237 l 2,13,14 - 664 1198 664 1198 638.5 1125 c 128,-1,15 - 613 1052 613 1052 469 681 c 1,16,-1 - 902 681 l 1,17,-1 - 768 1026 l 2,18,19 - 740 1095 740 1095 712 1182 c 2,20,-1 - 685 1265 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: uni0467 -Encoding: 1127 1127 1048 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 8 - 9 - 1 - 0 - 12 - 4 - 4 - 14 - 5 - 9 - 5 - 0 - 3 - 16 - 15 - 3 - 7 - 14 - 7 - 80 - 89 - 13 - 10 - 14 - 14 - 9 - 10 - 15 - 5 - 1 - 9 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1020 0 m 1,0,-1 - 850 0 l 1,1,-1 - 710 368 l 1,2,-1 - 594 368 l 1,3,-1 - 594 0 l 1,4,-1 - 430 0 l 1,5,-1 - 430 368 l 1,6,-1 - 318 368 l 1,7,-1 - 181 0 l 1,8,-1 - 6 0 l 1,9,-1 - 430 1082 l 1,10,-1 - 598 1082 l 1,11,-1 - 1020 0 l 1,0,-1 -664 504 m 1,12,-1 - 512 906 l 1,13,-1 - 364 504 l 1,14,-1 - 664 504 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: uni0468 -Encoding: 1128 1128 1049 -Width: 1838 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 8 - 7 - 3 - 19 - 19 - 0 - 15 - 4 - 16 - 25 - 11 - 11 - 24 - 12 - 7 - 12 - 16 - 0 - 4 - 29 - 30 - 14 - 10 - 18 - 3 - 18 - 96 - 89 - 24 - 20 - 5 - 3 - 3 - 5 - 3 - 1 - 3 - 16 - 12 - 8 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -SHP[rp2] -SHP[rp2] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -SRP2 -IP -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -191 0 m 1,0,-1 - 191 1409 l 1,1,-1 - 382 1409 l 1,2,-1 - 382 681 l 1,3,-1 - 748 681 l 1,4,-1 - 1045 1409 l 1,5,-1 - 1262 1409 l 1,6,-1 - 1828 0 l 1,7,-1 - 1633 0 l 1,8,-1 - 1425 532 l 1,9,-1 - 1237 532 l 1,10,-1 - 1237 0 l 1,11,-1 - 1062 0 l 1,12,-1 - 1062 532 l 1,13,-1 - 877 532 l 1,14,-1 - 668 0 l 1,15,-1 - 470 0 l 1,16,-1 - 687 533 l 1,17,-1 - 382 533 l 1,18,-1 - 382 0 l 1,19,-1 - 191 0 l 1,0,-1 -1151 1265 m 1,20,-1 - 1142 1237 l 2,21,22 - 1130 1198 1130 1198 1104.5 1125 c 128,-1,23 - 1079 1052 1079 1052 935 681 c 1,24,-1 - 1368 681 l 1,25,-1 - 1234 1026 l 2,26,27 - 1206 1095 1206 1095 1178 1182 c 2,28,-1 - 1151 1265 l 1,20,-1 -EndSplineSet -EndChar - -StartChar: uni0469 -Encoding: 1129 1129 1050 -Width: 1424 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 8 - 7 - 3 - 19 - 19 - 0 - 15 - 4 - 16 - 20 - 11 - 11 - 22 - 12 - 7 - 12 - 16 - 0 - 4 - 23 - 24 - 14 - 10 - 18 - 3 - 18 - 80 - 89 - 22 - 21 - 1 - 3 - 3 - 5 - 1 - 15 - 16 - 12 - 8 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -SHP[rp2] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -IP -MDAP[rnd] -SRP2 -IP -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -134 0 m 1,0,-1 - 134 1082 l 1,1,-1 - 314 1082 l 1,2,-1 - 314 504 l 1,3,-1 - 603 504 l 1,4,-1 - 830 1082 l 1,5,-1 - 998 1082 l 1,6,-1 - 1420 0 l 1,7,-1 - 1250 0 l 1,8,-1 - 1110 368 l 1,9,-1 - 994 368 l 1,10,-1 - 994 0 l 1,11,-1 - 830 0 l 1,12,-1 - 830 368 l 1,13,-1 - 718 368 l 1,14,-1 - 581 0 l 1,15,-1 - 406 0 l 1,16,-1 - 550 369 l 1,17,-1 - 314 369 l 1,18,-1 - 314 0 l 1,19,-1 - 134 0 l 1,0,-1 -1064 504 m 1,20,-1 - 912 906 l 1,21,-1 - 764 504 l 1,22,-1 - 1064 504 l 1,20,-1 -EndSplineSet -EndChar - -StartChar: uni046A -Encoding: 1130 1130 1051 -Width: 1697 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 24 - 4 - 3 - 27 - 22 - 22 - 11 - 26 - 0 - 0 - 10 - 10 - 11 - 23 - 17 - 17 - 18 - 18 - 11 - 3 - 3 - 29 - 28 - 9 - 12 - 22 - 12 - 96 - 89 - 25 - 0 - 22 - 22 - 18 - 23 - 23 - 27 - 95 - 89 - 23 - 3 - 11 - 4 - 18 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1045 773 m 1,0,1 - 1577 726 1577 726 1577 205 c 2,2,-1 - 1577 0 l 1,3,-1 - 1397 0 l 1,4,-1 - 1397 180 l 2,5,6 - 1397 344 1397 344 1351.5 436.5 c 128,-1,7 - 1306 529 1306 529 1207 575 c 128,-1,8 - 1108 621 1108 621 944 626 c 1,9,-1 - 944 0 l 1,10,-1 - 754 0 l 1,11,-1 - 754 626 l 1,12,13 - 589 621 589 621 490.5 575 c 128,-1,14 - 392 529 392 529 346.5 437.5 c 128,-1,15 - 301 346 301 346 301 180 c 2,16,-1 - 301 0 l 1,17,-1 - 121 0 l 1,18,-1 - 121 205 l 2,19,20 - 121 470 121 470 254 609.5 c 128,-1,21 - 387 749 387 749 653 773 c 1,22,-1 - 212 1409 l 1,23,-1 - 1488 1409 l 1,24,-1 - 1045 773 l 1,0,1 -851 766 m 1,25,-1 - 1174 1253 l 1,26,-1 - 526 1253 l 1,27,-1 - 851 766 l 1,25,-1 -EndSplineSet -EndChar - -StartChar: uni046B -Encoding: 1131 1131 1052 -Width: 1403 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 21 - 1 - 1 - 0 - 28 - 19 - 19 - 8 - 27 - 22 - 22 - 7 - 7 - 8 - 20 - 14 - 14 - 15 - 15 - 8 - 0 - 3 - 31 - 30 - 6 - 9 - 29 - 9 - 81 - 89 - 22 - 19 - 29 - 19 - 29 - 19 - 15 - 20 - 20 - 28 - 80 - 89 - 20 - 15 - 8 - 1 - 15 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1281 0 m 1,0,-1 - 1111 0 l 1,1,-1 - 1111 70 l 2,2,3 - 1111 214 1111 214 1081.5 286.5 c 128,-1,4 - 1052 359 1052 359 984 393 c 128,-1,5 - 916 427 916 427 785 431 c 1,6,-1 - 785 0 l 1,7,-1 - 616 0 l 1,8,-1 - 616 431 l 1,9,10 - 492 431 492 431 423 396.5 c 128,-1,11 - 354 362 354 362 323 287.5 c 128,-1,12 - 292 213 292 213 292 70 c 2,13,-1 - 292 0 l 1,14,-1 - 122 0 l 1,15,-1 - 122 70 l 2,16,17 - 122 324 122 324 213 434 c 128,-1,18 - 304 544 304 544 521 564 c 1,19,-1 - 211 1082 l 1,20,-1 - 1195 1082 l 1,21,-1 - 883 564 l 1,22,23 - 1031 550 1031 550 1117.5 496.5 c 128,-1,24 - 1204 443 1204 443 1242.5 344 c 128,-1,25 - 1281 245 1281 245 1281 70 c 2,26,-1 - 1281 0 l 1,0,-1 -921 943 m 1,27,-1 - 488 943 l 1,28,-1 - 702 557 l 1,29,-1 - 921 943 l 1,27,-1 -EndSplineSet -EndChar - -StartChar: uni046C -Encoding: 1132 1132 1053 -Width: 2157 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 11 - 6 - 10 - 32 - 7 - 7 - 17 - 17 - 18 - 33 - 4 - 4 - 18 - 28 - 5 - 24 - 24 - 25 - 3 - 30 - 30 - 0 - 0 - 25 - 18 - 10 - 4 - 35 - 34 - 19 - 16 - 29 - 3 - 29 - 96 - 89 - 31 - 7 - 3 - 3 - 0 - 5 - 5 - 33 - 95 - 89 - 5 - 3 - 1 - 3 - 25 - 18 - 11 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -SHP[rp2] -SHP[rp2] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -189 0 m 1,0,-1 - 189 1409 l 1,1,-1 - 380 1409 l 1,2,-1 - 380 773 l 1,3,-1 - 1114 773 l 1,4,-1 - 673 1409 l 1,5,-1 - 1949 1409 l 1,6,-1 - 1506 773 l 1,7,8 - 2038 726 2038 726 2038 205 c 2,9,-1 - 2038 0 l 1,10,-1 - 1858 0 l 1,11,-1 - 1858 180 l 2,12,13 - 1858 344 1858 344 1812.5 436.5 c 128,-1,14 - 1767 529 1767 529 1668 575 c 128,-1,15 - 1569 621 1569 621 1405 626 c 1,16,-1 - 1405 0 l 1,17,-1 - 1215 0 l 1,18,-1 - 1215 626 l 1,19,20 - 1050 621 1050 621 951.5 575 c 128,-1,21 - 853 529 853 529 807.5 437.5 c 128,-1,22 - 762 346 762 346 762 180 c 2,23,-1 - 762 0 l 1,24,-1 - 582 0 l 1,25,-1 - 582 205 l 2,26,27 - 582 503 582 503 749 627 c 1,28,-1 - 380 627 l 1,29,-1 - 380 0 l 1,30,-1 - 189 0 l 1,0,-1 -1312 766 m 1,31,-1 - 1635 1253 l 1,32,-1 - 987 1253 l 1,33,-1 - 1312 766 l 1,31,-1 -EndSplineSet -EndChar - -StartChar: uni046D -Encoding: 1133 1133 1054 -Width: 1776 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 56 - 6 - 13 - 13 - 12 - 34 - 7 - 7 - 19 - 19 - 20 - 35 - 4 - 4 - 20 - 31 - 5 - 26 - 26 - 27 - 3 - 33 - 33 - 0 - 0 - 27 - 20 - 12 - 4 - 38 - 37 - 21 - 18 - 32 - 3 - 32 - 80 - 89 - 36 - 7 - 3 - 3 - 0 - 5 - 5 - 35 - 80 - 89 - 5 - 15 - 1 - 15 - 27 - 20 - 13 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -SHP[rp2] -SHP[rp2] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -136 0 m 1,0,-1 - 136 1082 l 1,1,-1 - 316 1082 l 1,2,-1 - 316 564 l 1,3,-1 - 894 564 l 1,4,-1 - 584 1082 l 1,5,-1 - 1568 1082 l 1,6,-1 - 1256 564 l 1,7,8 - 1404 550 1404 550 1490.5 496.5 c 128,-1,9 - 1577 443 1577 443 1615.5 344 c 128,-1,10 - 1654 245 1654 245 1654 70 c 2,11,-1 - 1654 0 l 1,12,-1 - 1484 0 l 1,13,-1 - 1484 70 l 2,14,15 - 1484 214 1484 214 1454.5 286.5 c 128,-1,16 - 1425 359 1425 359 1357 393 c 128,-1,17 - 1289 427 1289 427 1158 431 c 1,18,-1 - 1158 0 l 1,19,-1 - 989 0 l 1,20,-1 - 989 431 l 1,21,22 - 865 431 865 431 796 396.5 c 128,-1,23 - 727 362 727 362 696 287.5 c 128,-1,24 - 665 213 665 213 665 70 c 2,25,-1 - 665 0 l 1,26,-1 - 495 0 l 1,27,-1 - 495 70 l 2,28,29 - 495 224 495 224 523 306 c 128,-1,30 - 551 388 551 388 611 431 c 1,31,-1 - 316 431 l 1,32,-1 - 316 0 l 1,33,-1 - 136 0 l 1,0,-1 -1294 943 m 1,34,-1 - 861 943 l 1,35,-1 - 1075 557 l 1,36,-1 - 1294 943 l 1,34,-1 -EndSplineSet -EndChar - -StartChar: uni046E -Encoding: 1134 1134 1055 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 77 - 28 - 20 - 22 - 41 - 22 - 5 - 3 - 38 - 15 - 16 - 16 - 54 - 75 - 65 - 64 - 9 - 38 - 0 - 44 - 44 - 38 - 64 - 75 - 4 - 85 - 86 - 67 - 61 - 95 - 89 - 0 - 67 - 1 - 12 - 3 - 67 - 67 - 72 - 41 - 5 - 4 - 5 - 4 - 96 - 89 - 50 - 79 - 79 - 72 - 5 - 5 - 35 - 65 - 72 - 72 - 56 - 95 - 89 - 72 - 31 - 21 - 21 - 26 - 35 - 64 - 22 - 19 - 35 - 15 - 15 - 35 - 35 - 12 - 96 - 89 - 35 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -SMD -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -SHP[rp2] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -RTG -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -943 403 m 0,0,1 - 943 536 943 536 847 595 c 128,-1,2 - 751 654 751 654 549 654 c 2,3,-1 - 478 654 l 1,4,-1 - 478 802 l 1,5,-1 - 549 802 l 2,6,7 - 730 802 730 802 816.5 861.5 c 128,-1,8 - 903 921 903 921 903 1044 c 0,9,10 - 903 1151 903 1151 830.5 1212.5 c 128,-1,11 - 758 1274 758 1274 623 1274 c 0,12,13 - 497 1274 497 1274 411 1215.5 c 128,-1,14 - 325 1157 325 1157 274 1027 c 1,15,-1 - 96 1088 l 1,16,17 - 151 1225 151 1225 247.5 1308.5 c 128,-1,18 - 344 1392 344 1392 495 1418 c 1,19,-1 - 311 1757 l 1,20,-1 - 467 1757 l 1,21,-1 - 630 1432 l 1,22,-1 - 721 1648 l 2,23,24 - 750 1715 750 1715 786 1743 c 128,-1,25 - 822 1771 822 1771 876 1771 c 0,26,27 - 959 1771 959 1771 1004 1694 c 1,28,-1 - 938 1632 l 1,29,30 - 921 1662 921 1662 893 1662 c 0,31,32 - 879 1662 879 1662 868.5 1654.5 c 128,-1,33 - 858 1647 858 1647 845 1618 c 2,34,-1 - 757 1418 l 1,35,36 - 914 1390 914 1390 1004 1295.5 c 128,-1,37 - 1094 1201 1094 1201 1094 1061 c 0,38,39 - 1094 934 1094 934 1022 851 c 128,-1,40 - 950 768 950 768 814 736 c 1,41,42 - 966 713 966 713 1051 625.5 c 128,-1,43 - 1136 538 1136 538 1136 406 c 0,44,45 - 1136 315 1136 315 1112 250 c 128,-1,46 - 1088 185 1088 185 1047 139 c 128,-1,47 - 1006 93 1006 93 948.5 63.5 c 128,-1,48 - 891 34 891 34 821.5 16 c 128,-1,49 - 752 -2 752 -2 592 -21 c 0,50,51 - 441 -38 441 -38 386.5 -54 c 128,-1,52 - 332 -70 332 -70 302.5 -95.5 c 128,-1,53 - 273 -121 273 -121 273 -162 c 0,54,55 - 273 -270 273 -270 437 -270 c 0,56,57 - 495 -270 495 -270 548.5 -256.5 c 128,-1,58 - 602 -243 602 -243 651.5 -226.5 c 128,-1,59 - 701 -210 701 -210 747.5 -196 c 128,-1,60 - 794 -182 794 -182 839 -182 c 0,61,62 - 933 -182 933 -182 987.5 -247 c 128,-1,63 - 1042 -312 1042 -312 1042 -412 c 1,64,-1 - 890 -412 l 1,65,66 - 890 -335 890 -335 816 -335 c 0,67,68 - 787 -335 787 -335 744 -349 c 128,-1,69 - 701 -363 701 -363 647 -380 c 128,-1,70 - 593 -397 593 -397 530 -411 c 128,-1,71 - 467 -425 467 -425 400 -425 c 0,72,73 - 264 -425 264 -425 183 -353 c 128,-1,74 - 102 -281 102 -281 102 -159 c 0,75,76 - 102 -72 102 -72 144 -17 c 128,-1,77 - 186 38 186 38 264 69 c 128,-1,78 - 342 100 342 100 503 115 c 0,79,80 - 650 129 650 129 704 140 c 128,-1,81 - 758 151 758 151 801.5 169.5 c 128,-1,82 - 845 188 845 188 876.5 219 c 128,-1,83 - 908 250 908 250 925.5 294.5 c 128,-1,84 - 943 339 943 339 943 403 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni046F -Encoding: 1135 1135 1056 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 76 - 68 - 67 - 8 - 49 - 14 - 32 - 24 - 26 - 45 - 26 - 11 - 3 - 42 - 20 - 21 - 21 - 57 - 0 - 0 - 42 - 49 - 67 - 4 - 79 - 78 - 70 - 64 - 80 - 89 - 0 - 70 - 1 - 12 - 3 - 70 - 70 - 75 - 53 - 4 - 45 - 11 - 10 - 11 - 10 - 80 - 89 - 4 - 75 - 11 - 11 - 39 - 67 - 75 - 75 - 59 - 80 - 89 - 75 - 35 - 25 - 25 - 30 - 39 - 64 - 26 - 23 - 39 - 20 - 20 - 39 - 39 - 17 - 81 - 89 - 39 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -SMD -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -SHP[rp2] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -RTG -MDAP[rnd] -SRP2 -IP -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -32 -159 m 0,0,1 - 32 -81 32 -81 68 -31.5 c 128,-1,2 - 104 18 104 18 170.5 48 c 128,-1,3 - 237 78 237 78 375 98 c 0,4,5 - 507 117 507 117 560.5 139.5 c 128,-1,6 - 614 162 614 162 642.5 200 c 128,-1,7 - 671 238 671 238 671 299 c 0,8,9 - 671 499 671 499 340 499 c 1,10,-1 - 340 636 l 1,11,12 - 501 636 501 636 577 678 c 128,-1,13 - 653 720 653 720 653 808 c 0,14,15 - 653 882 653 882 603.5 925 c 128,-1,16 - 554 968 554 968 461 968 c 0,17,18 - 372 968 372 968 315.5 931 c 128,-1,19 - 259 894 259 894 247 824 c 1,20,-1 - 85 844 l 1,21,22 - 121 1046 121 1046 333 1090 c 1,23,-1 - 145 1435 l 1,24,-1 - 301 1435 l 1,25,-1 - 464 1110 l 1,26,-1 - 555 1326 l 2,27,28 - 584 1393 584 1393 620 1421 c 128,-1,29 - 656 1449 656 1449 710 1449 c 0,30,31 - 793 1449 793 1449 838 1372 c 1,32,-1 - 772 1310 l 1,33,34 - 755 1340 755 1340 727 1340 c 0,35,36 - 713 1340 713 1340 702.5 1332.5 c 128,-1,37 - 692 1325 692 1325 679 1296 c 2,38,-1 - 588 1088 l 1,39,40 - 700 1062 700 1062 768 990.5 c 128,-1,41 - 836 919 836 919 836 817 c 0,42,43 - 836 716 836 716 763.5 648 c 128,-1,44 - 691 580 691 580 588 571 c 1,45,-1 - 588 569 l 1,46,47 - 709 556 709 556 785.5 484.5 c 128,-1,48 - 862 413 862 413 862 304 c 0,49,50 - 862 209 862 209 821 142.5 c 128,-1,51 - 780 76 780 76 694 36 c 128,-1,52 - 608 -4 608 -4 429 -30 c 0,53,54 - 317 -49 317 -49 277.5 -64.5 c 128,-1,55 - 238 -80 238 -80 217 -103 c 128,-1,56 - 196 -126 196 -126 196 -162 c 0,57,58 - 196 -278 196 -278 348 -278 c 0,59,60 - 406 -278 406 -278 452 -262.5 c 128,-1,61 - 498 -247 498 -247 539 -229 c 128,-1,62 - 580 -211 580 -211 619 -195.5 c 128,-1,63 - 658 -180 658 -180 703 -180 c 0,64,65 - 794 -180 794 -180 847 -242.5 c 128,-1,66 - 900 -305 900 -305 900 -409 c 1,67,-1 - 748 -409 l 1,68,69 - 748 -332 748 -332 674 -332 c 0,70,71 - 645 -332 645 -332 610.5 -346.5 c 128,-1,72 - 576 -361 576 -361 532.5 -378.5 c 128,-1,73 - 489 -396 489 -396 435 -410.5 c 128,-1,74 - 381 -425 381 -425 313 -425 c 0,75,76 - 190 -425 190 -425 111 -350 c 128,-1,77 - 32 -275 32 -275 32 -159 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0470 -Encoding: 1136 1136 1057 -Width: 1631 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 20 - 23 - 16 - 28 - 28 - 13 - 0 - 8 - 7 - 7 - 0 - 23 - 3 - 30 - 29 - 27 - 1 - 13 - 1 - 96 - 89 - 16 - 13 - 13 - 21 - 14 - 7 - 3 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -713 0 m 1,0,-1 - 713 427 l 1,1,2 - 614 427 614 427 538 454 c 128,-1,3 - 462 481 462 481 405 534.5 c 128,-1,4 - 348 588 348 588 302 679.5 c 128,-1,5 - 256 771 256 771 205 946 c 2,6,-1 - 67 1409 l 1,7,-1 - 258 1409 l 1,8,-1 - 396 942 l 2,9,10 - 444 779 444 779 484 711.5 c 128,-1,11 - 524 644 524 644 578.5 608.5 c 128,-1,12 - 633 573 633 573 713 573 c 1,13,-1 - 713 1409 l 1,14,-1 - 898 1409 l 1,15,-1 - 898 573 l 1,16,-1 - 954 573 l 2,17,18 - 1131 573 1131 573 1228 675 c 128,-1,19 - 1325 777 1325 777 1325 952 c 2,20,-1 - 1325 1409 l 1,21,-1 - 1516 1409 l 1,22,-1 - 1516 956 l 2,23,24 - 1516 712 1516 712 1373.5 569.5 c 128,-1,25 - 1231 427 1231 427 981 427 c 2,26,-1 - 898 427 l 1,27,-1 - 898 0 l 1,28,-1 - 713 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0471 -Encoding: 1137 1137 1058 -Width: 1410 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 18 - 17 - 0 - 10 - 10 - 22 - 11 - 4 - 5 - 5 - 11 - 17 - 3 - 25 - 26 - 23 - 4 - 17 - 15 - 0 - 22 - 12 - 22 - 80 - 89 - 9 - 12 - 22 - 11 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -767 119 m 1,0,1 - 946 121 946 121 1025.5 199.5 c 128,-1,2 - 1105 278 1105 278 1105 456 c 2,3,-1 - 1105 1082 l 1,4,-1 - 1287 1082 l 1,5,-1 - 1287 458 l 2,6,7 - 1287 213 1287 213 1160 97.5 c 128,-1,8 - 1033 -18 1033 -18 767 -20 c 1,9,-1 - 767 -425 l 1,10,-1 - 597 -425 l 1,11,-1 - 597 -20 l 1,12,13 - 478 -18 478 -18 405 22.5 c 128,-1,14 - 332 63 332 63 286 152.5 c 128,-1,15 - 240 242 240 242 200 438 c 2,16,-1 - 68 1082 l 1,17,-1 - 249 1082 l 1,18,-1 - 391 396 l 2,19,20 - 426 226 426 226 468 173.5 c 128,-1,21 - 510 121 510 121 597 119 c 1,22,-1 - 597 1082 l 1,23,-1 - 767 1082 l 1,24,-1 - 767 119 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0472 -Encoding: 1138 1138 1059 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 44 - 18 - 18 - 0 - 33 - 27 - 27 - 8 - 0 - 8 - 48 - 47 - 42 - 20 - 95 - 89 - 36 - 25 - 95 - 89 - 15 - 36 - 1 - 12 - 3 - 42 - 36 - 42 - 36 - 4 - 11 - 11 - 30 - 95 - 89 - 11 - 4 - 4 - 15 - 95 - 89 - 4 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1495 711 m 0,0,1 - 1495 490 1495 490 1410.5 324 c 128,-1,2 - 1326 158 1326 158 1168 69 c 128,-1,3 - 1010 -20 1010 -20 795 -20 c 0,4,5 - 578 -20 578 -20 420.5 68 c 128,-1,6 - 263 156 263 156 180 322.5 c 128,-1,7 - 97 489 97 489 97 711 c 0,8,9 - 97 1049 97 1049 282 1239.5 c 128,-1,10 - 467 1430 467 1430 797 1430 c 0,11,12 - 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 - 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 - 1495 933 1495 933 1495 711 c 0,0,1 -795 135 m 0,15,16 - 1013 135 1013 135 1142 258 c 128,-1,17 - 1271 381 1271 381 1295 612 c 1,18,19 - 1162 560 1162 560 1075 560 c 0,20,21 - 1000 560 1000 560 935.5 581.5 c 128,-1,22 - 871 603 871 603 811 629.5 c 128,-1,23 - 751 656 751 656 692.5 677.5 c 128,-1,24 - 634 699 634 699 572 699 c 0,25,26 - 420 699 420 699 295 626 c 1,27,28 - 316 395 316 395 447.5 265 c 128,-1,29 - 579 135 579 135 795 135 c 0,15,16 -797 1274 m 256,30,31 - 575 1274 575 1274 444.5 1149 c 128,-1,32 - 314 1024 314 1024 294 786 c 1,33,34 - 355 813 355 813 422.5 833 c 128,-1,35 - 490 853 490 853 571 853 c 0,36,37 - 633 853 633 853 695.5 836 c 128,-1,38 - 758 819 758 819 834 783 c 0,39,40 - 913 746 913 746 969.5 729.5 c 128,-1,41 - 1026 713 1026 713 1081 713 c 0,42,43 - 1199 713 1199 713 1298 770 c 1,44,45 - 1281 1011 1281 1011 1150 1142.5 c 128,-1,46 - 1019 1274 1019 1274 797 1274 c 256,30,31 -EndSplineSet -EndChar - -StartChar: uni0473 -Encoding: 1139 1139 1060 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 34 - 13 - 6 - 28 - 19 - 19 - 0 - 6 - 0 - 41 - 42 - 26 - 21 - 80 - 89 - 36 - 11 - 80 - 89 - 15 - 26 - 1 - 11 - 3 - 26 - 36 - 26 - 36 - 3 - 8 - 8 - 31 - 80 - 89 - 8 - 16 - 3 - 16 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1053 542 m 0,0,1 - 1053 258 1053 258 928 119 c 128,-1,2 - 803 -20 803 -20 565 -20 c 0,3,4 - 328 -20 328 -20 207 124.5 c 128,-1,5 - 86 269 86 269 86 542 c 0,6,7 - 86 1102 86 1102 571 1102 c 0,8,9 - 819 1102 819 1102 936 965.5 c 128,-1,10 - 1053 829 1053 829 1053 542 c 0,0,1 -405 549 m 0,11,12 - 336 549 336 549 275 514 c 1,13,14 - 280 308 280 308 350.5 210.5 c 128,-1,15 - 421 113 421 113 563 113 c 0,16,17 - 714 113 714 113 783.5 201 c 128,-1,18 - 853 289 853 289 862 474 c 1,19,20 - 789 442 789 442 735 442 c 0,21,22 - 683 442 683 442 639.5 458.5 c 128,-1,23 - 596 475 596 475 557 495.5 c 128,-1,24 - 518 516 518 516 481 532.5 c 128,-1,25 - 444 549 444 549 405 549 c 0,11,12 -738 580 m 0,26,27 - 801 580 801 580 862 613 c 1,28,29 - 851 795 851 795 784 882 c 128,-1,30 - 717 969 717 969 574 969 c 0,31,32 - 437 969 437 969 367 892.5 c 128,-1,33 - 297 816 297 816 280 656 c 1,34,35 - 342 686 342 686 405 686 c 0,36,37 - 455 686 455 686 494.5 669.5 c 128,-1,38 - 534 653 534 653 571.5 633 c 128,-1,39 - 609 613 609 613 648.5 596.5 c 128,-1,40 - 688 580 688 580 738 580 c 0,26,27 -EndSplineSet -EndChar - -StartChar: uni0474 -Encoding: 1140 1140 1061 -Width: 1645 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 3 - 2 - 2 - 6 - 14 - 3 - 22 - 21 - 11 - 17 - 95 - 89 - 11 - 4 - 6 - 1 - 2 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -782 0 m 1,0,-1 - 584 0 l 1,1,-1 - 9 1409 l 1,2,-1 - 210 1409 l 1,3,-1 - 600 417 l 2,4,5 - 640 312 640 312 684 168 c 1,6,-1 - 709 246 l 1,7,-1 - 768 417 l 1,8,-1 - 1069 1228 l 2,9,10 - 1145 1430 1145 1430 1341 1430 c 0,11,12 - 1416 1430 1416 1430 1495 1402.5 c 128,-1,13 - 1574 1375 1574 1375 1622 1334 c 1,14,-1 - 1538 1198 l 1,15,16 - 1461 1267 1461 1267 1364 1267 c 0,17,18 - 1313 1267 1313 1267 1285.5 1241.5 c 128,-1,19 - 1258 1216 1258 1216 1230 1145 c 2,20,-1 - 782 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0475 -Encoding: 1141 1141 1062 -Width: 1292 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 3 - 2 - 12 - 6 - 2 - 3 - 19 - 20 - 10 - 15 - 83 - 89 - 10 - 16 - 6 - 1 - 2 - 15 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -613 0 m 1,0,-1 - 400 0 l 1,1,-1 - 7 1082 l 1,2,-1 - 199 1082 l 1,3,-1 - 437 378 l 2,4,5 - 450 338 450 338 506 141 c 1,6,-1 - 580 376 l 1,7,-1 - 751 898 l 2,8,9 - 817 1102 817 1102 1009 1102 c 0,10,11 - 1151 1102 1151 1102 1265 1011 c 1,12,-1 - 1184 879 l 1,13,14 - 1119 942 1119 942 1035 942 c 0,15,16 - 989 942 989 942 961 916 c 128,-1,17 - 933 890 933 890 906 814 c 2,18,-1 - 613 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0476 -Encoding: 1142 1142 1063 -Width: 1645 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 32 - 32 - 5 - 38 - 2 - 1 - 29 -PUSHW_1 - -194 -PUSHB_5 - 29 - 26 - 2 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1061 1140 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 621 360 2 -EndChar - -StartChar: uni0477 -Encoding: 1143 1143 1064 -Width: 1292 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 30 - 30 - 17 - 38 - 2 - 1 - 27 -PUSHW_1 - -175 -PUSHB_5 - 27 - 24 - 2 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1062 1141 N 1 0 0 1 0 0 3 -Refer: 721 783 N 1 0 0 1 460 0 2 -EndChar - -StartChar: uni0478 -Encoding: 1144 1144 1065 -Width: 2200 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 18 - 6 - 34 - 33 - 33 - 12 - 0 - 36 - 37 - 37 - 32 - 27 - 0 - 6 - 5 - 41 - 42 - 35 - 32 - 36 - 24 - 36 - 33 - 15 - 24 - 29 - 80 - 89 - 24 - 27 - 9 - 15 - 95 - 89 - 9 - 4 - 3 - 21 - 95 - 89 - 3 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1170 711 m 0,0,1 - 1170 373 1170 373 1026 176.5 c 128,-1,2 - 882 -20 882 -20 633 -20 c 0,3,4 - 381 -20 381 -20 239 174 c 128,-1,5 - 97 368 97 368 97 711 c 0,6,7 - 97 1050 97 1050 238.5 1240 c 128,-1,8 - 380 1430 380 1430 634 1430 c 256,9,10 - 888 1430 888 1430 1029 1238.5 c 128,-1,11 - 1170 1047 1170 1047 1170 711 c 0,0,1 -980 711 m 0,12,13 - 980 973 980 973 889.5 1123.5 c 128,-1,14 - 799 1274 799 1274 634 1274 c 0,15,16 - 467 1274 467 1274 376.5 1126.5 c 128,-1,17 - 286 979 286 979 286 711 c 0,18,19 - 286 447 286 447 378 291 c 128,-1,20 - 470 135 470 135 633 135 c 0,21,22 - 800 135 800 135 890 284.5 c 128,-1,23 - 980 434 980 434 980 711 c 0,12,13 -1379 -425 m 0,24,25 - 1305 -425 1305 -425 1255 -414 c 1,26,-1 - 1255 -279 l 1,27,28 - 1293 -285 1293 -285 1339 -285 c 0,29,30 - 1507 -285 1507 -285 1605 -38 c 2,31,-1 - 1622 5 l 1,32,-1 - 1213 1082 l 1,33,-1 - 1405 1082 l 1,34,-1 - 1711 196 l 1,35,-1 - 1998 1082 l 1,36,-1 - 2188 1082 l 1,37,-1 - 1792 0 l 2,38,39 - 1706 -234 1706 -234 1610 -329.5 c 128,-1,40 - 1514 -425 1514 -425 1379 -425 c 0,24,25 -EndSplineSet -EndChar - -StartChar: uni0479 -Encoding: 1145 1145 1066 -Width: 1836 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 17 - 5 - 33 - 32 - 32 - 0 - 0 - 11 - 36 - 31 - 25 - 11 - 5 - 5 - 40 - 41 - 34 - 30 - 35 - 23 - 35 - 32 - 15 - 23 - 28 - 80 - 89 - 23 - 27 - 8 - 14 - 81 - 89 - 8 - 16 - 3 - 20 - 81 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -868 542 m 0,0,1 - 868 258 868 258 769.5 119 c 128,-1,2 - 671 -20 671 -20 473 -20 c 0,3,4 - 85 -20 85 -20 85 542 c 0,5,6 - 85 821 85 821 180.5 961.5 c 128,-1,7 - 276 1102 276 1102 478 1102 c 0,8,9 - 681 1102 681 1102 774.5 967.5 c 128,-1,10 - 868 833 868 833 868 542 c 0,0,1 -693 542 m 0,11,12 - 693 768 693 768 643.5 870.5 c 128,-1,13 - 594 973 594 973 480 973 c 0,14,15 - 365 973 365 973 312.5 870.5 c 128,-1,16 - 260 768 260 768 260 542 c 0,17,18 - 260 324 260 324 311 216.5 c 128,-1,19 - 362 109 362 109 472 109 c 0,20,21 - 591 109 591 109 642 214.5 c 128,-1,22 - 693 320 693 320 693 542 c 0,11,12 -1019 -425 m 0,23,24 - 945 -425 945 -425 895 -414 c 1,25,-1 - 895 -279 l 1,26,27 - 933 -285 933 -285 979 -285 c 0,28,29 - 1147 -285 1147 -285 1245 -38 c 2,30,-1 - 1262 5 l 1,31,-1 - 863 1082 l 1,32,-1 - 1055 1082 l 1,33,-1 - 1351 196 l 1,34,-1 - 1628 1082 l 1,35,-1 - 1818 1082 l 1,36,-1 - 1432 0 l 2,37,38 - 1352 -226 1352 -226 1254.5 -325.5 c 128,-1,39 - 1157 -425 1157 -425 1019 -425 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni047A -Encoding: 1146 1146 1067 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 37 - 12 - 40 - 34 - 46 - 28 - 25 - 0 - 0 - 28 - 34 - 12 - 4 - 50 - 49 - 28 - 34 - 16 - 34 - 95 - 89 - 43 - 31 - 40 - 22 - 19 - 16 - 19 - 46 - 40 - 9 - 40 - 95 - 89 - 6 - 3 - 9 - 4 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -54 711 m 256,0,1 - 54 1018 54 1018 226 1210.5 c 128,-1,2 - 398 1403 398 1403 693 1427 c 1,3,4 - 716 1470 716 1470 758 1496.5 c 128,-1,5 - 800 1523 800 1523 852 1523 c 0,6,7 - 903 1523 903 1523 945.5 1496.5 c 128,-1,8 - 988 1470 988 1470 1011 1427 c 1,9,10 - 1307 1403 1307 1403 1479.5 1210 c 128,-1,11 - 1652 1017 1652 1017 1652 711 c 0,12,13 - 1652 511 1652 511 1573 350.5 c 128,-1,14 - 1494 190 1494 190 1348.5 95 c 128,-1,15 - 1203 0 1203 0 1013 -16 c 1,16,17 - 991 -61 991 -61 948 -89 c 128,-1,18 - 905 -117 905 -117 852 -117 c 0,19,20 - 798 -117 798 -117 755.5 -89.5 c 128,-1,21 - 713 -62 713 -62 690 -17 c 1,22,23 - 396 8 396 8 225 206 c 128,-1,24 - 54 404 54 404 54 711 c 256,0,1 -248 711 m 0,25,26 - 248 474 248 474 366 319 c 128,-1,27 - 484 164 484 164 687 135 c 1,28,29 - 708 183 708 183 752 213 c 128,-1,30 - 796 243 796 243 852 243 c 0,31,32 - 907 243 907 243 951.5 213 c 128,-1,33 - 996 183 996 183 1017 135 c 1,34,35 - 1226 162 1226 162 1341.5 314.5 c 128,-1,36 - 1457 467 1457 467 1457 711 c 0,37,38 - 1457 943 1457 943 1341.5 1094.5 c 128,-1,39 - 1226 1246 1226 1246 1018 1274 c 1,40,41 - 998 1225 998 1225 953 1194 c 128,-1,42 - 908 1163 908 1163 852 1163 c 0,43,44 - 795 1163 795 1163 750 1194 c 128,-1,45 - 705 1225 705 1225 685 1274 c 1,46,47 - 477 1246 477 1246 362.5 1095.5 c 128,-1,48 - 248 945 248 945 248 711 c 0,25,26 -EndSplineSet -EndChar - -StartChar: uni047B -Encoding: 1147 1147 1068 -Width: 1254 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 35 - 44 - 26 - 38 - 32 - 26 - 32 - 12 - 24 - 0 - 12 - 0 - 47 - 46 - 26 - 32 - 15 - 32 - 80 - 89 - 41 - 29 - 9 - 21 - 15 - 22 - 44 - 38 - 9 - 38 - 80 - 89 - 6 - 3 - 9 - 16 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -43 542 m 0,0,1 - 43 786 43 786 155 929 c 128,-1,2 - 267 1072 267 1072 474 1097 c 1,3,4 - 494 1142 494 1142 535 1169.5 c 128,-1,5 - 576 1197 576 1197 628 1197 c 0,6,7 - 679 1197 679 1197 720 1169.5 c 128,-1,8 - 761 1142 761 1142 781 1098 c 1,9,10 - 994 1075 994 1075 1102.5 934 c 128,-1,11 - 1211 793 1211 793 1211 542 c 0,12,13 - 1211 299 1211 299 1098 154.5 c 128,-1,14 - 985 10 985 10 781 -14 c 1,15,16 - 761 -58 761 -58 720 -85.5 c 128,-1,17 - 679 -113 679 -113 628 -113 c 256,18,19 - 577 -113 577 -113 536.5 -86.5 c 128,-1,20 - 496 -60 496 -60 476 -17 c 1,21,22 - 268 4 268 4 155.5 150 c 128,-1,23 - 43 296 43 296 43 542 c 0,0,1 -232 542 m 0,24,25 - 232 163 232 163 471 115 c 1,26,27 - 489 163 489 163 531.5 193 c 128,-1,28 - 574 223 574 223 628 223 c 0,29,30 - 681 223 681 223 722.5 194 c 128,-1,31 - 764 165 764 165 783 119 c 1,32,33 - 906 147 906 147 964 253.5 c 128,-1,34 - 1022 360 1022 360 1022 542 c 0,35,36 - 1022 728 1022 728 964.5 833.5 c 128,-1,37 - 907 939 907 939 784 965 c 1,38,39 - 765 919 765 919 723 890 c 128,-1,40 - 681 861 681 861 628 861 c 256,41,42 - 575 861 575 861 533.5 889.5 c 128,-1,43 - 492 918 492 918 473 963 c 1,44,45 - 232 908 232 908 232 542 c 0,24,25 -EndSplineSet -EndChar - -StartChar: uni047C -Encoding: 1148 1148 1069 -Width: 2439 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 65 - 50 - 43 - 76 - 70 - 79 - 0 - 79 - 24 - 3 - 6 - 60 - 31 - 18 - 18 - 12 - 6 - 3 - 82 - 81 - 69 - 50 - 50 - 60 - 79 - 79 - 80 - 75 - 60 - 80 - 60 - 80 - 21 - 63 - 63 - 56 - 96 - 89 - 63 - 21 - 28 - 95 - 89 - 21 - 4 - 14 - 34 - 95 - 89 - 14 - 19 - 10 - 40 - 95 - 89 - 10 - 19 - 75 - 75 - 3 - 3 - 46 - 95 - 89 - 3 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1352 1367 m 1,0,1 - 1430 1402 1430 1402 1500 1416 c 128,-1,2 - 1570 1430 1570 1430 1652 1430 c 0,3,4 - 1972 1430 1972 1430 2153 1239.5 c 128,-1,5 - 2334 1049 2334 1049 2334 711 c 0,6,7 - 2334 487 2334 487 2253 321.5 c 128,-1,8 - 2172 156 2172 156 2017.5 68 c 128,-1,9 - 1863 -20 1863 -20 1651 -20 c 0,10,11 - 1379 -20 1379 -20 1221 89 c 1,12,13 - 1061 -20 1061 -20 791 -20 c 0,14,15 - 578 -20 578 -20 423.5 68.5 c 128,-1,16 - 269 157 269 157 188.5 323 c 128,-1,17 - 108 489 108 489 108 711 c 0,18,19 - 108 1049 108 1049 289 1239.5 c 128,-1,20 - 470 1430 470 1430 790 1430 c 0,21,22 - 873 1430 873 1430 943 1416 c 128,-1,23 - 1013 1402 1013 1402 1090 1367 c 1,24,-1 - 1015 1219 l 1,25,26 - 948 1251 948 1251 896.5 1262.5 c 128,-1,27 - 845 1274 845 1274 792 1274 c 0,28,29 - 558 1274 558 1274 430 1123.5 c 128,-1,30 - 302 973 302 973 302 711 c 0,31,32 - 302 450 302 450 437 291 c 128,-1,33 - 572 132 572 132 800 132 c 0,34,35 - 927 132 927 132 1041.5 175 c 128,-1,36 - 1156 218 1156 218 1221 287 c 1,37,38 - 1286 218 1286 218 1400.5 175 c 128,-1,39 - 1515 132 1515 132 1642 132 c 0,40,41 - 1870 132 1870 132 2005 291.5 c 128,-1,42 - 2140 451 2140 451 2140 711 c 0,43,44 - 2140 974 2140 974 2012.5 1124 c 128,-1,45 - 1885 1274 1885 1274 1650 1274 c 0,46,47 - 1598 1274 1598 1274 1546 1262.5 c 128,-1,48 - 1494 1251 1494 1251 1427 1219 c 1,49,-1 - 1352 1367 l 1,0,1 -1929 1662 m 1,50,51 - 1827 1662 1827 1662 1734.5 1688.5 c 128,-1,52 - 1642 1715 1642 1715 1541 1771 c 0,53,54 - 1427 1834 1427 1834 1358.5 1857 c 128,-1,55 - 1290 1880 1290 1880 1220 1880 c 0,56,57 - 1102 1880 1102 1880 1034.5 1825.5 c 128,-1,58 - 967 1771 967 1771 943 1659 c 1,59,-1 - 814 1659 l 1,60,61 - 846 1823 846 1823 957.5 1913.5 c 128,-1,62 - 1069 2004 1069 2004 1233 2004 c 0,63,64 - 1298 2004 1298 2004 1363.5 1983 c 128,-1,65 - 1429 1962 1429 1962 1556 1898 c 0,66,67 - 1667 1841 1667 1841 1752 1816.5 c 128,-1,68 - 1837 1792 1837 1792 1929 1792 c 1,69,-1 - 1929 1662 l 1,50,51 -1311 1795 m 1,70,-1 - 1311 1697 l 2,71,72 - 1311 1655 1311 1655 1305.5 1625 c 128,-1,73 - 1300 1595 1300 1595 1289 1569 c 128,-1,74 - 1278 1543 1278 1543 1241 1485 c 1,75,-1 - 1135 1485 l 1,76,77 - 1218 1583 1218 1583 1218 1654 c 1,78,-1 - 1140 1654 l 1,79,-1 - 1140 1795 l 1,80,-1 - 1311 1795 l 1,70,-1 -EndSplineSet -EndChar - -StartChar: uni047D -Encoding: 1149 1149 1070 -Width: 1744 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 70 - 49 - 0 - 44 - 47 - 39 - 46 - 3 - 46 - 47 - 23 - 4 - 8 - 59 - 26 - 18 - 8 - 18 - 70 - 69 - 49 - 59 - 47 - 47 - 43 - 0 - 48 - 16 - 48 - 2 - 15 - 3 - 48 - 59 - 43 - 43 - 59 - 48 - 3 - 62 - 4 - 62 - 55 - 81 - 89 - 15 - 62 - 239 - 62 - 2 - 9 - 3 - 62 - 23 - 22 - 16 - 15 - 29 - 80 - 89 - 15 - 22 - 11 - 35 - 80 - 89 - 11 - 22 - 3 - 4 - 16 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP2 -IP -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1467 546 m 0,0,1 - 1467 756 1467 756 1398.5 854 c 128,-1,2 - 1330 952 1330 952 1177 952 c 1,3,-1 - 1177 1102 l 1,4,5 - 1325 1102 1325 1102 1434 1037.5 c 128,-1,6 - 1543 973 1543 973 1599 848.5 c 128,-1,7 - 1655 724 1655 724 1655 542 c 0,8,9 - 1655 267 1655 267 1535.5 123.5 c 128,-1,10 - 1416 -20 1416 -20 1189 -20 c 0,11,12 - 1002 -20 1002 -20 871 63 c 1,13,14 - 738 -20 738 -20 553 -20 c 0,15,16 - 326 -20 326 -20 206.5 123.5 c 128,-1,17 - 87 267 87 267 87 542 c 0,18,19 - 87 722 87 722 143 847.5 c 128,-1,20 - 199 973 199 973 307.5 1037.5 c 128,-1,21 - 416 1102 416 1102 565 1102 c 1,22,-1 - 565 952 l 1,23,24 - 412 952 412 952 343.5 854 c 128,-1,25 - 275 756 275 756 275 546 c 0,26,27 - 275 331 275 331 347 226.5 c 128,-1,28 - 419 122 419 122 565 122 c 0,29,30 - 653 122 653 122 737.5 151 c 128,-1,31 - 822 180 822 180 871 225 c 1,32,33 - 916 182 916 182 1001.5 152 c 128,-1,34 - 1087 122 1087 122 1177 122 c 0,35,36 - 1323 122 1323 122 1395 227 c 128,-1,37 - 1467 332 1467 332 1467 546 c 0,0,1 -953 1470 m 1,38,-1 - 953 1372 l 2,39,40 - 953 1330 953 1330 947.5 1300 c 128,-1,41 - 942 1270 942 1270 931 1244 c 128,-1,42 - 920 1218 920 1218 883 1160 c 1,43,-1 - 777 1160 l 1,44,45 - 860 1258 860 1258 860 1329 c 1,46,-1 - 782 1329 l 1,47,-1 - 782 1470 l 1,48,-1 - 953 1470 l 1,38,-1 -1571 1342 m 1,49,50 - 1469 1342 1469 1342 1376.5 1368.5 c 128,-1,51 - 1284 1395 1284 1395 1183 1451 c 0,52,53 - 1069 1514 1069 1514 1000.5 1537 c 128,-1,54 - 932 1560 932 1560 862 1560 c 0,55,56 - 744 1560 744 1560 676.5 1505.5 c 128,-1,57 - 609 1451 609 1451 585 1339 c 1,58,-1 - 456 1339 l 1,59,60 - 488 1503 488 1503 599.5 1593.5 c 128,-1,61 - 711 1684 711 1684 875 1684 c 0,62,63 - 940 1684 940 1684 1005.5 1663 c 128,-1,64 - 1071 1642 1071 1642 1198 1578 c 0,65,66 - 1309 1521 1309 1521 1394 1496.5 c 128,-1,67 - 1479 1472 1479 1472 1571 1472 c 1,68,-1 - 1571 1342 l 1,49,50 -EndSplineSet -EndChar - -StartChar: uni047E -Encoding: 1150 1150 1071 -Width: 2740 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 63 - 63 - 5 - 38 - 1 - 64 -PUSHW_1 - -12 -PUSHB_5 - 64 - 53 - 33 - 21 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1041 1120 N 1 0 0 1 0 0 3 -Refer: 2502 -1 N 1 0 0 1 1360 360 2 -EndChar - -StartChar: uni047F -Encoding: 1151 1151 1072 -Width: 1278 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 32 - 32 - 17 - 38 - 1 - 33 - 0 - 33 - 22 - 10 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1042 1121 N 1 0 0 1 0 0 3 -Refer: 2502 -1 N 1 0 0 1 620 0 2 -EndChar - -StartChar: uni0480 -Encoding: 1152 1152 1073 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 11 - 10 - 23 - 0 - 17 - 4 - 4 - 0 - 10 - 3 - 25 - 24 - 7 - 14 - 95 - 89 - 11 - 11 - 7 - 4 - 1 - 20 - 95 - 89 - 0 - 1 - 19 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -700 -427 m 1,0,-1 - 700 -15 l 1,1,2 - 414 14 414 14 259 202.5 c 128,-1,3 - 104 391 104 391 104 702 c 0,4,5 - 104 1042 104 1042 287 1236 c 128,-1,6 - 470 1430 470 1430 790 1430 c 0,7,8 - 1015 1430 1015 1430 1166 1342 c 128,-1,9 - 1317 1254 1317 1254 1388 1081 c 1,10,-1 - 1207 1021 l 1,11,12 - 1158 1144 1158 1144 1049.5 1209 c 128,-1,13 - 941 1274 941 1274 792 1274 c 0,14,15 - 560 1274 560 1274 429 1121.5 c 128,-1,16 - 298 969 298 969 298 702 c 0,17,18 - 298 444 298 444 433.5 290.5 c 128,-1,19 - 569 137 569 137 807 137 c 0,20,21 - 847 137 847 137 891 150 c 1,22,-1 - 891 -427 l 1,23,-1 - 700 -427 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0481 -Encoding: 1153 1153 1074 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 23 - 0 - 17 - 4 - 4 - 0 - 10 - 3 - 25 - 24 - 7 - 14 - 80 - 89 - 11 - 11 - 7 - 16 - 1 - 20 - 80 - 89 - 1 - 21 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -496 -425 m 1,0,-1 - 496 -10 l 1,1,2 - 290 8 290 8 185 153 c 128,-1,3 - 80 298 80 298 80 550 c 0,4,5 - 80 819 80 819 208 959.5 c 128,-1,6 - 336 1100 336 1100 568 1100 c 0,7,8 - 734 1100 734 1100 843.5 1014 c 128,-1,9 - 953 928 953 928 981 777 c 1,10,-1 - 796 763 l 1,11,12 - 782 853 782 853 725 906 c 128,-1,13 - 668 959 668 959 563 959 c 0,14,15 - 410 959 410 959 339 861.5 c 128,-1,16 - 268 764 268 764 268 554 c 0,17,18 - 268 345 268 345 344.5 236.5 c 128,-1,19 - 421 128 421 128 569 128 c 0,20,21 - 630 128 630 128 676 146 c 1,22,-1 - 676 -425 l 1,23,-1 - 496 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0482 -Encoding: 1154 1154 1075 -Width: 1031 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 14 - 10 - 7 - 8 - 18 - 17 - 4 - 0 - 0 - 17 - 8 - 10 - 4 - 20 - 21 - 16 - 2 - 1 - 1 - 15 - 12 - 6 - 5 - 5 - 11 - 15 - 11 - 7 - 17 - 7 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1020 913 m 1,0,-1 - 979 761 l 1,1,-1 - 626 855 l 1,2,-1 - 548 578 l 1,3,-1 - 904 483 l 1,4,-1 - 863 331 l 1,5,-1 - 506 427 l 1,6,-1 - 378 -32 l 1,7,-1 - 217 -32 l 1,8,-1 - 357 467 l 1,9,-1 - 11 560 l 1,10,-1 - 52 712 l 1,11,-1 - 400 618 l 1,12,-1 - 477 895 l 1,13,-1 - 126 989 l 1,14,-1 - 167 1142 l 1,15,-1 - 520 1047 l 1,16,-1 - 646 1498 l 1,17,-1 - 805 1498 l 1,18,-1 - 668 1007 l 1,19,-1 - 1020 913 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0483 -Encoding: 1155 1155 1076 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 8 - 3 - 19 - 14 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1130 mark 0 -AnchorPoint: "Anchor-16" 0 1150 mark 0 -LayerCount: 2 -Fore -SplineSet -352 1393 m 0,0,1 - 352 1343 352 1343 315.5 1313 c 128,-1,2 - 279 1283 279 1283 226 1283 c 2,3,-1 - -121 1283 l 1,4,-1 - -121 1263 l 2,5,6 - -121 1207 -121 1207 -154.5 1177 c 128,-1,7 - -188 1147 -188 1147 -234 1147 c 0,8,9 - -284 1147 -284 1147 -317 1179 c 128,-1,10 - -350 1211 -350 1211 -350 1263 c 0,11,12 - -350 1313 -350 1313 -313.5 1343 c 128,-1,13 - -277 1373 -277 1373 -224 1373 c 2,14,-1 - 123 1373 l 1,15,-1 - 123 1393 l 2,16,17 - 123 1449 123 1449 156.5 1479 c 128,-1,18 - 190 1509 190 1509 236 1509 c 0,19,20 - 286 1509 286 1509 319 1477 c 128,-1,21 - 352 1445 352 1445 352 1393 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0484 -Encoding: 1156 1156 1077 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 4 - 17 - 17 - 11 - 1 - 9 - 9 - 11 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -332 1227 m 1,0,-1 - 243 1227 l 1,1,2 - 241 1301 241 1301 214.5 1333 c 128,-1,3 - 188 1365 188 1365 135 1365 c 0,4,5 - 102 1365 102 1365 69 1346 c 128,-1,6 - 36 1327 36 1327 -2 1304 c 0,7,8 - -118 1232 -118 1232 -222 1232 c 2,9,-1 - -324 1232 l 1,10,-1 - -324 1375 l 1,11,-1 - -219 1375 l 2,12,13 - -167 1375 -167 1375 -123 1391 c 128,-1,14 - -79 1407 -79 1407 -37 1427 c 0,15,16 - 60 1473 60 1473 130 1473 c 0,17,18 - 229 1473 229 1473 280.5 1410.5 c 128,-1,19 - 332 1348 332 1348 332 1227 c 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0485 -Encoding: 1157 1157 1078 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 2 - 2 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1080 mark 0 -AnchorPoint: "Anchor-16" 0 1080 mark 0 -LayerCount: 2 -Fore -SplineSet -98 1484 m 1,0,-1 - 98 1298 l 1,1,-1 - 9 1298 l 1,2,3 - 9 1204 9 1204 87 1097 c 1,4,-1 - -32 1097 l 1,5,6 - -67 1148 -67 1148 -82 1205 c 128,-1,7 - -97 1262 -97 1262 -97 1338 c 2,8,-1 - -97 1484 l 1,9,-1 - 98 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0486 -Encoding: 1158 1158 1079 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 8 - 8 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1080 mark 0 -AnchorPoint: "Anchor-16" 0 1080 mark 0 -LayerCount: 2 -Fore -SplineSet -98 1484 m 1,0,-1 - 98 1338 l 2,1,2 - 98 1264 98 1264 84 1209.5 c 128,-1,3 - 70 1155 70 1155 33 1097 c 1,4,-1 - -86 1097 l 1,5,6 - -8 1204 -8 1204 -8 1298 c 1,7,-1 - -97 1298 l 1,8,-1 - -97 1484 l 1,9,-1 - 98 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0487 -Encoding: 1159 1159 1080 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 6 - 13 - 128 - 19 - 0 - 10 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp2] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -558 1342 m 1,0,1 - 456 1342 456 1342 363.5 1368.5 c 128,-1,2 - 271 1395 271 1395 170 1451 c 0,3,4 - 56 1514 56 1514 -12.5 1537 c 128,-1,5 - -81 1560 -81 1560 -151 1560 c 0,6,7 - -269 1560 -269 1560 -336.5 1505.5 c 128,-1,8 - -404 1451 -404 1451 -428 1339 c 1,9,-1 - -557 1339 l 1,10,11 - -525 1503 -525 1503 -413.5 1593.5 c 128,-1,12 - -302 1684 -302 1684 -138 1684 c 0,13,14 - -73 1684 -73 1684 -7.5 1663 c 128,-1,15 - 58 1642 58 1642 185 1578 c 0,16,17 - 296 1521 296 1521 381 1496.5 c 128,-1,18 - 466 1472 466 1472 558 1472 c 1,19,-1 - 558 1342 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0488 -Encoding: 1160 1160 1081 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 53 - 70 - 35 - 30 - 75 - 62 - 67 - 32 - 72 - 72 - 37 - 77 - 50 - 15 - 10 - 55 - 12 - 52 - 52 - 17 - 57 - 40 - 5 - 0 - 45 - 20 - 25 - 2 - 42 - 42 - 7 - 47 - 75 - 67 - 77 - 55 - 57 - 45 - 25 - 47 - 47 - 25 - 45 - 57 - 55 - 77 - 67 - 75 - 8 - 27 - 65 - 60 - 22 - 27 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -764 964 m 1,0,1 - 764 1113 764 1113 650 1113 c 256,2,3 - 536 1113 536 1113 536 964 c 1,4,-1 - 433 964 l 1,5,6 - 433 1219 433 1219 650 1219 c 256,7,8 - 867 1219 867 1219 867 964 c 1,9,-1 - 764 964 l 1,0,1 -884 458 m 1,10,11 - 884 607 884 607 770 607 c 256,12,13 - 656 607 656 607 656 458 c 1,14,-1 - 553 458 l 1,15,16 - 553 713 553 713 770 713 c 256,17,18 - 987 713 987 713 987 458 c 1,19,-1 - 884 458 l 1,10,11 -104 1208 m 1,20,21 - 104 1357 104 1357 -10 1357 c 256,22,23 - -124 1357 -124 1357 -124 1208 c 1,24,-1 - -227 1208 l 1,25,26 - -227 1463 -227 1463 -10 1463 c 256,27,28 - 207 1463 207 1463 207 1208 c 1,29,-1 - 104 1208 l 1,20,21 -764 -98 m 1,30,31 - 764 51 764 51 650 51 c 256,32,33 - 536 51 536 51 536 -98 c 1,34,-1 - 433 -98 l 1,35,36 - 433 157 433 157 650 157 c 256,37,38 - 867 157 867 157 867 -98 c 1,39,-1 - 764 -98 l 1,30,31 --536 964 m 1,40,41 - -536 1113 -536 1113 -650 1113 c 256,42,43 - -764 1113 -764 1113 -764 964 c 1,44,-1 - -867 964 l 1,45,46 - -867 1219 -867 1219 -650 1219 c 256,47,48 - -433 1219 -433 1219 -433 964 c 1,49,-1 - -536 964 l 1,40,41 --656 458 m 1,50,51 - -656 607 -656 607 -770 607 c 256,52,53 - -884 607 -884 607 -884 458 c 1,54,-1 - -987 458 l 1,55,56 - -987 713 -987 713 -770 713 c 256,57,58 - -553 713 -553 713 -553 458 c 1,59,-1 - -656 458 l 1,50,51 -104 -342 m 1,60,61 - 104 -193 104 -193 -10 -193 c 256,62,63 - -124 -193 -124 -193 -124 -342 c 1,64,-1 - -227 -342 l 1,65,66 - -227 -87 -227 -87 -10 -87 c 256,67,68 - 207 -87 207 -87 207 -342 c 1,69,-1 - 104 -342 l 1,60,61 --536 -98 m 1,70,71 - -536 51 -536 51 -650 51 c 256,72,73 - -764 51 -764 51 -764 -98 c 1,74,-1 - -867 -98 l 1,75,76 - -867 157 -867 157 -650 157 c 256,77,78 - -433 157 -433 157 -433 -98 c 1,79,-1 - -536 -98 l 1,70,71 -EndSplineSet -EndChar - -StartChar: uni0489 -Encoding: 1161 1161 1082 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 79 - 77 - 69 - 64 - 67 - 18 - 48 - 18 - 39 - 37 - 30 - 21 - 27 - 10 - 17 - 9 - 8 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -69 -59 m 1,0,-1 - 69 -181 l 2,1,2 - 69 -249 69 -249 56 -295.5 c 128,-1,3 - 43 -342 43 -342 15 -383 c 1,4,-1 - -85 -383 l 1,5,6 - -19 -295 -19 -295 -19 -215 c 1,7,-1 - -94 -215 l 1,8,-1 - -94 -59 l 1,9,-1 - 69 -59 l 1,0,-1 --94 1187 m 1,10,-1 - -94 1309 l 2,11,12 - -94 1377 -94 1377 -81 1423.5 c 128,-1,13 - -68 1470 -68 1470 -40 1511 c 1,14,-1 - 60 1511 l 1,15,16 - -6 1423 -6 1423 -6 1343 c 1,17,-1 - 69 1343 l 1,18,-1 - 69 1187 l 1,19,-1 - -94 1187 l 1,10,-1 --593 447 m 1,20,-1 - -715 447 l 2,21,22 - -783 447 -783 447 -829.5 460 c 128,-1,23 - -876 473 -876 473 -917 501 c 1,24,-1 - -917 601 l 1,25,26 - -829 535 -829 535 -748 535 c 1,27,-1 - -748 610 l 1,28,-1 - -593 610 l 1,29,-1 - -593 447 l 1,20,-1 -603 662 m 1,30,-1 - 725 662 l 2,31,32 - 793 662 793 662 839.5 649 c 128,-1,33 - 886 636 886 636 927 608 c 1,34,-1 - 927 508 l 1,35,36 - 839 574 839 574 758 574 c 1,37,-1 - 758 499 l 1,38,-1 - 603 499 l 1,39,-1 - 603 662 l 1,30,-1 -542 234 m 1,40,-1 - 628 147 l 2,41,42 - 676 99 676 99 699.5 57 c 128,-1,43 - 723 15 723 15 733 -34 c 1,44,-1 - 662 -104 l 1,45,46 - 647 5 647 5 590 61 c 1,47,-1 - 537 8 l 1,48,-1 - 427 118 l 1,49,-1 - 542 234 l 1,40,-1 --528 893 m 1,50,-1 - -614 979 l 2,51,52 - -662 1027 -662 1027 -685.5 1069 c 128,-1,53 - -709 1111 -709 1111 -718 1160 c 1,54,-1 - -648 1231 l 1,55,56 - -633 1122 -633 1122 -576 1065 c 1,57,-1 - -523 1118 l 1,58,-1 - -412 1008 l 1,59,-1 - -528 893 l 1,50,-1 --424 46 m 1,60,-1 - -510 -40 l 2,61,62 - -559 -88 -559 -88 -600.5 -111.5 c 128,-1,63 - -642 -135 -642 -135 -691 -145 c 1,64,-1 - -762 -74 l 1,65,66 - -654 -59 -654 -59 -596 -1 c 1,67,-1 - -649 52 l 1,68,-1 - -539 162 l 1,69,-1 - -424 46 l 1,60,-1 -440 1066 m 1,70,-1 - 526 1152 l 2,71,72 - 574 1201 574 1201 616 1224 c 128,-1,73 - 658 1247 658 1247 707 1257 c 1,74,-1 - 778 1186 l 1,75,76 - 668 1171 668 1171 611 1114 c 1,77,-1 - 664 1060 l 1,78,-1 - 555 951 l 1,79,-1 - 440 1066 l 1,70,-1 -EndSplineSet -EndChar - -StartChar: uni048A -Encoding: 1162 1162 1083 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 49 - 21 - 20 - 20 - 1 - 17 - 2 - 2 - 1 - 25 - 26 - 26 - 8 - 6 - 13 - 13 - 10 - 9 - 8 - 1 - 8 - 28 - 29 - 13 - 8 - 95 - 89 - 13 - 18 - 23 - 25 - 112 - 20 - 128 - 20 - 240 - 20 - 3 - 20 - 128 - 18 - 5 - 16 - 0 - 6 - 1 - 3 - 11 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,white] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDRP[rp0,min,rnd,white] -SMD -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -168 0 m 1,0,-1 - 168 1409 l 1,1,-1 - 340 1409 l 1,2,-1 - 340 485 l 2,3,4 - 340 371 340 371 332 211 c 1,5,-1 - 1082 1409 l 1,6,-1 - 1304 1409 l 1,7,-1 - 1304 173 l 1,8,-1 - 1496 173 l 1,9,-1 - 1308 -410 l 1,10,-1 - 1136 -410 l 1,11,-1 - 1274 0 l 1,12,-1 - 1134 0 l 1,13,-1 - 1134 936 l 2,14,15 - 1134 1058 1134 1058 1140 1190 c 1,16,-1 - 398 0 l 1,17,-1 - 168 0 l 1,0,-1 -742 1530 m 256,18,19 - 386 1530 386 1530 375 1850 c 1,20,-1 - 539 1850 l 1,21,22 - 551 1651 551 1651 742 1651 c 256,23,24 - 933 1651 933 1651 945 1850 c 1,25,-1 - 1109 1850 l 1,26,27 - 1098 1530 1098 1530 742 1530 c 256,18,19 -EndSplineSet -EndChar - -StartChar: uni048B -Encoding: 1163 1163 1084 -Width: 1144 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 26 - 27 - 27 - 6 - 4 - 11 - 11 - 8 - 7 - 6 - 22 - 21 - 21 - 18 - 16 - 0 - 0 - 18 - 6 - 18 - 30 - 29 - 24 - 26 - 21 - 128 - 19 - 18 - 15 - 3 - 15 - 4 - 16 - 21 - 8 - 11 - 64 - 11 - 7 - 83 - 89 - 11 - 21 - 4 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -MIAP[rnd] -SRP2 -IP -IP -MIAP[rnd] -MDRP[rp0,min,rnd,white] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -316 1082 m 1,0,-1 - 316 490 l 2,1,2 - 316 423 316 423 306 213 c 1,3,-1 - 805 1082 l 1,4,-1 - 1002 1082 l 1,5,-1 - 1002 161 l 1,6,-1 - 1176 161 l 1,7,-1 - 982 -311 l 1,8,-1 - 810 -311 l 1,9,-1 - 951 0 l 1,10,-1 - 830 0 l 1,11,-1 - 830 660 l 2,12,13 - 830 715 830 715 833.5 786 c 128,-1,14 - 837 857 837 857 840 873 c 1,15,-1 - 334 0 l 1,16,-1 - 142 0 l 1,17,-1 - 142 1082 l 1,18,-1 - 316 1082 l 1,0,-1 -574 1200 m 256,19,20 - 218 1200 218 1200 207 1520 c 1,21,-1 - 371 1520 l 1,22,23 - 383 1321 383 1321 574 1321 c 256,24,25 - 765 1321 765 1321 777 1520 c 1,26,-1 - 941 1520 l 1,27,28 - 930 1200 930 1200 574 1200 c 256,19,20 -EndSplineSet -EndChar - -StartChar: uni048C -Encoding: 1164 1164 1085 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 19 - 12 - 8 - 6 - 4 - 24 - 24 - 18 - 1 - 16 - 12 - 16 - 28 - 27 - 8 - 23 - 95 - 89 - 7 - 18 - 0 - 18 - 96 - 89 - 4 - 0 - 8 - 0 - 8 - 0 - 16 - 2 - 16 - 24 - 95 - 89 - 16 - 18 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -4 1194 m 1,0,-1 - 168 1194 l 1,1,-1 - 168 1409 l 1,2,-1 - 359 1409 l 1,3,-1 - 359 1194 l 1,4,-1 - 542 1194 l 1,5,-1 - 542 1047 l 1,6,-1 - 359 1047 l 1,7,-1 - 359 813 l 1,8,-1 - 766 813 l 2,9,10 - 1002 813 1002 813 1132.5 708 c 128,-1,11 - 1263 603 1263 603 1263 413 c 0,12,13 - 1263 226 1263 226 1134 113 c 128,-1,14 - 1005 0 1005 0 778 0 c 2,15,-1 - 168 0 l 1,16,-1 - 168 1047 l 1,17,-1 - 4 1047 l 1,18,-1 - 4 1194 l 1,0,-1 -1071 407 m 0,19,20 - 1071 528 1071 528 989 593.5 c 128,-1,21 - 907 659 907 659 743 659 c 2,22,-1 - 359 659 l 1,23,-1 - 359 151 l 1,24,-1 - 751 151 l 2,25,26 - 1071 151 1071 151 1071 407 c 0,19,20 -EndSplineSet -EndChar - -StartChar: uni048D -Encoding: 1165 1165 1086 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 23 - 11 - 7 - 5 - 3 - 19 - 19 - 17 - 0 - 15 - 11 - 15 - 29 - 28 - 7 - 27 - 81 - 89 - 6 - 17 - 18 - 17 - 81 - 89 - 3 - 18 - 7 - 18 - 7 - 18 - 15 - 1 - 15 - 19 - 81 - 89 - 15 - 21 - 1 - 0 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -142 1299 m 1,0,-1 - 142 1484 l 1,1,-1 - 322 1484 l 1,2,-1 - 322 1299 l 1,3,-1 - 441 1299 l 1,4,-1 - 441 1168 l 1,5,-1 - 322 1168 l 1,6,-1 - 322 624 l 1,7,-1 - 590 624 l 2,8,9 - 795 624 795 624 900 550.5 c 128,-1,10 - 1005 477 1005 477 1005 318 c 0,11,12 - 1005 164 1005 164 897 82 c 128,-1,13 - 789 0 789 0 591 0 c 2,14,-1 - 142 0 l 1,15,-1 - 142 1168 l 1,16,-1 - 20 1168 l 1,17,-1 - 20 1299 l 1,18,-1 - 142 1299 l 1,0,-1 -322 127 m 1,19,-1 - 564 127 l 2,20,21 - 694 127 694 127 754 173 c 128,-1,22 - 814 219 814 219 814 318 c 0,23,24 - 814 412 814 412 756 455.5 c 128,-1,25 - 698 499 698 499 565 499 c 2,26,-1 - 322 499 l 1,27,-1 - 322 127 l 1,19,-1 -EndSplineSet -EndChar - -StartChar: uni048E -Encoding: 1166 1166 1087 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 22 - 25 - 0 - 12 - 4 - 13 - 23 - 13 - 15 - 23 - 10 - 19 - 19 - 4 - 4 - 5 - 10 - 5 - 28 - 27 - 0 - 12 - 22 - 3 - 25 - 14 - 14 - 3 - 19 - 3 - 95 - 89 - 24 - 25 - 19 - 25 - 19 - 25 - 5 - 6 - 6 - 18 - 95 - 89 - 6 - 3 - 5 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SHP[rp2] -SHP[rp2] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1064 620 m 1,0,1 - 945 549 945 549 773 549 c 2,2,-1 - 359 549 l 1,3,-1 - 359 0 l 1,4,-1 - 168 0 l 1,5,-1 - 168 1409 l 1,6,-1 - 761 1409 l 2,7,8 - 998 1409 998 1409 1128 1298 c 128,-1,9 - 1258 1187 1258 1187 1258 985 c 0,10,11 - 1258 826 1258 826 1172 716 c 1,12,-1 - 1288 591 l 1,13,-1 - 1181 495 l 1,14,-1 - 1064 620 l 1,0,1 -1066 983 m 0,15,16 - 1066 1256 1066 1256 738 1256 c 2,17,-1 - 359 1256 l 1,18,-1 - 359 700 l 1,19,-1 - 746 700 l 2,20,21 - 872 700 872 700 949 745 c 1,22,-1 - 834 869 l 1,23,-1 - 942 966 l 1,24,-1 - 1044 855 l 1,25,26 - 1066 909 1066 909 1066 983 c 0,15,16 -EndSplineSet -EndChar - -StartChar: uni048F -Encoding: 1167 1167 1088 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 49 - 42 - 44 - 5 - 2 - 4 - 3 - 36 - 3 - 29 - 0 - 36 - 18 - 13 - 13 - 14 - 0 - 14 - 47 - 46 - 9 - 22 - 7 - 26 - 26 - 32 - 80 - 89 - 26 - 16 - 17 - 15 - 14 - 27 - 5 - 2 - 41 - 44 - 4 - 43 - 4 - 43 - 39 - 7 - 39 - 80 - 89 - 4 - 7 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 269 1053 269 959 129 c 1,2,-1 - 1057 23 l 1,3,-1 - 957 -67 l 1,4,-1 - 863 34 l 1,5,6 - 776 -20 776 -20 655 -20 c 0,7,8 - 405 -20 405 -20 319 168 c 1,9,-1 - 314 168 l 1,10,11 - 318 160 318 160 318 -2 c 2,12,-1 - 318 -425 l 1,13,-1 - 138 -425 l 1,14,-1 - 138 861 l 2,15,16 - 138 1028 138 1028 132 1082 c 1,17,-1 - 306 1082 l 1,18,19 - 307 1078 307 1078 309 1053.5 c 128,-1,20 - 311 1029 311 1029 313.5 978 c 128,-1,21 - 316 927 316 927 316 908 c 1,22,-1 - 320 908 l 1,23,24 - 368 1008 368 1008 447 1054.5 c 128,-1,25 - 526 1101 526 1101 655 1101 c 0,26,27 - 855 1101 855 1101 954 967 c 128,-1,28 - 1053 833 1053 833 1053 546 c 0,0,1 -864 542 m 0,29,30 - 864 768 864 768 803 865 c 128,-1,31 - 742 962 742 962 609 962 c 0,32,33 - 502 962 502 962 441.5 917 c 128,-1,34 - 381 872 381 872 349.5 776.5 c 128,-1,35 - 318 681 318 681 318 528 c 0,36,37 - 318 315 318 315 386 214 c 128,-1,38 - 454 113 454 113 607 113 c 0,39,40 - 695 113 695 113 751 155 c 1,41,-1 - 633 282 l 1,42,-1 - 734 373 l 1,43,-1 - 829 269 l 1,44,45 - 864 367 864 367 864 542 c 0,29,30 -EndSplineSet -EndChar - -StartChar: uni0490 -Encoding: 1168 1168 1089 -Width: 1001 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 5 - 6 - 0 - 3 - 6 - 3 - 8 - 9 - 7 - 4 - 95 - 89 - 7 - 3 - 5 - 18 - 1 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -774 1409 m 1,0,-1 - 774 1820 l 1,1,-1 - 954 1820 l 1,2,-1 - 954 1253 l 1,3,-1 - 359 1253 l 1,4,-1 - 359 1 l 1,5,-1 - 168 1 l 1,6,-1 - 168 1409 l 1,7,-1 - 774 1409 l 1,0,-1 -EndSplineSet -Kerns2: 2016 -45 "'kern' Horizontal Kerning lookup 17 subtable" 125 -160 "'kern' Horizontal Kerning lookup 17 subtable" 109 -160 "'kern' Horizontal Kerning lookup 17 subtable" 30 -45 "'kern' Horizontal Kerning lookup 17 subtable" 29 -45 "'kern' Horizontal Kerning lookup 17 subtable" 17 -250 "'kern' Horizontal Kerning lookup 17 subtable" 15 -250 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni0491 -Encoding: 1169 1169 1090 -Width: 842 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 0 - 1 - 3 - 6 - 1 - 6 - 8 - 9 - 4 - 2 - 7 - 80 - 89 - 2 - 15 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -322 0 m 1,0,-1 - 142 0 l 1,1,-1 - 142 1082 l 1,2,-1 - 615 1082 l 1,3,-1 - 615 1484 l 1,4,-1 - 778 1484 l 1,5,-1 - 778 951 l 1,6,-1 - 322 951 l 1,7,-1 - 322 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0492 -Encoding: 1170 1170 1091 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 6 - 10 - 10 - 8 - 3 - 13 - 1 - 11 - 3 - 11 - 15 - 14 - 9 - 13 - 0 - 13 - 96 - 89 - 6 - 0 - 0 - 2 - 11 - 18 - 2 - 5 - 95 - 89 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --1 806 m 1,0,-1 - 168 806 l 1,1,-1 - 168 1410 l 1,2,-1 - 1071 1410 l 1,3,-1 - 1071 1254 l 1,4,-1 - 359 1254 l 1,5,-1 - 359 806 l 1,6,-1 - 779 806 l 1,7,-1 - 779 659 l 1,8,-1 - 359 659 l 1,9,-1 - 359 0 l 1,10,-1 - 168 0 l 1,11,-1 - 168 659 l 1,12,-1 - -1 659 l 1,13,-1 - -1 806 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0493 -Encoding: 1171 1171 1092 -Width: 747 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 3 - 7 - 7 - 12 - 10 - 5 - 8 - 0 - 8 - 0 - 14 - 15 - 6 - 10 - 11 - 10 - 80 - 89 - 3 - 11 - 11 - 8 - 13 - 13 - 2 - 81 - 89 - 13 - 15 - 8 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -687 1082 m 1,0,-1 - 687 951 l 1,1,-1 - 322 951 l 1,2,-1 - 322 646 l 1,3,-1 - 525 646 l 1,4,-1 - 525 514 l 1,5,-1 - 322 514 l 1,6,-1 - 322 0 l 1,7,-1 - 142 0 l 1,8,-1 - 142 514 l 1,9,-1 - 20 514 l 1,10,-1 - 20 646 l 1,11,-1 - 142 646 l 1,12,-1 - 142 1082 l 1,13,-1 - 687 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0494 -Encoding: 1172 1172 1093 -Width: 1373 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 14 - 0 - 28 - 22 - 22 - 23 - 8 - 7 - 7 - 23 - 23 - 26 - 0 - 3 - 34 - 33 - 30 - 17 - 95 - 89 - 28 - 30 - 30 - 23 - 24 - 24 - 27 - 95 - 89 - 24 - 3 - 8 - 23 - 4 - 4 - 11 - 95 - 89 - 4 - 23 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1276 289 m 0,0,1 - 1276 69 1276 69 1202.5 -93.5 c 128,-1,2 - 1129 -256 1129 -256 996 -340.5 c 128,-1,3 - 863 -425 863 -425 689 -425 c 0,4,5 - 501 -425 501 -425 372 -353.5 c 128,-1,6 - 243 -282 243 -282 183 -139 c 1,7,-1 - 361 -109 l 1,8,9 - 406 -199 406 -199 481 -237.5 c 128,-1,10 - 556 -276 556 -276 687 -276 c 0,11,12 - 881 -276 881 -276 984 -129.5 c 128,-1,13 - 1087 17 1087 17 1087 286 c 0,14,15 - 1087 556 1087 556 998.5 681 c 128,-1,16 - 910 806 910 806 729 806 c 0,17,18 - 671 806 671 806 614.5 796.5 c 128,-1,19 - 558 787 558 787 505 771.5 c 128,-1,20 - 452 756 452 756 357 719 c 1,21,-1 - 357 0 l 1,22,-1 - 167 0 l 1,23,-1 - 167 1409 l 1,24,-1 - 1087 1409 l 1,25,-1 - 1087 1253 l 1,26,-1 - 357 1253 l 1,27,-1 - 357 869 l 1,28,29 - 544 960 544 960 737 960 c 0,30,31 - 1002 960 1002 960 1139 790 c 128,-1,32 - 1276 620 1276 620 1276 289 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0495 -Encoding: 1173 1173 1094 -Width: 1124 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 14 - 0 - 27 - 21 - 21 - 22 - 8 - 7 - 7 - 22 - 22 - 25 - 0 - 3 - 34 - 33 - 29 - 18 - 80 - 89 - 27 - 29 - 29 - 22 - 23 - 23 - 26 - 80 - 89 - 23 - 15 - 8 - 8 - 4 - 22 - 21 - 4 - 11 - 80 - 89 - 4 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1049 92 m 0,0,1 - 1049 -67 1049 -67 991 -184.5 c 128,-1,2 - 933 -302 933 -302 827.5 -363.5 c 128,-1,3 - 722 -425 722 -425 583 -425 c 0,4,5 - 406 -425 406 -425 302 -355 c 128,-1,6 - 198 -285 198 -285 152 -142 c 1,7,-1 - 330 -129 l 1,8,9 - 360 -213 360 -213 420.5 -250.5 c 128,-1,10 - 481 -288 481 -288 583 -288 c 0,11,12 - 729 -288 729 -288 803.5 -193.5 c 128,-1,13 - 878 -99 878 -99 878 83 c 0,14,15 - 878 195 878 195 835.5 277 c 128,-1,16 - 793 359 793 359 715 402 c 128,-1,17 - 637 445 637 445 539 445 c 0,18,19 - 423 445 423 445 321 413 c 1,20,-1 - 321 0 l 1,21,-1 - 141 0 l 1,22,-1 - 141 1082 l 1,23,-1 - 750 1082 l 1,24,-1 - 750 943 l 1,25,-1 - 321 943 l 1,26,-1 - 321 547 l 1,27,28 - 437 582 437 582 552 582 c 0,29,30 - 698 582 698 582 811.5 523.5 c 128,-1,31 - 925 465 925 465 987 354 c 128,-1,32 - 1049 243 1049 243 1049 92 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0496 -Encoding: 1174 1174 1095 -Width: 1891 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 64 - 27 - 34 - 18 - 23 - 24 - 24 - 32 - 29 - 18 - 38 - 38 - 39 - 6 - 3 - 9 - 15 - 15 - 39 - 10 - 9 - 9 - 4 - 5 - 5 - 39 - 29 - 3 - 41 - 40 - 34 - 3 - 27 - 6 - 37 - 0 - 15 - 0 - 96 - 89 - 18 - 15 - 3 - 6 - 15 - 15 - 6 - 3 - 3 - 33 - 9 - 33 - 28 - 95 - 89 - 33 - 18 - 31 - 23 - 16 - 9 - 3 - 39 - 5 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -850 645 m 1,0,1 - 813 645 813 645 757.5 658 c 128,-1,2 - 702 671 702 671 677 683 c 1,3,-1 - 250 0 l 1,4,-1 - 28 0 l 1,5,-1 - 537 775 l 1,6,7 - 489 810 489 810 358 999 c 2,8,-1 - 75 1409 l 1,9,-1 - 275 1409 l 1,10,-1 - 480 1104 l 2,11,12 - 591 937 591 937 639 883.5 c 128,-1,13 - 687 830 687 830 731 810 c 128,-1,14 - 775 790 775 790 850 790 c 1,15,-1 - 850 1409 l 1,16,-1 - 1041 1409 l 1,17,-1 - 1041 790 l 1,18,19 - 1116 790 1116 790 1161 810.5 c 128,-1,20 - 1206 831 1206 831 1255 886.5 c 128,-1,21 - 1304 942 1304 942 1411 1104 c 2,22,-1 - 1616 1409 l 1,23,-1 - 1816 1409 l 1,24,-1 - 1533 999 l 2,25,26 - 1402 810 1402 810 1354 775 c 1,27,-1 - 1758 160 l 1,28,-1 - 1870 160 l 1,29,-1 - 1870 -408 l 1,30,-1 - 1690 -408 l 1,31,-1 - 1690 0 l 1,32,-1 - 1641 0 l 1,33,-1 - 1214 683 l 1,34,35 - 1189 671 1189 671 1134.5 658 c 128,-1,36 - 1080 645 1080 645 1041 645 c 1,37,-1 - 1041 0 l 1,38,-1 - 850 0 l 1,39,-1 - 850 645 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0497 -Encoding: 1175 1175 1096 -Width: 1370 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 64 - 0 - 33 - 24 - 29 - 30 - 30 - 35 - 12 - 9 - 15 - 21 - 21 - 5 - 24 - 4 - 4 - 5 - 16 - 15 - 15 - 10 - 11 - 11 - 5 - 35 - 3 - 41 - 40 - 33 - 12 - 0 - 9 - 21 - 9 - 81 - 89 - 3 - 6 - 21 - 6 - 81 - 89 - 24 - 21 - 12 - 21 - 12 - 21 - 39 - 15 - 39 - 34 - 81 - 89 - 39 - 21 - 37 - 29 - 22 - 15 - 15 - 5 - 11 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -885 497 m 1,0,1 - 866 489 866 489 833.5 483 c 128,-1,2 - 801 477 801 477 775 477 c 1,3,-1 - 775 0 l 1,4,-1 - 595 0 l 1,5,-1 - 595 477 l 1,6,7 - 569 477 569 477 536.5 483 c 128,-1,8 - 504 489 504 489 485 497 c 1,9,-1 - 207 0 l 1,10,-1 - 7 0 l 1,11,-1 - 360 592 l 1,12,13 - 325 621 325 621 232 757 c 2,14,-1 - 16 1082 l 1,15,-1 - 204 1082 l 1,16,-1 - 352 843 l 2,17,18 - 418 737 418 737 454 690.5 c 128,-1,19 - 490 644 490 644 519.5 626 c 128,-1,20 - 549 608 549 608 595 608 c 1,21,-1 - 595 1082 l 1,22,-1 - 775 1082 l 1,23,-1 - 775 608 l 1,24,25 - 805 608 805 608 829 616 c 128,-1,26 - 853 624 853 624 879 649.5 c 128,-1,27 - 905 675 905 675 938 721 c 128,-1,28 - 971 767 971 767 1166 1082 c 1,29,-1 - 1354 1082 l 1,30,-1 - 1138 757 l 2,31,32 - 1045 621 1045 621 1010 592 c 1,33,-1 - 1285 131 l 1,34,-1 - 1363 131 l 1,35,-1 - 1363 -408 l 1,36,-1 - 1200 -408 l 1,37,-1 - 1200 0 l 1,38,-1 - 1163 0 l 1,39,-1 - 885 497 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0498 -Encoding: 1176 1176 1097 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 58 - 40 - 20 - 31 - 24 - 37 - 37 - 15 - 43 - 48 - 4 - 30 - 31 - 31 - 10 - 9 - 9 - 0 - 4 - 43 - 4 - 55 - 54 - 51 - 2 - 96 - 89 - 51 - 46 - 64 - 40 - 21 - 18 - 21 - 18 - 96 - 89 - 21 - 21 - 34 - 46 - 46 - 12 - 96 - 89 - 10 - 10 - 6 - 46 - 19 - 30 - 30 - 34 - 34 - 27 - 95 - 89 - 34 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -311 -256 m 1,0,1 - 400 -291 400 -291 486 -291 c 0,2,3 - 615 -291 615 -291 615 -164 c 0,4,5 - 615 -84 615 -84 594 -19 c 1,6,7 - 398 -14 398 -14 273 67.5 c 128,-1,8 - 148 149 148 149 67 328 c 1,9,-1 - 232 405 l 1,10,11 - 351 133 351 133 614 133 c 0,12,13 - 767 133 767 133 855 204 c 128,-1,14 - 943 275 943 275 943 403 c 0,15,16 - 943 536 943 536 847 595 c 128,-1,17 - 751 654 751 654 549 654 c 2,18,-1 - 478 654 l 1,19,-1 - 478 802 l 1,20,-1 - 549 802 l 2,21,22 - 730 802 730 802 816.5 861.5 c 128,-1,23 - 903 921 903 921 903 1044 c 0,24,25 - 903 1151 903 1151 830.5 1212.5 c 128,-1,26 - 758 1274 758 1274 623 1274 c 0,27,28 - 497 1274 497 1274 411 1215.5 c 128,-1,29 - 325 1157 325 1157 274 1027 c 1,30,-1 - 96 1088 l 1,31,32 - 166 1261 166 1261 298 1345 c 128,-1,33 - 430 1429 430 1429 630 1429 c 0,34,35 - 842 1429 842 1429 968 1329.5 c 128,-1,36 - 1094 1230 1094 1230 1094 1061 c 0,37,38 - 1094 934 1094 934 1022 851 c 128,-1,39 - 950 768 950 768 814 736 c 1,40,41 - 966 713 966 713 1051 625.5 c 128,-1,42 - 1136 538 1136 538 1136 406 c 0,43,44 - 1136 233 1136 233 1025.5 121.5 c 128,-1,45 - 915 10 915 10 722 -14 c 1,46,47 - 753 -138 753 -138 753 -220 c 0,48,49 - 753 -315 753 -315 689 -370 c 128,-1,50 - 625 -425 625 -425 509 -425 c 0,51,52 - 394 -425 394 -425 311 -391 c 1,53,-1 - 311 -256 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni0499 -Encoding: 1177 1177 1098 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 59 - 19 - 37 - 34 - 28 - 29 - 29 - 11 - 10 - 46 - 5 - 22 - 34 - 34 - 16 - 41 - 41 - 5 - 0 - 10 - 4 - 52 - 53 - 37 - 19 - 18 - 19 - 18 - 80 - 89 - 19 - 19 - 31 - 7 - 28 - 28 - 31 - 31 - 25 - 80 - 89 - 31 - 16 - 49 - 2 - 81 - 89 - 49 - 7 - 64 - 44 - 7 - 7 - 13 - 80 - 89 - 11 - 11 - 7 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -173 -260 m 1,0,1 - 260 -294 260 -294 338 -294 c 0,2,3 - 402 -294 402 -294 431.5 -263.5 c 128,-1,4 - 461 -233 461 -233 461 -170 c 0,5,6 - 461 -91 461 -91 438 -20 c 1,7,8 - 280 -16 280 -16 186.5 46 c 128,-1,9 - 93 108 93 108 49 234 c 1,10,-1 - 208 278 l 1,11,12 - 261 114 261 114 462 114 c 0,13,14 - 558 114 558 114 614.5 161 c 128,-1,15 - 671 208 671 208 671 299 c 0,16,17 - 671 499 671 499 340 499 c 1,18,-1 - 340 636 l 1,19,20 - 501 636 501 636 577 678 c 128,-1,21 - 653 720 653 720 653 808 c 0,22,23 - 653 882 653 882 603.5 925 c 128,-1,24 - 554 968 554 968 461 968 c 0,25,26 - 372 968 372 968 315.5 931 c 128,-1,27 - 259 894 259 894 247 824 c 1,28,-1 - 85 844 l 1,29,30 - 131 1102 131 1102 462 1102 c 0,31,32 - 630 1102 630 1102 733 1022.5 c 128,-1,33 - 836 943 836 943 836 817 c 0,34,35 - 836 716 836 716 763.5 648 c 128,-1,36 - 691 580 691 580 588 571 c 1,37,-1 - 588 569 l 1,38,39 - 709 556 709 556 785.5 484.5 c 128,-1,40 - 862 413 862 413 862 304 c 0,41,42 - 862 179 862 179 785.5 95 c 128,-1,43 - 709 11 709 11 566 -12 c 1,44,45 - 599 -119 599 -119 599 -205 c 0,46,47 - 599 -312 599 -312 539.5 -368.5 c 128,-1,48 - 480 -425 480 -425 360 -425 c 0,49,50 - 257 -425 257 -425 173 -392 c 1,51,-1 - 173 -260 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni049A -Encoding: 1178 1178 1099 -Width: 1193 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 18 - 11 - 2 - 8 - 2 - 22 - 22 - 23 - 7 - 8 - 8 - 17 - 15 - 14 - 23 - 14 - 24 - 25 - 23 - 18 - 2 - 21 - 96 - 89 - 18 - 2 - 18 - 2 - 17 - 0 - 17 - 12 - 95 - 89 - 17 - 18 - 15 - 7 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -168 1409 m 1,0,-1 - 359 1409 l 1,1,-1 - 359 790 l 1,2,3 - 434 790 434 790 479 810.5 c 128,-1,4 - 524 831 524 831 573 886.5 c 128,-1,5 - 622 942 622 942 729 1104 c 2,6,-1 - 934 1409 l 1,7,-1 - 1134 1409 l 1,8,-1 - 851 999 l 2,9,10 - 720 810 720 810 672 775 c 1,11,-1 - 1076 160 l 1,12,-1 - 1185 160 l 1,13,-1 - 1185 -408 l 1,14,-1 - 1005 -408 l 1,15,-1 - 1005 0 l 1,16,-1 - 959 0 l 1,17,-1 - 532 683 l 1,18,19 - 507 671 507 671 452.5 658 c 128,-1,20 - 398 645 398 645 359 645 c 1,21,-1 - 359 0 l 1,22,-1 - 168 0 l 1,23,-1 - 168 1409 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni049B -Encoding: 1179 1179 1100 -Width: 896 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 11 - 18 - 8 - 2 - 2 - 22 - 22 - 23 - 23 - 24 - 25 - 7 - 8 - 8 - 16 - 15 - 14 - 14 - 25 - 23 - 21 - 2 - 21 - 81 - 89 - 2 - 18 - 81 - 89 - 2 - 2 - 17 - 0 - 17 - 12 - 81 - 89 - 17 - 21 - 15 - 7 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -138 1082 m 1,0,-1 - 318 1082 l 1,1,-1 - 318 608 l 1,2,3 - 348 608 348 608 372 616 c 128,-1,4 - 396 624 396 624 422 649.5 c 128,-1,5 - 448 675 448 675 481 721 c 128,-1,6 - 514 767 514 767 709 1082 c 1,7,-1 - 897 1082 l 1,8,-1 - 681 757 l 2,9,10 - 588 621 588 621 553 592 c 1,11,-1 - 828 131 l 1,12,-1 - 906 131 l 1,13,-1 - 906 -408 l 1,14,-1 - 743 -408 l 1,15,-1 - 743 0 l 1,16,-1 - 706 0 l 1,17,-1 - 428 497 l 1,18,19 - 409 489 409 489 376.5 483 c 128,-1,20 - 344 477 344 477 318 477 c 1,21,-1 - 318 0 l 1,22,-1 - 138 0 l 1,23,-1 - 138 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni049C -Encoding: 1180 1180 1101 -Width: 1193 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 12 - 23 - 23 - 9 - 24 - 24 - 19 - 7 - 16 - 7 - 3 - 3 - 4 - 15 - 16 - 16 - 20 - 4 - 20 - 25 - 26 - 22 - 2 - 0 - 9 - 0 - 96 - 89 - 19 - 12 - 7 - 9 - 24 - 9 - 10 - 10 - 9 - 24 - 3 - 4 - 15 - 5 - 3 - 21 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -466 661 m 1,0,1 - 408 645 408 645 359 645 c 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 359 1409 l 1,6,-1 - 359 790 l 1,7,8 - 423 790 423 790 466 805 c 1,9,-1 - 466 1207 l 1,10,-1 - 581 1207 l 1,11,-1 - 581 896 l 1,12,13 - 614 935 614 935 673 1021 c 128,-1,14 - 732 1107 732 1107 934 1409 c 1,15,-1 - 1134 1409 l 1,16,-1 - 851 999 l 2,17,18 - 720 810 720 810 672 775 c 1,19,-1 - 1181 0 l 1,20,-1 - 959 0 l 1,21,-1 - 581 619 l 1,22,-1 - 581 247 l 1,23,-1 - 466 247 l 1,24,-1 - 466 661 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni049D -Encoding: 1181 1181 1102 -Width: 896 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 12 - 21 - 21 - 9 - 22 - 17 - 22 - 7 - 13 - 14 - 14 - 18 - 18 - 24 - 7 - 3 - 3 - 4 - 4 - 23 - 24 - 20 - 2 - 0 - 9 - 0 - 80 - 89 - 17 - 12 - 7 - 9 - 22 - 9 - 10 - 10 - 9 - 22 - 3 - 4 - 13 - 5 - 15 - 19 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -383 485 m 1,0,1 - 346 477 346 477 318 477 c 1,2,-1 - 318 0 l 1,3,-1 - 138 0 l 1,4,-1 - 138 1082 l 1,5,-1 - 318 1082 l 1,6,-1 - 318 608 l 1,7,8 - 358 608 358 608 383 617 c 1,9,-1 - 383 946 l 1,10,-1 - 488 946 l 1,11,-1 - 488 708 l 1,12,-1 - 709 1082 l 1,13,-1 - 897 1082 l 1,14,-1 - 681 757 l 2,15,16 - 588 621 588 621 553 592 c 1,17,-1 - 906 0 l 1,18,-1 - 706 0 l 1,19,-1 - 488 407 l 1,20,-1 - 488 160 l 1,21,-1 - 383 160 l 1,22,-1 - 383 485 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni049E -Encoding: 1182 1182 1103 -Width: 1193 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 20 - 17 - 4 - 13 - 14 - 14 - 18 - 4 - 24 - 24 - 27 - 1 - 25 - 18 - 25 - 29 - 28 - 8 - 23 - 96 - 89 - 20 - 17 - 8 - 7 - 27 - 0 - 27 - 96 - 89 - 4 - 0 - 8 - 0 - 8 - 0 - 2 - 19 - 25 - 18 - 13 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -4 1194 m 1,0,-1 - 168 1194 l 1,1,-1 - 168 1409 l 1,2,-1 - 359 1409 l 1,3,-1 - 359 1194 l 1,4,-1 - 542 1194 l 1,5,-1 - 542 1047 l 1,6,-1 - 359 1047 l 1,7,-1 - 359 790 l 1,8,9 - 434 790 434 790 479 810.5 c 128,-1,10 - 524 831 524 831 573 886.5 c 128,-1,11 - 622 942 622 942 729 1104 c 2,12,-1 - 934 1409 l 1,13,-1 - 1134 1409 l 1,14,-1 - 851 999 l 2,15,16 - 720 810 720 810 672 775 c 1,17,-1 - 1181 0 l 1,18,-1 - 959 0 l 1,19,-1 - 532 683 l 1,20,21 - 507 671 507 671 452.5 658 c 128,-1,22 - 398 645 398 645 359 645 c 1,23,-1 - 359 0 l 1,24,-1 - 168 0 l 1,25,-1 - 168 1047 l 1,26,-1 - 4 1047 l 1,27,-1 - 4 1194 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni049F -Encoding: 1183 1183 1104 -Width: 896 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 17 - 20 - 14 - 8 - 8 - 4 - 24 - 24 - 27 - 1 - 25 - 25 - 29 - 28 - 13 - 14 - 14 - 19 - 18 - 18 - 29 - 8 - 23 - 81 - 89 - 17 - 8 - 8 - 13 - 19 - 25 - 21 - 7 - 27 - 0 - 27 - 81 - 89 - 4 - 0 - 0 - 2 - 13 - 15 - 2 - 0 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -10 1337 m 1,0,-1 - 138 1337 l 1,1,-1 - 138 1484 l 1,2,-1 - 318 1484 l 1,3,-1 - 318 1337 l 1,4,-1 - 622 1337 l 1,5,-1 - 622 1206 l 1,6,-1 - 318 1206 l 1,7,-1 - 318 608 l 1,8,9 - 348 608 348 608 372 616 c 128,-1,10 - 396 624 396 624 422 649.5 c 128,-1,11 - 448 675 448 675 481 721 c 128,-1,12 - 514 767 514 767 709 1082 c 1,13,-1 - 897 1082 l 1,14,-1 - 681 757 l 2,15,16 - 588 621 588 621 553 592 c 1,17,-1 - 906 0 l 1,18,-1 - 706 0 l 1,19,-1 - 428 497 l 1,20,21 - 409 489 409 489 376.5 483 c 128,-1,22 - 344 477 344 477 318 477 c 1,23,-1 - 318 0 l 1,24,-1 - 138 0 l 1,25,-1 - 138 1206 l 1,26,-1 - 10 1206 l 1,27,-1 - 10 1337 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04A0 -Encoding: 1184 1184 1105 -Width: 1519 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 11 - 14 - 8 - 2 - 2 - 18 - 18 - 19 - 7 - 8 - 8 - 13 - 12 - 12 - 19 - 0 - 3 - 22 - 23 - 14 - 17 - 2 - 17 - 96 - 89 - 11 - 2 - 2 - 0 - 13 - 19 - 18 - 7 - 3 - 0 - 21 - 95 - 89 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -41 1409 m 1,0,-1 - 681 1409 l 1,1,-1 - 681 790 l 1,2,3 - 756 790 756 790 801 810.5 c 128,-1,4 - 846 831 846 831 895 886.5 c 128,-1,5 - 944 942 944 942 1051 1104 c 2,6,-1 - 1256 1409 l 1,7,-1 - 1456 1409 l 1,8,-1 - 1173 999 l 2,9,10 - 1042 810 1042 810 994 775 c 1,11,-1 - 1503 0 l 1,12,-1 - 1281 0 l 1,13,-1 - 854 683 l 1,14,15 - 829 671 829 671 774.5 658 c 128,-1,16 - 720 645 720 645 681 645 c 1,17,-1 - 681 0 l 1,18,-1 - 490 0 l 1,19,-1 - 490 1253 l 1,20,-1 - 41 1253 l 1,21,-1 - 41 1409 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04A1 -Encoding: 1185 1185 1106 -Width: 1097 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 11 - 14 - 8 - 2 - 8 - 13 - 12 - 12 - 23 - 2 - 18 - 18 - 19 - 0 - 19 - 22 - 23 - 2 - 17 - 81 - 89 - 11 - 2 - 2 - 0 - 13 - 19 - 21 - 7 - 15 - 0 - 21 - 80 - 89 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -40 1082 m 1,0,-1 - 515 1082 l 1,1,-1 - 515 608 l 1,2,3 - 545 608 545 608 569 616 c 128,-1,4 - 593 624 593 624 619 649.5 c 128,-1,5 - 645 675 645 675 678 721 c 128,-1,6 - 711 767 711 767 906 1082 c 1,7,-1 - 1094 1082 l 1,8,-1 - 878 757 l 2,9,10 - 785 621 785 621 750 592 c 1,11,-1 - 1103 0 l 1,12,-1 - 903 0 l 1,13,-1 - 625 497 l 1,14,15 - 606 489 606 489 573.5 483 c 128,-1,16 - 541 477 541 477 515 477 c 1,17,-1 - 515 0 l 1,18,-1 - 335 0 l 1,19,-1 - 335 943 l 1,20,-1 - 40 943 l 1,21,-1 - 40 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04A2 -Encoding: 1186 1186 1107 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 13 - 12 - 10 - 7 - 15 - 6 - 2 - 2 - 3 - 3 - 15 - 12 - 3 - 17 - 16 - 6 - 1 - 95 - 89 - 6 - 6 - 15 - 4 - 15 - 10 - 95 - 89 - 15 - 18 - 13 - 8 - 4 - 3 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1121 653 m 1,0,-1 - 359 653 l 1,1,-1 - 359 0 l 1,2,-1 - 168 0 l 1,3,-1 - 168 1409 l 1,4,-1 - 359 1409 l 1,5,-1 - 359 813 l 1,6,-1 - 1121 813 l 1,7,-1 - 1121 1409 l 1,8,-1 - 1312 1409 l 1,9,-1 - 1312 160 l 1,10,-1 - 1447 160 l 1,11,-1 - 1447 -408 l 1,12,-1 - 1267 -408 l 1,13,-1 - 1267 0 l 1,14,-1 - 1121 0 l 1,15,-1 - 1121 653 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04A3 -Encoding: 1187 1187 1108 -Width: 1131 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 6 - 2 - 2 - 3 - 7 - 16 - 16 - 10 - 10 - 14 - 13 - 3 - 13 - 17 - 18 - 11 - 10 - 16 - 10 - 81 - 89 - 6 - 1 - 81 - 89 - 6 - 6 - 4 - 16 - 21 - 14 - 8 - 4 - 15 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -809 493 m 1,0,-1 - 322 493 l 1,1,-1 - 322 0 l 1,2,-1 - 142 0 l 1,3,-1 - 142 1082 l 1,4,-1 - 322 1082 l 1,5,-1 - 322 624 l 1,6,-1 - 809 624 l 1,7,-1 - 809 1082 l 1,8,-1 - 989 1082 l 1,9,-1 - 989 129 l 1,10,-1 - 990 131 l 1,11,-1 - 1111 131 l 1,12,-1 - 1111 -408 l 1,13,-1 - 948 -408 l 1,14,-1 - 948 0 l 1,15,-1 - 809 0 l 1,16,-1 - 809 493 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04A4 -Encoding: 1188 1188 1109 -Width: 1801 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 13 - 8 - 0 - 7 - 3 - 3 - 4 - 4 - 0 - 10 - 3 - 15 - 14 - 7 - 2 - 95 - 89 - 7 - 7 - 4 - 9 - 9 - 12 - 95 - 89 - 9 - 3 - 5 - 3 - 0 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1121 0 m 1,0,-1 - 1121 653 l 1,1,-1 - 359 653 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 359 1409 l 1,6,-1 - 359 813 l 1,7,-1 - 1121 813 l 1,8,-1 - 1121 1409 l 1,9,-1 - 1760 1409 l 1,10,-1 - 1760 1253 l 1,11,-1 - 1312 1253 l 1,12,-1 - 1312 0 l 1,13,-1 - 1121 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04A5 -Encoding: 1189 1189 1110 -Width: 1327 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 1 - 11 - 11 - 12 - 7 - 2 - 8 - 4 - 8 - 12 - 3 - 14 - 15 - 13 - 15 - 1 - 10 - 81 - 89 - 1 - 1 - 3 - 8 - 12 - 21 - 3 - 6 - 80 - 89 - 3 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -322 1082 m 1,0,-1 - 322 624 l 1,1,-1 - 809 624 l 1,2,-1 - 809 1082 l 1,3,-1 - 1290 1082 l 1,4,-1 - 1290 943 l 1,5,-1 - 989 943 l 1,6,-1 - 989 0 l 1,7,-1 - 809 0 l 1,8,-1 - 809 493 l 1,9,-1 - 322 493 l 1,10,-1 - 322 0 l 1,11,-1 - 142 0 l 1,12,-1 - 142 1082 l 1,13,-1 - 322 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04A6 -Encoding: 1190 1190 1111 -Width: 2328 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 26 - 12 - 7 - 33 - 33 - 20 - 19 - 19 - 0 - 3 - 4 - 4 - 0 - 12 - 3 - 35 - 34 - 9 - 29 - 95 - 89 - 7 - 9 - 9 - 4 - 5 - 5 - 2 - 95 - 89 - 5 - 3 - 20 - 4 - 16 - 16 - 23 - 95 - 89 - 16 - 0 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1121 0 m 1,0,-1 - 1121 1252 l 1,1,-1 - 359 1252 l 1,2,-1 - 359 0 l 1,3,-1 - 168 0 l 1,4,-1 - 168 1409 l 1,5,-1 - 1312 1409 l 1,6,-1 - 1312 869 l 1,7,8 - 1499 960 1499 960 1696 960 c 0,9,10 - 1961 960 1961 960 2098 790 c 128,-1,11 - 2235 620 2235 620 2235 289 c 0,12,13 - 2235 69 2235 69 2161.5 -93.5 c 128,-1,14 - 2088 -256 2088 -256 1955 -340.5 c 128,-1,15 - 1822 -425 1822 -425 1648 -425 c 0,16,17 - 1460 -425 1460 -425 1331 -353.5 c 128,-1,18 - 1202 -282 1202 -282 1142 -139 c 1,19,-1 - 1320 -109 l 1,20,21 - 1365 -199 1365 -199 1440 -237.5 c 128,-1,22 - 1515 -276 1515 -276 1646 -276 c 0,23,24 - 1840 -276 1840 -276 1943 -129.5 c 128,-1,25 - 2046 17 2046 17 2046 286 c 0,26,27 - 2046 556 2046 556 1957.5 681 c 128,-1,28 - 1869 806 1869 806 1688 806 c 0,29,30 - 1614 806 1614 806 1529 788 c 128,-1,31 - 1444 770 1444 770 1312 719 c 1,32,-1 - 1312 0 l 1,33,-1 - 1121 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04A7 -Encoding: 1191 1191 1112 -Width: 1782 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 21 - 7 - 1 - 28 - 28 - 29 - 15 - 14 - 14 - 29 - 32 - 33 - 33 - 29 - 7 - 3 - 36 - 35 - 3 - 25 - 80 - 89 - 1 - 3 - 3 - 33 - 34 - 34 - 31 - 80 - 89 - 34 - 15 - 15 - 15 - 11 - 29 - 33 - 21 - 11 - 18 - 80 - 89 - 11 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -974 1082 m 1,0,-1 - 974 547 l 1,1,2 - 1090 582 1090 582 1205 582 c 0,3,4 - 1351 582 1351 582 1464.5 523.5 c 128,-1,5 - 1578 465 1578 465 1640 354 c 128,-1,6 - 1702 243 1702 243 1702 92 c 0,7,8 - 1702 -67 1702 -67 1644 -184.5 c 128,-1,9 - 1586 -302 1586 -302 1480.5 -363.5 c 128,-1,10 - 1375 -425 1375 -425 1236 -425 c 0,11,12 - 1059 -425 1059 -425 955 -355 c 128,-1,13 - 851 -285 851 -285 805 -142 c 1,14,-1 - 983 -129 l 1,15,16 - 1013 -213 1013 -213 1073.5 -250.5 c 128,-1,17 - 1134 -288 1134 -288 1236 -288 c 0,18,19 - 1382 -288 1382 -288 1456.5 -193.5 c 128,-1,20 - 1531 -99 1531 -99 1531 83 c 0,21,22 - 1531 195 1531 195 1488.5 277 c 128,-1,23 - 1446 359 1446 359 1368 402 c 128,-1,24 - 1290 445 1290 445 1192 445 c 0,25,26 - 1076 445 1076 445 974 413 c 1,27,-1 - 974 0 l 1,28,-1 - 794 0 l 1,29,-1 - 794 946 l 1,30,-1 - 316 946 l 1,31,-1 - 316 0 l 1,32,-1 - 136 0 l 1,33,-1 - 136 1082 l 1,34,-1 - 974 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04A8 -Encoding: 1192 1192 1113 -Width: 1542 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 51 - 21 - 9 - 15 - 47 - 47 - 29 - 53 - 36 - 0 - 36 - 39 - 50 - 4 - 26 - 29 - 9 - 8 - 56 - 57 - 50 - 39 - 26 - 4 - 4 - 2 - 32 - 32 - 44 - 95 - 89 - 32 - 32 - 18 - 13 - 18 - 95 - 89 - 13 - 4 - 6 - 24 - 95 - 89 - 6 - 19 - 2 - 41 - 95 - 89 - 2 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1500 40 m 1,0,1 - 1393 -20 1393 -20 1260 -20 c 0,2,3 - 1106 -20 1106 -20 971 41 c 1,4,5 - 838 -20 838 -20 665 -20 c 0,6,7 - 374 -20 374 -20 218 170.5 c 128,-1,8 - 62 361 62 361 62 713 c 0,9,10 - 62 929 62 929 126 1094.5 c 128,-1,11 - 190 1260 190 1260 305.5 1345 c 128,-1,12 - 421 1430 421 1430 577 1430 c 0,13,14 - 709 1430 709 1430 796 1375 c 1,15,-1 - 717 1242 l 1,16,17 - 657 1276 657 1276 577 1276 c 0,18,19 - 428 1276 428 1276 342 1116.5 c 128,-1,20 - 256 957 256 957 256 714 c 0,21,22 - 256 424 256 424 363 277.5 c 128,-1,23 - 470 131 470 131 681 131 c 0,24,25 - 741 131 741 131 820 150 c 1,26,27 - 733 246 733 246 679.5 406 c 128,-1,28 - 626 566 626 566 626 742 c 0,29,30 - 626 980 626 980 722.5 1122.5 c 128,-1,31 - 819 1265 819 1265 985 1265 c 0,32,33 - 1087 1265 1087 1265 1164.5 1197 c 128,-1,34 - 1242 1129 1242 1129 1283.5 1007.5 c 128,-1,35 - 1325 886 1325 886 1325 733 c 0,36,37 - 1325 562 1325 562 1272.5 406 c 128,-1,38 - 1220 250 1220 250 1128 152 c 1,39,40 - 1189 133 1189 133 1256 133 c 0,41,42 - 1349 133 1349 133 1420 180 c 1,43,-1 - 1500 40 l 1,0,1 -985 1108 m 0,44,45 - 898 1108 898 1108 847.5 1010 c 128,-1,46 - 797 912 797 912 797 749 c 0,47,48 - 797 581 797 581 848 433 c 128,-1,49 - 899 285 899 285 980 212 c 1,50,51 - 1063 303 1063 303 1110.5 441.5 c 128,-1,52 - 1158 580 1158 580 1158 738 c 256,53,54 - 1158 896 1158 896 1110.5 1002 c 128,-1,55 - 1063 1108 1063 1108 985 1108 c 0,44,45 -EndSplineSet -EndChar - -StartChar: uni04A9 -Encoding: 1193 1193 1114 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 52 - 39 - 0 - 33 - 35 - 24 - 48 - 14 - 45 - 45 - 27 - 20 - 9 - 9 - 27 - 48 - 33 - 4 - 52 - 51 - 4 - 24 - 35 - 48 - 4 - 30 - 2 - 30 - 42 - 80 - 89 - 30 - 30 - 6 - 12 - 12 - 17 - 80 - 89 - 12 - 16 - 6 - 23 - 81 - 89 - 6 - 22 - 2 - 36 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1042 35 m 1,0,1 - 972 -20 972 -20 865 -20 c 0,2,3 - 775 -20 775 -20 693 17 c 1,4,5 - 612 -20 612 -20 508 -20 c 0,6,7 - 278 -20 278 -20 156.5 122.5 c 128,-1,8 - 35 265 35 265 35 527 c 0,9,10 - 35 799 35 799 142 949.5 c 128,-1,11 - 249 1100 249 1100 445 1100 c 0,12,13 - 518 1100 518 1100 591 1073 c 1,14,-1 - 527 946 l 1,15,16 - 495 966 495 966 442 966 c 0,17,18 - 336 966 336 966 274.5 848 c 128,-1,19 - 213 730 213 730 213 527 c 0,20,21 - 213 323 213 323 292 214 c 128,-1,22 - 371 105 371 105 518 105 c 1,23,-1 - 568 108 l 1,24,25 - 500 186 500 186 464.5 296.5 c 128,-1,26 - 429 407 429 407 429 524 c 0,27,28 - 429 702 429 702 502 815 c 128,-1,29 - 575 928 575 928 693 928 c 0,30,31 - 814 928 814 928 885.5 817 c 128,-1,32 - 957 706 957 706 957 528 c 0,33,34 - 957 263 957 263 819 115 c 1,35,-1 - 867 112 l 1,36,37 - 935 112 935 112 983 151 c 1,38,-1 - 1042 35 l 1,0,1 -793 527 m 0,39,40 - 793 645 793 645 765.5 713 c 128,-1,41 - 738 781 738 781 692 781 c 0,42,43 - 645 781 645 781 619 712 c 128,-1,44 - 593 643 593 643 593 527 c 0,45,46 - 593 422 593 422 620 325.5 c 128,-1,47 - 647 229 647 229 694 177 c 1,48,49 - 740 229 740 229 766.5 322 c 128,-1,50 - 793 415 793 415 793 527 c 0,39,40 -EndSplineSet -EndChar - -StartChar: uni04AA -Encoding: 1194 1194 1115 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 69 - 37 - 36 - 36 - 8 - 9 - 14 - 24 - 3 - 30 - 30 - 20 - 24 - 9 - 4 - 41 - 40 - 15 - 37 - 1 - 13 - 3 - 37 - 37 - 33 - 33 - 0 - 95 - 89 - 33 - 4 - 20 - 26 - 17 - 17 - 22 - 96 - 89 - 17 - 26 - 26 - 12 - 0 - 8 - 16 - 8 - 64 - 8 - 80 - 8 - 144 - 8 - 160 - 8 - 208 - 8 - 224 - 8 - 8 - 12 - 3 - 8 - 8 - 12 - 12 - 6 - 95 - 89 - 12 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SHP[rp1] -MDAP[rnd] -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -792 1274 m 0,0,1 - 558 1274 558 1274 428 1123.5 c 128,-1,2 - 298 973 298 973 298 711 c 0,3,4 - 298 452 298 452 433.5 294.5 c 128,-1,5 - 569 137 569 137 800 137 c 0,6,7 - 1096 137 1096 137 1245 430 c 1,8,-1 - 1401 352 l 1,9,10 - 1326 195 1326 195 1196.5 101.5 c 128,-1,11 - 1067 8 1067 8 892 -14 c 1,12,13 - 923 -138 923 -138 923 -220 c 0,14,15 - 923 -315 923 -315 859 -370 c 128,-1,16 - 795 -425 795 -425 679 -425 c 0,17,18 - 564 -425 564 -425 481 -391 c 1,19,-1 - 481 -256 l 1,20,21 - 570 -291 570 -291 656 -291 c 0,22,23 - 785 -291 785 -291 785 -164 c 0,24,25 - 785 -84 785 -84 764 -19 c 1,26,27 - 559 -14 559 -14 410 75.5 c 128,-1,28 - 261 165 261 165 182.5 329 c 128,-1,29 - 104 493 104 493 104 711 c 0,30,31 - 104 1048 104 1048 286 1239 c 128,-1,32 - 468 1430 468 1430 790 1430 c 0,33,34 - 1015 1430 1015 1430 1166 1342 c 128,-1,35 - 1317 1254 1317 1254 1388 1081 c 1,36,-1 - 1207 1021 l 1,37,38 - 1158 1144 1158 1144 1049.5 1209 c 128,-1,39 - 941 1274 941 1274 792 1274 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni04AB -Encoding: 1195 1195 1116 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 82 - 17 - 16 - 16 - 29 - 30 - 35 - 5 - 23 - 10 - 10 - 0 - 5 - 30 - 4 - 42 - 41 - 31 - 17 - 127 - 17 - 143 - 17 - 223 - 17 - 4 - 32 - 29 - 112 - 29 - 128 - 29 - 208 - 29 - 224 - 29 - 5 - 0 - 29 - 16 - 29 - 96 - 29 - 112 - 29 - 128 - 29 - 192 - 29 - 208 - 29 - 7 - 9 - 3 - 0 - 0 - 38 - 7 - 38 - 2 - 81 - 89 - 38 - 27 - 29 - 29 - 33 - 33 - 26 - 81 - 89 - 33 - 21 - 13 - 20 - 80 - 89 - 17 - 17 - 13 - 16 - 7 - 22 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -277 -260 m 1,0,1 - 364 -294 364 -294 442 -294 c 0,2,3 - 506 -294 506 -294 535.5 -263.5 c 128,-1,4 - 565 -233 565 -233 565 -170 c 0,5,6 - 565 -91 565 -91 542 -20 c 1,7,8 - 320 -16 320 -16 203.5 128 c 128,-1,9 - 87 272 87 272 87 542 c 0,10,11 - 87 815 87 815 207 958.5 c 128,-1,12 - 327 1102 327 1102 551 1102 c 0,13,14 - 717 1102 717 1102 826.5 1016 c 128,-1,15 - 936 930 936 930 964 779 c 1,16,-1 - 779 765 l 1,17,18 - 765 855 765 855 708 908 c 128,-1,19 - 651 961 651 961 546 961 c 0,20,21 - 403 961 403 961 339 866 c 128,-1,22 - 275 771 275 771 275 546 c 0,23,24 - 275 330 275 330 343 226 c 128,-1,25 - 411 122 411 122 548 122 c 0,26,27 - 644 122 644 122 708.5 174 c 128,-1,28 - 773 226 773 226 788 334 c 1,29,-1 - 970 322 l 1,30,31 - 952 193 952 193 872 106 c 128,-1,32 - 792 19 792 19 669 -8 c 1,33,34 - 703 -127 703 -127 703 -205 c 0,35,36 - 703 -312 703 -312 643.5 -368.5 c 128,-1,37 - 584 -425 584 -425 464 -425 c 0,38,39 - 361 -425 361 -425 277 -392 c 1,40,-1 - 277 -260 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni04AC -Encoding: 1196 1196 1117 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 1 - 6 - 3 - 4 - 10 - 4 - 6 - 8 - 4 - 12 - 13 - 0 - 8 - 9 - 8 - 95 - 89 - 9 - 3 - 4 - 6 - 6 - 1 - 95 - 89 - 6 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -720 1253 m 1,0,-1 - 720 160 l 1,1,-1 - 860 160 l 1,2,-1 - 860 -408 l 1,3,-1 - 683 -408 l 1,4,-1 - 683 0 l 1,5,-1 - 530 0 l 1,6,-1 - 530 1253 l 1,7,-1 - 46 1253 l 1,8,-1 - 46 1409 l 1,9,-1 - 1204 1409 l 1,10,-1 - 1204 1253 l 1,11,-1 - 720 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04AD -Encoding: 1197 1197 1118 -Width: 938 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 6 - 11 - 8 - 9 - 3 - 9 - 11 - 1 - 4 - 12 - 13 - 9 - 11 - 11 - 6 - 81 - 89 - 11 - 21 - 5 - 1 - 2 - 1 - 81 - 89 - 2 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -379 951 m 1,0,-1 - 35 951 l 1,1,-1 - 35 1082 l 1,2,-1 - 903 1082 l 1,3,-1 - 903 951 l 1,4,-1 - 559 951 l 1,5,-1 - 559 131 l 1,6,-1 - 675 131 l 1,7,-1 - 675 -408 l 1,8,-1 - 512 -408 l 1,9,-1 - 512 0 l 1,10,-1 - 379 0 l 1,11,-1 - 379 951 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04AE -Encoding: 1198 1198 1119 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 10 - 1 - 1 - 4 - 2 - 2 - 11 - 12 - 7 - 2 - 9 - 4 - 3 - 2 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -662 584 m 1,0,-1 - 662 0 l 1,1,-1 - 472 0 l 1,2,-1 - 472 584 l 1,3,-1 - 20 1409 l 1,4,-1 - 230 1409 l 1,5,-1 - 524 833 l 1,6,-1 - 569 730 l 1,7,-1 - 614 832 l 1,8,-1 - 909 1409 l 1,9,-1 - 1119 1409 l 1,10,-1 - 662 584 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04AF -Encoding: 1199 1199 1120 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 10 - 12 - 12 - 2 - 0 - 0 - 14 - 13 - 6 - 9 - 2 - 15 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -418 -425 m 1,0,-1 - 418 2 l 1,1,-1 - 7 1082 l 1,2,-1 - 199 1082 l 1,3,-1 - 437 394 l 2,4,5 - 450 354 450 354 506 157 c 1,6,-1 - 522 210 l 1,7,-1 - 580 392 l 1,8,-1 - 826 1082 l 1,9,-1 - 1017 1082 l 1,10,-1 - 598 0 l 1,11,-1 - 598 -425 l 1,12,-1 - 418 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04B0 -Encoding: 1200 1200 1121 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 10 - 8 - 13 - 13 - 2 - 0 - 14 - 14 - 18 - 17 - 12 - 16 - 0 - 16 - 95 - 89 - 9 - 5 - 0 - 0 - 2 - 14 - 18 - 7 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -62 736 m 1,0,-1 - 388 736 l 1,1,-1 - 20 1409 l 1,2,-1 - 230 1409 l 1,3,-1 - 524 833 l 1,4,-1 - 569 730 l 1,5,-1 - 614 832 l 1,6,-1 - 909 1409 l 1,7,-1 - 1119 1409 l 1,8,-1 - 746 736 l 1,9,-1 - 1072 736 l 1,10,-1 - 1072 584 l 1,11,-1 - 662 584 l 1,12,-1 - 662 0 l 1,13,-1 - 472 0 l 1,14,-1 - 472 584 l 1,15,-1 - 62 584 l 1,16,-1 - 62 736 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04B1 -Encoding: 1201 1201 1122 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 12 - 10 - 15 - 15 - 2 - 0 - 16 - 16 - 19 - 20 - 16 - 27 - 6 - 0 - 9 - 2 - 15 - 14 - 18 - 0 - 18 - 80 - 89 - 11 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 0 m 1,0,-1 - 418 0 l 1,1,-1 - 7 1082 l 1,2,-1 - 199 1082 l 1,3,-1 - 437 394 l 2,4,5 - 450 354 450 354 506 157 c 1,6,-1 - 522 210 l 1,7,-1 - 580 392 l 1,8,-1 - 826 1082 l 1,9,-1 - 1017 1082 l 1,10,-1 - 598 0 l 1,11,-1 - 916 0 l 1,12,-1 - 916 -138 l 1,13,-1 - 598 -138 l 1,14,-1 - 598 -425 l 1,15,-1 - 418 -425 l 1,16,-1 - 418 -138 l 1,17,-1 - 100 -138 l 1,18,-1 - 100 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04B2 -Encoding: 1202 1202 1123 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 3 - 0 - 6 - 9 - 4 - 8 - 5 - 4 - 4 - 1 - 2 - 10 - 13 - 13 - 12 - 7 - 8 - 8 - 12 - 2 - 12 - 16 - 17 - 6 - 9 - 3 - 0 - 4 - 15 - 4 - 15 - 10 - 95 - 89 - 15 - 18 - 13 - 7 - 4 - 3 - 2 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -689 616 m 1,0,-1 - 257 0 l 1,1,-1 - 46 0 l 1,2,-1 - 582 732 l 1,3,-1 - 87 1409 l 1,4,-1 - 298 1409 l 1,5,-1 - 690 856 l 1,6,-1 - 1071 1409 l 1,7,-1 - 1282 1409 l 1,8,-1 - 800 739 l 1,9,-1 - 1210 160 l 1,10,-1 - 1346 160 l 1,11,-1 - 1346 -408 l 1,12,-1 - 1166 -408 l 1,13,-1 - 1166 0 l 1,14,-1 - 1112 0 l 1,15,-1 - 689 616 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04B3 -Encoding: 1203 1203 1124 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 9 - 6 - 0 - 3 - 4 - 8 - 5 - 4 - 4 - 1 - 2 - 10 - 13 - 13 - 12 - 7 - 8 - 8 - 12 - 2 - 12 - 16 - 17 - 6 - 9 - 3 - 0 - 4 - 15 - 4 - 15 - 10 - 81 - 89 - 15 - 21 - 13 - 7 - 4 - 15 - 2 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -510 444 m 1,0,-1 - 217 0 l 1,1,-1 - 23 0 l 1,2,-1 - 408 556 l 1,3,-1 - 41 1082 l 1,4,-1 - 240 1082 l 1,5,-1 - 510 661 l 1,6,-1 - 778 1082 l 1,7,-1 - 979 1082 l 1,8,-1 - 612 558 l 1,9,-1 - 910 131 l 1,10,-1 - 1010 131 l 1,11,-1 - 1010 -408 l 1,12,-1 - 847 -408 l 1,13,-1 - 847 0 l 1,14,-1 - 801 0 l 1,15,-1 - 510 444 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04B4 -Encoding: 1204 1204 1125 -Width: 1895 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 4 - 13 - 8 - 5 - 11 - 10 - 10 - 5 - 2 - 13 - 0 - 5 - 16 - 17 - 8 - 4 - 13 - 4 - 95 - 89 - 11 - 13 - 18 - 6 - 3 - 3 - 15 - 0 - 15 - 95 - 89 - 0 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -MIAP[rnd] -MDRP[rnd,white] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -49 1409 m 1,0,-1 - 1223 1409 l 1,1,-1 - 1223 1253 l 1,2,-1 - 731 1253 l 1,3,-1 - 731 160 l 1,4,-1 - 1488 160 l 1,5,-1 - 1488 1409 l 1,6,-1 - 1674 1409 l 1,7,-1 - 1674 160 l 1,8,-1 - 1849 160 l 1,9,-1 - 1849 -408 l 1,10,-1 - 1669 -408 l 1,11,-1 - 1669 0 l 1,12,-1 - 540 0 l 1,13,-1 - 540 1253 l 1,14,-1 - 49 1253 l 1,15,-1 - 49 1409 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04B5 -Encoding: 1205 1205 1126 -Width: 1415 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 4 - 13 - 8 - 2 - 5 - 11 - 10 - 10 - 5 - 13 - 0 - 4 - 16 - 17 - 8 - 4 - 13 - 4 - 81 - 89 - 11 - 13 - 21 - 6 - 15 - 3 - 15 - 0 - 15 - 80 - 89 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -MIAP[rnd] -MDRP[rnd,white] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -38 1083 m 1,0,-1 - 882 1083 l 1,1,-1 - 882 943 l 1,2,-1 - 570 943 l 1,3,-1 - 570 131 l 1,4,-1 - 1047 131 l 1,5,-1 - 1047 1082 l 1,6,-1 - 1227 1082 l 1,7,-1 - 1227 131 l 1,8,-1 - 1374 131 l 1,9,-1 - 1374 -408 l 1,10,-1 - 1211 -408 l 1,11,-1 - 1211 0 l 1,12,-1 - 390 0 l 1,13,-1 - 390 943 l 1,14,-1 - 38 943 l 1,15,-1 - 38 1083 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04B6 -Encoding: 1206 1206 1127 -Width: 1365 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 9 - 6 - 17 - 14 - 22 - 20 - 19 - 19 - 22 - 6 - 3 - 23 - 24 - 12 - 3 - 95 - 89 - 12 - 12 - 7 - 20 - 22 - 22 - 17 - 95 - 89 - 22 - 18 - 15 - 7 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1008 508 m 1,0,1 - 853 474 853 474 762 462 c 128,-1,2 - 671 450 671 450 600 450 c 0,3,4 - 378 450 378 450 269 540.5 c 128,-1,5 - 160 631 160 631 160 815 c 2,6,-1 - 160 1409 l 1,7,-1 - 350 1409 l 1,8,-1 - 350 835 l 2,9,10 - 350 712 350 712 415 658 c 128,-1,11 - 480 604 480 604 614 604 c 0,12,13 - 763 604 763 604 1008 653 c 1,14,-1 - 1008 1409 l 1,15,-1 - 1198 1409 l 1,16,-1 - 1198 160 l 1,17,-1 - 1338 160 l 1,18,-1 - 1338 -408 l 1,19,-1 - 1158 -408 l 1,20,-1 - 1158 0 l 1,21,-1 - 1008 0 l 1,22,-1 - 1008 508 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni04B7 -Encoding: 1207 1207 1128 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 1 - 0 - 23 - 20 - 3 - 12 - 11 - 11 - 3 - 0 - 3 - 26 - 25 - 18 - 6 - 80 - 89 - 18 - 18 - 3 - 21 - 12 - 15 - 3 - 24 - 80 - 89 - 1 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,white] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1047 -301 m 1,0,-1 - 899 -301 l 1,1,-1 - 899 0 l 1,2,-1 - 751 0 l 1,3,-1 - 751 428 l 1,4,5 - 585 376 585 376 441 376 c 0,6,7 - 331 376 331 376 237 431.5 c 128,-1,8 - 143 487 143 487 106 577 c 128,-1,9 - 69 667 69 667 69 784 c 2,10,-1 - 69 1062 l 1,11,-1 - 249 1062 l 1,12,-1 - 249 861 l 2,13,14 - 249 728 249 728 264 679.5 c 128,-1,15 - 279 631 279 631 310.5 597 c 128,-1,16 - 342 563 342 563 386.5 545 c 128,-1,17 - 431 527 431 527 487 527 c 0,18,19 - 589 527 589 527 751 581 c 1,20,-1 - 751 1062 l 1,21,-1 - 931 1062 l 1,22,-1 - 931 148 l 1,23,-1 - 1047 148 l 1,24,-1 - 1047 -301 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04B8 -Encoding: 1208 1208 1129 -Width: 1365 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 6 - 3 - 12 - 22 - 22 - 9 - 23 - 14 - 18 - 18 - 17 - 17 - 23 - 3 - 3 - 24 - 25 - 14 - 19 - 96 - 89 - 14 - 14 - 9 - 21 - 0 - 9 - 0 - 95 - 89 - 12 - 9 - 23 - 9 - 10 - 10 - 9 - 23 - 3 - 4 - 18 - 18 - 15 - 4 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -599 450 m 1,0,1 - 379 450 379 450 269.5 539.5 c 128,-1,2 - 160 629 160 629 160 815 c 2,3,-1 - 160 1409 l 1,4,-1 - 350 1409 l 1,5,-1 - 350 835 l 2,6,7 - 350 715 350 715 411 661 c 128,-1,8 - 472 607 472 607 599 604 c 1,9,-1 - 599 1072 l 1,10,-1 - 722 1072 l 1,11,-1 - 722 609 l 1,12,13 - 842 619 842 619 1008 653 c 1,14,-1 - 1008 1409 l 1,15,-1 - 1198 1409 l 1,16,-1 - 1198 0 l 1,17,-1 - 1008 0 l 1,18,-1 - 1008 508 l 1,19,20 - 828 467 828 467 722 457 c 1,21,-1 - 722 187 l 1,22,-1 - 599 187 l 1,23,-1 - 599 450 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni04B9 -Encoding: 1209 1209 1130 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 7 - 4 - 12 - 22 - 22 - 9 - 23 - 14 - 18 - 18 - 17 - 17 - 23 - 4 - 3 - 24 - 25 - 14 - 19 - 81 - 89 - 14 - 14 - 9 - 21 - 1 - 9 - 1 - 80 - 89 - 12 - 9 - 23 - 9 - 10 - 10 - 9 - 23 - 3 - 5 - 18 - 21 - 15 - 5 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -448 377 m 1,0,-1 - 394 375 l 1,1,2 - 265 375 265 375 193.5 452.5 c 128,-1,3 - 122 530 122 530 122 671 c 2,4,-1 - 122 1082 l 1,5,-1 - 302 1082 l 1,6,-1 - 302 680 l 2,7,8 - 302 528 302 528 448 518 c 1,9,-1 - 448 822 l 1,10,-1 - 560 822 l 1,11,-1 - 560 524 l 1,12,13 - 626 531 626 531 744 565 c 1,14,-1 - 744 1082 l 1,15,-1 - 924 1082 l 1,16,-1 - 924 0 l 1,17,-1 - 744 0 l 1,18,-1 - 744 461 l 1,19,20 - 625 414 625 414 560 397 c 1,21,-1 - 560 182 l 1,22,-1 - 448 182 l 1,23,-1 - 448 377 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04BA -Encoding: 1210 1210 1131 -Width: 1365 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 11 - 7 - 7 - 8 - 0 - 16 - 8 - 16 - 17 - 18 - 13 - 4 - 95 - 89 - 13 - 13 - 8 - 9 - 3 - 0 - 8 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1047 0 m 1,0,-1 - 1047 575 l 2,1,2 - 1047 697 1047 697 983 751.5 c 128,-1,3 - 919 806 919 806 786 806 c 0,4,5 - 609 806 609 806 359 756 c 1,6,-1 - 359 0 l 1,7,-1 - 169 0 l 1,8,-1 - 169 1409 l 1,9,-1 - 359 1409 l 1,10,-1 - 359 901 l 1,11,12 - 625 960 625 960 794 960 c 0,13,14 - 1237 960 1237 960 1237 595 c 2,15,-1 - 1237 0 l 1,16,-1 - 1047 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04BB -Encoding: 1211 1211 1132 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 75 104 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni04BC -Encoding: 1212 1212 1133 -Width: 1764 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 49 - 22 - 17 - 38 - 25 - 13 - 6 - 7 - 7 - 39 - 32 - 32 - 13 - 17 - 3 - 42 - 43 - 0 - 14 - 24 - 14 - 95 - 89 - 38 - 15 - 24 - 1 - 11 - 3 - 24 - 19 - 24 - 19 - 10 - 28 - 28 - 35 - 96 - 89 - 28 - 4 - 6 - 6 - 10 - 10 - 3 - 95 - 89 - 10 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -523 626 m 1,0,1 - 541 398 541 398 669 267 c 128,-1,2 - 797 136 797 136 1003 136 c 0,3,4 - 1158 136 1158 136 1264.5 202.5 c 128,-1,5 - 1371 269 1371 269 1428 390 c 1,6,-1 - 1604 320 l 1,7,8 - 1522 153 1522 153 1366.5 66.5 c 128,-1,9 - 1211 -20 1211 -20 1003 -20 c 0,10,11 - 708 -20 708 -20 530 150.5 c 128,-1,12 - 352 321 352 321 332 626 c 1,13,-1 - 265 626 l 2,14,15 - 147 626 147 626 78.5 693.5 c 128,-1,16 - 10 761 10 761 10 888 c 0,17,18 - 10 946 10 946 27 1005 c 1,19,-1 - 194 1005 l 1,20,21 - 172 946 172 946 172 896 c 0,22,23 - 172 784 172 784 294 784 c 2,24,-1 - 333 784 l 1,25,26 - 358 1086 358 1086 537 1258 c 128,-1,27 - 716 1430 716 1430 1005 1430 c 0,28,29 - 1208 1430 1208 1430 1362 1341.5 c 128,-1,30 - 1516 1253 1516 1253 1599.5 1091.5 c 128,-1,31 - 1683 930 1683 930 1683 725 c 0,32,33 - 1683 689 1683 689 1678 626 c 1,34,-1 - 523 626 l 1,0,1 -1005 1284 m 0,35,36 - 785 1284 785 1284 656.5 1151 c 128,-1,37 - 528 1018 528 1018 516 784 c 1,38,-1 - 1501 784 l 1,39,40 - 1483 1017 1483 1017 1349.5 1150.5 c 128,-1,41 - 1216 1284 1216 1284 1005 1284 c 0,35,36 -EndSplineSet -EndChar - -StartChar: uni04BD -Encoding: 1213 1213 1134 -Width: 1364 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 30 - 7 - 29 - 36 - 0 - 0 - 23 - 12 - 20 - 15 - 15 - 12 - 29 - 3 - 38 - 37 - 0 - 13 - 22 - 13 - 80 - 89 - 36 - 22 - 17 - 22 - 17 - 9 - 26 - 26 - 33 - 80 - 89 - 26 - 16 - 6 - 6 - 9 - 9 - 3 - 80 - 89 - 9 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -505 503 m 1,0,1 - 505 317 505 317 582 216 c 128,-1,2 - 659 115 659 115 807 115 c 0,3,4 - 924 115 924 115 994.5 162 c 128,-1,5 - 1065 209 1065 209 1090 281 c 1,6,-1 - 1248 236 l 1,7,8 - 1151 -20 1151 -20 807 -20 c 0,9,10 - 575 -20 575 -20 451 111 c 128,-1,11 - 327 242 327 242 317 504 c 1,12,-1 - 265 504 l 2,13,14 - 10 504 10 504 10 739 c 0,15,16 - 10 800 10 800 27 862 c 1,17,-1 - 194 862 l 1,18,19 - 172 803 172 803 172 753 c 0,20,21 - 172 641 172 641 294 641 c 2,22,-1 - 320 641 l 1,23,24 - 341 866 341 866 464.5 984 c 128,-1,25 - 588 1102 588 1102 800 1102 c 0,26,27 - 1277 1102 1277 1102 1277 527 c 2,28,-1 - 1277 503 l 1,29,-1 - 505 503 l 1,0,1 -1091 641 m 1,30,31 - 1076 812 1076 812 1004 890.5 c 128,-1,32 - 932 969 932 969 797 969 c 0,33,34 - 666 969 666 969 589.5 881.5 c 128,-1,35 - 513 794 513 794 507 641 c 1,36,-1 - 1091 641 l 1,30,31 -EndSplineSet -EndChar - -StartChar: uni04BE -Encoding: 1214 1214 1135 -Width: 1764 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 57 - 25 - 20 - 0 - 41 - 41 - 28 - 16 - 11 - 12 - 42 - 7 - 35 - 35 - 12 - 16 - 20 - 4 - 45 - 46 - 0 - 17 - 27 - 17 - 95 - 89 - 41 - 15 - 27 - 1 - 11 - 3 - 27 - 22 - 27 - 22 - 13 - 31 - 31 - 38 - 96 - 89 - 31 - 4 - 12 - 13 - 64 - 10 - 13 - 6 - 6 - 13 - 13 - 3 - 95 - 89 - 13 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SHP[rp1] -SMD -SRP0 -MDRP[min,rnd,black] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -523 626 m 1,0,1 - 541 398 541 398 669 267 c 128,-1,2 - 797 136 797 136 1003 136 c 0,3,4 - 1158 136 1158 136 1264.5 202.5 c 128,-1,5 - 1371 269 1371 269 1428 390 c 1,6,-1 - 1604 320 l 1,7,8 - 1531 172 1531 172 1396.5 84 c 128,-1,9 - 1262 -4 1262 -4 1067 -18 c 1,10,-1 - 1067 -309 l 1,11,-1 - 933 -309 l 1,12,-1 - 933 -17 l 1,13,14 - 666 3 666 3 508 172.5 c 128,-1,15 - 350 342 350 342 332 626 c 1,16,-1 - 265 626 l 2,17,18 - 147 626 147 626 78.5 693.5 c 128,-1,19 - 10 761 10 761 10 888 c 0,20,21 - 10 946 10 946 27 1005 c 1,22,-1 - 194 1005 l 1,23,24 - 172 946 172 946 172 896 c 0,25,26 - 172 784 172 784 294 784 c 2,27,-1 - 333 784 l 1,28,29 - 358 1086 358 1086 537 1258 c 128,-1,30 - 716 1430 716 1430 1005 1430 c 0,31,32 - 1208 1430 1208 1430 1362 1341.5 c 128,-1,33 - 1516 1253 1516 1253 1599.5 1091.5 c 128,-1,34 - 1683 930 1683 930 1683 725 c 0,35,36 - 1683 689 1683 689 1678 626 c 1,37,-1 - 523 626 l 1,0,1 -1005 1284 m 0,38,39 - 785 1284 785 1284 656.5 1151 c 128,-1,40 - 528 1018 528 1018 516 784 c 1,41,-1 - 1501 784 l 1,42,43 - 1483 1017 1483 1017 1349.5 1150.5 c 128,-1,44 - 1216 1284 1216 1284 1005 1284 c 0,38,39 -EndSplineSet -EndChar - -StartChar: uni04BF -Encoding: 1215 1215 1136 -Width: 1364 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 22 - 20 - 17 - 38 - 0 - 0 - 25 - 14 - 10 - 11 - 6 - 7 - 7 - 32 - 31 - 31 - 11 - 14 - 17 - 4 - 39 - 40 - 0 - 15 - 24 - 15 - 80 - 89 - 38 - 24 - 19 - 24 - 19 - 12 - 28 - 28 - 35 - 80 - 89 - 28 - 16 - 11 - 12 - 64 - 9 - 12 - 6 - 6 - 12 - 12 - 3 - 81 - 89 - 12 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SHP[rp1] -SMD -SRP0 -MDRP[min,rnd,black] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -505 503 m 1,0,1 - 505 317 505 317 582 216 c 128,-1,2 - 659 115 659 115 807 115 c 0,3,4 - 924 115 924 115 994.5 162 c 128,-1,5 - 1065 209 1065 209 1090 281 c 1,6,-1 - 1248 236 l 1,7,8 - 1160 5 1160 5 867 -18 c 1,9,-1 - 867 -310 l 1,10,-1 - 733 -310 l 1,11,-1 - 733 -16 l 1,12,13 - 335 24 335 24 317 504 c 1,14,-1 - 265 504 l 2,15,16 - 10 504 10 504 10 739 c 0,17,18 - 10 800 10 800 27 862 c 1,19,-1 - 194 862 l 1,20,21 - 172 803 172 803 172 753 c 0,22,23 - 172 641 172 641 294 641 c 2,24,-1 - 320 641 l 1,25,26 - 341 866 341 866 464.5 984 c 128,-1,27 - 588 1102 588 1102 800 1102 c 0,28,29 - 1277 1102 1277 1102 1277 527 c 2,30,-1 - 1277 503 l 1,31,-1 - 505 503 l 1,0,1 -1091 641 m 1,32,33 - 1076 812 1076 812 1004 890.5 c 128,-1,34 - 932 969 932 969 797 969 c 0,35,36 - 666 969 666 969 589.5 881.5 c 128,-1,37 - 513 794 513 794 507 641 c 1,38,-1 - 1091 641 l 1,32,33 -EndSplineSet -EndChar - -StartChar: uni04C0 -Encoding: 1216 1216 1137 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni04C1 -Encoding: 1217 1217 1138 -Width: 1891 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 36 - 36 - 5 - 38 - 1 - 38 - 0 - 38 - 44 - 5 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 967 1046 N 1 0 0 1 0 0 3 -Refer: 2299 -1 N 1 0 0 1 605 315 2 -EndChar - -StartChar: uni04C2 -Encoding: 1218 1218 1139 -Width: 1370 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 36 - 36 - 17 - 38 - 1 - 38 - 0 - 38 - 44 - 5 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 999 1078 N 1 0 0 1 0 0 3 -Refer: 2299 -1 N 1 0 0 1 345 0 2 -EndChar - -StartChar: uni04C3 -Encoding: 1219 1219 1140 -Width: 1367 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 32 - 23 - 28 - 29 - 29 - 14 - 14 - 0 - 23 - 19 - 19 - 20 - 8 - 7 - 7 - 20 - 0 - 20 - 36 - 35 - 32 - 23 - 23 - 18 - 96 - 89 - 23 - 23 - 28 - 21 - 3 - 8 - 20 - 4 - 4 - 11 - 95 - 89 - 4 - 20 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -SHP[rp1] -IP -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1279 209 m 0,0,1 - 1279 21 1279 21 1204.5 -123.5 c 128,-1,2 - 1130 -268 1130 -268 997 -346.5 c 128,-1,3 - 864 -425 864 -425 697 -425 c 0,4,5 - 507 -425 507 -425 378 -351.5 c 128,-1,6 - 249 -278 249 -278 189 -134 c 1,7,-1 - 367 -104 l 1,8,9 - 413 -197 413 -197 491 -236.5 c 128,-1,10 - 569 -276 569 -276 695 -276 c 0,11,12 - 882 -276 882 -276 986.5 -147 c 128,-1,13 - 1091 -18 1091 -18 1091 206 c 0,14,15 - 1091 424 1091 424 957.5 536 c 128,-1,16 - 824 648 824 648 558 648 c 2,17,-1 - 359 648 l 1,18,-1 - 359 0 l 1,19,-1 - 168 0 l 1,20,-1 - 168 1409 l 1,21,-1 - 359 1409 l 1,22,-1 - 359 790 l 1,23,24 - 434 790 434 790 479 810.5 c 128,-1,25 - 524 831 524 831 573 886.5 c 128,-1,26 - 622 942 622 942 729 1104 c 2,27,-1 - 934 1409 l 1,28,-1 - 1134 1409 l 1,29,-1 - 851 999 l 2,30,31 - 739 838 739 838 687 788 c 1,32,33 - 970 765 970 765 1124.5 614.5 c 128,-1,34 - 1279 464 1279 464 1279 209 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni04C4 -Encoding: 1220 1220 1141 -Width: 1128 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 33 - 24 - 29 - 30 - 30 - 14 - 14 - 0 - 24 - 20 - 20 - 21 - 8 - 7 - 7 - 21 - 0 - 21 - 37 - 36 - 33 - 24 - 24 - 19 - 81 - 89 - 24 - 24 - 21 - 29 - 22 - 15 - 8 - 8 - 4 - 21 - 21 - 4 - 11 - 80 - 89 - 4 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1049 92 m 0,0,1 - 1049 -69 1049 -69 992 -186 c 128,-1,2 - 935 -303 935 -303 830 -364 c 128,-1,3 - 725 -425 725 -425 583 -425 c 0,4,5 - 406 -425 406 -425 302 -355 c 128,-1,6 - 198 -285 198 -285 152 -142 c 1,7,-1 - 330 -129 l 1,8,9 - 360 -213 360 -213 420.5 -250.5 c 128,-1,10 - 481 -288 481 -288 583 -288 c 0,11,12 - 728 -288 728 -288 803 -195 c 128,-1,13 - 878 -102 878 -102 878 81 c 0,14,15 - 878 208 878 208 823 297.5 c 128,-1,16 - 768 387 768 387 670.5 433.5 c 128,-1,17 - 573 480 573 480 449 480 c 2,18,-1 - 321 480 l 1,19,-1 - 321 0 l 1,20,-1 - 141 0 l 1,21,-1 - 141 1082 l 1,22,-1 - 321 1082 l 1,23,-1 - 321 608 l 1,24,25 - 351 608 351 608 375 616 c 128,-1,26 - 399 624 399 624 425 649.5 c 128,-1,27 - 451 675 451 675 484 721 c 128,-1,28 - 517 767 517 767 712 1082 c 1,29,-1 - 900 1082 l 1,30,-1 - 684 757 l 2,31,32 - 600 633 600 633 562 597 c 1,33,34 - 791 575 791 575 920 440.5 c 128,-1,35 - 1049 306 1049 306 1049 92 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni04C5 -Encoding: 1221 1221 1142 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 24 - 21 - 19 - 1 - 17 - 9 - 17 - 19 - 3 - 26 - 25 - 24 - 19 - 95 - 89 - 24 - 18 - 17 - 1 - 95 - 89 - 17 - 3 - 22 - 6 - 6 - 11 - 95 - 89 - 6 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -991 1249 m 1,0,-1 - 573 1249 l 1,1,-1 - 524 881 l 2,2,3 - 468 459 468 459 420 291 c 128,-1,4 - 372 123 372 123 301 53.5 c 128,-1,5 - 230 -16 230 -16 104 -16 c 0,6,7 - 46 -16 46 -16 18 -6 c 1,8,-1 - 18 146 l 1,9,10 - 37 139 37 139 74 139 c 0,11,12 - 127 139 127 139 160.5 171.5 c 128,-1,13 - 194 204 194 204 223 279.5 c 128,-1,14 - 252 355 252 355 281 503.5 c 128,-1,15 - 310 652 310 652 339 869.5 c 128,-1,16 - 368 1087 368 1087 410 1409 c 1,17,-1 - 1177 1409 l 1,18,-1 - 1177 173 l 1,19,-1 - 1362 173 l 1,20,-1 - 1174 -410 l 1,21,-1 - 1002 -410 l 1,22,-1 - 1140 0 l 1,23,-1 - 991 0 l 1,24,-1 - 991 1249 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04C6 -Encoding: 1222 1222 1143 -Width: 1195 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 23 - 22 - 2 - 21 - 4 - 19 - 12 - 19 - 21 - 3 - 25 - 24 - 19 - 4 - 81 - 89 - 19 - 15 - 9 - 14 - 80 - 89 - 0 - 9 - 22 - 2 - 21 - 83 - 89 - 2 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MDRP[rnd,white] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -857 -311 m 1,0,-1 - 998 0 l 1,1,-1 - 872 0 l 1,2,-1 - 872 951 l 1,3,-1 - 497 951 l 1,4,5 - 438 515 438 515 406 362.5 c 128,-1,6 - 374 210 374 210 337 132 c 128,-1,7 - 300 54 300 54 245.5 17 c 128,-1,8 - 191 -20 191 -20 105 -20 c 0,9,10 - 55 -20 55 -20 11 -7 c 1,11,-1 - 11 122 l 1,12,13 - 36 113 36 113 79 113 c 0,14,15 - 134 113 134 113 167.5 168 c 128,-1,16 - 201 223 201 223 228.5 358 c 128,-1,17 - 256 493 256 493 291 757 c 2,18,-1 - 335 1082 l 1,19,-1 - 1053 1082 l 1,20,-1 - 1053 161 l 1,21,-1 - 1223 161 l 1,22,-1 - 1029 -311 l 1,23,-1 - 857 -311 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04C7 -Encoding: 1223 1223 1144 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 0 - 23 - 23 - 10 - 13 - 9 - 9 - 10 - 14 - 6 - 6 - 17 - 10 - 17 - 24 - 25 - 13 - 8 - 95 - 89 - 13 - 13 - 15 - 11 - 3 - 0 - 10 - 20 - 20 - 3 - 95 - 89 - 20 - 10 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -SHP[rp1] -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -368 -104 m 1,0,1 - 414 -196 414 -196 497.5 -235 c 128,-1,2 - 581 -274 581 -274 721 -274 c 0,3,4 - 933 -274 933 -274 1027 -146 c 128,-1,5 - 1121 -18 1121 -18 1121 255 c 2,6,-1 - 1121 653 l 1,7,-1 - 359 653 l 1,8,-1 - 359 0 l 1,9,-1 - 168 0 l 1,10,-1 - 168 1409 l 1,11,-1 - 359 1409 l 1,12,-1 - 359 813 l 1,13,-1 - 1121 813 l 1,14,-1 - 1121 1409 l 1,15,-1 - 1312 1409 l 1,16,-1 - 1312 237 l 2,17,18 - 1312 -85 1312 -85 1159.5 -255 c 128,-1,19 - 1007 -425 1007 -425 721 -425 c 0,20,21 - 521 -425 521 -425 383 -348 c 128,-1,22 - 245 -271 245 -271 188 -124 c 1,23,-1 - 368 -104 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni04C8 -Encoding: 1224 1224 1145 -Width: 1131 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 14 - 6 - 6 - 17 - 0 - 23 - 23 - 10 - 13 - 9 - 9 - 10 - 17 - 10 - 25 - 24 - 0 - 0 - 20 - 10 - 20 - 3 - 80 - 89 - 20 - 27 - 13 - 8 - 81 - 89 - 13 - 13 - 10 - 15 - 11 - 15 - 10 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -329 -128 m 1,0,1 - 348 -214 348 -214 402 -251 c 128,-1,2 - 456 -288 456 -288 563 -288 c 0,3,4 - 689 -288 689 -288 749 -199 c 128,-1,5 - 809 -110 809 -110 809 71 c 2,6,-1 - 809 493 l 1,7,-1 - 322 493 l 1,8,-1 - 322 0 l 1,9,-1 - 142 0 l 1,10,-1 - 142 1082 l 1,11,-1 - 322 1082 l 1,12,-1 - 322 624 l 1,13,-1 - 809 624 l 1,14,-1 - 809 1082 l 1,15,-1 - 989 1082 l 1,16,-1 - 989 63 l 2,17,18 - 989 -160 989 -160 877.5 -292.5 c 128,-1,19 - 766 -425 766 -425 569 -425 c 0,20,21 - 390 -425 390 -425 287.5 -358.5 c 128,-1,22 - 185 -292 185 -292 151 -141 c 1,23,-1 - 329 -128 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni04C9 -Encoding: 1225 1225 1146 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 15 - 14 - 2 - 13 - 9 - 5 - 5 - 6 - 13 - 6 - 17 - 16 - 9 - 4 - 95 - 89 - 9 - 9 - 6 - 11 - 7 - 3 - 0 - 6 - 18 - 2 - 13 - 95 - 89 - 2 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MDRP[rnd,white] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1136 -410 m 1,0,-1 - 1274 0 l 1,1,-1 - 1121 0 l 1,2,-1 - 1121 653 l 1,3,-1 - 359 653 l 1,4,-1 - 359 0 l 1,5,-1 - 168 0 l 1,6,-1 - 168 1409 l 1,7,-1 - 359 1409 l 1,8,-1 - 359 813 l 1,9,-1 - 1121 813 l 1,10,-1 - 1121 1409 l 1,11,-1 - 1312 1409 l 1,12,-1 - 1312 173 l 1,13,-1 - 1496 173 l 1,14,-1 - 1308 -410 l 1,15,-1 - 1136 -410 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04CA -Encoding: 1226 1226 1147 -Width: 1131 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 2 - 10 - 10 - 7 - 6 - 5 - 1 - 13 - 13 - 14 - 5 - 14 - 17 - 16 - 1 - 12 - 81 - 89 - 1 - 1 - 10 - 3 - 15 - 15 - 14 - 21 - 8 - 10 - 10 - 5 - 83 - 89 - 10 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -322 1082 m 1,0,-1 - 322 624 l 1,1,-1 - 809 624 l 1,2,-1 - 809 1082 l 1,3,-1 - 989 1082 l 1,4,-1 - 989 161 l 1,5,-1 - 1176 161 l 1,6,-1 - 982 -311 l 1,7,-1 - 810 -311 l 1,8,-1 - 951 0 l 1,9,-1 - 809 0 l 1,10,-1 - 809 493 l 1,11,-1 - 322 493 l 1,12,-1 - 322 0 l 1,13,-1 - 142 0 l 1,14,-1 - 142 1082 l 1,15,-1 - 322 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04CB -Encoding: 1227 1227 1148 -Width: 1365 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 11 - 8 - 21 - 22 - 16 - 1 - 1 - 19 - 19 - 22 - 8 - 3 - 23 - 24 - 14 - 5 - 95 - 89 - 14 - 14 - 9 - 22 - 20 - 64 - 20 - 0 - 95 - 89 - 20 - 18 - 17 - 9 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,black] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -869 160 m 1,0,-1 - 1008 160 l 1,1,-1 - 1008 508 l 1,2,3 - 853 474 853 474 762 462 c 128,-1,4 - 671 450 671 450 600 450 c 0,5,6 - 378 450 378 450 269 540.5 c 128,-1,7 - 160 631 160 631 160 815 c 2,8,-1 - 160 1409 l 1,9,-1 - 350 1409 l 1,10,-1 - 350 835 l 2,11,12 - 350 712 350 712 415 658 c 128,-1,13 - 480 604 480 604 614 604 c 0,14,15 - 763 604 763 604 1008 653 c 1,16,-1 - 1008 1409 l 1,17,-1 - 1198 1409 l 1,18,-1 - 1198 0 l 1,19,-1 - 1049 0 l 1,20,-1 - 1049 -408 l 1,21,-1 - 869 -408 l 1,22,-1 - 869 160 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04CC -Encoding: 1228 1228 1149 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 1 - 20 - 10 - 11 - 5 - 13 - 13 - 8 - 8 - 11 - 20 - 3 - 22 - 23 - 3 - 17 - 80 - 89 - 3 - 3 - 9 - 6 - 21 - 15 - 9 - 12 - 81 - 89 - 11 - 9 - 21 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -302 1082 m 1,0,-1 - 302 680 l 2,1,2 - 302 518 302 518 468 518 c 0,3,4 - 578 518 578 518 744 565 c 1,5,-1 - 744 1082 l 1,6,-1 - 924 1082 l 1,7,-1 - 924 0 l 1,8,-1 - 799 0 l 1,9,-1 - 799 -408 l 1,10,-1 - 636 -408 l 1,11,-1 - 636 131 l 1,12,-1 - 744 131 l 1,13,-1 - 744 461 l 1,14,-1 - 666 431 l 2,15,16 - 520 375 520 375 394 375 c 0,17,18 - 265 375 265 375 193.5 452.5 c 128,-1,19 - 122 530 122 530 122 671 c 2,20,-1 - 122 1082 l 1,21,-1 - 302 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04CD -Encoding: 1229 1229 1150 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 25 - 22 - 22 - 23 - 33 - 5 - 5 - 2 - 1 - 0 - 0 - 29 - 23 - 3 - 35 - 36 - 34 - 3 - 29 - 18 - 9 - 3 - 22 - 24 - 3 - 13 - 22 - 18 - 2 - 5 - 64 - 5 - 0 - 95 - 89 - 5 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1538 173 m 1,0,-1 - 1734 173 l 1,1,-1 - 1546 -410 l 1,2,-1 - 1374 -410 l 1,3,-1 - 1512 0 l 1,4,-1 - 1366 0 l 1,5,-1 - 1366 940 l 2,6,7 - 1366 1065 1366 1065 1374 1208 c 2,8,-1 - 1375 1239 l 1,9,-1 - 1366 1205 l 2,10,11 - 1326 1067 1326 1067 1287 960 c 2,12,-1 - 923 0 l 1,13,-1 - 789 0 l 1,14,-1 - 420 960 l 2,15,16 - 410 984 410 984 376 1091.5 c 128,-1,17 - 342 1199 342 1199 337 1221 c 2,18,-1 - 331 1239 l 1,19,-1 - 335 1127 l 1,20,-1 - 338 940 l 1,21,-1 - 338 0 l 1,22,-1 - 168 0 l 1,23,-1 - 168 1409 l 1,24,-1 - 419 1409 l 1,25,-1 - 794 432 l 2,26,27 - 814 373 814 373 832.5 305.5 c 128,-1,28 - 851 238 851 238 857 208 c 1,29,30 - 865 248 865 248 890.5 329.5 c 128,-1,31 - 916 411 916 411 925 432 c 2,32,-1 - 1293 1409 l 1,33,-1 - 1538 1409 l 1,34,-1 - 1538 173 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04CE -Encoding: 1230 1230 1151 -Width: 1408 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 14 - 21 - 21 - 18 - 17 - 16 - 8 - 5 - 5 - 6 - 6 - 11 - 16 - 3 - 26 - 25 - 18 - 21 - 64 - 21 - 16 - 83 - 89 - 21 - 21 - 14 - 15 - 11 - 2 - 24 - 3 - 6 - 7 - 15 - 1 - 6 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -787 0 m 1,0,-1 - 634 0 l 1,1,-1 - 310 951 l 1,2,3 - 316 795 316 795 316 724 c 2,4,-1 - 316 0 l 1,5,-1 - 142 0 l 1,6,-1 - 142 1082 l 1,7,-1 - 422 1082 l 1,8,-1 - 642 421 l 1,9,10 - 694 278 694 278 710 135 c 1,11,12 - 732 296 732 296 778 421 c 1,13,-1 - 998 1082 l 1,14,-1 - 1267 1082 l 1,15,-1 - 1267 161 l 1,16,-1 - 1441 161 l 1,17,-1 - 1247 -311 l 1,18,-1 - 1075 -311 l 1,19,-1 - 1216 0 l 1,20,-1 - 1094 0 l 1,21,-1 - 1094 724 l 1,22,-1 - 1097 838 l 1,23,-1 - 1102 953 l 1,24,-1 - 787 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04CF -Encoding: 1231 1231 1152 -Width: 455 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni04D0 -Encoding: 1232 1232 1153 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 17 - 17 - 5 - 38 - 2 - 20 - 4 - 20 - 28 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 378 0 2 -EndChar - -StartChar: uni04D1 -Encoding: 1233 1233 1154 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 49 - 49 - 17 - 38 - 2 - 52 -PUSHW_1 - -44 -PUSHB_5 - 52 - 58 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 271 0 2 -EndChar - -StartChar: uni04D2 -Encoding: 1234 1234 1155 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 24 - 24 - 5 - 38 - 3 - 2 - 22 - 6 - 22 - 20 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 366 0 2 -EndChar - -StartChar: uni04D3 -Encoding: 1235 1235 1156 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 56 - 56 - 17 - 38 - 3 - 2 - 54 -PUSHW_1 - -48 -PUSHB_5 - 54 - 52 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 241 0 2 -EndChar - -StartChar: uni04D4 -Encoding: 1236 1236 1157 -Width: 2048 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 136 198 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni04D5 -Encoding: 1237 1237 1158 -Width: 1821 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 168 230 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni04D6 -Encoding: 1238 1238 1159 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 12 - 12 - 5 - 38 - 1 - 15 -PUSHW_1 - -2 -PUSHB_5 - 15 - 23 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 412 0 2 -EndChar - -StartChar: uni04D7 -Encoding: 1239 1239 1160 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 26 - 26 - 17 - 38 - 2 - 29 - 6 - 29 - 35 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 276 0 2 -EndChar - -StartChar: uni04D8 -Encoding: 1240 1240 1161 -Width: 1541 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 337 399 N 1 0 0 1 0 0 2 -EndChar - -StartChar: afii10846 -Encoding: 1241 1241 1162 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 539 601 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni04DA -Encoding: 1242 1242 1163 -Width: 1541 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 39 - 39 - 5 - 38 - 3 - 2 - 37 -PUSHW_1 - -14 -PUSHB_5 - 37 - 35 - 29 - 21 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 337 399 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 433 0 2 -EndChar - -StartChar: uni04DB -Encoding: 1243 1243 1164 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 33 - 33 - 17 - 38 - 3 - 2 - 31 -PUSHW_1 - -14 -PUSHB_5 - 31 - 29 - 18 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 539 601 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni04DC -Encoding: 1244 1244 1165 -Width: 1891 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 43 - 43 - 5 - 38 - 2 - 1 - 41 -PUSHW_1 - -1 -PUSHB_5 - 41 - 39 - 5 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 967 1046 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 621 0 2 -EndChar - -StartChar: uni04DD -Encoding: 1245 1245 1166 -Width: 1370 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 43 - 43 - 17 - 38 - 2 - 1 - 41 - 1 - 41 - 39 - 5 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 999 1078 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 363 0 2 -EndChar - -StartChar: uni04DE -Encoding: 1246 1246 1167 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 47 - 47 - 5 - 38 - 2 - 1 - 45 - 19 - 45 - 43 - 3 - 37 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 968 1047 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 297 0 2 -EndChar - -StartChar: uni04DF -Encoding: 1247 1247 1168 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 44 - 44 - 17 - 38 - 2 - 1 - 42 - 8 - 42 - 40 - 3 - 34 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1000 1079 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 140 0 2 -EndChar - -StartChar: uni04E0 -Encoding: 1248 1248 1169 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 4 - 3 - 20 - 14 - 14 - 17 - 15 - 19 - 19 - 9 - 23 - 23 - 17 - 3 - 3 - 27 - 28 - 14 - 20 - 20 - 13 - 96 - 89 - 20 - 20 - 0 - 17 - 19 - 16 - 17 - 16 - 95 - 89 - 17 - 3 - 0 - 6 - 95 - 89 - 4 - 4 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -631 -20 m 0,0,1 - 427 -20 427 -20 295 60.5 c 128,-1,2 - 163 141 163 141 77 328 c 1,3,-1 - 242 405 l 1,4,5 - 361 133 361 133 624 133 c 0,6,7 - 777 133 777 133 865 213.5 c 128,-1,8 - 953 294 953 294 953 429 c 0,9,10 - 953 562 953 562 857 635.5 c 128,-1,11 - 761 709 761 709 559 709 c 2,12,-1 - 496 709 l 1,13,-1 - 496 855 l 1,14,-1 - 936 1253 l 1,15,-1 - 126 1253 l 1,16,-1 - 126 1409 l 1,17,-1 - 1158 1409 l 1,18,-1 - 1158 1244 l 1,19,-1 - 701 845 l 1,20,21 - 907 834 907 834 1026.5 724 c 128,-1,22 - 1146 614 1146 614 1146 436 c 0,23,24 - 1146 305 1146 305 1082.5 201 c 128,-1,25 - 1019 97 1019 97 901 38.5 c 128,-1,26 - 783 -20 783 -20 631 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni04E1 -Encoding: 1249 1249 1170 -Width: 1116 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 596 658 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni04E2 -Encoding: 1250 1250 1171 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 15 - 15 - 5 - 38 - 1 - 16 - 0 - 16 - 17 - 1 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 969 1048 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 411 329 2 -EndChar - -StartChar: uni04E3 -Encoding: 1251 1251 1172 -Width: 1144 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 15 - 15 - 17 - 38 - 1 - 16 - 13 - 16 - 17 - 13 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1001 1080 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 260 0 2 -EndChar - -StartChar: uni04E4 -Encoding: 1252 1252 1173 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 21 - 21 - 5 - 38 - 2 - 1 - 19 -PUSHW_1 - -6 -PUSHB_5 - 19 - 17 - 1 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 969 1048 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 406 0 2 -EndChar - -StartChar: uni04E5 -Encoding: 1253 1253 1174 -Width: 1144 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 21 - 21 - 17 - 38 - 2 - 1 - 19 -PUSHW_1 - -1 -PUSHB_5 - 19 - 17 - 13 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1001 1080 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 247 0 2 -EndChar - -StartChar: uni04E6 -Encoding: 1254 1254 1175 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 34 - 34 - 5 - 38 - 3 - 2 - 32 - 7 - 32 - 30 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 480 0 2 -EndChar - -StartChar: uni04E7 -Encoding: 1255 1255 1176 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 30 - 30 - 17 - 38 - 3 - 2 - 28 - 7 - 28 - 26 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 253 0 2 -EndChar - -StartChar: uni04E8 -Encoding: 1256 1256 1177 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 25 - 19 - 19 - 8 - 26 - 18 - 18 - 0 - 8 - 0 - 29 - 30 - 25 - 19 - 95 - 89 - 25 - 25 - 4 - 11 - 11 - 22 - 95 - 89 - 11 - 4 - 4 - 15 - 95 - 89 - 4 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1495 711 m 0,0,1 - 1495 490 1495 490 1410.5 324 c 128,-1,2 - 1326 158 1326 158 1168 69 c 128,-1,3 - 1010 -20 1010 -20 795 -20 c 0,4,5 - 578 -20 578 -20 420.5 68 c 128,-1,6 - 263 156 263 156 180 322.5 c 128,-1,7 - 97 489 97 489 97 711 c 0,8,9 - 97 1049 97 1049 282 1239.5 c 128,-1,10 - 467 1430 467 1430 797 1430 c 0,11,12 - 1012 1430 1012 1430 1170 1344.5 c 128,-1,13 - 1328 1259 1328 1259 1411.5 1096 c 128,-1,14 - 1495 933 1495 933 1495 711 c 0,0,1 -795 135 m 0,15,16 - 1026 135 1026 135 1155.5 270 c 128,-1,17 - 1285 405 1285 405 1298 652 c 1,18,-1 - 293 652 l 1,19,20 - 308 413 308 413 439.5 274 c 128,-1,21 - 571 135 571 135 795 135 c 0,15,16 -797 1274 m 0,22,23 - 580 1274 580 1274 450.5 1154 c 128,-1,24 - 321 1034 321 1034 296 813 c 1,25,-1 - 1294 813 l 1,26,27 - 1269 1032 1269 1032 1139 1153 c 128,-1,28 - 1009 1274 1009 1274 797 1274 c 0,22,23 -EndSplineSet -EndChar - -StartChar: uni04E9 -Encoding: 1257 1257 1178 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 22 - 14 - 14 - 0 - 21 - 15 - 15 - 6 - 0 - 6 - 26 - 25 - 21 - 15 - 81 - 89 - 21 - 21 - 3 - 8 - 8 - 18 - 80 - 89 - 8 - 16 - 3 - 11 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1053 542 m 0,0,1 - 1053 258 1053 258 928 119 c 128,-1,2 - 803 -20 803 -20 565 -20 c 0,3,4 - 328 -20 328 -20 207 124.5 c 128,-1,5 - 86 269 86 269 86 542 c 0,6,7 - 86 1102 86 1102 571 1102 c 0,8,9 - 819 1102 819 1102 936 965.5 c 128,-1,10 - 1053 829 1053 829 1053 542 c 0,0,1 -563 113 m 0,11,12 - 715 113 715 113 785.5 204 c 128,-1,13 - 856 295 856 295 863 494 c 1,14,-1 - 276 494 l 1,15,16 - 283 304 283 304 352.5 208.5 c 128,-1,17 - 422 113 422 113 563 113 c 0,11,12 -574 969 m 0,18,19 - 432 969 432 969 361.5 886.5 c 128,-1,20 - 291 804 291 804 278 625 c 1,21,-1 - 861 625 l 1,22,23 - 850 801 850 801 784 885 c 128,-1,24 - 718 969 718 969 574 969 c 0,18,19 -EndSplineSet -EndChar - -StartChar: uni04EA -Encoding: 1258 1258 1179 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 4 - 3 - 36 - 36 - 5 - 38 - 4 - 3 - 34 - 5 - 34 - 32 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1177 1256 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 478 0 2 -EndChar - -StartChar: uni04EB -Encoding: 1259 1259 1180 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 4 - 3 - 32 - 32 - 17 - 38 - 4 - 3 - 30 - 4 - 30 - 28 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1178 1257 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 250 0 2 -EndChar - -StartChar: uni04EC -Encoding: 1260 1260 1181 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 36 - 36 - 5 - 38 - 2 - 1 - 34 -PUSHW_1 - -28 -PUSHB_5 - 34 - 32 - 16 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 990 1069 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 401 0 2 -EndChar - -StartChar: uni04ED -Encoding: 1261 1261 1182 -Width: 1045 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 35 - 35 - 17 - 38 - 2 - 1 - 33 -PUSHW_1 - -6 -PUSHB_5 - 33 - 31 - 0 - 22 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1022 1101 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 177 0 2 -EndChar - -StartChar: uni04EE -Encoding: 1262 1262 1183 -Width: 1301 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 21 - 21 - 5 - 38 - 1 - 22 - 18 - 22 - 23 - 11 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 980 1059 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 376 329 2 -EndChar - -StartChar: uni04EF -Encoding: 1263 1263 1184 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 24 - 24 - 17 - 38 - 1 - 25 - 13 - 25 - 26 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 200 0 2 -EndChar - -StartChar: uni04F0 -Encoding: 1264 1264 1185 -Width: 1301 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 27 - 27 - 5 - 38 - 2 - 1 - 25 - 23 - 25 - 23 - 11 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 980 1059 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 383 0 2 -EndChar - -StartChar: uni04F1 -Encoding: 1265 1265 1186 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 30 - 30 - 17 - 38 - 2 - 1 - 28 - 11 - 28 - 26 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 200 0 2 -EndChar - -StartChar: uni04F2 -Encoding: 1266 1266 1187 -Width: 1301 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 31 - 31 - 5 - 38 - 2 - 1 - 21 - 104 - 21 - 30 - 11 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 980 1059 N 1 0 0 1 0 0 3 -Refer: 2308 -1 N 1 0 0 1 380 0 2 -EndChar - -StartChar: uni04F3 -Encoding: 1267 1267 1188 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 34 - 34 - 17 - 38 - 2 - 1 - 24 - 110 - 24 - 33 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 671 733 N 1 0 0 1 215 0 2 -EndChar - -StartChar: uni04F4 -Encoding: 1268 1268 1189 -Width: 1365 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 26 - 26 - 5 - 38 - 2 - 1 - 24 - 12 - 24 - 22 - 7 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 984 1063 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 368 0 2 -EndChar - -StartChar: uni04F5 -Encoding: 1269 1269 1190 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 25 - 25 - 17 - 38 - 2 - 1 - 23 - 10 - 23 - 21 - 17 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1016 1095 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 210 0 2 -EndChar - -StartChar: uni04F6 -Encoding: 1270 1270 1191 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 5 - 6 - 3 - 8 - 8 - 6 - 0 - 3 - 11 - 10 - 9 - 2 - 95 - 89 - 9 - 3 - 6 - 8 - 8 - 3 - 95 - 89 - 8 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1071 1410 m 1,0,-1 - 1071 1254 l 1,1,-1 - 359 1254 l 1,2,-1 - 359 160 l 1,3,-1 - 498 160 l 1,4,-1 - 498 -408 l 1,5,-1 - 321 -408 l 1,6,-1 - 321 0 l 1,7,-1 - 168 0 l 1,8,-1 - 168 1410 l 1,9,-1 - 1071 1410 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04F7 -Encoding: 1271 1271 1192 -Width: 747 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 3 - 8 - 5 - 6 - 0 - 6 - 8 - 3 - 10 - 11 - 9 - 2 - 81 - 89 - 9 - 15 - 6 - 8 - 8 - 3 - 81 - 89 - 8 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -687 1082 m 1,0,-1 - 687 951 l 1,1,-1 - 322 951 l 1,2,-1 - 322 131 l 1,3,-1 - 438 131 l 1,4,-1 - 438 -408 l 1,5,-1 - 275 -408 l 1,6,-1 - 275 0 l 1,7,-1 - 142 0 l 1,8,-1 - 142 1082 l 1,9,-1 - 687 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04F8 -Encoding: 1272 1272 1193 -Width: 1813 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 4 - 3 - 31 - 31 - 5 - 38 - 4 - 3 - 29 -PUSHW_1 - -3 -PUSHB_5 - 29 - 27 - 5 - 23 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 988 1067 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 580 0 2 -EndChar - -StartChar: uni04F9 -Encoding: 1273 1273 1194 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 4 - 3 - 31 - 31 - 17 - 38 - 4 - 3 - 29 -PUSHW_1 - -2 -PUSHB_5 - 29 - 27 - 8 - 23 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1020 1099 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 410 0 2 -EndChar - -StartChar: uni04FA -Encoding: 1274 1274 1195 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 16 - 25 - 25 - 1 - 10 - 14 - 14 - 20 - 5 - 3 - 1 - 1 - 12 - 7 - 3 - 27 - 26 - 18 - 23 - 95 - 89 - 18 - 13 - 3 - 4 - 3 - 96 - 89 - 10 - 4 - 4 - 1 - 6 - 6 - 9 - 95 - 89 - 6 - 3 - 1 - 14 - 95 - 89 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -277 0 m 1,0,-1 - 168 0 l 1,1,-1 - 168 659 l 1,2,-1 - -1 659 l 1,3,-1 - -1 806 l 1,4,-1 - 168 806 l 1,5,-1 - 168 1410 l 1,6,-1 - 1071 1410 l 1,7,-1 - 1071 1254 l 1,8,-1 - 359 1254 l 1,9,-1 - 359 806 l 1,10,-1 - 779 806 l 1,11,-1 - 779 659 l 1,12,-1 - 359 659 l 1,13,-1 - 359 155 l 1,14,-1 - 448 155 l 1,15,-1 - 448 -129 l 2,16,17 - 448 -425 448 -425 167 -425 c 0,18,19 - 108 -425 108 -425 35 -409 c 1,20,-1 - 35 -249 l 1,21,22 - 85 -267 85 -267 154 -267 c 0,23,24 - 277 -267 277 -267 277 -119 c 2,25,-1 - 277 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04FB -Encoding: 1275 1275 1196 -Width: 747 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 10 - 14 - 14 - 23 - 23 - 25 - 1 - 18 - 18 - 25 - 8 - 12 - 12 - 3 - 25 - 5 - 25 - 27 - 26 - 11 - 1 - 2 - 1 - 80 - 89 - 8 - 2 - 2 - 25 - 4 - 25 - 12 - 80 - 89 - 25 - 21 - 16 - 21 - 80 - 89 - 16 - 27 - 4 - 7 - 81 - 89 - 4 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -142 514 m 1,0,-1 - 20 514 l 1,1,-1 - 20 646 l 1,2,-1 - 142 646 l 1,3,-1 - 142 1082 l 1,4,-1 - 687 1082 l 1,5,-1 - 687 951 l 1,6,-1 - 322 951 l 1,7,-1 - 322 646 l 1,8,-1 - 525 646 l 1,9,-1 - 525 514 l 1,10,-1 - 322 514 l 1,11,-1 - 322 155 l 1,12,-1 - 405 155 l 1,13,-1 - 405 -129 l 2,14,15 - 405 -425 405 -425 124 -425 c 0,16,17 - 73 -425 73 -425 0 -409 c 1,18,-1 - 0 -249 l 1,19,20 - 49 -267 49 -267 111 -267 c 0,21,22 - 237 -267 237 -267 237 -122 c 2,23,-1 - 237 0 l 1,24,-1 - 142 0 l 1,25,-1 - 142 514 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04FC -Encoding: 1276 1276 1197 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 6 - 24 - 21 - 15 - 18 - 5 - 19 - 22 - 23 - 23 - 11 - 0 - 20 - 19 - 19 - 16 - 17 - 0 - 17 - 28 - 27 - 22 - 3 - 15 - 18 - 24 - 21 - 4 - 16 - 20 - 3 - 3 - 8 - 95 - 89 - 3 - 16 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1355 -163 m 0,0,1 - 1355 -279 1355 -279 1275 -352 c 128,-1,2 - 1195 -425 1195 -425 1067 -425 c 0,3,4 - 1008 -425 1008 -425 935 -409 c 1,5,-1 - 935 -249 l 1,6,7 - 993 -270 993 -270 1054 -270 c 0,8,9 - 1107 -270 1107 -270 1140.5 -240 c 128,-1,10 - 1174 -210 1174 -210 1174 -147 c 0,11,12 - 1174 -118 1174 -118 1158.5 -81.5 c 128,-1,13 - 1143 -45 1143 -45 1100.5 17 c 128,-1,14 - 1058 79 1058 79 689 616 c 1,15,-1 - 257 0 l 1,16,-1 - 46 0 l 1,17,-1 - 582 732 l 1,18,-1 - 87 1409 l 1,19,-1 - 298 1409 l 1,20,-1 - 690 856 l 1,21,-1 - 1071 1409 l 1,22,-1 - 1282 1409 l 1,23,-1 - 800 739 l 1,24,-1 - 1279 62 l 1,25,26 - 1355 -55 1355 -55 1355 -163 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni04FD -Encoding: 1277 1277 1198 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 18 - 15 - 21 - 24 - 6 - 5 - 19 - 22 - 23 - 23 - 11 - 0 - 20 - 19 - 19 - 16 - 17 - 0 - 17 - 28 - 27 - 3 - 8 - 8 - 89 - 3 - 27 - 21 - 24 - 18 - 15 - 4 - 17 - 22 - 19 - 15 - 17 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -SRP0 -MDRP[min,rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1022 -152 m 0,0,1 - 1022 -277 1022 -277 949.5 -351 c 128,-1,2 - 877 -425 877 -425 757 -425 c 0,3,4 - 698 -425 698 -425 625 -409 c 1,5,-1 - 625 -249 l 1,6,7 - 683 -270 683 -270 739 -270 c 0,8,9 - 796 -270 796 -270 825 -237.5 c 128,-1,10 - 854 -205 854 -205 854 -155 c 0,11,12 - 854 -118 854 -118 836 -72.5 c 128,-1,13 - 818 -27 818 -27 763 57.5 c 128,-1,14 - 708 142 708 142 510 444 c 1,15,-1 - 217 0 l 1,16,-1 - 23 0 l 1,17,-1 - 408 556 l 1,18,-1 - 41 1082 l 1,19,-1 - 240 1082 l 1,20,-1 - 510 661 l 1,21,-1 - 778 1082 l 1,22,-1 - 979 1082 l 1,23,-1 - 612 558 l 1,24,-1 - 936 95 l 2,25,26 - 1022 -28 1022 -28 1022 -152 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni04FE -Encoding: 1278 1278 1199 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 1 - 10 - 6 - 14 - 14 - 11 - 12 - 12 - 0 - 17 - 6 - 9 - 8 - 8 - 2 - 3 - 17 - 3 - 19 - 18 - 16 - 5 - 6 - 5 - 95 - 89 - 13 - 1 - 3 - 10 - 8 - 6 - 6 - 3 - 11 - 8 - 3 - 0 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP2 -IP -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1112 0 m 1,0,-1 - 689 616 l 1,1,-1 - 257 0 l 1,2,-1 - 46 0 l 1,3,-1 - 524 657 l 1,4,-1 - 180 657 l 1,5,-1 - 180 809 l 1,6,-1 - 523 809 l 1,7,-1 - 87 1409 l 1,8,-1 - 298 1409 l 1,9,-1 - 690 856 l 1,10,-1 - 1071 1409 l 1,11,-1 - 1282 1409 l 1,12,-1 - 853 809 l 1,13,-1 - 1187 809 l 1,14,-1 - 1187 657 l 1,15,-1 - 861 657 l 1,16,-1 - 1323 0 l 1,17,-1 - 1112 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni04FF -Encoding: 1279 1279 1200 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 10 - 1 - 6 - 14 - 14 - 11 - 12 - 12 - 0 - 17 - 6 - 9 - 8 - 8 - 2 - 3 - 17 - 3 - 19 - 18 - 16 - 5 - 6 - 5 - 80 - 89 - 13 - 1 - 3 - 10 - 8 - 6 - 6 - 3 - 11 - 8 - 15 - 0 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP2 -IP -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -801 0 m 1,0,-1 - 510 444 l 1,1,-1 - 217 0 l 1,2,-1 - 23 0 l 1,3,-1 - 359 486 l 1,4,-1 - 51 486 l 1,5,-1 - 51 632 l 1,6,-1 - 355 632 l 1,7,-1 - 41 1082 l 1,8,-1 - 240 1082 l 1,9,-1 - 510 661 l 1,10,-1 - 778 1082 l 1,11,-1 - 979 1082 l 1,12,-1 - 664 632 l 1,13,-1 - 974 632 l 1,14,-1 - 974 486 l 1,15,-1 - 662 486 l 1,16,-1 - 1002 0 l 1,17,-1 - 801 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0500 -Encoding: 1280 1280 1201 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 12 - 0 - 5 - 15 - 15 - 8 - 0 - 8 - 19 - 20 - 4 - 17 - 95 - 89 - 4 - 4 - 9 - 6 - 9 - 14 - 95 - 89 - 9 - 18 - 6 - 3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -88 424 m 0,0,1 - 88 553 88 553 145.5 652 c 128,-1,2 - 203 751 203 751 313 805.5 c 128,-1,3 - 423 860 423 860 573 860 c 2,4,-1 - 987 860 l 1,5,-1 - 987 1409 l 1,6,-1 - 1178 1409 l 1,7,-1 - 1178 0 l 1,8,-1 - 585 0 l 2,9,10 - 348 0 348 0 218 111 c 128,-1,11 - 88 222 88 222 88 424 c 0,0,1 -280 426 m 0,12,13 - 280 153 280 153 608 153 c 2,14,-1 - 987 153 l 1,15,-1 - 987 709 l 1,16,-1 - 600 709 l 2,17,18 - 280 709 280 709 280 426 c 0,12,13 -EndSplineSet -EndChar - -StartChar: uni0501 -Encoding: 1281 1281 1202 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 71 100 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni0502 -Encoding: 1282 1282 1203 -Width: 1983 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 30 - 33 - 12 - 25 - 25 - 22 - 7 - 7 - 33 - 0 - 18 - 33 - 18 - 40 - 39 - 36 - 27 - 96 - 89 - 36 - 19 - 31 - 31 - 21 - 21 - 9 - 95 - 89 - 12 - 21 - 21 - 15 - 23 - 3 - 15 - 3 - 96 - 89 - 15 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -283 407 m 0,0,1 - 283 274 283 274 366.5 204.5 c 128,-1,2 - 450 135 450 135 603 135 c 0,3,4 - 727 135 727 135 814.5 175.5 c 128,-1,5 - 902 216 902 216 944.5 294 c 128,-1,6 - 987 372 987 372 987 482 c 2,7,-1 - 987 659 l 1,8,-1 - 611 659 l 2,9,10 - 447 659 447 659 365 593.5 c 128,-1,11 - 283 528 283 528 283 407 c 0,0,1 -1053 185 m 1,12,13 - 977 87 977 87 861 43.5 c 128,-1,14 - 745 0 745 0 576 0 c 0,15,16 - 350 0 350 0 220.5 113 c 128,-1,17 - 91 226 91 226 91 413 c 0,18,19 - 91 603 91 603 221.5 708 c 128,-1,20 - 352 813 352 813 588 813 c 2,21,-1 - 987 813 l 1,22,-1 - 987 1409 l 1,23,-1 - 1178 1409 l 1,24,-1 - 1178 440 l 2,25,26 - 1178 125 1178 125 1429 125 c 0,27,28 - 1555 125 1555 125 1611.5 202.5 c 128,-1,29 - 1668 280 1668 280 1668 439 c 2,30,-1 - 1668 840 l 1,31,-1 - 1849 840 l 1,32,-1 - 1849 397 l 2,33,34 - 1849 205 1849 205 1734.5 92.5 c 128,-1,35 - 1620 -20 1620 -20 1430 -20 c 0,36,37 - 1290 -20 1290 -20 1193.5 35.5 c 128,-1,38 - 1097 91 1097 91 1053 185 c 1,12,13 -EndSplineSet -EndChar - -StartChar: uni0503 -Encoding: 1283 1283 1204 -Width: 1795 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 29 - 2 - 7 - 23 - 23 - 20 - 19 - 36 - 30 - 13 - 13 - 36 - 2 - 3 - 43 - 42 - 21 - 0 - 7 - 10 - 19 - 15 - 0 - 0 - 10 - 15 - 15 - 39 - 80 - 89 - 15 - 16 - 10 - 33 - 80 - 89 - 10 - 22 - 5 - 26 - 80 - 89 - 5 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP2 -IP -SRP2 -IP -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1478 634 m 1,0,-1 - 1659 634 l 1,1,-1 - 1659 401 l 2,2,3 - 1659 210 1659 210 1546 95 c 128,-1,4 - 1433 -20 1433 -20 1241 -20 c 0,5,6 - 979 -20 979 -20 884 183 c 1,7,8 - 826 78 826 78 726 29 c 128,-1,9 - 626 -20 626 -20 484 -20 c 0,10,11 - 279 -20 279 -20 182.5 118 c 128,-1,12 - 86 256 86 256 86 536 c 0,13,14 - 86 1102 86 1102 484 1102 c 0,15,16 - 607 1102 607 1102 689 1057 c 128,-1,17 - 771 1012 771 1012 821 914 c 1,18,-1 - 823 914 l 1,19,-1 - 821 1035 l 1,20,-1 - 821 1484 l 1,21,-1 - 1001 1484 l 1,22,-1 - 1001 437 l 2,23,24 - 1001 278 1001 278 1057.5 198.5 c 128,-1,25 - 1114 119 1114 119 1240 119 c 256,26,27 - 1366 119 1366 119 1422 198 c 128,-1,28 - 1478 277 1478 277 1478 436 c 2,29,-1 - 1478 634 l 1,0,-1 -275 542 m 0,30,31 - 275 315 275 315 335 217 c 128,-1,32 - 395 119 395 119 530 119 c 0,33,34 - 683 119 683 119 752 225 c 128,-1,35 - 821 331 821 331 821 554 c 0,36,37 - 821 769 821 769 752 869 c 128,-1,38 - 683 969 683 969 532 969 c 0,39,40 - 396 969 396 969 335.5 868.5 c 128,-1,41 - 275 768 275 768 275 542 c 0,30,31 -EndSplineSet -EndChar - -StartChar: uni0504 -Encoding: 1284 1284 1205 -Width: 1958 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 25 - 12 - 12 - 31 - 3 - 36 - 39 - 39 - 3 - 8 - 19 - 4 - 42 - 43 - 28 - 8 - 7 - 8 - 7 - 96 - 89 - 37 - 37 - 8 - 8 - 0 - 22 - 18 - 18 - 22 - 22 - 15 - 95 - 89 - 22 - 4 - 0 - 34 - 96 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1380 -20 m 0,0,1 - 1177 -20 1177 -20 1066.5 92.5 c 128,-1,2 - 956 205 956 205 956 412 c 0,3,4 - 956 538 956 538 861 596 c 128,-1,5 - 766 654 766 654 549 654 c 2,6,-1 - 478 654 l 1,7,-1 - 478 802 l 1,8,-1 - 549 802 l 2,9,10 - 730 802 730 802 816.5 861.5 c 128,-1,11 - 903 921 903 921 903 1044 c 0,12,13 - 903 1151 903 1151 830.5 1212.5 c 128,-1,14 - 758 1274 758 1274 623 1274 c 0,15,16 - 497 1274 497 1274 411 1215.5 c 128,-1,17 - 325 1157 325 1157 274 1027 c 1,18,-1 - 96 1088 l 1,19,20 - 166 1261 166 1261 298 1345 c 128,-1,21 - 430 1429 430 1429 630 1429 c 0,22,23 - 842 1429 842 1429 968 1329.5 c 128,-1,24 - 1094 1230 1094 1230 1094 1061 c 0,25,26 - 1094 934 1094 934 1022 851 c 128,-1,27 - 950 768 950 768 814 736 c 1,28,29 - 967 714 967 714 1050.5 636 c 128,-1,30 - 1134 558 1134 558 1134 431 c 0,31,32 - 1134 273 1134 273 1195.5 199 c 128,-1,33 - 1257 125 1257 125 1381 125 c 0,34,35 - 1645 125 1645 125 1645 439 c 2,36,-1 - 1645 840 l 1,37,-1 - 1826 840 l 1,38,-1 - 1826 397 l 2,39,40 - 1826 209 1826 209 1701.5 94.5 c 128,-1,41 - 1577 -20 1577 -20 1380 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0505 -Encoding: 1285 1285 1206 -Width: 1670 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 28 - 2 - 2 - 21 - 9 - 33 - 36 - 16 - 5 - 9 - 36 - 4 - 40 - 39 - 24 - 6 - 5 - 6 - 5 - 80 - 89 - 34 - 34 - 6 - 6 - 0 - 18 - 15 - 15 - 18 - 18 - 12 - 80 - 89 - 18 - 16 - 0 - 31 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1103 -20 m 0,0,1 - 734 -20 734 -20 688 311 c 0,2,3 - 674 414 674 414 600.5 456.5 c 128,-1,4 - 527 499 527 499 340 499 c 1,5,-1 - 340 636 l 1,6,7 - 501 636 501 636 577 678 c 128,-1,8 - 653 720 653 720 653 808 c 0,9,10 - 653 882 653 882 603.5 925 c 128,-1,11 - 554 968 554 968 461 968 c 0,12,13 - 372 968 372 968 315.5 931 c 128,-1,14 - 259 894 259 894 247 824 c 1,15,-1 - 85 844 l 1,16,17 - 131 1102 131 1102 462 1102 c 0,18,19 - 630 1102 630 1102 733 1022.5 c 128,-1,20 - 836 943 836 943 836 817 c 0,21,22 - 836 716 836 716 763.5 648 c 128,-1,23 - 691 580 691 580 588 571 c 1,24,-1 - 588 569 l 1,25,26 - 732 554 732 554 793 504.5 c 128,-1,27 - 854 455 854 455 863 358 c 0,28,29 - 873 235 873 235 938 177 c 128,-1,30 - 1003 119 1003 119 1103 119 c 0,31,32 - 1356 119 1356 119 1356 436 c 2,33,-1 - 1356 634 l 1,34,-1 - 1537 634 l 1,35,-1 - 1537 401 l 2,36,37 - 1537 208 1537 208 1419.5 94 c 128,-1,38 - 1302 -20 1302 -20 1103 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0506 -Encoding: 1286 1286 1207 -Width: 1357 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 16 - 17 - 10 - 23 - 23 - 35 - 30 - 33 - 32 - 32 - 30 - 5 - 17 - 4 - 36 - 37 - 26 - 6 - 5 - 6 - 5 - 96 - 89 - 6 - 6 - 20 - 33 - 35 - 35 - 30 - 95 - 89 - 35 - 18 - 16 - 16 - 20 - 20 - 13 - 95 - 89 - 20 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -956 373 m 2,0,1 - 956 479 956 479 919 540 c 128,-1,2 - 882 601 882 601 804.5 627.5 c 128,-1,3 - 727 654 727 654 549 654 c 2,4,-1 - 478 654 l 1,5,-1 - 478 802 l 1,6,-1 - 549 802 l 2,7,8 - 730 802 730 802 816.5 861.5 c 128,-1,9 - 903 921 903 921 903 1044 c 0,10,11 - 903 1151 903 1151 830.5 1212.5 c 128,-1,12 - 758 1274 758 1274 623 1274 c 0,13,14 - 497 1274 497 1274 411 1215.5 c 128,-1,15 - 325 1157 325 1157 274 1027 c 1,16,-1 - 96 1088 l 1,17,18 - 166 1261 166 1261 298 1345 c 128,-1,19 - 430 1429 430 1429 630 1429 c 0,20,21 - 842 1429 842 1429 968 1329.5 c 128,-1,22 - 1094 1230 1094 1230 1094 1061 c 0,23,24 - 1094 934 1094 934 1022 851 c 128,-1,25 - 950 768 950 768 814 736 c 1,26,27 - 984 712 984 712 1059 628.5 c 128,-1,28 - 1134 545 1134 545 1134 399 c 2,29,-1 - 1134 160 l 1,30,-1 - 1287 160 l 1,31,-1 - 1287 -408 l 1,32,-1 - 1107 -408 l 1,33,-1 - 1107 0 l 1,34,-1 - 956 0 l 1,35,-1 - 956 373 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni0507 -Encoding: 1287 1287 1208 -Width: 1043 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 19 - 20 - 13 - 25 - 25 - 5 - 0 - 3 - 2 - 2 - 0 - 9 - 20 - 4 - 32 - 33 - 28 - 10 - 9 - 10 - 9 - 80 - 89 - 10 - 10 - 22 - 5 - 19 - 19 - 22 - 22 - 16 - 80 - 89 - 22 - 16 - 3 - 5 - 5 - 0 - 81 - 89 - 5 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -863 131 m 1,0,-1 - 982 131 l 1,1,-1 - 982 -408 l 1,2,-1 - 819 -408 l 1,3,-1 - 819 0 l 1,4,-1 - 688 0 l 1,5,-1 - 688 293 l 2,6,7 - 688 399 688 399 606.5 449 c 128,-1,8 - 525 499 525 499 340 499 c 1,9,-1 - 340 636 l 1,10,11 - 501 636 501 636 577 678 c 128,-1,12 - 653 720 653 720 653 808 c 0,13,14 - 653 882 653 882 603.5 925 c 128,-1,15 - 554 968 554 968 461 968 c 0,16,17 - 372 968 372 968 315.5 931 c 128,-1,18 - 259 894 259 894 247 824 c 1,19,-1 - 85 844 l 1,20,21 - 131 1102 131 1102 462 1102 c 0,22,23 - 630 1102 630 1102 733 1022.5 c 128,-1,24 - 836 943 836 943 836 817 c 0,25,26 - 836 716 836 716 763.5 648 c 128,-1,27 - 691 580 691 580 588 571 c 1,28,-1 - 588 569 l 1,29,30 - 863 540 863 540 863 320 c 2,31,-1 - 863 131 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0508 -Encoding: 1288 1288 1209 -Width: 1987 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 5 - 21 - 23 - 3 - 29 - 32 - 32 - 3 - 21 - 12 - 4 - 35 - 36 - 30 - 30 - 10 - 21 - 21 - 5 - 95 - 89 - 21 - 3 - 10 - 15 - 95 - 89 - 10 - 19 - 0 - 26 - 96 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1426 -20 m 0,0,1 - 1227 -20 1227 -20 1109 92 c 128,-1,2 - 991 204 991 204 991 397 c 2,3,-1 - 991 1249 l 1,4,-1 - 573 1249 l 1,5,-1 - 524 881 l 2,6,7 - 468 459 468 459 420 291 c 128,-1,8 - 372 123 372 123 301 53.5 c 128,-1,9 - 230 -16 230 -16 104 -16 c 0,10,11 - 46 -16 46 -16 18 -6 c 1,12,-1 - 18 146 l 1,13,14 - 37 139 37 139 74 139 c 0,15,16 - 127 139 127 139 160.5 171.5 c 128,-1,17 - 194 204 194 204 223 279.5 c 128,-1,18 - 252 355 252 355 281 503.5 c 128,-1,19 - 310 652 310 652 339 869.5 c 128,-1,20 - 368 1087 368 1087 410 1409 c 1,21,-1 - 1177 1409 l 1,22,-1 - 1177 439 l 2,23,24 - 1177 281 1177 281 1237 203 c 128,-1,25 - 1297 125 1297 125 1427 125 c 256,26,27 - 1557 125 1557 125 1616.5 203 c 128,-1,28 - 1676 281 1676 281 1676 439 c 2,29,-1 - 1676 840 l 1,30,-1 - 1857 840 l 1,31,-1 - 1857 397 l 2,32,33 - 1857 206 1857 206 1739 93 c 128,-1,34 - 1621 -20 1621 -20 1426 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0509 -Encoding: 1289 1289 1210 -Width: 1863 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 5 - 20 - 22 - 3 - 27 - 30 - 30 - 3 - 20 - 12 - 4 - 33 - 34 - 28 - 28 - 10 - 20 - 20 - 5 - 81 - 89 - 20 - 15 - 10 - 15 - 80 - 89 - 10 - 22 - 0 - 24 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1302 -20 m 0,0,1 - 1110 -20 1110 -20 991 96 c 128,-1,2 - 872 212 872 212 872 401 c 2,3,-1 - 872 951 l 1,4,-1 - 497 951 l 1,5,6 - 438 515 438 515 406 362.5 c 128,-1,7 - 374 210 374 210 337 132 c 128,-1,8 - 300 54 300 54 245.5 17 c 128,-1,9 - 191 -20 191 -20 105 -20 c 0,10,11 - 55 -20 55 -20 11 -7 c 1,12,-1 - 11 122 l 1,13,14 - 36 113 36 113 79 113 c 0,15,16 - 134 113 134 113 167.5 168 c 128,-1,17 - 201 223 201 223 228.5 358 c 128,-1,18 - 256 493 256 493 291 757 c 2,19,-1 - 335 1082 l 1,20,-1 - 1053 1082 l 1,21,-1 - 1053 436 l 2,22,23 - 1053 119 1053 119 1301 119 c 0,24,25 - 1427 119 1427 119 1487.5 198 c 128,-1,26 - 1548 277 1548 277 1548 436 c 2,27,-1 - 1548 634 l 1,28,-1 - 1729 634 l 1,29,-1 - 1729 401 l 2,30,31 - 1729 211 1729 211 1611 95.5 c 128,-1,32 - 1493 -20 1493 -20 1302 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni050A -Encoding: 1290 1290 1211 -Width: 2118 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 10 - 6 - 6 - 7 - 14 - 11 - 3 - 20 - 23 - 23 - 3 - 7 - 3 - 26 - 27 - 21 - 21 - 10 - 10 - 5 - 95 - 89 - 10 - 10 - 7 - 12 - 8 - 3 - 7 - 18 - 0 - 17 - 96 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1556 -20 m 0,0,1 - 1357 -20 1357 -20 1239 92 c 128,-1,2 - 1121 204 1121 204 1121 397 c 2,3,-1 - 1121 653 l 1,4,-1 - 359 653 l 1,5,-1 - 359 0 l 1,6,-1 - 168 0 l 1,7,-1 - 168 1409 l 1,8,-1 - 359 1409 l 1,9,-1 - 359 813 l 1,10,-1 - 1121 813 l 1,11,-1 - 1121 1409 l 1,12,-1 - 1312 1409 l 1,13,-1 - 1312 439 l 2,14,15 - 1312 281 1312 281 1369.5 203 c 128,-1,16 - 1427 125 1427 125 1557 125 c 256,17,18 - 1687 125 1687 125 1746.5 203 c 128,-1,19 - 1806 281 1806 281 1806 439 c 2,20,-1 - 1806 840 l 1,21,-1 - 1987 840 l 1,22,-1 - 1987 397 l 2,23,24 - 1987 206 1987 206 1869 93 c 128,-1,25 - 1751 -20 1751 -20 1556 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni050B -Encoding: 1291 1291 1212 -Width: 1799 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 1 - 22 - 22 - 23 - 5 - 2 - 19 - 10 - 13 - 13 - 19 - 23 - 3 - 25 - 26 - 1 - 21 - 81 - 89 - 1 - 11 - 1 - 11 - 23 - 3 - 24 - 15 - 23 - 21 - 16 - 7 - 80 - 89 - 16 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -322 1082 m 1,0,-1 - 322 624 l 1,1,-1 - 809 624 l 1,2,-1 - 809 1082 l 1,3,-1 - 989 1082 l 1,4,-1 - 989 436 l 2,5,6 - 989 119 989 119 1238 119 c 0,7,8 - 1364 119 1364 119 1424 198 c 128,-1,9 - 1484 277 1484 277 1484 436 c 2,10,-1 - 1484 634 l 1,11,-1 - 1665 634 l 1,12,-1 - 1665 401 l 2,13,14 - 1665 209 1665 209 1547.5 94.5 c 128,-1,15 - 1430 -20 1430 -20 1239 -20 c 0,16,17 - 1042 -20 1042 -20 925.5 93.5 c 128,-1,18 - 809 207 809 207 809 401 c 2,19,-1 - 809 493 l 1,20,-1 - 322 493 l 1,21,-1 - 322 0 l 1,22,-1 - 142 0 l 1,23,-1 - 142 1082 l 1,24,-1 - 322 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni050C -Encoding: 1292 1292 1213 -Width: 1593 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 42 71 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni050D -Encoding: 1293 1293 1214 -Width: 1144 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 548 610 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni050E -Encoding: 1294 1294 1215 -Width: 1529 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 10 - 3 - 16 - 19 - 19 - 8 - 3 - 6 - 4 - 22 - 23 - 17 - 17 - 0 - 6 - 9 - 5 - 6 - 5 - 95 - 89 - 6 - 3 - 0 - 13 - 96 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -965 -20 m 0,0,1 - 766 -20 766 -20 648 92 c 128,-1,2 - 530 204 530 204 530 397 c 2,3,-1 - 530 1253 l 1,4,-1 - 46 1253 l 1,5,-1 - 46 1409 l 1,6,-1 - 1204 1409 l 1,7,-1 - 1204 1253 l 1,8,-1 - 720 1253 l 1,9,-1 - 720 439 l 2,10,11 - 720 281 720 281 778 203 c 128,-1,12 - 836 125 836 125 966 125 c 256,13,14 - 1096 125 1096 125 1155.5 203 c 128,-1,15 - 1215 281 1215 281 1215 439 c 2,16,-1 - 1215 840 l 1,17,-1 - 1396 840 l 1,18,-1 - 1396 397 l 2,19,20 - 1396 206 1396 206 1278 93 c 128,-1,21 - 1160 -20 1160 -20 965 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni050F -Encoding: 1295 1295 1216 -Width: 1363 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 4 - 19 - 2 - 10 - 10 - 13 - 13 - 19 - 0 - 3 - 22 - 23 - 11 - 11 - 16 - 0 - 16 - 7 - 80 - 89 - 16 - 22 - 3 - 21 - 0 - 21 - 81 - 89 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -35 1082 m 1,0,-1 - 903 1082 l 1,1,-1 - 903 951 l 1,2,-1 - 559 951 l 1,3,-1 - 559 436 l 2,4,5 - 559 277 559 277 617.5 198 c 128,-1,6 - 676 119 676 119 802 119 c 256,7,8 - 928 119 928 119 988 198 c 128,-1,9 - 1048 277 1048 277 1048 436 c 2,10,-1 - 1048 634 l 1,11,-1 - 1229 634 l 1,12,-1 - 1229 401 l 2,13,14 - 1229 209 1229 209 1111.5 94.5 c 128,-1,15 - 994 -20 994 -20 803 -20 c 0,16,17 - 613 -20 613 -20 496 95 c 128,-1,18 - 379 210 379 210 379 401 c 2,19,-1 - 379 951 l 1,20,-1 - 35 951 l 1,21,-1 - 35 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0510 -Encoding: 1296 1296 1217 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 6 - 26 - 8 - 15 - 14 - 14 - 35 - 36 - 21 - 8 - 8 - 30 - 3 - 36 - 3 - 40 - 39 - 6 - 24 - 27 - 24 - 27 - 96 - 89 - 24 - 24 - 0 - 11 - 11 - 18 - 95 - 89 - 15 - 15 - 11 - 4 - 35 - 35 - 0 - 0 - 33 - 95 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -603 -20 m 0,0,1 - 364 -20 364 -20 223 99.5 c 128,-1,2 - 82 219 82 219 82 413 c 0,3,4 - 82 542 82 542 165.5 627.5 c 128,-1,5 - 249 713 249 713 404 736 c 1,6,7 - 124 803 124 803 124 1051 c 0,8,9 - 124 1221 124 1221 255.5 1325 c 128,-1,10 - 387 1429 387 1429 598 1429 c 0,11,12 - 794 1429 794 1429 922.5 1347 c 128,-1,13 - 1051 1265 1051 1265 1122 1088 c 1,14,-1 - 944 1027 l 1,15,16 - 892 1160 892 1160 810 1217 c 128,-1,17 - 728 1274 728 1274 605 1274 c 0,18,19 - 469 1274 469 1274 392 1212.5 c 128,-1,20 - 315 1151 315 1151 315 1044 c 0,21,22 - 315 921 315 921 401.5 861.5 c 128,-1,23 - 488 802 488 802 669 802 c 2,24,-1 - 740 802 l 1,25,-1 - 740 654 l 1,26,-1 - 669 654 l 2,27,28 - 467 654 467 654 371 595 c 128,-1,29 - 275 536 275 536 275 403 c 0,30,31 - 275 276 275 276 365.5 204.5 c 128,-1,32 - 456 133 456 133 610 133 c 0,33,34 - 869 133 869 133 986 405 c 1,35,-1 - 1151 328 l 1,36,37 - 1062 140 1062 140 931.5 60 c 128,-1,38 - 801 -20 801 -20 603 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0511 -Encoding: 1297 1297 1218 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 47 - 7 - 6 - 26 - 6 - 10 - 16 - 15 - 15 - 34 - 35 - 22 - 10 - 10 - 29 - 3 - 35 - 3 - 39 - 38 - 6 - 25 - 26 - 25 - 26 - 80 - 89 - 25 - 25 - 0 - 13 - 13 - 19 - 80 - 89 - 16 - 16 - 13 - 16 - 34 - 34 - 0 - 0 - 32 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -477 -20 m 0,0,1 - 286 -20 286 -20 179.5 65.5 c 128,-1,2 - 73 151 73 151 73 301 c 0,3,4 - 73 409 73 409 148 482.5 c 128,-1,5 - 223 556 223 556 347 569 c 1,6,-1 - 347 571 l 1,7,8 - 240 580 240 580 169.5 646.5 c 128,-1,9 - 99 713 99 713 99 812 c 0,10,11 - 99 941 99 941 203.5 1021.5 c 128,-1,12 - 308 1102 308 1102 473 1102 c 0,13,14 - 804 1102 804 1102 850 844 c 1,15,-1 - 688 824 l 1,16,17 - 676 894 676 894 620 931 c 128,-1,18 - 564 968 564 968 474 968 c 0,19,20 - 381 968 381 968 331.5 925 c 128,-1,21 - 282 882 282 882 282 808 c 0,22,23 - 282 721 282 721 357 678.5 c 128,-1,24 - 432 636 432 636 595 636 c 1,25,-1 - 595 499 l 1,26,27 - 428 499 428 499 344.5 448 c 128,-1,28 - 261 397 261 397 261 300 c 0,29,30 - 261 216 261 216 316.5 165 c 128,-1,31 - 372 114 372 114 473 114 c 0,32,33 - 674 114 674 114 727 278 c 1,34,-1 - 886 234 l 1,35,36 - 841 105 841 105 742 42.5 c 128,-1,37 - 643 -20 643 -20 477 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0512 -Encoding: 1298 1298 1219 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 0 - 16 - 28 - 18 - 18 - 23 - 16 - 7 - 4 - 30 - 31 - 16 - 0 - 95 - 89 - 16 - 3 - 21 - 26 - 95 - 89 - 21 - 5 - 5 - 10 - 95 - 89 - 5 - 8 - 95 - 89 - 5 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -573 1249 m 1,0,-1 - 524 881 l 2,1,2 - 468 459 468 459 420 291 c 128,-1,3 - 372 123 372 123 301 53.5 c 128,-1,4 - 230 -16 230 -16 104 -16 c 0,5,6 - 46 -16 46 -16 18 -6 c 1,7,-1 - 18 146 l 1,8,9 - 37 139 37 139 74 139 c 0,10,11 - 127 139 127 139 160.5 171.5 c 128,-1,12 - 194 204 194 204 223 279.5 c 128,-1,13 - 252 355 252 355 281 503.5 c 128,-1,14 - 310 652 310 652 339 869.5 c 128,-1,15 - 368 1087 368 1087 410 1409 c 1,16,-1 - 1177 1409 l 1,17,-1 - 1177 -129 l 2,18,19 - 1177 -274 1177 -274 1100.5 -349.5 c 128,-1,20 - 1024 -425 1024 -425 881 -425 c 0,21,22 - 822 -425 822 -425 758 -411 c 1,23,-1 - 758 -251 l 1,24,25 - 802 -267 802 -267 868 -267 c 0,26,27 - 991 -267 991 -267 991 -119 c 2,28,-1 - 991 1249 l 1,29,-1 - 573 1249 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0513 -Encoding: 1299 1299 1220 -Width: 1195 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 12 - 27 - 10 - 0 - 0 - 4 - 27 - 19 - 4 - 29 - 30 - 27 - 12 - 81 - 89 - 27 - 15 - 17 - 22 - 80 - 89 - 17 - 22 - 2 - 7 - 80 - 89 - 2 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1053 -129 m 2,0,1 - 1053 -425 1053 -425 772 -425 c 0,2,3 - 711 -425 711 -425 647 -411 c 1,4,-1 - 647 -255 l 1,5,6 - 691 -271 691 -271 759 -271 c 0,7,8 - 814 -271 814 -271 843 -237.5 c 128,-1,9 - 872 -204 872 -204 872 -123 c 2,10,-1 - 872 951 l 1,11,-1 - 497 951 l 1,12,13 - 438 515 438 515 406 362.5 c 128,-1,14 - 374 210 374 210 337 132 c 128,-1,15 - 300 54 300 54 245.5 17 c 128,-1,16 - 191 -20 191 -20 105 -20 c 0,17,18 - 55 -20 55 -20 11 -7 c 1,19,-1 - 11 122 l 1,20,21 - 36 113 36 113 79 113 c 0,22,23 - 134 113 134 113 167.5 168 c 128,-1,24 - 201 223 201 223 228.5 358 c 128,-1,25 - 256 493 256 493 291 757 c 2,26,-1 - 335 1082 l 1,27,-1 - 1053 1082 l 1,28,-1 - 1053 -129 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni051A -Encoding: 1306 1306 1221 -Width: 1593 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 52 81 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni051B -Encoding: 1307 1307 1222 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 84 113 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni051C -Encoding: 1308 1308 1223 -Width: 1933 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 58 87 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni051D -Encoding: 1309 1309 1224 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 90 119 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni0591 -Encoding: 1425 1425 1225 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 19 - 17 - 5 - 14 - 14 - 10 - 223 - 1 - 1 - 0 - 1 - 64 - 1 - 80 - 1 - 96 - 1 - 4 - 1 - 16 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -DELTAP1 -SHP[rp2] -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 220 20 mark 0 -AnchorPoint: "Anchor-11" -200 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet -190 -385 m 1,0,-1 - 88 -385 l 1,1,-1 - 88 -338 l 2,2,3 - 88 -284 88 -284 69 -261 c 128,-1,4 - 50 -238 50 -238 2 -238 c 0,5,6 - -49 -238 -49 -238 -68.5 -261 c 128,-1,7 - -88 -284 -88 -284 -88 -338 c 2,8,-1 - -88 -385 l 1,9,-1 - -188 -385 l 1,10,-1 - -188 -336 l 2,11,12 - -188 -248 -188 -248 -154.5 -203 c 128,-1,13 - -121 -158 -121 -158 -51 -147 c 1,14,-1 - -51 -53 l 1,15,-1 - 51 -53 l 1,16,-1 - 51 -147 l 1,17,18 - 123 -158 123 -158 156.5 -203.5 c 128,-1,19 - 190 -249 190 -249 190 -336 c 2,20,-1 - 190 -385 l 1,0,-1 -EndSplineSet -Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 -EndChar - -StartChar: uni0592 -Encoding: 1426 1426 1226 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 22 - 21 - 9 - 9 - 15 - 15 - 3 - 1 - 175 - 3 - 239 - 3 - 255 - 3 - 3 - 3 - 64 - 9 - 13 - 72 - 3 - 27 - 33 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -CALL -DELTAP1 -DELTAP2 -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 480 1350 mark 0 -AnchorPoint: "Anchor-3" 230 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -43 1647 m 0,0,1 - 43 1679 43 1679 66 1701.5 c 128,-1,2 - 89 1724 89 1724 121 1724 c 0,3,4 - 155 1724 155 1724 178 1701.5 c 128,-1,5 - 201 1679 201 1679 201 1647 c 0,6,7 - 201 1613 201 1613 178 1590 c 128,-1,8 - 155 1567 155 1567 121 1567 c 0,9,10 - 89 1567 89 1567 66 1590 c 128,-1,11 - 43 1613 43 1613 43 1647 c 0,0,1 -272 1647 m 0,12,13 - 272 1679 272 1679 295 1701.5 c 128,-1,14 - 318 1724 318 1724 350 1724 c 0,15,16 - 384 1724 384 1724 407 1701.5 c 128,-1,17 - 430 1679 430 1679 430 1647 c 0,18,19 - 430 1613 430 1613 407 1590 c 128,-1,20 - 384 1567 384 1567 350 1567 c 0,21,22 - 318 1567 318 1567 295 1590 c 128,-1,23 - 272 1613 272 1613 272 1647 c 0,12,13 -158 1438 m 0,24,25 - 158 1472 158 1472 181 1495 c 128,-1,26 - 204 1518 204 1518 236 1518 c 0,27,28 - 270 1518 270 1518 292.5 1495 c 128,-1,29 - 315 1472 315 1472 315 1438 c 0,30,31 - 315 1406 315 1406 292.5 1382 c 128,-1,32 - 270 1358 270 1358 236 1358 c 0,33,34 - 204 1358 204 1358 181 1382 c 128,-1,35 - 158 1406 158 1406 158 1438 c 0,24,25 -EndSplineSet -EndChar - -StartChar: uni0593 -Encoding: 1427 1427 1227 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 0 - 6 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 200 1350 mark 0 -AnchorPoint: "Anchor-3" 0 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -147 1788 m 1,0,-1 - -8 1702 l 1,1,-1 - 147 1616 l 1,2,-1 - -8 1530 l 1,3,-1 - 147 1444 l 1,4,-1 - -29 1358 l 1,5,-1 - -147 1358 l 1,6,-1 - 8 1444 l 1,7,-1 - -147 1530 l 1,8,-1 - 8 1616 l 1,9,-1 - -147 1702 l 1,10,-1 - 8 1788 l 1,11,-1 - 147 1788 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0594 -Encoding: 1428 1428 1228 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 19 - 9 - 15 - 3 - 1 - 175 - 3 - 239 - 3 - 255 - 3 - 3 - 3 - 64 - 9 - 13 - 72 - 3 - 15 - 21 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -CALL -DELTAP1 -DELTAP2 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 300 1350 mark 0 -AnchorPoint: "Anchor-3" 170 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -96 1645 m 0,0,1 - 96 1679 96 1679 119 1701.5 c 128,-1,2 - 142 1724 142 1724 174 1724 c 0,3,4 - 208 1724 208 1724 232 1701.5 c 128,-1,5 - 256 1679 256 1679 256 1645 c 0,6,7 - 256 1613 256 1613 232.5 1590 c 128,-1,8 - 209 1567 209 1567 174 1567 c 0,9,10 - 142 1567 142 1567 119 1590 c 128,-1,11 - 96 1613 96 1613 96 1645 c 0,0,1 -94 1438 m 256,12,13 - 94 1472 94 1472 118 1495 c 128,-1,14 - 142 1518 142 1518 174 1518 c 256,15,16 - 206 1518 206 1518 230 1494 c 128,-1,17 - 254 1470 254 1470 254 1438 c 256,18,19 - 254 1406 254 1406 230.5 1382 c 128,-1,20 - 207 1358 207 1358 174 1358 c 0,21,22 - 140 1358 140 1358 117 1381 c 128,-1,23 - 94 1404 94 1404 94 1438 c 256,12,13 -EndSplineSet -EndChar - -StartChar: uni0595 -Encoding: 1429 1429 1229 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 22 - 25 - 3 - 24 - 9 - 15 - 3 - 1 - 175 - 3 - 239 - 3 - 255 - 3 - 3 - 3 - 64 - 9 - 13 - 72 - 3 - 15 - 21 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -CALL -DELTAP1 -DELTAP2 -SHP[rp2] -MDRP[rnd,grey] -SRP0 -MDRP[rnd,grey] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 480 1350 mark 0 -AnchorPoint: "Anchor-3" 260 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -295 1645 m 0,0,1 - 295 1679 295 1679 318 1701.5 c 128,-1,2 - 341 1724 341 1724 375 1724 c 0,3,4 - 407 1724 407 1724 431 1701.5 c 128,-1,5 - 455 1679 455 1679 455 1645 c 0,6,7 - 455 1613 455 1613 431 1590 c 128,-1,8 - 407 1567 407 1567 375 1567 c 0,9,10 - 341 1567 341 1567 318 1590 c 128,-1,11 - 295 1613 295 1613 295 1645 c 0,0,1 -295 1438 m 0,12,13 - 295 1470 295 1470 318 1494 c 128,-1,14 - 341 1518 341 1518 373 1518 c 0,15,16 - 406 1518 406 1518 429.5 1494.5 c 128,-1,17 - 453 1471 453 1471 453 1438 c 0,18,19 - 453 1404 453 1404 430 1381 c 128,-1,20 - 407 1358 407 1358 373 1358 c 0,21,22 - 341 1358 341 1358 318 1381 c 128,-1,23 - 295 1404 295 1404 295 1438 c 0,12,13 -96 1358 m 1,24,-1 - 96 1724 l 1,25,-1 - 207 1724 l 1,26,-1 - 207 1358 l 1,27,-1 - 96 1358 l 1,24,-1 -EndSplineSet -EndChar - -StartChar: uni0596 -Encoding: 1430 1430 1230 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 0 - 4 - 16 - 4 - 2 - 4 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 140 0 mark 0 -AnchorPoint: "Anchor-11" -200 20 mark 0 -AnchorPoint: "Anchor-5" 45 0 mark 0 -LayerCount: 2 -Fore -SplineSet --68 -82 m 1,0,1 - -68 -174 -68 -174 -10 -226.5 c 128,-1,2 - 48 -279 48 -279 150 -279 c 1,3,-1 - 150 -385 l 1,4,5 - -6 -385 -6 -385 -92 -305 c 128,-1,6 - -178 -225 -178 -225 -178 -82 c 1,7,-1 - -68 -82 l 1,0,1 -EndSplineSet -Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 -EndChar - -StartChar: uni0597 -Encoding: 1431 1431 1231 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 3 - 1 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 200 1350 mark 0 -AnchorPoint: "Anchor-3" 0 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -152 1536 m 1,0,-1 - 0 1368 l 1,1,-1 - -152 1536 l 1,2,-1 - 0 1704 l 1,3,-1 - 152 1536 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni0598 -Encoding: 1432 1432 1232 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 13 - 17 - 28 - 0 - 11 - 28 - 11 - 28 - 11 - 15 - 23 - 1 - 23 - 6 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 300 1350 mark 0 -AnchorPoint: "Anchor-3" 0 1350 mark 0 -LayerCount: 2 -Fore -SplineSet --156 1593 m 0,0,1 - -184 1593 -184 1593 -202.5 1574 c 128,-1,2 - -221 1555 -221 1555 -221 1518 c 0,3,4 - -221 1454 -221 1454 -164 1432 c 1,5,-1 - -190 1360 l 1,6,7 - -299 1398 -299 1398 -299 1518 c 0,8,9 - -299 1583 -299 1583 -258 1624 c 128,-1,10 - -217 1665 -217 1665 -152 1665 c 0,11,12 - -105 1665 -105 1665 -64.5 1638.5 c 128,-1,13 - -24 1612 -24 1612 29 1538 c 0,14,15 - 69 1481 69 1481 96.5 1457.5 c 128,-1,16 - 124 1434 124 1434 156 1434 c 0,17,18 - 184 1434 184 1434 202.5 1453 c 128,-1,19 - 221 1472 221 1472 221 1509 c 0,20,21 - 221 1573 221 1573 164 1595 c 1,22,-1 - 190 1667 l 1,23,24 - 299 1626 299 1626 299 1509 c 0,25,26 - 299 1444 299 1444 258.5 1403 c 128,-1,27 - 218 1362 218 1362 156 1362 c 0,28,29 - 106 1362 106 1362 64.5 1389 c 128,-1,30 - 23 1416 23 1416 -29 1489 c 0,31,32 - -73 1551 -73 1551 -97.5 1572 c 128,-1,33 - -122 1593 -122 1593 -156 1593 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni0599 -Encoding: 1433 1433 1233 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 15 - 4 - 31 - 4 - 2 - 4 - 0 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-7" 0 1350 mark 0 -LayerCount: 2 -Fore -SplineSet --111 1358 m 1,0,1 - -111 1450 -111 1450 -167.5 1502 c 128,-1,2 - -224 1554 -224 1554 -328 1554 c 1,3,-1 - -328 1663 l 1,4,5 - -174 1663 -174 1663 -87 1583.5 c 128,-1,6 - 0 1504 0 1504 0 1358 c 1,7,-1 - -111 1358 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni059A -Encoding: 1434 1434 1234 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 4 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-9" 0 40 mark 0 -LayerCount: 2 -Fore -SplineSet -322 -385 m 1,0,-1 - 178 -385 l 1,1,-1 - 0 -205 l 1,2,-1 - 178 -25 l 1,3,-1 - 322 -25 l 1,4,-1 - 143 -205 l 1,5,-1 - 322 -385 l 1,0,-1 -EndSplineSet -Position2: "Single Positioning lookup 23 subtable" dx=320 dy=0 dh=0 dv=0 -EndChar - -StartChar: uni059B -Encoding: 1435 1435 1235 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 9 - 7 - 7 - 4 - 64 - 3 - 1 - 3 - 17 - 11 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 180 20 mark 0 -AnchorPoint: "Anchor-11" -200 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet -150 -82 m 1,0,1 - 150 -223 150 -223 65 -304 c 128,-1,2 - -20 -385 -20 -385 -178 -385 c 1,3,-1 - -178 -279 l 1,4,5 - -77 -279 -77 -279 -18 -226.5 c 128,-1,6 - 41 -174 41 -174 41 -82 c 1,7,-1 - 150 -82 l 1,0,1 --215 -94 m 0,8,9 - -215 -62 -215 -62 -192 -38 c 128,-1,10 - -169 -14 -169 -14 -137 -14 c 0,11,12 - -104 -14 -104 -14 -80.5 -37.5 c 128,-1,13 - -57 -61 -57 -61 -57 -94 c 0,14,15 - -57 -128 -57 -128 -80 -151 c 128,-1,16 - -103 -174 -103 -174 -137 -174 c 0,17,18 - -169 -174 -169 -174 -192 -151 c 128,-1,19 - -215 -128 -215 -128 -215 -94 c 0,8,9 -EndSplineSet -EndChar - -StartChar: uni059C -Encoding: 1436 1436 1236 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_8 - 4 - 15 - 3 - 31 - 3 - 2 - 3 - 0 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 360 1350 mark 0 -AnchorPoint: "Anchor-3" 160 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -0 1358 m 1,0,1 - 0 1503 0 1503 87 1583 c 128,-1,2 - 174 1663 174 1663 328 1663 c 1,3,-1 - 328 1554 l 1,4,5 - 226 1554 226 1554 168.5 1503.5 c 128,-1,6 - 111 1453 111 1453 111 1358 c 1,7,-1 - 0 1358 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni059D -Encoding: 1437 1437 1237 -Width: 0 -GlyphClass: 4 -Flags: W -AnchorPoint: "Anchor-8" 0 1350 mark 0 -LayerCount: 2 -Fore -Refer: 1236 1436 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni059E -Encoding: 1438 1438 1238 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 12 - 12 - 11 - 11 - 4 - 15 - 3 - 31 - 3 - 2 - 3 - 8 - 0 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 300 1350 mark 0 -AnchorPoint: "Anchor-3" -100 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -0 1358 m 1,0,1 - 0 1503 0 1503 87 1583 c 128,-1,2 - 174 1663 174 1663 328 1663 c 1,3,-1 - 328 1554 l 1,4,5 - 226 1554 226 1554 168.5 1503.5 c 128,-1,6 - 111 1453 111 1453 111 1358 c 1,7,-1 - 0 1358 l 1,0,1 --328 1358 m 1,8,9 - -328 1501 -328 1501 -242 1582 c 128,-1,10 - -156 1663 -156 1663 0 1663 c 1,11,-1 - 0 1554 l 1,12,13 - -102 1554 -102 1554 -159.5 1503.5 c 128,-1,14 - -217 1453 -217 1453 -217 1358 c 1,15,-1 - -328 1358 l 1,8,9 -EndSplineSet -EndChar - -StartChar: uni059F -Encoding: 1439 1439 1239 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 16 - 25 - 3 - 3 - 47 - 47 - 41 - 1 - 41 - 19 - 53 - 53 - 9 - 80 - 35 - 1 - 35 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -MDRP[rnd,grey] -DELTAP1 -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 500 1350 mark 0 -AnchorPoint: "Anchor-3" 0 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -90 1618 m 0,0,1 - 90 1707 90 1707 153 1770 c 128,-1,2 - 216 1833 216 1833 305 1833 c 0,3,4 - 396 1833 396 1833 459 1770.5 c 128,-1,5 - 522 1708 522 1708 522 1618 c 0,6,7 - 522 1529 522 1529 460 1466 c 128,-1,8 - 398 1403 398 1403 305 1403 c 0,9,10 - 246 1403 246 1403 201 1427 c 1,11,-1 - 113 1339 l 1,12,-1 - 31 1423 l 1,13,-1 - 119 1511 l 1,14,15 - 90 1558 90 1558 90 1618 c 0,0,1 -211 1618 m 256,16,17 - 211 1578 211 1578 238.5 1550 c 128,-1,18 - 266 1522 266 1522 305 1522 c 0,19,20 - 345 1522 345 1522 374 1550.5 c 128,-1,21 - 403 1579 403 1579 403 1618 c 256,22,23 - 403 1657 403 1657 373 1685.5 c 128,-1,24 - 343 1714 343 1714 305 1714 c 0,25,26 - 269 1714 269 1714 240 1686 c 128,-1,27 - 211 1658 211 1658 211 1618 c 256,16,17 --90 1618 m 0,28,29 - -90 1558 -90 1558 -119 1511 c 1,30,-1 - -31 1423 l 1,31,-1 - -113 1339 l 1,32,-1 - -201 1427 l 1,33,34 - -246 1403 -246 1403 -305 1403 c 0,35,36 - -397 1403 -397 1403 -459.5 1465.5 c 128,-1,37 - -522 1528 -522 1528 -522 1618 c 0,38,39 - -522 1707 -522 1707 -459 1770 c 128,-1,40 - -396 1833 -396 1833 -305 1833 c 0,41,42 - -216 1833 -216 1833 -153 1770 c 128,-1,43 - -90 1707 -90 1707 -90 1618 c 0,28,29 --211 1618 m 256,44,45 - -211 1658 -211 1658 -240 1686 c 128,-1,46 - -269 1714 -269 1714 -305 1714 c 0,47,48 - -343 1714 -343 1714 -373 1685 c 128,-1,49 - -403 1656 -403 1656 -403 1618 c 0,50,51 - -403 1579 -403 1579 -374 1550.5 c 128,-1,52 - -345 1522 -345 1522 -305 1522 c 0,53,54 - -267 1522 -267 1522 -239 1550 c 128,-1,55 - -211 1578 -211 1578 -211 1618 c 256,44,45 -EndSplineSet -EndChar - -StartChar: uni05A0 -Encoding: 1440 1440 1240 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 10 - 25 - 47 - 3 - 1 - 3 - 19 - 80 - 9 - 1 - 9 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -MDRP[rnd,grey] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-8" 0 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -61 1618 m 0,0,1 - 61 1707 61 1707 124 1770 c 128,-1,2 - 187 1833 187 1833 276 1833 c 0,3,4 - 364 1833 364 1833 428 1771 c 128,-1,5 - 492 1709 492 1709 492 1618 c 0,6,7 - 492 1528 492 1528 429 1465.5 c 128,-1,8 - 366 1403 366 1403 276 1403 c 0,9,10 - 219 1403 219 1403 170 1427 c 1,11,-1 - 84 1339 l 1,12,-1 - 0 1423 l 1,13,-1 - 88 1511 l 1,14,15 - 61 1557 61 1557 61 1618 c 0,0,1 -180 1618 m 256,16,17 - 180 1578 180 1578 208 1550 c 128,-1,18 - 236 1522 236 1522 276 1522 c 0,19,20 - 317 1522 317 1522 345 1550 c 128,-1,21 - 373 1578 373 1578 373 1618 c 256,22,23 - 373 1658 373 1658 344 1686 c 128,-1,24 - 315 1714 315 1714 276 1714 c 0,25,26 - 238 1714 238 1714 209 1686 c 128,-1,27 - 180 1658 180 1658 180 1618 c 256,16,17 -EndSplineSet -EndChar - -StartChar: uni05A1 -Encoding: 1441 1441 1241 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 9 - 13 - 4 - 4 - 9 - 15 - 0 - 1 - 0 - 8 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 200 1350 mark 0 -AnchorPoint: "Anchor-3" 0 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -168 1690 m 1,0,-1 - 168 1640 l 2,1,2 - 168 1552 168 1552 124.5 1501 c 128,-1,3 - 81 1450 81 1450 -6 1450 c 0,4,5 - -40 1450 -40 1450 -63 1460 c 1,6,-1 - -63 1358 l 1,7,-1 - -164 1358 l 1,8,-1 - -164 1690 l 1,9,-1 - -63 1690 l 1,10,-1 - -63 1552 l 1,11,12 - -53 1540 -53 1540 -20 1540 c 0,13,14 - 28 1540 28 1540 47 1562.5 c 128,-1,15 - 66 1585 66 1585 66 1640 c 2,16,-1 - 66 1690 l 1,17,-1 - 168 1690 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni05A2 -Encoding: 1442 1442 1242 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 19 - 15 - 3 - 6 - 6 - 223 - 5 - 1 - 0 - 5 - 64 - 5 - 80 - 5 - 96 - 5 - 4 - 5 - 19 - 11 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -DELTAP1 -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 220 20 mark 0 -AnchorPoint: "Anchor-11" -200 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet -190 -102 m 2,0,1 - 190 -192 190 -192 155.5 -237 c 128,-1,2 - 121 -282 121 -282 51 -293 c 1,3,-1 - 51 -385 l 1,4,-1 - -51 -385 l 1,5,-1 - -51 -293 l 1,6,7 - -118 -283 -118 -283 -153 -238 c 128,-1,8 - -188 -193 -188 -193 -188 -102 c 2,9,-1 - -188 -53 l 1,10,-1 - -88 -53 l 1,11,-1 - -88 -102 l 2,12,13 - -88 -155 -88 -155 -68.5 -179 c 128,-1,14 - -49 -203 -49 -203 2 -203 c 0,15,16 - 50 -203 50 -203 69 -179 c 128,-1,17 - 88 -155 88 -155 88 -102 c 2,18,-1 - 88 -53 l 1,19,-1 - 190 -53 l 1,20,-1 - 190 -102 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni05A3 -Encoding: 1443 1443 1243 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_6 - 3 - 0 - 2 - 1 - 2 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 180 20 mark 0 -AnchorPoint: "Anchor-11" -200 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet -143 -35 m 1,0,-1 - 143 -348 l 1,1,-1 - -184 -348 l 1,2,-1 - -184 -242 l 1,3,-1 - 35 -242 l 1,4,-1 - 35 -35 l 1,5,-1 - 143 -35 l 1,0,-1 -EndSplineSet -Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 -EndChar - -StartChar: uni05A4 -Encoding: 1444 1444 1244 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 4 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 160 20 mark 0 -AnchorPoint: "Anchor-11" -200 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet -162 -385 m 1,0,-1 - 18 -385 l 1,1,-1 - -162 -205 l 1,2,-1 - 18 -25 l 1,3,-1 - 162 -25 l 1,4,-1 - -18 -205 l 1,5,-1 - 162 -385 l 1,0,-1 -EndSplineSet -PairPos2: "Pairwise Positioning (kerning) lookup 25 subtable" uni05A5 dx=200 dy=0 dh=0 dv=0 dx=-200 dy=0 dh=0 dv=0 -Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 -EndChar - -StartChar: uni05A5 -Encoding: 1445 1445 1245 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_8 - 4 - 0 - 3 - 16 - 3 - 2 - 3 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 200 0 mark 0 -AnchorPoint: "Anchor-11" -200 20 mark 0 -AnchorPoint: "Anchor-5" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet -178 -82 m 1,0,1 - 178 -225 178 -225 92.5 -305 c 128,-1,2 - 7 -385 7 -385 -150 -385 c 1,3,-1 - -150 -279 l 1,4,5 - -48 -279 -48 -279 10 -226 c 128,-1,6 - 68 -173 68 -173 68 -82 c 1,7,-1 - 178 -82 l 1,0,1 -EndSplineSet -Position2: "Single Positioning lookup 24 subtable" dx=-540 dy=0 dh=0 dv=0 -EndChar - -StartChar: uni05A6 -Encoding: 1446 1446 1246 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 12 - 12 - 11 - 11 - 4 - 0 - 3 - 16 - 3 - 2 - 3 - 15 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 360 0 mark 0 -AnchorPoint: "Anchor-11" -330 20 mark 0 -AnchorPoint: "Anchor-5" 27 0 mark 0 -LayerCount: 2 -Fore -SplineSet -0 -82 m 1,0,1 - 0 -225 0 -225 -85.5 -305 c 128,-1,2 - -171 -385 -171 -385 -328 -385 c 1,3,-1 - -328 -279 l 1,4,5 - -225 -279 -225 -279 -168 -225.5 c 128,-1,6 - -111 -172 -111 -172 -111 -82 c 1,7,-1 - 0 -82 l 1,0,1 -328 -82 m 1,8,9 - 328 -223 328 -223 243 -304 c 128,-1,10 - 158 -385 158 -385 0 -385 c 1,11,-1 - 0 -279 l 1,12,13 - 103 -279 103 -279 160 -225.5 c 128,-1,14 - 217 -172 217 -172 217 -82 c 1,15,-1 - 328 -82 l 1,8,9 -EndSplineSet -EndChar - -StartChar: uni05A7 -Encoding: 1447 1447 1247 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_5 - 64 - 1 - 1 - 1 - 5 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 180 20 mark 0 -AnchorPoint: "Anchor-11" -200 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet -156 -334 m 1,0,-1 - -129 -385 l 1,1,-1 - -129 -305 l 1,2,-1 - 12 -283 l 1,3,-1 - -158 -59 l 1,4,-1 - 129 -8 l 1,5,-1 - 129 -84 l 1,6,-1 - -14 -109 l 1,7,-1 - 156 -334 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni05A8 -Encoding: 1448 1448 1248 -Width: 0 -GlyphClass: 4 -Flags: W -AnchorPoint: "Anchor-12" 200 1350 mark 0 -AnchorPoint: "Anchor-3" 0 1350 mark 0 -LayerCount: 2 -Fore -Refer: 1233 1433 N 1 0 0 1 164 0 2 -EndChar - -StartChar: uni05A9 -Encoding: 1449 1449 1249 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 10 - 19 - 47 - 13 - 1 - 13 - 25 - 80 - 7 - 1 - 7 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -MDRP[rnd,grey] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-7" 0 1350 mark 0 -LayerCount: 2 -Fore -SplineSet --61 1618 m 0,0,1 - -61 1557 -61 1557 -88 1511 c 1,2,-1 - 0 1423 l 1,3,-1 - -84 1339 l 1,4,-1 - -170 1427 l 1,5,6 - -220 1403 -220 1403 -276 1403 c 0,7,8 - -365 1403 -365 1403 -428.5 1465 c 128,-1,9 - -492 1527 -492 1527 -492 1618 c 0,10,11 - -492 1708 -492 1708 -428 1770.5 c 128,-1,12 - -364 1833 -364 1833 -276 1833 c 0,13,14 - -189 1833 -189 1833 -125 1770 c 128,-1,15 - -61 1707 -61 1707 -61 1618 c 0,0,1 --180 1618 m 256,16,17 - -180 1658 -180 1658 -209 1686 c 128,-1,18 - -238 1714 -238 1714 -276 1714 c 0,19,20 - -315 1714 -315 1714 -344 1685.5 c 128,-1,21 - -373 1657 -373 1657 -373 1618 c 0,22,23 - -373 1578 -373 1578 -345 1550 c 128,-1,24 - -317 1522 -317 1522 -276 1522 c 0,25,26 - -236 1522 -236 1522 -208 1550 c 128,-1,27 - -180 1578 -180 1578 -180 1618 c 256,16,17 -EndSplineSet -EndChar - -StartChar: uni05AA -Encoding: 1450 1450 1250 -Width: 0 -GlyphClass: 4 -Flags: W -AnchorPoint: "Anchor-13" 220 20 mark 0 -AnchorPoint: "Anchor-11" -200 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -Refer: 1242 1442 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni05AB -Encoding: 1451 1451 1251 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 4 - 1 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 200 1350 mark 0 -AnchorPoint: "Anchor-3" 20 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -162 1358 m 1,0,-1 - 18 1358 l 1,1,-1 - -162 1538 l 1,2,-1 - 18 1718 l 1,3,-1 - 162 1718 l 1,4,-1 - -18 1538 l 1,5,-1 - 162 1358 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni05AC -Encoding: 1452 1452 1252 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_6 - 15 - 0 - 1 - 0 - 3 - 2 -PUSHW_1 - 318 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 200 1350 mark 0 -AnchorPoint: "Anchor-3" 0 1350 mark 0 -LayerCount: 2 -Fore -SplineSet -143 1671 m 1,0,-1 - 143 1358 l 1,1,-1 - -184 1358 l 1,2,-1 - -184 1464 l 1,3,-1 - 35 1464 l 1,4,-1 - 35 1671 l 1,5,-1 - 143 1671 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni05AD -Encoding: 1453 1453 1253 -Width: 0 -GlyphClass: 4 -Flags: W -AnchorPoint: "Anchor-9" 0 10 mark 0 -LayerCount: 2 -Fore -Refer: 1230 1430 N 1 0 0 1 178 0 2 -Position2: "Single Positioning lookup 23 subtable" dx=320 dy=0 dh=0 dv=0 -EndChar - -StartChar: uni05AE -Encoding: 1454 1454 1254 -Width: 0 -GlyphClass: 4 -Flags: W -AnchorPoint: "Anchor-7" 0 1350 mark 0 -LayerCount: 2 -Fore -Refer: 1232 1432 N 1 0 0 1 -299 0 2 -EndChar - -StartChar: uni05AF -Encoding: 1455 1455 1255 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_7 - 21 - 47 - 3 - 1 - 3 - 15 - 9 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-12" 240 1390 mark 0 -AnchorPoint: "Anchor-3" 0 1390 mark 0 -LayerCount: 2 -Fore -SplineSet --215 1618 m 256,0,1 - -215 1707 -215 1707 -152 1770 c 128,-1,2 - -89 1833 -89 1833 0 1833 c 256,3,4 - 89 1833 89 1833 152 1770 c 128,-1,5 - 215 1707 215 1707 215 1618 c 256,6,7 - 215 1529 215 1529 153 1466 c 128,-1,8 - 91 1403 91 1403 0 1403 c 256,9,10 - -91 1403 -91 1403 -153 1466 c 128,-1,11 - -215 1529 -215 1529 -215 1618 c 256,0,1 --96 1618 m 256,12,13 - -96 1578 -96 1578 -68 1550 c 128,-1,14 - -40 1522 -40 1522 0 1522 c 256,15,16 - 40 1522 40 1522 68 1550 c 128,-1,17 - 96 1578 96 1578 96 1618 c 256,18,19 - 96 1658 96 1658 67 1686 c 128,-1,20 - 38 1714 38 1714 0 1714 c 256,21,22 - -38 1714 -38 1714 -67 1686 c 128,-1,23 - -96 1658 -96 1658 -96 1618 c 256,12,13 -EndSplineSet -EndChar - -StartChar: sheva -Encoding: 1456 1456 1256 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 12 - 15 - 0 - 21 - 1 - 64 - 21 - 160 - 21 - 2 - 21 - 9 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -DELTAP2 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 160 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet --80 -98 m 0,0,1 - -80 -65 -80 -65 -56.5 -41.5 c 128,-1,2 - -33 -18 -33 -18 0 -18 c 0,3,4 - 34 -18 34 -18 57 -42 c 128,-1,5 - 80 -66 80 -66 80 -98 c 256,6,7 - 80 -130 80 -130 56 -153 c 128,-1,8 - 32 -176 32 -176 0 -176 c 256,9,10 - -32 -176 -32 -176 -56 -153 c 128,-1,11 - -80 -130 -80 -130 -80 -98 c 0,0,1 --80 -305 m 256,12,13 - -80 -271 -80 -271 -56 -248 c 128,-1,14 - -32 -225 -32 -225 0 -225 c 256,15,16 - 32 -225 32 -225 56 -249 c 128,-1,17 - 80 -273 80 -273 80 -305 c 256,18,19 - 80 -337 80 -337 56.5 -361 c 128,-1,20 - 33 -385 33 -385 0 -385 c 0,21,22 - -34 -385 -34 -385 -57 -362 c 128,-1,23 - -80 -339 -80 -339 -80 -305 c 256,12,13 -EndSplineSet -EndChar - -StartChar: hatafsegol -Encoding: 1457 1457 1257 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 20 - 51 - 27 - 27 - 57 - 0 - 33 - 1 - 64 - 33 - 160 - 33 - 2 - 33 - 45 - 21 - 9 - 9 - 39 - 15 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -DELTAP2 -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 320 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet --301 -96 m 0,0,1 - -301 -64 -301 -64 -278 -41 c 128,-1,2 - -255 -18 -255 -18 -223 -18 c 0,3,4 - -189 -18 -189 -18 -166 -41 c 128,-1,5 - -143 -64 -143 -64 -143 -96 c 0,6,7 - -143 -130 -143 -130 -166 -153 c 128,-1,8 - -189 -176 -189 -176 -223 -176 c 0,9,10 - -255 -176 -255 -176 -278 -153 c 128,-1,11 - -301 -130 -301 -130 -301 -96 c 0,0,1 --72 -96 m 0,12,13 - -72 -64 -72 -64 -49 -41 c 128,-1,14 - -26 -18 -26 -18 6 -18 c 0,15,16 - 40 -18 40 -18 63 -41 c 128,-1,17 - 86 -64 86 -64 86 -96 c 0,18,19 - 86 -130 86 -130 63 -153 c 128,-1,20 - 40 -176 40 -176 6 -176 c 0,21,22 - -26 -176 -26 -176 -49 -153 c 128,-1,23 - -72 -130 -72 -130 -72 -96 c 0,12,13 --186 -305 m 0,24,25 - -186 -271 -186 -271 -163.5 -248 c 128,-1,26 - -141 -225 -141 -225 -109 -225 c 0,27,28 - -74 -225 -74 -225 -51.5 -248 c 128,-1,29 - -29 -271 -29 -271 -29 -305 c 0,30,31 - -29 -337 -29 -337 -51.5 -361 c 128,-1,32 - -74 -385 -74 -385 -109 -385 c 0,33,34 - -141 -385 -141 -385 -163.5 -361 c 128,-1,35 - -186 -337 -186 -337 -186 -305 c 0,24,25 -143 -98 m 0,36,37 - 143 -64 143 -64 166 -41 c 128,-1,38 - 189 -18 189 -18 221 -18 c 0,39,40 - 255 -18 255 -18 278 -41 c 128,-1,41 - 301 -64 301 -64 301 -98 c 0,42,43 - 301 -130 301 -130 278 -153 c 128,-1,44 - 255 -176 255 -176 221 -176 c 0,45,46 - 189 -176 189 -176 166 -153 c 128,-1,47 - 143 -130 143 -130 143 -98 c 0,36,37 -141 -305 m 256,48,49 - 141 -271 141 -271 165 -248 c 128,-1,50 - 189 -225 189 -225 221 -225 c 256,51,52 - 253 -225 253 -225 277 -249 c 128,-1,53 - 301 -273 301 -273 301 -305 c 256,54,55 - 301 -337 301 -337 277.5 -361 c 128,-1,56 - 254 -385 254 -385 221 -385 c 0,57,58 - 187 -385 187 -385 164 -362 c 128,-1,59 - 141 -339 141 -339 141 -305 c 256,48,49 -EndSplineSet -EndChar - -StartChar: hatafpatah -Encoding: 1458 1458 1258 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 15 - 0 - 1 - 1 - 19 - 0 - 25 - 1 - 64 - 25 - 160 - 25 - 2 - 25 - 13 - 7 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -DELTAP2 -SHP[rp2] -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 300 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet --270 -162 m 1,0,-1 - -270 -53 l 1,1,-1 - 57 -53 l 1,2,-1 - 57 -162 l 1,3,-1 - -270 -162 l 1,0,-1 -113 -98 m 0,4,5 - 113 -64 113 -64 135.5 -41 c 128,-1,6 - 158 -18 158 -18 193 -18 c 0,7,8 - 225 -18 225 -18 248.5 -41 c 128,-1,9 - 272 -64 272 -64 272 -98 c 0,10,11 - 272 -130 272 -130 248.5 -153 c 128,-1,12 - 225 -176 225 -176 193 -176 c 0,13,14 - 158 -176 158 -176 135.5 -153 c 128,-1,15 - 113 -130 113 -130 113 -98 c 0,4,5 -113 -305 m 0,16,17 - 113 -273 113 -273 135.5 -249 c 128,-1,18 - 158 -225 158 -225 190 -225 c 0,19,20 - 225 -225 225 -225 247.5 -249 c 128,-1,21 - 270 -273 270 -273 270 -305 c 0,22,23 - 270 -339 270 -339 247.5 -362 c 128,-1,24 - 225 -385 225 -385 190 -385 c 0,25,26 - 158 -385 158 -385 135.5 -362 c 128,-1,27 - 113 -339 113 -339 113 -305 c 0,16,17 -EndSplineSet -EndChar - -StartChar: hatafqamats -Encoding: 1459 1459 1259 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 2 - 2 - 3 - 3 - 23 - 0 - 29 - 1 - 64 - 29 - 160 - 29 - 2 - 29 - 17 - 11 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -DELTAP2 -SHP[rp2] -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 300 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet --160 -276 m 1,0,-1 - -160 -162 l 1,1,-1 - -270 -162 l 1,2,-1 - -270 -53 l 1,3,-1 - 57 -53 l 1,4,-1 - 57 -162 l 1,5,-1 - -49 -162 l 1,6,-1 - -49 -276 l 1,7,-1 - -160 -276 l 1,0,-1 -113 -98 m 0,8,9 - 113 -64 113 -64 135.5 -41 c 128,-1,10 - 158 -18 158 -18 193 -18 c 0,11,12 - 225 -18 225 -18 248.5 -41 c 128,-1,13 - 272 -64 272 -64 272 -98 c 0,14,15 - 272 -130 272 -130 248.5 -153 c 128,-1,16 - 225 -176 225 -176 193 -176 c 0,17,18 - 158 -176 158 -176 135.5 -153 c 128,-1,19 - 113 -130 113 -130 113 -98 c 0,8,9 -113 -305 m 0,20,21 - 113 -273 113 -273 135.5 -249 c 128,-1,22 - 158 -225 158 -225 190 -225 c 0,23,24 - 225 -225 225 -225 247.5 -249 c 128,-1,25 - 270 -273 270 -273 270 -305 c 0,26,27 - 270 -339 270 -339 247.5 -362 c 128,-1,28 - 225 -385 225 -385 190 -385 c 0,29,30 - 158 -385 158 -385 135.5 -362 c 128,-1,31 - 113 -339 113 -339 113 -305 c 0,20,21 -EndSplineSet -EndChar - -StartChar: hiriq -Encoding: 1460 1460 1260 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 9 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 140 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet --80 -270 m 0,0,1 - -80 -237 -80 -237 -56.5 -213.5 c 128,-1,2 - -33 -190 -33 -190 0 -190 c 0,3,4 - 34 -190 34 -190 57 -214 c 128,-1,5 - 80 -238 80 -238 80 -270 c 256,6,7 - 80 -302 80 -302 56 -325 c 128,-1,8 - 32 -348 32 -348 0 -348 c 256,9,10 - -32 -348 -32 -348 -56 -325 c 128,-1,11 - -80 -302 -80 -302 -80 -270 c 0,0,1 -EndSplineSet -EndChar - -StartChar: tsere -Encoding: 1461 1461 1261 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_5 - 21 - 9 - 9 - 15 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 240 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet --195 -268 m 256,0,1 - -195 -234 -195 -234 -171 -211 c 128,-1,2 - -147 -188 -147 -188 -115 -188 c 256,3,4 - -83 -188 -83 -188 -59 -212 c 128,-1,5 - -35 -236 -35 -236 -35 -268 c 256,6,7 - -35 -300 -35 -300 -58.5 -324 c 128,-1,8 - -82 -348 -82 -348 -115 -348 c 0,9,10 - -149 -348 -149 -348 -172 -325 c 128,-1,11 - -195 -302 -195 -302 -195 -268 c 256,0,1 -37 -268 m 0,12,13 - 37 -236 37 -236 60 -212 c 128,-1,14 - 83 -188 83 -188 115 -188 c 0,15,16 - 148 -188 148 -188 171.5 -211.5 c 128,-1,17 - 195 -235 195 -235 195 -268 c 0,18,19 - 195 -302 195 -302 172 -325 c 128,-1,20 - 149 -348 149 -348 115 -348 c 0,21,22 - 83 -348 83 -348 60 -325 c 128,-1,23 - 37 -302 37 -302 37 -268 c 0,12,13 -EndSplineSet -EndChar - -StartChar: segol -Encoding: 1462 1462 1262 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 15 - 27 - 0 - 33 - 1 - 64 - 33 - 160 - 33 - 2 - 33 - 21 - 9 - 9 - 15 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -DELTAP2 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 240 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet --195 -98 m 0,0,1 - -195 -64 -195 -64 -172 -41 c 128,-1,2 - -149 -18 -149 -18 -115 -18 c 256,3,4 - -81 -18 -81 -18 -58 -42 c 128,-1,5 - -35 -66 -35 -66 -35 -98 c 256,6,7 - -35 -130 -35 -130 -59 -154 c 128,-1,8 - -83 -178 -83 -178 -115 -178 c 256,9,10 - -147 -178 -147 -178 -171 -154.5 c 128,-1,11 - -195 -131 -195 -131 -195 -98 c 0,0,1 -37 -98 m 0,12,13 - 37 -64 37 -64 60 -41 c 128,-1,14 - 83 -18 83 -18 115 -18 c 0,15,16 - 149 -18 149 -18 172 -41 c 128,-1,17 - 195 -64 195 -64 195 -98 c 256,18,19 - 195 -132 195 -132 171 -155 c 128,-1,20 - 147 -178 147 -178 115 -178 c 256,21,22 - 83 -178 83 -178 60 -154 c 128,-1,23 - 37 -130 37 -130 37 -98 c 0,12,13 --80 -305 m 256,24,25 - -80 -273 -80 -273 -56 -250 c 128,-1,26 - -32 -227 -32 -227 0 -227 c 256,27,28 - 32 -227 32 -227 56 -250 c 128,-1,29 - 80 -273 80 -273 80 -305 c 256,30,31 - 80 -337 80 -337 56.5 -361 c 128,-1,32 - 33 -385 33 -385 0 -385 c 0,33,34 - -34 -385 -34 -385 -57 -361 c 128,-1,35 - -80 -337 -80 -337 -80 -305 c 256,24,25 -EndSplineSet -EndChar - -StartChar: patah -Encoding: 1463 1463 1263 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_5 - 3 - 7 - 1 - 1 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 200 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet --164 -125 m 1,0,-1 - 164 -125 l 1,1,-1 - 164 -231 l 1,2,-1 - -164 -231 l 1,3,-1 - -164 -125 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: qamats -Encoding: 1464 1464 1264 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_1 - 2 -SVTCA[y-axis] -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 200 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet --53 -348 m 1,0,-1 - -53 -231 l 1,1,-1 - -164 -231 l 1,2,-1 - -164 -125 l 1,3,-1 - 164 -125 l 1,4,-1 - 164 -231 l 1,5,-1 - 57 -231 l 1,6,-1 - 57 -348 l 1,7,-1 - -53 -348 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: holam -Encoding: 1465 1465 1265 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 3 - 9 -PUSHW_1 - 319 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-0" 0 1430 mark 0 -LayerCount: 2 -Fore -SplineSet --80 1526 m 256,0,1 - -80 1558 -80 1558 -56 1582 c 128,-1,2 - -32 1606 -32 1606 0 1606 c 256,3,4 - 32 1606 32 1606 56 1582 c 128,-1,5 - 80 1558 80 1558 80 1526 c 256,6,7 - 80 1494 80 1494 56.5 1470 c 128,-1,8 - 33 1446 33 1446 0 1446 c 0,9,10 - -34 1446 -34 1446 -57 1470 c 128,-1,11 - -80 1494 -80 1494 -80 1526 c 256,0,1 -EndSplineSet -Position2: "Single Positioning lookup 18 subtable" dx=25 dy=0 dh=10 dv=0 -EndChar - -StartChar: uni05BA -Encoding: 1466 1466 1266 -Width: 0 -GlyphClass: 4 -Flags: W -LayerCount: 2 -Fore -Refer: 1265 1465 N 1 0 0 1 0 0 2 -EndChar - -StartChar: qubuts -Encoding: 1467 1467 1267 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 13 - 21 - 15 - 15 - 27 - 27 - 64 - 33 - 160 - 33 - 2 - 33 - 9 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 260 20 mark 0 -AnchorPoint: "Anchor-11" -240 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet --238 -96 m 0,0,1 - -238 -62 -238 -62 -215 -39 c 128,-1,2 - -192 -16 -192 -16 -160 -16 c 0,3,4 - -126 -16 -126 -16 -103 -39 c 128,-1,5 - -80 -62 -80 -62 -80 -96 c 0,6,7 - -80 -128 -80 -128 -103 -151 c 128,-1,8 - -126 -174 -126 -174 -160 -174 c 0,9,10 - -192 -174 -192 -174 -215 -151 c 128,-1,11 - -238 -128 -238 -128 -238 -96 c 0,0,1 --80 -201 m 256,12,13 - -80 -169 -80 -169 -56 -145 c 128,-1,14 - -32 -121 -32 -121 0 -121 c 256,15,16 - 32 -121 32 -121 56 -145 c 128,-1,17 - 80 -169 80 -169 80 -201 c 256,18,19 - 80 -233 80 -233 56.5 -257 c 128,-1,20 - 33 -281 33 -281 0 -281 c 0,21,22 - -34 -281 -34 -281 -57 -257 c 128,-1,23 - -80 -233 -80 -233 -80 -201 c 256,12,13 -80 -305 m 256,24,25 - 80 -271 80 -271 104 -248 c 128,-1,26 - 128 -225 128 -225 160 -225 c 256,27,28 - 192 -225 192 -225 216 -249 c 128,-1,29 - 240 -273 240 -273 240 -305 c 256,30,31 - 240 -337 240 -337 216.5 -361 c 128,-1,32 - 193 -385 193 -385 160 -385 c 0,33,34 - 126 -385 126 -385 103 -362 c 128,-1,35 - 80 -339 80 -339 80 -305 c 256,24,25 -EndSplineSet -EndChar - -StartChar: dagesh -Encoding: 1468 1468 1268 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 3 - 9 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-2" 0 700 mark 0 -LayerCount: 2 -Fore -SplineSet --80 702 m 0,0,1 - -80 737 -80 737 -56 759.5 c 128,-1,2 - -32 782 -32 782 0 782 c 256,3,4 - 32 782 32 782 56 759.5 c 128,-1,5 - 80 737 80 737 80 702 c 0,6,7 - 80 670 80 670 56 647.5 c 128,-1,8 - 32 625 32 625 0 625 c 256,9,10 - -32 625 -32 625 -56 647.5 c 128,-1,11 - -80 670 -80 670 -80 702 c 0,0,1 -EndSplineSet -EndChar - -StartChar: meteg -Encoding: 1469 1469 1269 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 0 - 2 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 120 0 mark 0 -AnchorPoint: "Anchor-11" -240 0 mark 0 -AnchorPoint: "Anchor-5" 0 0 mark 0 -LayerCount: 2 -Fore -SplineSet --55 -348 m 1,0,-1 - -55 -125 l 1,1,-1 - 55 -125 l 1,2,-1 - 55 -348 l 1,3,-1 - -55 -348 l 1,0,-1 -EndSplineSet -Position2: "Single Positioning lookup 24 subtable" dx=-400 dy=0 dh=0 dv=0 -EndChar - -StartChar: maqaf -Encoding: 1470 1470 1270 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 5 - 0 - 4 - 0 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -133 1356 m 1,0,-1 - 705 1356 l 1,1,-1 - 705 1145 l 1,2,-1 - 133 1145 l 1,3,-1 - 133 1356 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: rafe -Encoding: 1471 1471 1271 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_5 - 0 - 8 - 3 - 1 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-10" 0 1430 mark 0 -AnchorPoint: "Anchor-3" 0 1430 mark 0 -LayerCount: 2 -Fore -SplineSet --164 1579 m 1,0,-1 - 164 1579 l 1,1,-1 - 164 1473 l 1,2,-1 - -164 1473 l 1,3,-1 - -164 1579 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: paseq -Encoding: 1472 1472 1272 -Width: 1153 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 3 - 5 - 4 - 2 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -500 -416 m 1,0,-1 - 500 2007 l 1,1,-1 - 653 2007 l 1,2,-1 - 653 -416 l 1,3,-1 - 500 -416 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: shindot -Encoding: 1473 1473 1273 -Width: 0 -GlyphClass: 4 -Flags: W -AnchorPoint: "Anchor-1" 0 1430 mark 0 -LayerCount: 2 -Fore -Refer: 1265 1465 N 1 0 0 1 0 0 2 -EndChar - -StartChar: sindot -Encoding: 1474 1474 1274 -Width: 0 -GlyphClass: 4 -Flags: W -LayerCount: 2 -Fore -Refer: 1265 1465 N 1 0 0 1 0 0 2 -EndChar - -StartChar: sofpasuq -Encoding: 1475 1475 1275 -Width: 569 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 10 - 0 - 4 - 4 - 3 - 7 - 7 - 9 - 8 - 1 - 0 -PUSHW_1 - 323 -PUSHB_5 - 89 - 1 - 4 - 4 - 5 -PUSHW_4 - 323 - 89 - 4 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -186 874 m 1,0,-1 - 186 1081 l 1,1,-1 - 383 1081 l 1,2,-1 - 383 874 l 1,3,-1 - 186 874 l 1,0,-1 -186 0 m 1,4,-1 - 186 207 l 1,5,-1 - 383 207 l 1,6,-1 - 383 0 l 1,7,-1 - 186 0 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: upper_dot -Encoding: 1476 1476 1276 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 3 - 9 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-4" 0 1550 mark 0 -LayerCount: 2 -Fore -SplineSet --80 1638 m 0,0,1 - -80 1670 -80 1670 -56 1694 c 128,-1,2 - -32 1718 -32 1718 0 1718 c 256,3,4 - 32 1718 32 1718 56 1694 c 128,-1,5 - 80 1670 80 1670 80 1638 c 0,6,7 - 80 1604 80 1604 56 1581.5 c 128,-1,8 - 32 1559 32 1559 0 1559 c 256,9,10 - -32 1559 -32 1559 -56 1581.5 c 128,-1,11 - -80 1604 -80 1604 -80 1638 c 0,0,1 -EndSplineSet -EndChar - -StartChar: lowerdot -Encoding: 1477 1477 1277 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_2 - 9 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-6" 0 50 mark 0 -LayerCount: 2 -Fore -SplineSet --80 -328 m 0,0,1 - -80 -295 -80 -295 -56.5 -271.5 c 128,-1,2 - -33 -248 -33 -248 0 -248 c 0,3,4 - 34 -248 34 -248 57 -272 c 128,-1,5 - 80 -296 80 -296 80 -328 c 256,6,7 - 80 -360 80 -360 56 -383 c 128,-1,8 - 32 -406 32 -406 0 -406 c 256,9,10 - -32 -406 -32 -406 -56 -383 c 128,-1,11 - -80 -360 -80 -360 -80 -328 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni05C6 -Encoding: 1478 1478 1278 -Width: 776 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 6 - 14 - 15 - 14 - 17 - 12 - 15 - 15 - 16 - 4 - 7 -NPUSHW - 10 - 320 - 89 - 4 - 313 - 15 - 12 - 320 - 89 - 15 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -154 752 m 2,0,1 - 154 936 154 936 187.5 1037 c 128,-1,2 - 221 1138 221 1138 295 1182.5 c 128,-1,3 - 369 1227 369 1227 528 1227 c 2,4,-1 - 657 1227 l 1,5,-1 - 657 1057 l 1,6,-1 - 522 1057 l 2,7,8 - 449 1057 449 1057 410 1028 c 128,-1,9 - 371 999 371 999 354.5 933.5 c 128,-1,10 - 338 868 338 868 338 700 c 2,11,-1 - 338 170 l 1,12,-1 - 715 170 l 1,13,-1 - 715 0 l 1,14,-1 - 154 0 l 1,15,-1 - 154 752 l 2,0,1 -EndSplineSet -EndChar - -StartChar: qamatsqatan -Encoding: 1479 1479 1279 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_1 - 7 -SVTCA[y-axis] -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 540 0 mark 0 -AnchorPoint: "Anchor-11" 0 0 mark 0 -AnchorPoint: "Anchor-5" 253 0 mark 0 -LayerCount: 2 -Fore -SplineSet -485 -205 m 1,0,-1 - 305 -205 l 1,1,-1 - 324 -365 l 1,2,-1 - 324 -385 l 1,3,-1 - 215 -385 l 1,4,-1 - 215 -365 l 1,5,-1 - 231 -205 l 1,6,-1 - 53 -205 l 1,7,-1 - 53 -98 l 1,8,-1 - 485 -98 l 1,9,-1 - 485 -205 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: alef -Encoding: 1488 1488 1280 -Width: 1286 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 14 - 25 - 13 - 0 - 11 - 2 - 12 - 1 - 5 - 6 - 13 - 6 - 12 - 1 - 19 - 0 - 20 - 12 - 27 - 20 - 26 - 11 - 2 - 14 - 25 - 2 - 25 - 13 - 20 -PUSHW_4 - 314 - 5 - 0 - 313 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1120 1430 basechar 0 -AnchorPoint: "Anchor-9" 1060 0 basechar 0 -AnchorPoint: "Anchor-8" 1080 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 671 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -125 1227 m 1,0,-1 - 352 1227 l 1,1,-1 - 803 606 l 1,2,3 - 953 746 953 746 981 1004 c 2,4,-1 - 1004 1227 l 1,5,-1 - 1194 1227 l 1,6,-1 - 1171 1008 l 2,7,8 - 1161 901 1161 901 1131 815 c 128,-1,9 - 1101 729 1101 729 1051.5 654 c 128,-1,10 - 1002 579 1002 579 899 477 c 1,11,-1 - 1260 0 l 1,12,-1 - 1026 0 l 1,13,-1 - 498 717 l 1,14,15 - 455 696 455 696 428.5 664.5 c 128,-1,16 - 402 633 402 633 383.5 582 c 128,-1,17 - 365 531 365 531 340 403 c 2,18,-1 - 260 0 l 1,19,-1 - 66 0 l 1,20,-1 - 150 399 l 2,21,22 - 186 570 186 570 216 641 c 128,-1,23 - 246 712 246 712 291.5 756 c 128,-1,24 - 337 800 337 800 414 831 c 1,25,-1 - 125 1227 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: bet -Encoding: 1489 1489 1281 -Width: 1225 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 8 - 11 - 0 - 9 - 6 - 6 - 17 - 9 - 16 - 1 - 0 -PUSHW_4 - 320 - 89 - 1 - 313 -PUSHB_4 - 6 - 10 - 9 - 10 -PUSHW_4 - 320 - 89 - 9 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 560 0 basechar 0 -AnchorPoint: "Anchor-12" 500 1350 basechar 0 -AnchorPoint: "Anchor-11" 550 0 basechar 0 -AnchorPoint: "Anchor-10" 940 1430 basechar 0 -AnchorPoint: "Anchor-9" 840 0 basechar 0 -AnchorPoint: "Anchor-8" 900 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 560 0 basechar 0 -AnchorPoint: "Anchor-5" 560 0 basechar 0 -AnchorPoint: "Anchor-4" 500 1700 basechar 0 -AnchorPoint: "Anchor-3" 500 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -129 1057 m 1,0,-1 - 129 1227 l 1,1,-1 - 506 1227 l 2,2,3 - 782 1227 782 1227 901 1109 c 128,-1,4 - 1020 991 1020 991 1020 719 c 2,5,-1 - 1020 170 l 1,6,-1 - 1153 170 l 1,7,-1 - 1153 0 l 1,8,-1 - 82 0 l 1,9,-1 - 82 170 l 1,10,-1 - 836 170 l 1,11,-1 - 836 721 l 2,12,13 - 836 905 836 905 761.5 981 c 128,-1,14 - 687 1057 687 1057 504 1057 c 2,15,-1 - 129 1057 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: gimel -Encoding: 1490 1490 1282 -Width: 866 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 8 - 20 - 7 - 20 - 7 - 7 - 6 - 6 - 28 - 25 - 13 - 14 - 8 - 20 - 20 - 26 - 7 - 14 -PUSHW_7 - 314 - 26 - 25 - 320 - 89 - 26 - 313 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SDPVTL[orthog] -MDRP[grey] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 450 0 basechar 0 -AnchorPoint: "Anchor-12" 360 1350 basechar 0 -AnchorPoint: "Anchor-11" 450 0 basechar 0 -AnchorPoint: "Anchor-10" 640 1430 basechar 0 -AnchorPoint: "Anchor-9" 580 0 basechar 0 -AnchorPoint: "Anchor-8" 500 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 450 0 basechar 0 -AnchorPoint: "Anchor-5" 450 0 basechar 0 -AnchorPoint: "Anchor-4" 360 1700 basechar 0 -AnchorPoint: "Anchor-3" 360 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -260 1227 m 2,0,1 - 357 1227 357 1227 409.5 1211.5 c 128,-1,2 - 462 1196 462 1196 496 1161.5 c 128,-1,3 - 530 1127 530 1127 558.5 1057 c 128,-1,4 - 587 987 587 987 639 762 c 2,5,-1 - 813 0 l 1,6,-1 - 631 0 l 1,7,-1 - 518 504 l 1,8,9 - 434 483 434 483 395.5 453 c 128,-1,10 - 357 423 357 423 332 364 c 128,-1,11 - 307 305 307 305 285 180 c 2,12,-1 - 252 0 l 1,13,-1 - 63 0 l 1,14,-1 - 98 182 l 2,15,16 - 122 314 122 314 145 381 c 128,-1,17 - 168 448 168 448 204 494 c 128,-1,18 - 240 540 240 540 294 570.5 c 128,-1,19 - 348 601 348 601 487 639 c 1,20,21 - 437 851 437 851 411 925 c 128,-1,22 - 385 999 385 999 354 1028 c 128,-1,23 - 323 1057 323 1057 266 1057 c 2,24,-1 - 131 1057 l 1,25,-1 - 131 1227 l 1,26,-1 - 260 1227 l 2,0,1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: dalet -Encoding: 1491 1491 1283 -Width: 1135 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 6 - 7 - 7 - 9 - 3 - 8 - 1 -PUSHW_1 - 314 -PUSHB_4 - 7 - 3 - 4 - 3 -PUSHW_4 - 320 - 89 - 4 - 313 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 730 0 basechar 0 -AnchorPoint: "Anchor-12" 540 1350 basechar 0 -AnchorPoint: "Anchor-11" 560 0 basechar 0 -AnchorPoint: "Anchor-10" 960 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 900 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 830 0 basechar 0 -AnchorPoint: "Anchor-5" 830 0 basechar 0 -AnchorPoint: "Anchor-4" 540 1700 basechar 0 -AnchorPoint: "Anchor-3" 540 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -926 0 m 1,0,-1 - 741 0 l 1,1,-1 - 741 1057 l 1,2,-1 - 41 1057 l 1,3,-1 - 41 1227 l 1,4,-1 - 1079 1227 l 1,5,-1 - 1079 1057 l 1,6,-1 - 926 1057 l 1,7,-1 - 926 0 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: he -Encoding: 1492 1492 1284 -Width: 1298 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 5 - 4 - 4 - 17 - 10 - 0 - 1 - 16 - 2 - 2 - 1 - 11 - 11 - 10 -PUSHW_7 - 320 - 89 - 11 - 313 - 5 - 1 - 314 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 600 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1000 1430 basechar 0 -AnchorPoint: "Anchor-9" 960 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -356 0 m 1,0,-1 - 172 0 l 1,1,-1 - 172 797 l 1,2,-1 - 356 797 l 1,3,-1 - 356 0 l 1,0,-1 -1135 0 m 1,4,-1 - 950 0 l 1,5,-1 - 950 721 l 2,6,7 - 950 905 950 905 875.5 981 c 128,-1,8 - 801 1057 801 1057 618 1057 c 2,9,-1 - 152 1057 l 1,10,-1 - 152 1227 l 1,11,-1 - 621 1227 l 2,12,13 - 897 1227 897 1227 1016 1109 c 128,-1,14 - 1135 991 1135 991 1135 719 c 2,15,-1 - 1135 0 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: vav -Encoding: 1493 1493 1285 -Width: 532 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 4 - 5 - 3 -PUSHW_3 - 314 - 0 - 313 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 360 0 basechar 0 -AnchorPoint: "Anchor-12" 270 1350 basechar 0 -AnchorPoint: "Anchor-11" 270 0 basechar 0 -AnchorPoint: "Anchor-10" 500 1430 basechar 0 -AnchorPoint: "Anchor-9" 180 0 basechar 0 -AnchorPoint: "Anchor-8" 360 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 270 0 basechar 0 -AnchorPoint: "Anchor-5" 270 0 basechar 0 -AnchorPoint: "Anchor-4" 270 1700 basechar 0 -AnchorPoint: "Anchor-3" 270 1350 basechar 0 -AnchorPoint: "Anchor-0" 260 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -174 1227 m 1,0,-1 - 358 1227 l 1,1,-1 - 358 0 l 1,2,-1 - 174 0 l 1,3,-1 - 174 1227 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: zayin -Encoding: 1494 1494 1286 -Width: 662 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 8 - 7 - 7 - 15 - 12 - 1 - 16 - 13 - 15 - 2 - 12 - 1 - 13 - 13 - 14 - 0 - 1 - 1 - 8 - 14 -PUSHW_3 - 312 - 8 - 314 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 300 0 basechar 0 -AnchorPoint: "Anchor-12" 420 1350 basechar 0 -AnchorPoint: "Anchor-11" 300 0 basechar 0 -AnchorPoint: "Anchor-10" 540 1430 basechar 0 -AnchorPoint: "Anchor-9" 240 0 basechar 0 -AnchorPoint: "Anchor-8" 460 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 300 0 basechar 0 -AnchorPoint: "Anchor-5" 300 0 basechar 0 -AnchorPoint: "Anchor-4" 420 1700 basechar 0 -AnchorPoint: "Anchor-3" 420 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -633 1049 m 1,0,-1 - 633 858 l 1,1,-1 - 524 895 l 1,2,3 - 465 864 465 864 442 837 c 128,-1,4 - 419 810 419 810 409 772.5 c 128,-1,5 - 399 735 399 735 399 678 c 2,6,-1 - 399 0 l 1,7,-1 - 215 0 l 1,8,-1 - 215 670 l 2,9,10 - 215 776 215 776 255.5 842 c 128,-1,11 - 296 908 296 908 393 940 c 1,12,-1 - 51 1055 l 1,13,-1 - 51 1245 l 1,14,-1 - 633 1049 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" dalet dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: het -Encoding: 1495 1495 1287 -Width: 1348 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 13 - 12 - 12 - 15 - 5 - 6 - 6 - 14 - 13 - 6 -PUSHW_7 - 314 - 7 - 4 - 320 - 89 - 7 - 313 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1080 1430 basechar 0 -AnchorPoint: "Anchor-9" 1020 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 680 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 660 1350 basechar 0 -AnchorPoint: "Anchor-2" 650 700 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -999 721 m 2,0,1 - 999 903 999 903 925.5 980 c 128,-1,2 - 852 1057 852 1057 668 1057 c 2,3,-1 - 358 1057 l 1,4,-1 - 358 0 l 1,5,-1 - 174 0 l 1,6,-1 - 174 1227 l 1,7,-1 - 670 1227 l 2,8,9 - 946 1227 946 1227 1065 1109 c 128,-1,10 - 1184 991 1184 991 1184 719 c 2,11,-1 - 1184 0 l 1,12,-1 - 999 0 l 1,13,-1 - 999 721 l 2,0,1 -EndSplineSet -EndChar - -StartChar: tet -Encoding: 1496 1496 1288 -Width: 1337 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 17 - 12 - 6 - 12 - 24 - 24 - 28 - 6 - 3 - 3 - 27 - 20 - 15 -NPUSHW - 12 - 320 - 89 - 20 - 312 - 4 - 313 - 0 - 9 - 320 - 89 - 0 - 315 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 680 0 basechar 0 -AnchorPoint: "Anchor-10" 1080 1430 basechar 0 -AnchorPoint: "Anchor-9" 1020 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 680 0 basechar 0 -AnchorPoint: "Anchor-5" 680 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 660 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -659 -20 m 0,0,1 - 404 -20 404 -20 284 108.5 c 128,-1,2 - 164 237 164 237 164 504 c 2,3,-1 - 164 1227 l 1,4,-1 - 348 1227 l 1,5,-1 - 348 510 l 2,6,7 - 348 324 348 324 421.5 238 c 128,-1,8 - 495 152 495 152 662 152 c 0,9,10 - 858 152 858 152 946 273 c 128,-1,11 - 1034 394 1034 394 1034 674 c 0,12,13 - 1034 882 1034 882 990 978.5 c 128,-1,14 - 946 1075 946 1075 840 1075 c 0,15,16 - 738 1075 738 1075 643 1010 c 1,17,-1 - 643 1186 l 1,18,19 - 721 1247 721 1247 858 1247 c 256,20,21 - 995 1247 995 1247 1073.5 1188 c 128,-1,22 - 1152 1129 1152 1129 1189.5 1002.5 c 128,-1,23 - 1227 876 1227 876 1227 674 c 0,24,25 - 1227 315 1227 315 1090 147.5 c 128,-1,26 - 953 -20 953 -20 659 -20 c 0,0,1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: yod -Encoding: 1497 1497 1289 -Width: 532 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 3 - 2 - 2 - 5 - 4 - 3 - 0 -PUSHW_1 - 313 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 380 0 basechar 0 -AnchorPoint: "Anchor-12" 270 1350 basechar 0 -AnchorPoint: "Anchor-11" 200 0 basechar 0 -AnchorPoint: "Anchor-10" 500 1430 basechar 0 -AnchorPoint: "Anchor-9" 180 0 basechar 0 -AnchorPoint: "Anchor-8" 360 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 270 0 basechar 0 -AnchorPoint: "Anchor-5" 270 0 basechar 0 -AnchorPoint: "Anchor-4" 270 1700 basechar 0 -AnchorPoint: "Anchor-3" 270 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -174 1227 m 1,0,-1 - 358 1227 l 1,1,-1 - 358 582 l 1,2,-1 - 174 582 l 1,3,-1 - 174 1227 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: finalkaf -Encoding: 1498 1498 1290 -Width: 1094 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 0 - 0 - 13 - 6 - 12 - 7 - 6 -PUSHW_6 - 320 - 89 - 7 - 313 - 1 - 317 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 540 0 basechar 0 -AnchorPoint: "Anchor-12" 400 1350 basechar 0 -AnchorPoint: "Anchor-11" 340 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 1040 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 420 0 basechar 0 -AnchorPoint: "Anchor-5" 420 0 basechar 0 -AnchorPoint: "Anchor-4" 400 1700 basechar 0 -AnchorPoint: "Anchor-3" 400 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -930 -385 m 1,0,-1 - 745 -385 l 1,1,-1 - 745 721 l 2,2,3 - 745 903 745 903 671.5 980 c 128,-1,4 - 598 1057 598 1057 414 1057 c 2,5,-1 - 39 1057 l 1,6,-1 - 39 1227 l 1,7,-1 - 416 1227 l 2,8,9 - 692 1227 692 1227 811 1109 c 128,-1,10 - 930 991 930 991 930 719 c 2,11,-1 - 930 -385 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: kaf -Encoding: 1499 1499 1291 -Width: 1075 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 13 - 3 - 3 - 18 - 8 - 0 - 0 - 19 - 14 - 13 -NPUSHW - 10 - 320 - 89 - 14 - 313 - 3 - 4 - 320 - 89 - 3 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 460 0 basechar 0 -AnchorPoint: "Anchor-12" 400 1350 basechar 0 -AnchorPoint: "Anchor-11" 460 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 460 0 basechar 0 -AnchorPoint: "Anchor-5" 460 0 basechar 0 -AnchorPoint: "Anchor-4" 400 1700 basechar 0 -AnchorPoint: "Anchor-3" 400 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -963 596 m 2,0,1 - 963 0 963 0 399 0 c 2,2,-1 - 80 0 l 1,3,-1 - 80 170 l 1,4,-1 - 403 170 l 2,5,6 - 594 170 594 170 685 276 c 128,-1,7 - 776 382 776 382 776 594 c 2,8,-1 - 776 633 l 2,9,10 - 776 846 776 846 684.5 951.5 c 128,-1,11 - 593 1057 593 1057 403 1057 c 2,12,-1 - 80 1057 l 1,13,-1 - 80 1227 l 1,14,-1 - 399 1227 l 2,15,16 - 963 1227 963 1227 963 631 c 2,17,-1 - 963 596 l 2,0,1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: lamed -Encoding: 1500 1500 1292 -Width: 1085 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 16 - 13 - 10 - 7 - 7 - 17 - 4 - 13 - 13 - 18 - 0 - 16 -NPUSHW - 9 - 316 - 8 - 310 - 10 - 7 - 320 - 89 - 10 - 313 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 420 0 basechar 0 -AnchorPoint: "Anchor-12" 680 1350 basechar 0 -AnchorPoint: "Anchor-11" 420 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 700 0 basechar 0 -AnchorPoint: "Anchor-8" 880 1350 basechar 0 -AnchorPoint: "Anchor-7" 0 1350 basechar 0 -AnchorPoint: "Anchor-6" 420 0 basechar 0 -AnchorPoint: "Anchor-5" 420 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" -130 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -193 162 m 1,0,1 - 384 233 384 233 521 341.5 c 128,-1,2 - 658 450 658 450 729.5 578 c 128,-1,3 - 801 706 801 706 801 838 c 0,4,5 - 801 1057 801 1057 567 1057 c 2,6,-1 - 70 1057 l 1,7,-1 - 70 1665 l 1,8,-1 - 254 1665 l 1,9,-1 - 254 1227 l 1,10,-1 - 586 1227 l 2,11,12 - 987 1227 987 1227 987 870 c 0,13,14 - 987 578 987 578 772 331.5 c 128,-1,15 - 557 85 557 85 193 -45 c 1,16,-1 - 193 162 l 1,0,1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: finalmem -Encoding: 1501 1501 1293 -Width: 1389 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 9 - 0 - 0 - 15 - 8 - 1 - 1 - 14 - 2 - 7 -NPUSHW - 10 - 320 - 89 - 2 - 313 - 1 - 8 - 320 - 89 - 1 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 680 0 basechar 0 -AnchorPoint: "Anchor-10" 1200 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 680 0 basechar 0 -AnchorPoint: "Anchor-5" 680 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 660 1350 basechar 0 -AnchorPoint: "Anchor-2" 680 640 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -1225 0 m 1,0,-1 - 174 0 l 1,1,-1 - 174 1227 l 1,2,-1 - 711 1227 l 2,3,4 - 987 1227 987 1227 1106 1109 c 128,-1,5 - 1225 991 1225 991 1225 719 c 2,6,-1 - 1225 0 l 1,0,-1 -358 1057 m 1,7,-1 - 358 170 l 1,8,-1 - 1040 170 l 1,9,-1 - 1040 721 l 2,10,11 - 1040 903 1040 903 966.5 980 c 128,-1,12 - 893 1057 893 1057 709 1057 c 2,13,-1 - 358 1057 l 1,7,-1 -EndSplineSet -EndChar - -StartChar: mem -Encoding: 1502 1502 1294 -Width: 1407 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 5 - 19 - 22 - 3 - 20 - 4 - 15 - 16 - 21 - 16 - 20 - 20 - 25 - 7 - 4 - 4 - 26 - 19 - 22 - 22 - 5 - 20 -NPUSHW - 15 - 313 - 16 - 314 - 0 - 11 - 320 - 89 - 0 - 312 - 5 - 6 - 320 - 89 - 5 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 780 1350 basechar 0 -AnchorPoint: "Anchor-11" 680 0 basechar 0 -AnchorPoint: "Anchor-10" 1200 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 680 0 basechar 0 -AnchorPoint: "Anchor-5" 680 0 basechar 0 -AnchorPoint: "Anchor-4" 780 1700 basechar 0 -AnchorPoint: "Anchor-3" 780 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -778 1247 m 0,0,1 - 1020 1247 1020 1247 1131.5 1099.5 c 128,-1,2 - 1243 952 1243 952 1243 631 c 2,3,-1 - 1243 0 l 1,4,-1 - 641 0 l 1,5,-1 - 641 170 l 1,6,-1 - 1057 170 l 1,7,-1 - 1057 608 l 2,8,9 - 1057 853 1057 853 994 964 c 128,-1,10 - 931 1075 931 1075 780 1075 c 0,11,12 - 645 1075 645 1075 558 952.5 c 128,-1,13 - 471 830 471 830 397 522 c 2,14,-1 - 272 0 l 1,15,-1 - 74 0 l 1,16,-1 - 211 537 l 2,17,18 - 258 724 258 724 305 842 c 1,19,-1 - 55 1227 l 1,20,-1 - 272 1227 l 1,21,-1 - 397 1024 l 1,22,23 - 475 1142 475 1142 564 1194.5 c 128,-1,24 - 653 1247 653 1247 778 1247 c 0,0,1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: finalnun -Encoding: 1503 1503 1295 -Width: 532 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 3 - 2 - 2 - 5 - 4 - 0 -PUSHW_3 - 313 - 3 - 317 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 140 0 basechar 0 -AnchorPoint: "Anchor-12" 270 1350 basechar 0 -AnchorPoint: "Anchor-11" 440 0 basechar 0 -AnchorPoint: "Anchor-10" 500 1430 basechar 0 -AnchorPoint: "Anchor-9" 460 0 basechar 0 -AnchorPoint: "Anchor-8" 360 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 270 0 basechar 0 -AnchorPoint: "Anchor-5" -260 0 basechar 0 -AnchorPoint: "Anchor-4" 270 1700 basechar 0 -AnchorPoint: "Anchor-3" 270 1350 basechar 0 -AnchorPoint: "Anchor-2" -50 700 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -174 1227 m 1,0,-1 - 358 1227 l 1,1,-1 - 358 -385 l 1,2,-1 - 174 -385 l 1,3,-1 - 174 1227 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: nun -Encoding: 1504 1504 1296 -Width: 797 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 9 - 1 - 0 - 1 - 16 - 3 - 0 - 0 - 17 - 10 - 9 -NPUSHW - 10 - 320 - 89 - 10 - 313 - 1 - 2 - 320 - 89 - 1 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 360 0 basechar 0 -AnchorPoint: "Anchor-12" 320 1350 basechar 0 -AnchorPoint: "Anchor-11" 360 0 basechar 0 -AnchorPoint: "Anchor-10" 650 1430 basechar 0 -AnchorPoint: "Anchor-9" 460 0 basechar 0 -AnchorPoint: "Anchor-8" 500 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 360 0 basechar 0 -AnchorPoint: "Anchor-5" 360 0 basechar 0 -AnchorPoint: "Anchor-4" 320 1700 basechar 0 -AnchorPoint: "Anchor-3" 320 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -633 0 m 1,0,-1 - 72 0 l 1,1,-1 - 72 170 l 1,2,-1 - 449 170 l 1,3,-1 - 449 700 l 2,4,5 - 449 860 449 860 432.5 929 c 128,-1,6 - 416 998 416 998 377 1027.5 c 128,-1,7 - 338 1057 338 1057 264 1057 c 2,8,-1 - 129 1057 l 1,9,-1 - 129 1227 l 1,10,-1 - 258 1227 l 2,11,12 - 418 1227 418 1227 491.5 1182.5 c 128,-1,13 - 565 1138 565 1138 599 1036.5 c 128,-1,14 - 633 935 633 935 633 752 c 2,15,-1 - 633 0 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: samekh -Encoding: 1505 1505 1297 -Width: 1343 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 26 - 10 - 10 - 32 - 17 - 3 - 3 - 20 - 20 - 4 - 16 - 16 - 31 - 13 - 23 -PUSHW_4 - 320 - 89 - 13 - 315 -PUSHB_4 - 17 - 4 - 5 - 4 -PUSHW_4 - 320 - 89 - 5 - 313 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 640 1350 basechar 0 -AnchorPoint: "Anchor-11" 680 0 basechar 0 -AnchorPoint: "Anchor-10" 1200 1430 basechar 0 -AnchorPoint: "Anchor-9" 1000 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 680 0 basechar 0 -AnchorPoint: "Anchor-5" 680 0 basechar 0 -AnchorPoint: "Anchor-4" 640 1700 basechar 0 -AnchorPoint: "Anchor-3" 640 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -133 643 m 2,0,1 - 133 764 133 764 162.5 885 c 128,-1,2 - 192 1006 192 1006 231 1057 c 1,3,-1 - 51 1057 l 1,4,-1 - 51 1227 l 1,5,-1 - 715 1227 l 2,6,7 - 991 1227 991 1227 1111 1109.5 c 128,-1,8 - 1231 992 1231 992 1231 719 c 2,9,-1 - 1231 631 l 2,10,11 - 1231 311 1231 311 1087.5 145.5 c 128,-1,12 - 944 -20 944 -20 668 -20 c 0,13,14 - 394 -20 394 -20 263.5 134.5 c 128,-1,15 - 133 289 133 289 133 608 c 2,16,-1 - 133 643 l 2,0,1 -395 1057 m 1,17,18 - 328 938 328 938 328 651 c 2,19,-1 - 328 598 l 2,20,21 - 328 378 328 378 416.5 264 c 128,-1,22 - 505 150 505 150 672 150 c 0,23,24 - 863 150 863 150 948.5 263 c 128,-1,25 - 1034 376 1034 376 1034 633 c 2,26,-1 - 1034 721 l 2,27,28 - 1034 907 1034 907 963 982 c 128,-1,29 - 892 1057 892 1057 713 1057 c 2,30,-1 - 395 1057 l 1,17,18 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: ayin -Encoding: 1506 1506 1298 -Width: 1192 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 5 - 2 - 2 - 13 - 8 - 9 - 9 - 15 - 3 - 13 - 13 - 14 - 2 - 5 - 3 - 0 - 13 -PUSHW_4 - 316 - 8 - 3 - 313 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -IP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 600 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1080 1430 basechar 0 -AnchorPoint: "Anchor-9" 860 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-2" 660 800 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -41 162 m 1,0,1 - 317 162 317 162 475 213 c 1,2,-1 - 104 1227 l 1,3,-1 - 307 1227 l 1,4,-1 - 635 291 l 1,5,6 - 775 391 775 391 836 600.5 c 128,-1,7 - 897 810 897 810 897 1227 c 1,8,-1 - 1090 1227 l 1,9,10 - 1090 764 1090 764 991.5 503 c 128,-1,11 - 893 242 893 242 670.5 115 c 128,-1,12 - 448 -12 448 -12 41 -33 c 1,13,-1 - 41 162 l 1,0,1 -EndSplineSet -EndChar - -StartChar: finalpe -Encoding: 1507 1507 1299 -Width: 1276 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 13 - 4 - 11 - 14 - 14 - 16 - 5 - 4 - 4 - 17 - 11 - 14 -PUSHW_1 - 320 -PUSHB_5 - 89 - 11 - 11 - 15 - 5 -PUSHW_7 - 317 - 15 - 10 - 320 - 89 - 15 - 313 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 600 0 basechar 0 -AnchorPoint: "Anchor-12" 600 1350 basechar 0 -AnchorPoint: "Anchor-11" 430 0 basechar 0 -AnchorPoint: "Anchor-10" 1100 1430 basechar 0 -AnchorPoint: "Anchor-9" 1200 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 500 0 basechar 0 -AnchorPoint: "Anchor-5" 500 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -598 1227 m 2,0,1 - 874 1227 874 1227 993 1110 c 128,-1,2 - 1112 993 1112 993 1112 719 c 2,3,-1 - 1112 -385 l 1,4,-1 - 928 -385 l 1,5,-1 - 928 721 l 2,6,7 - 928 905 928 905 853.5 981 c 128,-1,8 - 779 1057 779 1057 596 1057 c 2,9,-1 - 319 1057 l 1,10,-1 - 319 711 l 1,11,-1 - 563 711 l 1,12,-1 - 563 541 l 1,13,-1 - 133 541 l 1,14,-1 - 133 1227 l 1,15,-1 - 598 1227 l 2,0,1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: pe -Encoding: 1508 1508 1300 -Width: 1249 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 17 - 7 - 14 - 5 - 8 - 8 - 23 - 22 - 14 - 14 - 24 - 5 - 8 -PUSHW_1 - 320 -PUSHB_7 - 89 - 5 - 5 - 17 - 9 - 9 - 4 -NPUSHW - 10 - 320 - 89 - 9 - 313 - 17 - 18 - 320 - 89 - 17 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 600 0 basechar 0 -AnchorPoint: "Anchor-12" 600 1350 basechar 0 -AnchorPoint: "Anchor-11" 600 0 basechar 0 -AnchorPoint: "Anchor-10" 1100 1430 basechar 0 -AnchorPoint: "Anchor-9" 900 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 600 0 basechar 0 -AnchorPoint: "Anchor-5" 600 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -950 682 m 2,0,1 - 950 871 950 871 867 964 c 128,-1,2 - 784 1057 784 1057 606 1057 c 2,3,-1 - 330 1057 l 1,4,-1 - 330 711 l 1,5,-1 - 573 711 l 1,6,-1 - 573 541 l 1,7,-1 - 143 541 l 1,8,-1 - 143 1227 l 1,9,-1 - 608 1227 l 2,10,11 - 876 1227 876 1227 1006.5 1093.5 c 128,-1,12 - 1137 960 1137 960 1137 678 c 2,13,-1 - 1137 596 l 2,14,15 - 1137 0 1137 0 573 0 c 2,16,-1 - 154 0 l 1,17,-1 - 154 170 l 1,18,-1 - 578 170 l 2,19,20 - 768 170 768 170 859 275.5 c 128,-1,21 - 950 381 950 381 950 594 c 2,22,-1 - 950 682 l 2,0,1 -EndSplineSet -EndChar - -StartChar: finaltsadi -Encoding: 1509 1509 1301 -Width: 1032 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 10 - 1 - 0 - 0 - 6 - 15 - 16 - 16 - 22 - 7 - 6 - 6 - 21 - 20 - 2 - 10 - 10 - 1 - 15 - 6 -PUSHW_3 - 313 - 1 - 317 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 300 0 basechar 0 -AnchorPoint: "Anchor-12" 520 1350 basechar 0 -AnchorPoint: "Anchor-11" 600 0 basechar 0 -AnchorPoint: "Anchor-10" 980 1430 basechar 0 -AnchorPoint: "Anchor-9" 740 0 basechar 0 -AnchorPoint: "Anchor-8" 900 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 420 0 basechar 0 -AnchorPoint: "Anchor-5" 960 0 basechar 0 -AnchorPoint: "Anchor-4" 520 1700 basechar 0 -AnchorPoint: "Anchor-3" 520 1350 basechar 0 -AnchorPoint: "Anchor-2" 120 540 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -512 -385 m 1,0,-1 - 328 -385 l 1,1,-1 - 328 545 l 2,2,3 - 328 634 328 634 306 706.5 c 128,-1,4 - 284 779 284 779 233 872.5 c 128,-1,5 - 182 966 182 966 10 1227 c 1,6,-1 - 227 1227 l 1,7,8 - 399 961 399 961 448.5 848 c 128,-1,9 - 498 735 498 735 508 616 c 1,10,11 - 600 639 600 639 652 679 c 128,-1,12 - 704 719 704 719 730.5 786.5 c 128,-1,13 - 757 854 757 854 768 979 c 2,14,-1 - 788 1227 l 1,15,-1 - 981 1227 l 1,16,-1 - 954 948 l 2,17,18 - 935 732 935 732 835 623.5 c 128,-1,19 - 735 515 735 515 512 471 c 1,20,-1 - 512 -385 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tet dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: tsadi -Encoding: 1510 1510 1302 -Width: 1116 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 10 - 11 - 11 - 16 - 6 - 5 - 3 - 17 - 17 - 19 - 5 - 4 - 4 - 2 - 18 - 16 - 6 - 6 - 1 - 10 - 5 -PUSHW_1 - 313 -PUSHB_4 - 17 - 2 - 1 - 2 -PUSHW_4 - 320 - 89 - 1 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 600 0 basechar 0 -AnchorPoint: "Anchor-12" 520 1350 basechar 0 -AnchorPoint: "Anchor-11" 600 0 basechar 0 -AnchorPoint: "Anchor-10" 980 1430 basechar 0 -AnchorPoint: "Anchor-9" 800 0 basechar 0 -AnchorPoint: "Anchor-8" 900 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 560 0 basechar 0 -AnchorPoint: "Anchor-5" 560 0 basechar 0 -AnchorPoint: "Anchor-4" 520 1700 basechar 0 -AnchorPoint: "Anchor-3" 520 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -1028 0 m 1,0,-1 - 84 0 l 1,1,-1 - 84 170 l 1,2,-1 - 799 170 l 1,3,-1 - 10 1227 l 1,4,-1 - 240 1227 l 1,5,-1 - 621 709 l 1,6,7 - 698 742 698 742 733 806.5 c 128,-1,8 - 768 871 768 871 780 1004 c 2,9,-1 - 803 1227 l 1,10,-1 - 993 1227 l 1,11,-1 - 973 1008 l 2,12,13 - 959 868 959 868 931.5 795.5 c 128,-1,14 - 904 723 904 723 853 675 c 128,-1,15 - 802 627 802 627 709 590 c 1,16,-1 - 1028 158 l 1,17,-1 - 1028 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: qof -Encoding: 1511 1511 1303 -Width: 1208 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 19 - 11 - 8 - 1 - 2 - 2 - 20 - 15 - 8 - 8 - 21 - 3 - 3 - 4 - 12 - 11 -NPUSHW - 9 - 315 - 2 - 317 - 4 - 19 - 320 - 89 - 4 - 313 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 160 0 basechar 0 -AnchorPoint: "Anchor-12" 560 1350 basechar 0 -AnchorPoint: "Anchor-11" 620 0 basechar 0 -AnchorPoint: "Anchor-10" 1080 1430 basechar 0 -AnchorPoint: "Anchor-9" 600 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 620 0 basechar 0 -AnchorPoint: "Anchor-5" 860 0 basechar 0 -AnchorPoint: "Anchor-4" 560 1700 basechar 0 -AnchorPoint: "Anchor-3" 560 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -358 797 m 1,0,-1 - 358 -385 l 1,1,-1 - 174 -385 l 1,2,-1 - 174 797 l 1,3,-1 - 358 797 l 1,0,-1 -123 1227 m 1,4,-1 - 641 1227 l 2,5,6 - 888 1227 888 1227 992 1138.5 c 128,-1,7 - 1096 1050 1096 1050 1096 846 c 0,8,9 - 1096 564 1096 564 928.5 328.5 c 128,-1,10 - 761 93 761 93 475 -27 c 1,11,-1 - 475 184 l 1,12,13 - 684 278 684 278 796.5 445.5 c 128,-1,14 - 909 613 909 613 909 821 c 0,15,16 - 909 955 909 955 850.5 1006 c 128,-1,17 - 792 1057 792 1057 649 1057 c 2,18,-1 - 123 1057 l 1,19,-1 - 123 1227 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: resh -Encoding: 1512 1512 1304 -Width: 1094 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 6 - 12 - 1 - 0 - 0 - 13 - 1 -PUSHW_7 - 314 - 7 - 6 - 320 - 89 - 7 - 313 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 420 1350 basechar 0 -AnchorPoint: "Anchor-11" 700 0 basechar 0 -AnchorPoint: "Anchor-10" 860 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 860 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 500 0 basechar 0 -AnchorPoint: "Anchor-5" 820 0 basechar 0 -AnchorPoint: "Anchor-4" 420 1700 basechar 0 -AnchorPoint: "Anchor-3" 420 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -930 0 m 1,0,-1 - 745 0 l 1,1,-1 - 745 721 l 2,2,3 - 745 903 745 903 671.5 980 c 128,-1,4 - 598 1057 598 1057 414 1057 c 2,5,-1 - 39 1057 l 1,6,-1 - 39 1227 l 1,7,-1 - 416 1227 l 2,8,9 - 692 1227 692 1227 811 1109 c 128,-1,10 - 930 991 930 991 930 719 c 2,11,-1 - 930 0 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: shin -Encoding: 1513 1513 1305 -Width: 1495 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 15 - 16 - 0 - 1 - 7 - 25 - 8 - 24 - 24 - 23 - 22 - 8 - 23 - 8 - 1 - 16 - 4 - 31 - 30 - 25 - 7 -PUSHW_1 - 322 -PUSHB_7 - 89 - 25 - 25 - 22 - 15 - 0 - 23 -PUSHW_7 - 313 - 22 - 8 - 321 - 89 - 22 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 700 0 basechar 0 -AnchorPoint: "Anchor-12" 700 1350 basechar 0 -AnchorPoint: "Anchor-11" 720 0 basechar 0 -AnchorPoint: "Anchor-10" 1360 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1300 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 720 0 basechar 0 -AnchorPoint: "Anchor-5" 720 0 basechar 0 -AnchorPoint: "Anchor-4" 760 1700 basechar 0 -AnchorPoint: "Anchor-3" 760 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -668 1227 m 1,0,-1 - 858 1227 l 1,1,-1 - 827 899 l 2,2,3 - 812 732 812 732 786.5 657.5 c 128,-1,4 - 761 583 761 583 711 542.5 c 128,-1,5 - 661 502 661 502 545 471 c 2,6,-1 - 395 436 l 1,7,-1 - 444 178 l 1,8,-1 - 468 178 l 2,9,10 - 669 178 669 178 790 201.5 c 128,-1,11 - 911 225 911 225 981 275 c 128,-1,12 - 1051 325 1051 325 1089.5 416.5 c 128,-1,13 - 1128 508 1128 508 1151 702 c 2,14,-1 - 1214 1227 l 1,15,-1 - 1407 1227 l 1,16,-1 - 1343 709 l 2,17,18 - 1312 447 1312 447 1255 320.5 c 128,-1,19 - 1198 194 1198 194 1094 124.5 c 128,-1,20 - 990 55 990 55 807.5 23.5 c 128,-1,21 - 625 -8 625 -8 285 -10 c 1,22,-1 - 51 1227 l 1,23,-1 - 242 1227 l 1,24,-1 - 365 596 l 1,25,-1 - 438 610 l 2,26,27 - 546 634 546 634 589 694.5 c 128,-1,28 - 632 755 632 755 643 901 c 2,29,-1 - 668 1227 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: tav -Encoding: 1514 1514 1306 -Width: 1415 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 14 - 25 - 25 - 7 - 1 - 19 - 19 - 26 - 8 - 7 - 7 - 27 - 19 - 20 -PUSHW_1 - 320 -PUSHB_3 - 89 - 8 - 19 -PUSHW_1 - 314 -PUSHB_4 - 13 - 1 - 2 - 1 -PUSHW_4 - 320 - 89 - 2 - 313 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1200 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1100 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 700 1700 basechar 0 -AnchorPoint: "Anchor-3" 700 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -SplineSet -262 1057 m 1,0,-1 - 72 1057 l 1,1,-1 - 72 1227 l 1,2,-1 - 735 1227 l 2,3,4 - 1011 1227 1011 1227 1131 1109.5 c 128,-1,5 - 1251 992 1251 992 1251 719 c 2,6,-1 - 1251 0 l 1,7,-1 - 1067 0 l 1,8,-1 - 1067 721 l 2,9,10 - 1067 905 1067 905 992.5 981 c 128,-1,11 - 918 1057 918 1057 733 1057 c 2,12,-1 - 446 1057 l 1,13,-1 - 446 475 l 2,14,15 - 446 291 446 291 412.5 190 c 128,-1,16 - 379 89 379 89 305 44.5 c 128,-1,17 - 231 0 231 0 72 0 c 2,18,-1 - 61 0 l 1,19,-1 - 61 170 l 1,20,-1 - 78 170 l 2,21,22 - 148 170 148 170 188 195.5 c 128,-1,23 - 228 221 228 221 245 275 c 128,-1,24 - 262 329 262 329 262 438 c 2,25,-1 - 262 1057 l 1,0,-1 -EndSplineSet -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: vavvav -Encoding: 1520 1520 1307 -Width: 1042 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 520 0 basechar 0 -AnchorPoint: "Anchor-12" 520 1350 basechar 0 -AnchorPoint: "Anchor-11" 360 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 700 0 basechar 0 -AnchorPoint: "Anchor-8" 780 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 520 0 basechar 0 -AnchorPoint: "Anchor-5" 520 0 basechar 0 -AnchorPoint: "Anchor-4" 520 1700 basechar 0 -AnchorPoint: "Anchor-3" 520 1350 basechar 0 -AnchorPoint: "Anchor-2" -50 700 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1285 1493 N 1 0 0 1 0 0 2 -Refer: 1285 1493 N 1 0 0 1 510 0 2 -EndChar - -StartChar: vavyod -Encoding: 1521 1521 1308 -Width: 1042 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 520 0 basechar 0 -AnchorPoint: "Anchor-12" 520 1350 basechar 0 -AnchorPoint: "Anchor-11" 360 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 700 0 basechar 0 -AnchorPoint: "Anchor-8" 780 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 520 0 basechar 0 -AnchorPoint: "Anchor-5" 520 0 basechar 0 -AnchorPoint: "Anchor-4" 520 1700 basechar 0 -AnchorPoint: "Anchor-3" 520 1350 basechar 0 -AnchorPoint: "Anchor-2" -50 800 basechar 0 -AnchorPoint: "Anchor-0" 80 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1289 1497 N 1 0 0 1 0 0 2 -Refer: 1285 1493 N 1 0 0 1 510 0 2 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: yodyod -Encoding: 1522 1522 1309 -Width: 1042 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 520 0 basechar 0 -AnchorPoint: "Anchor-12" 520 1350 basechar 0 -AnchorPoint: "Anchor-11" 360 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 700 0 basechar 0 -AnchorPoint: "Anchor-8" 780 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 520 0 basechar 0 -AnchorPoint: "Anchor-5" 520 0 basechar 0 -AnchorPoint: "Anchor-4" 520 1700 basechar 0 -AnchorPoint: "Anchor-3" 520 1350 basechar 0 -AnchorPoint: "Anchor-2" -50 800 basechar 0 -AnchorPoint: "Anchor-0" 80 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1289 1497 N 1 0 0 1 0 0 2 -Refer: 1289 1497 N 1 0 0 1 510 0 2 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: geresh -Encoding: 1523 1523 1310 -Width: 788 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 0 - 1 - 1 - 2 - 3 - 3 - 5 - 4 - 1 - 2 -PUSHW_1 - 310 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -352 1030 m 1,0,-1 - 215 1030 l 1,1,-1 - 352 1665 l 1,2,-1 - 584 1665 l 1,3,-1 - 352 1030 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: gershayim -Encoding: 1524 1524 1311 -Width: 1235 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 4 - 5 - 6 - 5 - 7 - 2 - 3 - 3 - 0 - 1 - 7 - 1 - 9 - 8 - 5 - 1 - 6 - 2 -PUSHW_1 - 310 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -352 1030 m 1,0,-1 - 215 1030 l 1,1,-1 - 352 1665 l 1,2,-1 - 584 1665 l 1,3,-1 - 352 1030 l 1,0,-1 -799 1030 m 1,4,-1 - 662 1030 l 1,5,-1 - 799 1665 l 1,6,-1 - 1030 1665 l 1,7,-1 - 799 1030 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni1D00 -Encoding: 7424 7424 1312 -Width: 1016 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 7 - 6 - 9 - 8 - 9 - 10 - 3 - 5 - 0 - 0 - 5 - 12 - 11 - 10 - 3 - 80 - 89 - 9 - 8 - 6 - 47 - 10 - 1 - 10 - 8 - 10 - 8 - 5 - 6 - 15 - 1 - 5 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -DELTAP1 -SRP1 -SRP2 -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -995 0 m 1,0,-1 - 825 0 l 1,1,-1 - 707 309 l 1,2,-1 - 312 309 l 1,3,-1 - 196 0 l 1,4,-1 - 21 0 l 1,5,-1 - 425 1082 l 1,6,-1 - 593 1082 l 1,7,-1 - 995 0 l 1,0,-1 -663 445 m 1,8,-1 - 507 906 l 1,9,-1 - 356 445 l 1,10,-1 - 663 445 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: uni1D01 -Encoding: 7425 7425 1313 -Width: 1531 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 52 - 10 - 14 - 14 - 17 - 1 - 16 - 12 - 5 - 8 - 0 - 4 - 5 - 5 - 0 - 1 - 3 - 21 - 20 - 9 - 19 - 6 - 19 - 80 - 89 - 16 - 3 - 80 - 89 - 10 - 13 - 80 - 89 - 15 - 10 - 1 - 11 - 3 - 16 - 10 - 16 - 10 - 1 - 6 - 15 - 5 - 21 - 1 - 14 - 80 - 89 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1456 0 m 1,0,-1 - 763 0 l 1,1,-1 - 763 332 l 1,2,-1 - 379 332 l 1,3,-1 - 219 0 l 1,4,-1 - 25 0 l 1,5,-1 - 565 1082 l 1,6,-1 - 1431 1082 l 1,7,-1 - 1431 943 l 1,8,-1 - 943 943 l 1,9,-1 - 943 624 l 1,10,-1 - 1392 624 l 1,11,-1 - 1392 486 l 1,12,-1 - 943 486 l 1,13,-1 - 943 139 l 1,14,-1 - 1456 139 l 1,15,-1 - 1456 0 l 1,0,-1 -443 470 m 1,16,-1 - 763 470 l 1,17,-1 - 763 943 l 1,18,-1 - 669 943 l 1,19,-1 - 443 470 l 1,16,-1 -EndSplineSet -EndChar - -StartChar: uni1D02 -Encoding: 7426 7426 1314 -Width: 1821 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 82 - 28 - 29 - 29 - 45 - 17 - 34 - 11 - 59 - 40 - 22 - 22 - 0 - 59 - 6 - 7 - 7 - 53 - 38 - 38 - 59 - 17 - 3 - 61 - 60 - 36 - 56 - 80 - 89 - 36 - 22 - 39 - 53 - 80 - 89 - 40 - 21 - 81 - 89 - 11 - 14 - 39 - 34 - 40 - 32 - 31 - 40 - 1 - 39 - 40 - 39 - 40 - 14 - 32 - 0 - 28 - 1 - 10 - 3 - 28 - 28 - 32 - 32 - 25 - 80 - 89 - 32 - 22 - 14 - 48 - 80 - 89 - 14 - 16 - 6 - 6 - 9 - 9 - 3 - 80 - 89 - 9 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -DELTAP1 -SRP1 -SRP2 -IP -SRP1 -SRP2 -IP -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -828 579 m 1,0,-1 - 828 596 l 1,1,2 - 819 965 819 965 536 965 c 0,3,4 - 419 965 419 965 348.5 918 c 128,-1,5 - 278 871 278 871 253 799 c 1,6,-1 - 95 844 l 1,7,8 - 192 1100 192 1100 536 1100 c 0,9,10 - 857 1100 857 1100 959 843 c 1,11,12 - 1038 983 1038 983 1143 1041.5 c 128,-1,13 - 1248 1100 1248 1100 1394 1100 c 0,14,15 - 1561 1100 1561 1100 1645.5 1014 c 128,-1,16 - 1730 928 1730 928 1730 778 c 0,17,18 - 1730 605 1730 605 1611.5 517.5 c 128,-1,19 - 1493 430 1493 430 1250 426 c 2,20,-1 - 1010 422 l 1,21,-1 - 1010 363 l 2,22,23 - 1010 228 1010 228 1065.5 172.5 c 128,-1,24 - 1121 117 1121 117 1242 117 c 0,25,26 - 1368 117 1368 117 1424.5 157 c 128,-1,27 - 1481 197 1481 197 1494 289 c 1,28,-1 - 1682 272 l 1,29,30 - 1656 123 1656 123 1545.5 51.5 c 128,-1,31 - 1435 -20 1435 -20 1238 -20 c 0,32,33 - 988 -20 988 -20 889 119 c 1,34,35 - 771 -20 771 -20 543 -20 c 0,36,37 - 66 -20 66 -20 66 555 c 2,38,-1 - 66 579 l 1,39,-1 - 828 579 l 1,0,-1 -1010 548 m 1,40,-1 - 1205 552 l 2,41,42 - 1333 554 1333 554 1401 577.5 c 128,-1,43 - 1469 601 1469 601 1507 650 c 128,-1,44 - 1545 699 1545 699 1545 781 c 0,45,46 - 1545 868 1545 868 1495 916.5 c 128,-1,47 - 1445 965 1445 965 1352 965 c 0,48,49 - 1250 965 1250 965 1173 920.5 c 128,-1,50 - 1096 876 1096 876 1053 800 c 128,-1,51 - 1010 724 1010 724 1010 637 c 2,52,-1 - 1010 548 l 1,40,-1 -252 441 m 1,53,54 - 267 270 267 270 339 191.5 c 128,-1,55 - 411 113 411 113 546 113 c 0,56,57 - 673 113 673 113 746.5 198.5 c 128,-1,58 - 820 284 820 284 826 441 c 1,59,-1 - 252 441 l 1,53,54 -EndSplineSet -EndChar - -StartChar: uni1D03 -Encoding: 7427 7427 1315 -Width: 1088 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 35 - 11 - 8 - 6 - 6 - 26 - 10 - 14 - 31 - 22 - 22 - 20 - 1 - 18 - 14 - 18 - 40 - 39 - 21 - 11 - 20 - 0 - 20 - 80 - 89 - 31 - 8 - 15 - 0 - 1 - 11 - 3 - 0 - 0 - 18 - 2 - 18 - 22 - 80 - 89 - 18 - 21 - 2 - 30 - 80 - 89 - 2 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -25 610 m 1,0,-1 - 142 610 l 1,1,-1 - 142 1082 l 1,2,-1 - 573 1082 l 2,3,4 - 759 1082 759 1082 866 1003 c 128,-1,5 - 973 924 973 924 973 780 c 0,6,7 - 973 680 973 680 898 610 c 1,8,-1 - 1065 610 l 1,9,-1 - 1065 472 l 1,10,-1 - 926 472 l 1,11,12 - 959 442 959 442 981.5 395.5 c 128,-1,13 - 1004 349 1004 349 1004 298 c 0,14,15 - 1004 152 1004 152 905 76 c 128,-1,16 - 806 0 806 0 604 0 c 2,17,-1 - 142 0 l 1,18,-1 - 142 472 l 1,19,-1 - 25 472 l 1,20,-1 - 25 610 l 1,0,-1 -322 472 m 1,21,-1 - 322 136 l 1,22,-1 - 592 136 l 2,23,24 - 713 136 713 136 764 177 c 128,-1,25 - 815 218 815 218 815 300 c 0,26,27 - 815 389 815 389 760 430.5 c 128,-1,28 - 705 472 705 472 592 472 c 2,29,-1 - 322 472 l 1,21,-1 -322 945 m 1,30,-1 - 322 610 l 1,31,-1 - 561 610 l 2,32,33 - 682 610 682 610 733 652.5 c 128,-1,34 - 784 695 784 695 784 777 c 256,35,36 - 784 859 784 859 733 902 c 128,-1,37 - 682 945 682 945 561 945 c 2,38,-1 - 322 945 l 1,30,-1 -EndSplineSet -EndChar - -StartChar: uni1D04 -Encoding: 7428 7428 1316 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 70 99 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D05 -Encoding: 7429 7429 1317 -Width: 1129 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 8 - 0 - 13 - 4 - 0 - 4 - 18 - 17 - 5 - 12 - 80 - 89 - 5 - 15 - 4 - 13 - 80 - 89 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1053 557 m 0,0,1 - 1053 282 1053 282 911.5 141 c 128,-1,2 - 770 0 770 0 501 0 c 2,3,-1 - 135 0 l 1,4,-1 - 135 1082 l 1,5,-1 - 501 1082 l 2,6,7 - 1053 1082 1053 1082 1053 557 c 0,0,1 -868 559 m 0,8,9 - 868 761 868 761 781.5 851.5 c 128,-1,10 - 695 942 695 942 499 942 c 2,11,-1 - 315 942 l 1,12,-1 - 315 139 l 1,13,-1 - 502 139 l 2,14,15 - 685 139 685 139 776.5 240.5 c 128,-1,16 - 868 342 868 342 868 559 c 0,8,9 -EndSplineSet -EndChar - -StartChar: uni1D06 -Encoding: 7430 7430 1318 -Width: 1129 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 17 - 21 - 21 - 11 - 1 - 19 - 9 - 12 - 5 - 9 - 5 - 25 - 26 - 20 - 11 - 0 - 11 - 80 - 89 - 17 - 15 - 0 - 1 - 11 - 3 - 0 - 0 - 9 - 2 - 9 - 21 - 80 - 89 - 9 - 21 - 2 - 16 - 80 - 89 - 2 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -0 624 m 1,0,-1 - 135 624 l 1,1,-1 - 135 1082 l 1,2,-1 - 501 1082 l 2,3,4 - 1053 1082 1053 1082 1053 557 c 0,5,6 - 1053 282 1053 282 911.5 141 c 128,-1,7 - 770 0 770 0 501 0 c 2,8,-1 - 135 0 l 1,9,-1 - 135 486 l 1,10,-1 - 0 486 l 1,11,-1 - 0 624 l 1,0,-1 -868 559 m 0,12,13 - 868 761 868 761 781.5 851.5 c 128,-1,14 - 695 942 695 942 499 942 c 2,15,-1 - 315 942 l 1,16,-1 - 315 624 l 1,17,-1 - 556 624 l 1,18,-1 - 556 486 l 1,19,-1 - 315 486 l 1,20,-1 - 315 139 l 1,21,-1 - 502 139 l 2,22,23 - 685 139 685 139 776.5 240.5 c 128,-1,24 - 868 342 868 342 868 559 c 0,12,13 -EndSplineSet -EndChar - -StartChar: uni1D07 -Encoding: 7431 7431 1319 -Width: 1003 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 4 - 0 - 6 - 10 - 10 - 8 - 1 - 0 - 0 - 1 - 13 - 12 - 6 - 9 - 80 - 89 - 15 - 6 - 1 - 11 - 3 - 6 - 6 - 1 - 2 - 2 - 5 - 80 - 89 - 2 - 15 - 1 - 10 - 80 - 89 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -927 0 m 1,0,-1 - 135 0 l 1,1,-1 - 135 1082 l 1,2,-1 - 902 1082 l 1,3,-1 - 902 943 l 1,4,-1 - 315 943 l 1,5,-1 - 315 624 l 1,6,-1 - 863 624 l 1,7,-1 - 863 486 l 1,8,-1 - 315 486 l 1,9,-1 - 315 139 l 1,10,-1 - 927 139 l 1,11,-1 - 927 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D08 -Encoding: 7432 7432 1320 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 12 - 30 - 22 - 15 - 27 - 27 - 9 - 34 - 21 - 22 - 22 - 4 - 3 - 34 - 3 - 38 - 37 - 0 - 38 - 1 - 10 - 3 - 30 - 12 - 11 - 12 - 11 - 80 - 89 - 12 - 12 - 0 - 24 - 21 - 21 - 24 - 24 - 18 - 80 - 89 - 24 - 16 - 0 - 6 - 80 - 89 - 4 - 4 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SVTCA[x-axis] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -458 -20 m 0,0,1 - 291 -20 291 -20 192.5 42.5 c 128,-1,2 - 94 105 94 105 49 234 c 1,3,-1 - 208 278 l 1,4,5 - 261 114 261 114 462 114 c 0,6,7 - 558 114 558 114 614.5 161 c 128,-1,8 - 671 208 671 208 671 299 c 0,9,10 - 671 499 671 499 340 499 c 1,11,-1 - 340 636 l 1,12,13 - 501 636 501 636 577 678 c 128,-1,14 - 653 720 653 720 653 808 c 0,15,16 - 653 882 653 882 603.5 925 c 128,-1,17 - 554 968 554 968 461 968 c 0,18,19 - 372 968 372 968 315.5 931 c 128,-1,20 - 259 894 259 894 247 824 c 1,21,-1 - 85 844 l 1,22,23 - 131 1102 131 1102 462 1102 c 0,24,25 - 630 1102 630 1102 733 1022.5 c 128,-1,26 - 836 943 836 943 836 817 c 0,27,28 - 836 716 836 716 763.5 648 c 128,-1,29 - 691 580 691 580 588 571 c 1,30,-1 - 588 569 l 1,31,32 - 709 556 709 556 785.5 484.5 c 128,-1,33 - 862 413 862 413 862 304 c 0,34,35 - 862 152 862 152 754.5 66 c 128,-1,36 - 647 -20 647 -20 458 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D09 -Encoding: 7433 7433 1321 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 6 - 2 - 2 - 5 - 1 - 1 - 8 - 9 - 7 - 15 - 2 - 3 - 6 - 21 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rp0,rnd,white] -MDRP[min,rnd,black] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -317 -230 m 1,0,-1 - 317 -402 l 1,1,-1 - 137 -402 l 1,2,-1 - 137 -230 l 1,3,-1 - 317 -230 l 1,0,-1 -317 1082 m 1,4,-1 - 317 0 l 1,5,-1 - 137 0 l 1,6,-1 - 137 1082 l 1,7,-1 - 317 1082 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni1D0A -Encoding: 7434 7434 1322 -Width: 865 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 9 - 11 - 14 - 3 - 2 - 14 - 2 - 18 - 17 - 12 - 11 - 80 - 89 - 12 - 15 - 0 - 6 - 80 - 89 - 3 - 3 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -379 -20 m 0,0,1 - 100 -20 100 -20 48 265 c 1,2,-1 - 204 304 l 1,3,4 - 219 204 219 204 266.5 159 c 128,-1,5 - 314 114 314 114 378 114 c 0,6,7 - 457 114 457 114 504 166 c 128,-1,8 - 551 218 551 218 551 332 c 2,9,-1 - 551 943 l 1,10,-1 - 312 943 l 1,11,-1 - 312 1082 l 1,12,-1 - 730 1082 l 1,13,-1 - 730 319 l 2,14,15 - 730 160 730 160 638 70 c 128,-1,16 - 546 -20 546 -20 379 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D0B -Encoding: 7435 7435 1323 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 250 312 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni1D0C -Encoding: 7436 7436 1324 -Width: 822 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 8 - 12 - 12 - 5 - 3 - 1 - 1 - 10 - 0 - 3 - 15 - 14 - 8 - 5 - 11 - 2 - 4 - 9 - 3 - 9 - 3 - 9 - 1 - 6 - 15 - 1 - 12 - 80 - 89 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -784 0 m 1,0,-1 - 135 0 l 1,1,-1 - 135 415 l 1,2,-1 - 16 314 l 1,3,-1 - 16 473 l 1,4,-1 - 135 574 l 1,5,-1 - 135 1082 l 1,6,-1 - 315 1082 l 1,7,-1 - 315 682 l 1,8,-1 - 502 841 l 1,9,-1 - 502 682 l 1,10,-1 - 315 523 l 1,11,-1 - 315 139 l 1,12,-1 - 784 139 l 1,13,-1 - 784 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D0D -Encoding: 7437 7437 1325 -Width: 1408 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 8 - 5 - 5 - 6 - 14 - 17 - 17 - 16 - 16 - 11 - 6 - 3 - 21 - 22 - 128 - 22 - 176 - 22 - 192 - 22 - 3 - 63 - 22 - 1 - 11 - 2 - 20 - 3 - 6 - 14 - 7 - 15 - 17 - 6 - 21 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -SVTCA[x-axis] -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -787 0 m 1,0,-1 - 634 0 l 1,1,-1 - 310 951 l 1,2,3 - 316 795 316 795 316 724 c 2,4,-1 - 316 0 l 1,5,-1 - 142 0 l 1,6,-1 - 142 1082 l 1,7,-1 - 422 1082 l 1,8,-1 - 642 421 l 1,9,10 - 694 278 694 278 710 135 c 1,11,12 - 732 296 732 296 778 421 c 1,13,-1 - 998 1082 l 1,14,-1 - 1267 1082 l 1,15,-1 - 1267 0 l 1,16,-1 - 1094 0 l 1,17,-1 - 1094 724 l 1,18,-1 - 1097 838 l 1,19,-1 - 1102 953 l 1,20,-1 - 787 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D0E -Encoding: 7438 7438 1326 -Width: 1144 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 11 - 1 - 1 - 12 - 3 - 6 - 6 - 5 - 12 - 5 - 14 - 15 - 176 - 15 - 192 - 15 - 208 - 15 - 3 - 176 - 15 - 240 - 15 - 2 - 112 - 15 - 128 - 15 - 160 - 15 - 176 - 15 - 192 - 15 - 5 - 2 - 10 - 12 - 3 - 13 - 15 - 6 - 12 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -SVTCA[x-axis] -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -316 1082 m 1,0,-1 - 316 490 l 1,1,-1 - 306 213 l 1,2,-1 - 805 1082 l 1,3,-1 - 1002 1082 l 1,4,-1 - 1002 0 l 1,5,-1 - 830 0 l 1,6,-1 - 830 660 l 2,7,8 - 830 696 830 696 833.5 769 c 128,-1,9 - 837 842 837 842 840 873 c 1,10,-1 - 334 0 l 1,11,-1 - 142 0 l 1,12,-1 - 142 1082 l 1,13,-1 - 316 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D0F -Encoding: 7439 7439 1327 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D10 -Encoding: 7440 7440 1328 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 534 596 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D11 -Encoding: 7441 7441 1329 -Width: 1246 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 20 - 3 - 14 - 8 - 3 - 8 - 24 - 23 - 6 - 17 - 83 - 89 - 6 - 0 - 11 - 83 - 89 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -622 1016 m 0,0,1 - 906 1016 906 1016 1045 891 c 128,-1,2 - 1184 766 1184 766 1184 528 c 0,3,4 - 1184 291 1184 291 1039.5 170 c 128,-1,5 - 895 49 895 49 622 49 c 0,6,7 - 62 49 62 49 62 534 c 0,8,9 - 62 782 62 782 198.5 899 c 128,-1,10 - 335 1016 335 1016 622 1016 c 0,0,1 -622 827 m 0,11,12 - 398 827 398 827 296.5 760.5 c 128,-1,13 - 195 694 195 694 195 537 c 0,14,15 - 195 379 195 379 298.5 308.5 c 128,-1,16 - 402 238 402 238 622 238 c 0,17,18 - 837 238 837 238 944 307.5 c 128,-1,19 - 1051 377 1051 377 1051 526 c 0,20,21 - 1051 688 1051 688 947 757.5 c 128,-1,22 - 843 827 843 827 622 827 c 0,11,12 -EndSplineSet -EndChar - -StartChar: uni1D12 -Encoding: 7442 7442 1330 -Width: 1246 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 23 - 16 - 3 - 10 - 10 - 6 - 20 - 16 - 4 - 27 - 26 - 13 - 0 - 83 - 89 - 13 - 20 - 6 - 6 - 19 - 7 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -631 802 m 0,0,1 - 415 802 415 802 311 734 c 128,-1,2 - 207 666 207 666 207 529 c 0,3,4 - 207 433 207 433 259 368.5 c 128,-1,5 - 311 304 311 304 419 289 c 1,6,-1 - 407 107 l 1,7,8 - 251 128 251 128 158 240 c 128,-1,9 - 65 352 65 352 65 524 c 0,10,11 - 65 751 65 751 208.5 870.5 c 128,-1,12 - 352 990 352 990 627 990 c 0,13,14 - 900 990 900 990 1043.5 870 c 128,-1,15 - 1187 750 1187 750 1187 526 c 0,16,17 - 1187 360 1187 360 1101 250.5 c 128,-1,18 - 1015 141 1015 141 864 113 c 1,19,-1 - 850 298 l 1,20,21 - 940 312 940 312 993 369 c 128,-1,22 - 1046 426 1046 426 1046 531 c 0,23,24 - 1046 674 1046 674 951 738 c 128,-1,25 - 856 802 856 802 631 802 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D13 -Encoding: 7443 7443 1331 -Width: 1246 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 32 - 15 - 12 - 24 - 7 - 3 - 3 - 5 - 8 - 22 - 21 - 30 - 17 - 14 - 12 - 9 - 36 - 35 - 17 - 14 - 30 - 22 - 5 - 8 - 6 - 10 - 0 - 10 - 27 - 83 - 89 - 7 - 10 - 0 - 19 - 83 - 89 - 16 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -627 50 m 0,0,1 - 343 50 343 50 204 175 c 128,-1,2 - 65 300 65 300 65 538 c 0,3,4 - 65 733 65 733 163 851 c 1,5,-1 - 47 951 l 1,6,-1 - 47 1118 l 1,7,-1 - 261 934 l 1,8,9 - 399 1017 399 1017 627 1017 c 0,10,11 - 1187 1017 1187 1017 1187 532 c 0,12,13 - 1187 331 1187 331 1096 216 c 1,14,-1 - 1201 125 l 1,15,-1 - 1201 -42 l 1,16,-1 - 1000 131 l 1,17,18 - 867 50 867 50 627 50 c 0,0,1 -627 239 m 0,19,20 - 756 239 756 239 848 262 c 1,21,-1 - 286 745 l 1,22,23 - 198 677 198 677 198 540 c 0,24,25 - 198 378 198 378 302 308.5 c 128,-1,26 - 406 239 406 239 627 239 c 0,19,20 -627 828 m 0,27,28 - 497 828 497 828 412 804 c 1,29,-1 - 973 322 l 1,30,31 - 1054 389 1054 389 1054 529 c 0,32,33 - 1054 687 1054 687 950.5 757.5 c 128,-1,34 - 847 828 847 828 627 828 c 0,27,28 -EndSplineSet -EndChar - -StartChar: uni1D14 -Encoding: 7444 7444 1332 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 58 - 6 - 7 - 7 - 38 - 25 - 21 - 11 - 27 - 27 - 0 - 44 - 33 - 16 - 16 - 44 - 25 - 3 - 45 - 46 - 26 - 38 - 80 - 89 - 21 - 23 - 11 - 9 - 26 - 26 - 23 - 9 - 23 - 41 - 80 - 89 - 23 - 22 - 19 - 30 - 80 - 89 - 19 - 22 - 13 - 35 - 80 - 89 - 13 - 16 - 6 - 6 - 9 - 9 - 3 - 80 - 89 - 9 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP2 -IP -SRP2 -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -859 579 m 1,0,1 - 859 765 859 765 782 866 c 128,-1,2 - 705 967 705 967 557 967 c 0,3,4 - 440 967 440 967 369.5 920 c 128,-1,5 - 299 873 299 873 274 801 c 1,6,-1 - 116 846 l 1,7,8 - 213 1102 213 1102 557 1102 c 0,9,10 - 831 1102 831 1102 953 919 c 1,11,12 - 1077 1102 1077 1102 1354 1102 c 0,13,14 - 1592 1102 1592 1102 1717.5 957.5 c 128,-1,15 - 1843 813 1843 813 1843 540 c 0,16,17 - 1843 261 1843 261 1716 120.5 c 128,-1,18 - 1589 -20 1589 -20 1348 -20 c 0,19,20 - 1067 -20 1067 -20 950 157 c 1,21,22 - 824 -20 824 -20 564 -20 c 0,23,24 - 87 -20 87 -20 87 555 c 2,25,-1 - 87 579 l 1,26,-1 - 859 579 l 1,0,1 -1048 540 m 0,27,28 - 1048 321 1048 321 1117 217 c 128,-1,29 - 1186 113 1186 113 1345 113 c 0,30,31 - 1507 113 1507 113 1580.5 219.5 c 128,-1,32 - 1654 326 1654 326 1654 540 c 0,33,34 - 1654 969 1654 969 1356 969 c 0,35,36 - 1192 969 1192 969 1120 865 c 128,-1,37 - 1048 761 1048 761 1048 540 c 0,27,28 -273 441 m 1,38,39 - 288 270 288 270 360 191.5 c 128,-1,40 - 432 113 432 113 567 113 c 0,41,42 - 698 113 698 113 774.5 200.5 c 128,-1,43 - 851 288 851 288 857 441 c 1,44,-1 - 273 441 l 1,38,39 -EndSplineSet -EndChar - -StartChar: uni1D15 -Encoding: 7445 7445 1333 -Width: 936 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 16 - 3 - 0 - 21 - 20 - 20 - 32 - 13 - 26 - 0 - 0 - 27 - 7 - 13 - 7 - 38 - 39 - 4 - 16 - 29 - 64 - 24 - 24 - 10 - 26 - 20 - 15 - 10 - 35 - 81 - 89 - 10 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SMD -MDRP[min,rnd,black] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -845 1082 m 1,0,1 - 845 951 845 951 774.5 859 c 128,-1,2 - 704 767 704 767 583 743 c 1,3,-1 - 583 739 l 1,4,5 - 715 717 715 717 791.5 620.5 c 128,-1,6 - 868 524 868 524 868 383 c 0,7,8 - 868 188 868 188 764 84 c 128,-1,9 - 660 -20 660 -20 468 -20 c 0,10,11 - 275 -20 275 -20 171 85 c 128,-1,12 - 67 190 67 190 67 381 c 0,13,14 - 67 522 67 522 147.5 619.5 c 128,-1,15 - 228 717 228 717 348 737 c 1,16,-1 - 348 741 l 1,17,18 - 227 770 227 770 157.5 861.5 c 128,-1,19 - 88 953 88 953 88 1082 c 1,20,-1 - 272 1082 l 1,21,22 - 272 955 272 955 323 887 c 128,-1,23 - 374 819 374 819 466 819 c 0,24,25 - 658 819 658 819 658 1082 c 1,26,-1 - 845 1082 l 1,0,1 -691 381 m 0,27,28 - 691 649 691 649 465 649 c 0,29,30 - 357 649 357 649 300 580.5 c 128,-1,31 - 243 512 243 512 243 381 c 0,32,33 - 243 251 243 251 301 181 c 128,-1,34 - 359 111 359 111 469 111 c 0,35,36 - 578 111 578 111 634.5 179 c 128,-1,37 - 691 247 691 247 691 381 c 0,27,28 -EndSplineSet -EndChar - -StartChar: uni1D16 -Encoding: 7446 7446 1334 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 7 - 0 - 12 - 7 - 12 - 13 - 14 - 0 - 7 - 9 - 9 - 3 - 80 - 89 - 9 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -864 542 m 1,0,1 - 864 766 864 766 797.5 867.5 c 128,-1,2 - 731 969 731 969 574 969 c 0,3,4 - 416 969 416 969 345.5 865.5 c 128,-1,5 - 275 762 275 762 275 542 c 1,6,-1 - 86 542 l 1,7,8 - 86 1102 86 1102 571 1102 c 0,9,10 - 819 1102 819 1102 936 965.5 c 128,-1,11 - 1053 829 1053 829 1053 542 c 1,12,-1 - 864 542 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D17 -Encoding: 7447 7447 1335 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 0 - 13 - 6 - 7 - 13 - 7 - 14 - 15 - 6 - 13 - 10 - 10 - 3 - 80 - 89 - 10 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -275 542 m 1,0,1 - 275 328 275 328 344.5 220.5 c 128,-1,2 - 414 113 414 113 563 113 c 0,3,4 - 725 113 725 113 794.5 217 c 128,-1,5 - 864 321 864 321 864 542 c 1,6,-1 - 1053 542 l 1,7,8 - 1053 258 1053 258 928 119 c 128,-1,9 - 803 -20 803 -20 565 -20 c 0,10,11 - 328 -20 328 -20 207 124.5 c 128,-1,12 - 86 269 86 269 86 542 c 1,13,-1 - 275 542 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D18 -Encoding: 7448 7448 1336 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 12 - 0 - 0 - 1 - 16 - 6 - 1 - 6 - 20 - 21 - 12 - 10 - 80 - 89 - 12 - 12 - 1 - 2 - 2 - 11 - 80 - 89 - 2 - 15 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -322 0 m 1,0,-1 - 142 0 l 1,1,-1 - 142 1082 l 1,2,-1 - 604 1082 l 2,3,4 - 782 1082 782 1082 893 992.5 c 128,-1,5 - 1004 903 1004 903 1004 755 c 0,6,7 - 1004 599 1004 599 896 509 c 128,-1,8 - 788 419 788 419 604 419 c 2,9,-1 - 322 419 l 1,10,-1 - 322 0 l 1,0,-1 -322 945 m 1,11,-1 - 322 555 l 1,12,-1 - 592 555 l 2,13,14 - 697 555 697 555 756 605.5 c 128,-1,15 - 815 656 815 656 815 752 c 0,16,17 - 815 846 815 846 756.5 895.5 c 128,-1,18 - 698 945 698 945 592 945 c 2,19,-1 - 322 945 l 1,11,-1 -EndSplineSet -EndChar - -StartChar: uni1D19 -Encoding: 7449 7449 1337 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 3 - 0 - 5 - 21 - 21 - 11 - 11 - 10 - 1 - 2 - 2 - 17 - 5 - 10 - 5 - 23 - 22 - 3 - 0 - 20 - 0 - 81 - 89 - 20 - 20 - 2 - 8 - 8 - 14 - 81 - 89 - 8 - 15 - 11 - 2 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -535 458 m 1,0,-1 - 220 0 l 1,1,-1 - 17 0 l 1,2,-1 - 361 471 l 1,3,4 - 112 522 112 522 112 783 c 0,5,6 - 112 932 112 932 220 1007 c 128,-1,7 - 328 1082 328 1082 535 1082 c 2,8,-1 - 967 1082 l 1,9,-1 - 967 0 l 1,10,-1 - 787 0 l 1,11,-1 - 787 458 l 1,12,-1 - 535 458 l 1,0,-1 -787 955 m 1,13,-1 - 553 955 l 2,14,15 - 423 955 423 955 363 909 c 128,-1,16 - 303 863 303 863 303 770 c 0,17,18 - 303 676 303 676 356.5 629.5 c 128,-1,19 - 410 583 410 583 534 583 c 2,20,-1 - 787 583 l 1,21,-1 - 787 955 l 1,13,-1 -EndSplineSet -EndChar - -StartChar: uni1D1A -Encoding: 7450 7450 1338 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 9 - 12 - 10 - 0 - 0 - 21 - 21 - 3 - 11 - 10 - 10 - 17 - 7 - 3 - 7 - 23 - 22 - 12 - 14 - 81 - 89 - 9 - 12 - 12 - 4 - 1 - 10 - 15 - 4 - 20 - 81 - 89 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -787 624 m 1,0,-1 - 787 1082 l 1,1,-1 - 967 1082 l 1,2,-1 - 967 0 l 1,3,-1 - 535 0 l 2,4,5 - 328 0 328 0 220 75 c 128,-1,6 - 112 150 112 150 112 299 c 0,7,8 - 112 560 112 560 361 611 c 1,9,-1 - 17 1082 l 1,10,-1 - 220 1082 l 1,11,-1 - 535 624 l 1,12,-1 - 787 624 l 1,0,-1 -787 499 m 1,13,-1 - 534 499 l 2,14,15 - 410 499 410 499 356.5 452.5 c 128,-1,16 - 303 406 303 406 303 312 c 0,17,18 - 303 219 303 219 363 173 c 128,-1,19 - 423 127 423 127 553 127 c 2,20,-1 - 787 127 l 1,21,-1 - 787 499 l 1,13,-1 -EndSplineSet -EndChar - -StartChar: uni1D1B -Encoding: 7451 7451 1339 -Width: 938 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 4 - 5 - 1 - 5 - 0 - 3 - 8 - 9 - 128 - 9 - 1 - 63 - 9 - 1 - 16 - 9 - 32 - 9 - 2 - 15 - 9 - 1 - 11 - 3 - 5 - 21 - 3 - 7 - 0 - 7 - 81 - 89 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -35 1082 m 1,0,-1 - 903 1082 l 1,1,-1 - 903 951 l 1,2,-1 - 559 951 l 1,3,-1 - 559 0 l 1,4,-1 - 379 0 l 1,5,-1 - 379 951 l 1,6,-1 - 35 951 l 1,7,-1 - 35 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D1C -Encoding: 7452 7452 1340 -Width: 1120 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D1D -Encoding: 7453 7453 1341 -Width: 1222 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 9 - 0 - 18 - 19 - 19 - 5 - 5 - 14 - 22 - 0 - 22 - 27 - 28 - 0 - 26 - 18 - 9 - 10 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -68 269 m 1,0,-1 - 754 269 l 2,1,2 - 861 269 861 269 920 290 c 128,-1,3 - 979 311 979 311 1005 357 c 128,-1,4 - 1031 403 1031 403 1031 492 c 0,5,6 - 1031 622 1031 622 942 697 c 128,-1,7 - 853 772 853 772 695 772 c 2,8,-1 - 68 772 l 1,9,-1 - 68 952 l 1,10,-1 - 919 952 l 2,11,12 - 1108 952 1108 952 1150 958 c 1,13,-1 - 1150 788 l 1,14,15 - 1145 787 1145 787 1123 786 c 128,-1,16 - 1101 785 1101 785 1072.5 783.5 c 128,-1,17 - 1044 782 1044 782 965 780 c 1,18,-1 - 965 777 l 1,19,20 - 1077 715 1077 715 1123.5 633.5 c 128,-1,21 - 1170 552 1170 552 1170 431 c 0,22,23 - 1170 253 1170 253 1081.5 170.5 c 128,-1,24 - 993 88 993 88 789 88 c 2,25,-1 - 68 88 l 1,26,-1 - 68 269 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D1E -Encoding: 7454 7454 1342 -Width: 1502 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 18 - 19 - 19 - 5 - 5 - 14 - 22 - 9 - 26 - 33 - 29 - 29 - 34 - 30 - 30 - 26 - 22 - 3 - 36 - 35 - 34 - 31 - 27 - 30 - 31 - 30 - 31 - 30 - 10 - 0 - 26 - 18 - 9 - 10 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -MDRP[min,rnd,black] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP0 -MDRP[min,rnd,black] -SRP0 -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -348 269 m 1,0,-1 - 1034 269 l 2,1,2 - 1141 269 1141 269 1200 290 c 128,-1,3 - 1259 311 1259 311 1285 357 c 128,-1,4 - 1311 403 1311 403 1311 492 c 0,5,6 - 1311 622 1311 622 1222 697 c 128,-1,7 - 1133 772 1133 772 975 772 c 2,8,-1 - 348 772 l 1,9,-1 - 348 952 l 1,10,-1 - 1199 952 l 2,11,12 - 1388 952 1388 952 1430 958 c 1,13,-1 - 1430 788 l 1,14,15 - 1425 787 1425 787 1403 786 c 128,-1,16 - 1381 785 1381 785 1352.5 783.5 c 128,-1,17 - 1324 782 1324 782 1245 780 c 1,18,-1 - 1245 777 l 1,19,20 - 1357 715 1357 715 1403.5 633.5 c 128,-1,21 - 1450 552 1450 552 1450 431 c 0,22,23 - 1450 253 1450 253 1361.5 170.5 c 128,-1,24 - 1273 88 1273 88 1069 88 c 2,25,-1 - 348 88 l 1,26,-1 - 348 269 l 1,0,-1 -69 406 m 1,27,-1 - 253 406 l 1,28,-1 - 253 243 l 1,29,-1 - 69 243 l 1,30,-1 - 69 406 l 1,27,-1 -69 800 m 1,31,-1 - 253 800 l 1,32,-1 - 253 635 l 1,33,-1 - 69 635 l 1,34,-1 - 69 800 l 1,31,-1 -EndSplineSet -EndChar - -StartChar: uni1D1F -Encoding: 7455 7455 1343 -Width: 1222 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 17 - 24 - 9 - 12 - 9 - 0 - 33 - 4 - 21 - 21 - 12 - 37 - 28 - 33 - 28 - 42 - 43 - 41 - 24 - 0 - 0 - 9 - 33 - 32 - 17 - 8 - 9 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -MDRP[min,rnd,black] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -63 636 m 1,0,-1 - 749 636 l 2,1,2 - 906 636 906 636 966 679 c 128,-1,3 - 1026 722 1026 722 1026 834 c 0,4,5 - 1026 949 1026 949 938 1016 c 128,-1,6 - 850 1083 850 1083 690 1083 c 2,7,-1 - 63 1083 l 1,8,-1 - 63 1262 l 1,9,-1 - 914 1262 l 2,10,11 - 1103 1262 1103 1262 1145 1268 c 1,12,-1 - 1145 1098 l 1,13,14 - 1140 1097 1140 1097 1118 1096 c 128,-1,15 - 1096 1095 1096 1095 1067.5 1093.5 c 128,-1,16 - 1039 1092 1039 1092 960 1090 c 1,17,-1 - 960 1087 l 1,18,19 - 1075 1029 1075 1029 1120 954 c 128,-1,20 - 1165 879 1165 879 1165 771 c 0,21,22 - 1165 648 1165 648 1116 576.5 c 128,-1,23 - 1067 505 1067 505 960 477 c 1,24,-1 - 960 474 l 1,25,26 - 1069 418 1069 418 1117 338.5 c 128,-1,27 - 1165 259 1165 259 1165 146 c 0,28,29 - 1165 -18 1165 -18 1076 -92.5 c 128,-1,30 - 987 -167 987 -167 784 -167 c 2,31,-1 - 63 -167 l 1,32,-1 - 63 11 l 1,33,-1 - 749 11 l 2,34,35 - 906 11 906 11 966 54 c 128,-1,36 - 1026 97 1026 97 1026 209 c 0,37,38 - 1026 327 1026 327 938.5 392.5 c 128,-1,39 - 851 458 851 458 690 458 c 2,40,-1 - 63 458 l 1,41,-1 - 63 636 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D20 -Encoding: 7456 7456 1344 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 89 118 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D21 -Encoding: 7457 7457 1345 -Width: 1479 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 90 119 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D22 -Encoding: 7458 7458 1346 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 93 122 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D23 -Encoding: 7459 7459 1347 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 14 - 20 - 17 - 15 - 19 - 19 - 9 - 23 - 17 - 4 - 3 - 23 - 3 - 27 - 26 - 14 - 20 - 20 - 12 - 81 - 89 - 20 - 20 - 17 - 0 - 19 - 16 - 17 - 16 - 80 - 89 - 17 - 15 - 0 - 6 - 80 - 89 - 4 - 4 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -458 -20 m 0,0,1 - 291 -20 291 -20 192.5 42.5 c 128,-1,2 - 94 105 94 105 49 234 c 1,3,-1 - 208 278 l 1,4,5 - 261 114 261 114 462 114 c 0,6,7 - 558 114 558 114 618.5 164 c 128,-1,8 - 679 214 679 214 679 304 c 0,9,10 - 679 411 679 411 610.5 460 c 128,-1,11 - 542 509 542 509 388 509 c 2,12,-1 - 340 509 l 1,13,-1 - 340 646 l 1,14,-1 - 650 943 l 1,15,-1 - 113 943 l 1,16,-1 - 113 1082 l 1,17,-1 - 858 1082 l 1,18,-1 - 858 947 l 1,19,-1 - 513 629 l 1,20,21 - 681 626 681 626 771.5 540.5 c 128,-1,22 - 862 455 862 455 862 304 c 0,23,24 - 862 152 862 152 754.5 66 c 128,-1,25 - 647 -20 647 -20 458 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D24 -Encoding: 7460 7460 1348 -Width: 875 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 53 - 29 - 30 - 30 - 4 - 16 - 0 - 19 - 9 - 10 - 10 - 24 - 36 - 36 - 19 - 16 - 3 - 40 - 41 - 39 - 1 - 81 - 89 - 20 - 19 - 81 - 89 - 4 - 13 - 39 - 24 - 20 - 33 - 39 - 20 - 39 - 20 - 13 - 29 - 33 - 33 - 27 - 80 - 89 - 33 - 16 - 9 - 13 - 13 - 7 - 80 - 89 - 13 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -SRP1 -SRP2 -IP -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -528 428 m 1,0,-1 - 469 428 l 2,1,2 - 349 428 349 428 297.5 388 c 128,-1,3 - 246 348 246 348 246 267 c 0,4,5 - 246 203 246 203 295 160 c 128,-1,6 - 344 117 344 117 428 117 c 0,7,8 - 588 117 588 117 641 288 c 1,9,-1 - 811 268 l 1,10,11 - 780 126 780 126 678.5 52.5 c 128,-1,12 - 577 -21 577 -21 426 -21 c 0,13,14 - 259 -21 259 -21 162 54 c 128,-1,15 - 65 129 65 129 65 264 c 0,16,17 - 65 380 65 380 142 450.5 c 128,-1,18 - 219 521 219 521 348 527 c 1,19,-1 - 348 651 l 1,20,-1 - 407 651 l 2,21,22 - 527 651 527 651 578.5 691 c 128,-1,23 - 630 731 630 731 630 812 c 0,24,25 - 630 876 630 876 581 919 c 128,-1,26 - 532 962 532 962 448 962 c 0,27,28 - 288 962 288 962 235 791 c 1,29,-1 - 65 811 l 1,30,31 - 96 953 96 953 197.5 1026.5 c 128,-1,32 - 299 1100 299 1100 450 1100 c 0,33,34 - 617 1100 617 1100 714 1024.5 c 128,-1,35 - 811 949 811 949 811 815 c 0,36,37 - 811 699 811 699 734 628.5 c 128,-1,38 - 657 558 657 558 528 552 c 1,39,-1 - 528 428 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D25 -Encoding: 7461 7461 1349 -Width: 1243 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 25 - 40 - 11 - 3 - 15 - 21 - 21 - 33 - 15 - 3 - 33 - 3 - 45 - 44 - 40 - 25 - 11 - 3 - 18 - 32 - 36 - 36 - 29 - 80 - 89 - 36 - 22 - 18 - 16 - 0 - 7 - 80 - 89 - 4 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -301 -20 m 0,0,1 - 214 -20 214 -20 155.5 7.5 c 128,-1,2 - 97 35 97 35 41 98 c 1,3,-1 - 129 213 l 1,4,5 - 162 174 162 174 207 148 c 128,-1,6 - 252 122 252 122 297 122 c 0,7,8 - 331 122 331 122 366.5 139 c 128,-1,9 - 402 156 402 156 427 191 c 2,10,-1 - 520 322 l 1,11,-1 - 375 500 l 2,12,13 - 301 591 301 591 272 659 c 128,-1,14 - 243 727 243 727 243 794 c 0,15,16 - 243 940 243 940 340.5 1020.5 c 128,-1,17 - 438 1101 438 1101 623 1101 c 0,18,19 - 807 1101 807 1101 905 1021.5 c 128,-1,20 - 1003 942 1003 942 1003 795 c 0,21,22 - 1003 728 1003 728 974 659 c 128,-1,23 - 945 590 945 590 871 500 c 2,24,-1 - 726 322 l 1,25,-1 - 819 191 l 2,26,27 - 844 156 844 156 879.5 139 c 128,-1,28 - 915 122 915 122 949 122 c 0,29,30 - 994 122 994 122 1039 148 c 128,-1,31 - 1084 174 1084 174 1117 213 c 1,32,-1 - 1205 98 l 1,33,34 - 1148 35 1148 35 1090.5 7.5 c 128,-1,35 - 1033 -20 1033 -20 945 -20 c 0,36,37 - 858 -20 858 -20 797 15.5 c 128,-1,38 - 736 51 736 51 678 142 c 2,39,-1 - 623 227 l 1,40,-1 - 568 142 l 2,41,42 - 511 52 511 52 450.5 16 c 128,-1,43 - 390 -20 390 -20 301 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D26 -Encoding: 7462 7462 1350 -Width: 747 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 4 - 4 - 0 - 6 - 7 - 5 - 2 - 81 - 89 - 5 - 15 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -687 1082 m 1,0,-1 - 687 951 l 1,1,-1 - 322 951 l 1,2,-1 - 322 0 l 1,3,-1 - 142 0 l 1,4,-1 - 142 1082 l 1,5,-1 - 687 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D27 -Encoding: 7463 7463 1351 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 590 652 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D28 -Encoding: 7464 7464 1352 -Width: 1109 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 2 - 1 - 5 - 6 - 1 - 6 - 9 - 8 - 160 - 9 - 176 - 9 - 192 - 9 - 3 - 160 - 9 - 224 - 9 - 2 - 96 - 9 - 144 - 9 - 160 - 9 - 176 - 9 - 4 - 15 - 9 - 1 - 10 - 3 - 7 - 4 - 81 - 89 - 7 - 15 - 2 - 6 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -967 1082 m 1,0,-1 - 967 0 l 1,1,-1 - 787 0 l 1,2,-1 - 787 951 l 1,3,-1 - 322 951 l 1,4,-1 - 322 0 l 1,5,-1 - 142 0 l 1,6,-1 - 142 1082 l 1,7,-1 - 967 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D29 -Encoding: 7465 7465 1353 -Width: 1067 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1336 7448 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D2A -Encoding: 7466 7466 1354 -Width: 1460 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 8 - 5 - 14 - 25 - 25 - 11 - 0 - 17 - 20 - 20 - 0 - 5 - 3 - 26 - 27 - 24 - 1 - 11 - 1 - 80 - 89 - 14 - 47 - 11 - 1 - 11 - 11 - 18 - 12 - 6 - 15 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -IP -MDAP[rnd] -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -641 0 m 1,0,-1 - 641 310 l 1,1,2 - 490 310 490 310 371.5 364 c 128,-1,3 - 253 418 253 418 189.5 513 c 128,-1,4 - 126 608 126 608 126 727 c 2,5,-1 - 126 1082 l 1,6,-1 - 299 1082 l 1,7,-1 - 299 774 l 2,8,9 - 299 619 299 619 388 531 c 128,-1,10 - 477 443 477 443 641 443 c 1,11,-1 - 641 1082 l 1,12,-1 - 818 1082 l 1,13,-1 - 818 443 l 1,14,15 - 983 443 983 443 1072 528.5 c 128,-1,16 - 1161 614 1161 614 1161 774 c 2,17,-1 - 1161 1082 l 1,18,-1 - 1334 1082 l 1,19,-1 - 1334 727 l 2,20,21 - 1334 606 1334 606 1272 511 c 128,-1,22 - 1210 416 1210 416 1092 363 c 128,-1,23 - 974 310 974 310 818 310 c 1,24,-1 - 818 0 l 1,25,-1 - 641 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D2B -Encoding: 7467 7467 1355 -Width: 1195 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 2 - 17 - 0 - 19 - 19 - 17 - 9 - 3 - 20 - 21 - 112 - 21 - 128 - 21 - 144 - 21 - 3 - 112 - 21 - 176 - 21 - 2 - 0 - 21 - 32 - 21 - 48 - 21 - 96 - 21 - 112 - 21 - 128 - 21 - 6 - 13 - 3 - 17 - 2 - 81 - 89 - 17 - 15 - 7 - 12 - 80 - 89 - 7 - 10 - 80 - 89 - 7 - 22 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[x-axis] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -872 0 m 1,0,-1 - 872 951 l 1,1,-1 - 497 951 l 1,2,3 - 438 515 438 515 406 362.5 c 128,-1,4 - 374 210 374 210 337 132 c 128,-1,5 - 300 54 300 54 245.5 17 c 128,-1,6 - 191 -20 191 -20 105 -20 c 0,7,8 - 55 -20 55 -20 11 -7 c 1,9,-1 - 11 122 l 1,10,11 - 36 113 36 113 79 113 c 0,12,13 - 134 113 134 113 167.5 168 c 128,-1,14 - 201 223 201 223 228.5 358 c 128,-1,15 - 256 493 256 493 291 757 c 2,16,-1 - 335 1082 l 1,17,-1 - 1053 1082 l 1,18,-1 - 1053 0 l 1,19,-1 - 872 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D2C -Encoding: 7468 7468 1356 -Width: 928 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 11 - 12 - 4 - 0 - 7 - 7 - 16 - 3 - 4 - 4 - 15 - 11 - 2 - 229 - 89 - 63 - 11 - 1 - 11 - 11 - 4 - 8 - 5 - 230 - 0 - 4 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -786 490 m 1,0,-1 - 677 779 l 1,1,-1 - 253 779 l 1,2,-1 - 142 490 l 1,3,-1 - -4 490 l 1,4,-1 - 388 1484 l 1,5,-1 - 544 1484 l 1,6,-1 - 930 490 l 1,7,-1 - 786 490 l 1,0,-1 -465 1359 m 1,8,9 - 454 1325 454 1325 438.5 1279 c 128,-1,10 - 423 1233 423 1233 295 890 c 1,11,-1 - 637 890 l 1,12,-1 - 514 1211 l 2,13,14 - 481 1293 481 1293 465 1359 c 1,8,9 -EndSplineSet -EndChar - -StartChar: uni1D2D -Encoding: 7469 7469 1357 -Width: 1359 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 59 - 11 - 7 - 14 - 20 - 2 - 21 - 4 - 21 - 0 - 9 - 13 - 13 - 0 - 3 - 4 - 4 - 0 - 14 - 3 - 23 - 22 - 20 - 2 - 229 - 89 - 9 - 12 - 229 - 89 - 15 - 20 - 1 - 15 - 9 - 1 - 12 - 3 - 20 - 9 - 20 - 9 - 0 - 5 - 16 - 8 - 5 - 8 - 229 - 89 - 5 - 230 - 4 - 232 - 0 - 13 - 229 - 89 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -651 490 m 1,0,-1 - 651 779 l 1,1,-1 - 291 779 l 1,2,-1 - 157 490 l 1,3,-1 - 11 490 l 1,4,-1 - 478 1484 l 1,5,-1 - 1307 1484 l 1,6,-1 - 1307 1368 l 1,7,-1 - 792 1368 l 1,8,-1 - 792 1058 l 1,9,-1 - 1266 1058 l 1,10,-1 - 1266 944 l 1,11,-1 - 792 944 l 1,12,-1 - 792 606 l 1,13,-1 - 1334 606 l 1,14,-1 - 1334 490 l 1,15,-1 - 651 490 l 1,0,-1 -651 1375 m 1,16,-1 - 561 1375 l 1,17,-1 - 514 1272 l 1,18,-1 - 490 1217 l 1,19,-1 - 341 890 l 1,20,-1 - 651 890 l 1,21,-1 - 651 1375 l 1,16,-1 -EndSplineSet -EndChar - -StartChar: uni1D2E -Encoding: 7470 7470 1358 -Width: 849 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 19 - 26 - 26 - 4 - 14 - 8 - 8 - 22 - 0 - 4 - 0 - 30 - 31 - 11 - 19 - 25 - 19 - 25 - 229 - 89 - 15 - 19 - 1 - 12 - 3 - 19 - 19 - 4 - 5 - 5 - 18 - 229 - 89 - 5 - 230 - 4 - 26 - 229 - 89 - 4 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -798 772 m 0,0,1 - 798 640 798 640 704.5 565 c 128,-1,2 - 611 490 611 490 442 490 c 2,3,-1 - 53 490 l 1,4,-1 - 53 1484 l 1,5,-1 - 400 1484 l 2,6,7 - 742 1484 742 1484 742 1241 c 0,8,9 - 742 1162 742 1162 699.5 1100.5 c 128,-1,10 - 657 1039 657 1039 572 1015 c 1,11,12 - 683 998 683 998 740.5 932.5 c 128,-1,13 - 798 867 798 867 798 772 c 0,0,1 -601 1225 m 0,14,15 - 601 1304 601 1304 549 1337 c 128,-1,16 - 497 1370 497 1370 400 1370 c 2,17,-1 - 194 1370 l 1,18,-1 - 194 1064 l 1,19,-1 - 400 1064 l 2,20,21 - 601 1064 601 1064 601 1225 c 0,14,15 -656 782 m 0,22,23 - 656 954 656 954 424 954 c 2,24,-1 - 194 954 l 1,25,-1 - 194 604 l 1,26,-1 - 435 604 l 2,27,28 - 549 604 549 604 602.5 648 c 128,-1,29 - 656 692 656 692 656 782 c 0,22,23 -EndSplineSet -EndChar - -StartChar: uni1D2F -Encoding: 7471 7471 1359 -Width: 849 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 10 - 7 - 5 - 32 - 32 - 23 - 23 - 18 - 1 - 16 - 27 - 5 - 5 - 19 - 12 - 16 - 12 - 35 - 36 - 22 - 10 - 18 - 0 - 18 - 229 - 89 - 32 - 7 - 0 - 0 - 16 - 2 - 16 - 23 - 229 - 89 - 16 - 232 - 2 - 31 - 229 - 89 - 2 - 230 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --36 1069 m 1,0,-1 - 58 1069 l 1,1,-1 - 58 1484 l 1,2,-1 - 405 1484 l 2,3,4 - 747 1484 747 1484 747 1241 c 0,5,6 - 747 1135 747 1135 677 1069 c 1,7,-1 - 865 1069 l 1,8,-1 - 865 949 l 1,9,-1 - 727 949 l 1,10,11 - 803 881 803 881 803 772 c 0,12,13 - 803 640 803 640 709.5 565 c 128,-1,14 - 616 490 616 490 447 490 c 2,15,-1 - 58 490 l 1,16,-1 - 58 949 l 1,17,-1 - -36 949 l 1,18,-1 - -36 1069 l 1,0,-1 -660 782 m 0,19,20 - 660 954 660 954 429 954 c 2,21,-1 - 199 954 l 1,22,-1 - 199 604 l 1,23,-1 - 440 604 l 2,24,25 - 554 604 554 604 607 648 c 128,-1,26 - 660 692 660 692 660 782 c 0,19,20 -606 1225 m 0,27,28 - 606 1304 606 1304 554 1337 c 128,-1,29 - 502 1370 502 1370 405 1370 c 2,30,-1 - 199 1370 l 1,31,-1 - 199 1064 l 1,32,-1 - 405 1064 l 2,33,34 - 606 1064 606 1064 606 1225 c 0,27,28 -EndSplineSet -EndChar - -StartChar: uni1D30 -Encoding: 7472 7472 1360 -Width: 920 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 15 - 5 - 10 - 0 - 5 - 0 - 19 - 20 - 6 - 14 - 229 - 89 - 6 - 230 - 5 - 15 - 229 - 89 - 5 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -878 997 m 0,0,1 - 878 843 878 843 820 727.5 c 128,-1,2 - 762 612 762 612 654 551 c 128,-1,3 - 546 490 546 490 408 490 c 2,4,-1 - 50 490 l 1,5,-1 - 50 1484 l 1,6,-1 - 366 1484 l 2,7,8 - 613 1484 613 1484 745.5 1357.5 c 128,-1,9 - 878 1231 878 1231 878 997 c 0,0,1 -736 997 m 256,10,11 - 736 1179 736 1179 640.5 1274.5 c 128,-1,12 - 545 1370 545 1370 363 1370 c 2,13,-1 - 191 1370 l 1,14,-1 - 191 604 l 1,15,-1 - 392 604 l 2,16,17 - 552 604 552 604 644 709.5 c 128,-1,18 - 736 815 736 815 736 997 c 256,10,11 -EndSplineSet -EndChar - -StartChar: uni1D31 -Encoding: 7473 7473 1361 -Width: 840 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 5 - 9 - 9 - 0 - 7 - 3 - 10 - 0 - 10 - 12 - 13 - 5 - 8 - 229 - 89 - 15 - 5 - 1 - 12 - 3 - 5 - 5 - 0 - 1 - 1 - 4 - 229 - 89 - 1 - 230 - 0 - 9 - 229 - 89 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -49 490 m 1,0,-1 - 49 1484 l 1,1,-1 - 779 1484 l 1,2,-1 - 779 1368 l 1,3,-1 - 190 1368 l 1,4,-1 - 190 1058 l 1,5,-1 - 739 1058 l 1,6,-1 - 739 944 l 1,7,-1 - 190 944 l 1,8,-1 - 190 606 l 1,9,-1 - 807 606 l 1,10,-1 - 807 490 l 1,11,-1 - 49 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D32 -Encoding: 7474 7474 1362 -Width: 840 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 6 - 2 - 2 - 11 - 8 - 4 - 0 - 11 - 0 - 13 - 12 - 5 - 4 - 229 - 89 - 15 - 5 - 1 - 12 - 3 - 5 - 5 - 0 - 9 - 9 - 8 - 229 - 89 - 9 - 230 - 0 - 1 - 229 - 89 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -32 490 m 1,0,-1 - 32 606 l 1,1,-1 - 649 606 l 1,2,-1 - 649 944 l 1,3,-1 - 100 944 l 1,4,-1 - 100 1058 l 1,5,-1 - 649 1058 l 1,6,-1 - 649 1368 l 1,7,-1 - 60 1368 l 1,8,-1 - 60 1484 l 1,9,-1 - 790 1484 l 1,10,-1 - 790 490 l 1,11,-1 - 32 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D33 -Encoding: 7475 7475 1363 -Width: 1016 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 13 - 0 - 7 - 6 - 6 - 19 - 24 - 24 - 21 - 0 - 3 - 30 - 31 - 22 - 21 - 229 - 89 - 22 - 7 - 22 - 7 - 27 - 3 - 27 - 16 - 229 - 89 - 27 - 233 - 3 - 10 - 229 - 89 - 3 - 231 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -48 992 m 0,0,1 - 48 1234 48 1234 173.5 1366.5 c 128,-1,2 - 299 1499 299 1499 528 1499 c 0,3,4 - 691 1499 691 1499 791.5 1441.5 c 128,-1,5 - 892 1384 892 1384 944 1261 c 1,6,-1 - 812 1220 l 1,7,8 - 771 1304 771 1304 700.5 1343.5 c 128,-1,9 - 630 1383 630 1383 524 1383 c 0,10,11 - 363 1383 363 1383 277 1281 c 128,-1,12 - 191 1179 191 1179 191 992 c 0,13,14 - 191 807 191 807 282 699 c 128,-1,15 - 373 591 373 591 534 591 c 0,16,17 - 622 591 622 591 701.5 618.5 c 128,-1,18 - 781 646 781 646 834 697 c 1,19,-1 - 834 872 l 1,20,-1 - 548 872 l 1,21,-1 - 548 991 l 1,22,-1 - 964 991 l 1,23,-1 - 964 646 l 1,24,25 - 892 568 892 568 779.5 522 c 128,-1,26 - 667 476 667 476 534 476 c 0,27,28 - 305 476 305 476 176.5 613.5 c 128,-1,29 - 48 751 48 751 48 992 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D34 -Encoding: 7476 7476 1364 -Width: 878 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 8 - 0 - 0 - 11 - 7 - 3 - 3 - 4 - 11 - 4 - 13 - 12 - 7 - 2 - 229 - 89 - 7 - 7 - 4 - 9 - 5 - 230 - 0 - 4 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -690 490 m 1,0,-1 - 690 948 l 1,1,-1 - 187 948 l 1,2,-1 - 187 490 l 1,3,-1 - 46 490 l 1,4,-1 - 46 1484 l 1,5,-1 - 187 1484 l 1,6,-1 - 187 1066 l 1,7,-1 - 690 1066 l 1,8,-1 - 690 1484 l 1,9,-1 - 833 1484 l 1,10,-1 - 833 490 l 1,11,-1 - 690 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D35 -Encoding: 7477 7477 1365 -Width: 342 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 1 - 0 - 0 - 4 - 5 - 2 - 230 - 1 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -241 490 m 1,0,-1 - 99 490 l 1,1,-1 - 99 1484 l 1,2,-1 - 241 1484 l 1,3,-1 - 241 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D36 -Encoding: 7478 7478 1366 -Width: 644 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 9 - 14 - 3 - 2 - 2 - 12 - 14 - 3 - 18 - 17 - 3 - 3 - 0 - 12 - 12 - 11 - 229 - 89 - 12 - 230 - 0 - 6 - 229 - 89 - 0 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -311 476 m 0,0,1 - 65 476 65 476 17 741 c 1,2,-1 - 155 765 l 1,3,4 - 168 681 168 681 209 636 c 128,-1,5 - 250 591 250 591 312 591 c 0,6,7 - 379 591 379 591 418 640 c 128,-1,8 - 457 689 457 689 457 785 c 2,9,-1 - 457 1368 l 1,10,-1 - 274 1368 l 1,11,-1 - 274 1484 l 1,12,-1 - 598 1484 l 1,13,-1 - 598 788 l 2,14,15 - 598 644 598 644 522 560 c 128,-1,16 - 446 476 446 476 311 476 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D37 -Encoding: 7479 7479 1367 -Width: 870 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 1 - 10 - 7 - 9 - 7 - 3 - 3 - 4 - 8 - 9 - 9 - 0 - 11 - 4 - 11 - 12 - 13 - 2 - 7 - 10 - 7 - 1 - 3 - 4 - 8 - 5 - 230 - 0 - 4 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -686 490 m 1,0,-1 - 308 964 l 1,1,-1 - 190 871 l 1,2,-1 - 190 490 l 1,3,-1 - 49 490 l 1,4,-1 - 49 1484 l 1,5,-1 - 190 1484 l 1,6,-1 - 190 998 l 1,7,-1 - 641 1484 l 1,8,-1 - 805 1484 l 1,9,-1 - 396 1052 l 1,10,-1 - 859 490 l 1,11,-1 - 686 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D38 -Encoding: 7480 7480 1368 -Width: 720 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 0 - 0 - 4 - 6 - 7 - 1 - 230 - 0 - 3 - 229 - 89 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -45 490 m 1,0,-1 - 45 1484 l 1,1,-1 - 186 1484 l 1,2,-1 - 186 606 l 1,3,-1 - 668 606 l 1,4,-1 - 668 490 l 1,5,-1 - 45 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D39 -Encoding: 7481 7481 1369 -Width: 1045 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 15 - 12 - 12 - 13 - 21 - 0 - 0 - 23 - 23 - 18 - 13 - 3 - 24 - 25 - 21 - 230 - 3 - 10 - 18 - 3 - 13 - 14 - 230 - 7 - 0 - 13 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -863 490 m 1,0,-1 - 863 1153 l 2,1,2 - 863 1275 863 1275 866 1311 c 1,3,4 - 862 1290 862 1290 845.5 1238.5 c 128,-1,5 - 829 1187 829 1187 574 490 c 1,6,-1 - 474 490 l 1,7,-1 - 223 1166 l 2,8,9 - 193 1243 193 1243 176 1311 c 1,10,-1 - 179 1153 l 1,11,-1 - 179 490 l 1,12,-1 - 52 490 l 1,13,-1 - 52 1484 l 1,14,-1 - 233 1484 l 1,15,-1 - 488 798 l 2,16,17 - 497 774 497 774 525 668 c 1,18,-1 - 534 701 l 1,19,-1 - 564 798 l 1,20,-1 - 815 1484 l 1,21,-1 - 991 1484 l 1,22,-1 - 991 490 l 1,23,-1 - 863 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D3A -Encoding: 7482 7482 1370 -Width: 881 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 6 - 3 - 3 - 4 - 0 - 9 - 9 - 12 - 4 - 12 - 13 - 14 - 7 - 1 - 4 - 10 - 5 - 230 - 0 - 4 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -667 490 m 1,0,-1 - 168 1312 l 1,1,-1 - 173 1150 l 1,2,-1 - 173 490 l 1,3,-1 - 46 490 l 1,4,-1 - 46 1484 l 1,5,-1 - 206 1484 l 1,6,-1 - 710 657 l 1,7,8 - 704 741 704 741 704 833 c 2,9,-1 - 704 1484 l 1,10,-1 - 833 1484 l 1,11,-1 - 833 490 l 1,12,-1 - 667 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D3B -Encoding: 7483 7483 1371 -Width: 879 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 13 - 3 - 3 - 0 - 6 - 9 - 9 - 8 - 0 - 8 - 14 - 15 - 5 - 12 - 6 - 1 - 230 - 9 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -46 490 m 1,0,-1 - 46 1484 l 1,1,-1 - 174 1484 l 1,2,-1 - 174 833 l 2,3,4 - 174 819 174 819 168 657 c 1,5,-1 - 672 1484 l 1,6,-1 - 833 1484 l 1,7,-1 - 833 490 l 1,8,-1 - 705 490 l 1,9,-1 - 705 1150 l 2,10,11 - 705 1240 705 1240 710 1312 c 1,12,-1 - 212 490 l 1,13,-1 - 46 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D3C -Encoding: 7484 7484 1372 -Width: 1048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 18 - 6 - 12 - 0 - 6 - 0 - 24 - 25 - 9 - 15 - 229 - 89 - 9 - 231 - 3 - 21 - 229 - 89 - 3 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1001 992 m 256,0,1 - 1001 754 1001 754 873.5 615 c 128,-1,2 - 746 476 746 476 521 476 c 0,3,4 - 298 476 298 476 170.5 613 c 128,-1,5 - 43 750 43 750 43 992 c 0,6,7 - 43 1231 43 1231 170 1365 c 128,-1,8 - 297 1499 297 1499 523 1499 c 0,9,10 - 746 1499 746 1499 873.5 1364.5 c 128,-1,11 - 1001 1230 1001 1230 1001 992 c 256,0,1 -857 992 m 0,12,13 - 857 1178 857 1178 767.5 1280.5 c 128,-1,14 - 678 1383 678 1383 523 1383 c 0,15,16 - 364 1383 364 1383 275 1281 c 128,-1,17 - 186 1179 186 1179 186 992 c 0,18,19 - 186 807 186 807 275 699 c 128,-1,20 - 364 591 364 591 521 591 c 0,21,22 - 682 591 682 591 769.5 695 c 128,-1,23 - 857 799 857 799 857 992 c 0,12,13 -EndSplineSet -EndChar - -StartChar: uni1D3D -Encoding: 7485 7485 1373 -Width: 783 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 19 - 7 - 4 - 23 - 22 - 22 - 29 - 16 - 3 - 4 - 4 - 35 - 10 - 16 - 10 - 38 - 39 - 19 - 7 - 0 - 26 - 0 - 26 - 228 - 89 - 0 - 0 - 13 - 3 - 22 - 13 - 32 - 228 - 89 - 13 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -392 1220 m 0,0,1 - 475 1220 475 1220 524 1284 c 128,-1,2 - 573 1348 573 1348 573 1460 c 1,3,-1 - 702 1460 l 1,4,5 - 702 1352 702 1352 660.5 1271 c 128,-1,6 - 619 1190 619 1190 548 1163 c 1,7,8 - 634 1136 634 1136 682.5 1051.5 c 128,-1,9 - 731 967 731 967 731 846 c 0,10,11 - 731 657 731 657 648 567 c 128,-1,12 - 565 477 565 477 390 477 c 0,13,14 - 217 477 217 477 134.5 567.5 c 128,-1,15 - 52 658 52 658 52 846 c 0,16,17 - 52 969 52 969 100 1053 c 128,-1,18 - 148 1137 148 1137 235 1166 c 1,19,20 - 163 1189 163 1189 122 1267.5 c 128,-1,21 - 81 1346 81 1346 81 1460 c 1,22,-1 - 209 1460 l 1,23,24 - 209 1342 209 1342 256 1281 c 128,-1,25 - 303 1220 303 1220 392 1220 c 0,0,1 -392 1121 m 0,26,27 - 293 1121 293 1121 235.5 1047 c 128,-1,28 - 178 973 178 973 178 853 c 0,29,30 - 178 706 178 706 228.5 639.5 c 128,-1,31 - 279 573 279 573 392 573 c 256,32,33 - 505 573 505 573 554.5 641 c 128,-1,34 - 604 709 604 709 604 853 c 0,35,36 - 604 973 604 973 547 1047 c 128,-1,37 - 490 1121 490 1121 392 1121 c 0,26,27 -EndSplineSet -EndChar - -StartChar: uni1D3E -Encoding: 7486 7486 1374 -Width: 857 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 15 - 5 - 5 - 6 - 11 - 0 - 6 - 0 - 18 - 19 - 15 - 4 - 229 - 89 - 15 - 15 - 6 - 7 - 7 - 14 - 229 - 89 - 7 - 230 - 6 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -795 1183 m 0,0,1 - 795 1042 795 1042 705 958.5 c 128,-1,2 - 615 875 615 875 461 875 c 2,3,-1 - 186 875 l 1,4,-1 - 186 490 l 1,5,-1 - 45 490 l 1,6,-1 - 45 1484 l 1,7,-1 - 453 1484 l 2,8,9 - 619 1484 619 1484 707 1403.5 c 128,-1,10 - 795 1323 795 1323 795 1183 c 0,0,1 -654 1182 m 0,11,12 - 654 1370 654 1370 437 1370 c 2,13,-1 - 186 1370 l 1,14,-1 - 186 987 l 1,15,-1 - 443 987 l 2,16,17 - 654 987 654 987 654 1182 c 0,11,12 -EndSplineSet -EndChar - -StartChar: uni1D3F -Encoding: 7487 7487 1375 -Width: 924 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 1 - 12 - 18 - 13 - 18 - 3 - 3 - 4 - 0 - 13 - 13 - 14 - 9 - 4 - 9 - 22 - 23 - 12 - 2 - 18 - 2 - 229 - 89 - 15 - 18 - 1 - 12 - 3 - 18 - 18 - 4 - 5 - 5 - 17 - 229 - 89 - 5 - 230 - 0 - 4 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -721 490 m 1,0,-1 - 474 900 l 1,1,-1 - 186 900 l 1,2,-1 - 186 490 l 1,3,-1 - 45 490 l 1,4,-1 - 45 1484 l 1,5,-1 - 500 1484 l 2,6,7 - 666 1484 666 1484 754 1408 c 128,-1,8 - 842 1332 842 1332 842 1198 c 0,9,10 - 842 1089 842 1089 780.5 1013.5 c 128,-1,11 - 719 938 719 938 611 917 c 1,12,-1 - 882 490 l 1,13,-1 - 721 490 l 1,0,-1 -700 1197 m 0,14,15 - 700 1370 700 1370 487 1370 c 2,16,-1 - 186 1370 l 1,17,-1 - 186 1012 l 1,18,-1 - 493 1012 l 2,19,20 - 588 1012 588 1012 644 1059.5 c 128,-1,21 - 700 1107 700 1107 700 1197 c 0,14,15 -EndSplineSet -EndChar - -StartChar: uni1D40 -Encoding: 7488 7488 1376 -Width: 886 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 1 - 2 - 6 - 2 - 4 - 3 - 8 - 9 - 0 - 4 - 5 - 4 - 229 - 89 - 5 - 230 - 2 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -510 1368 m 1,0,-1 - 510 490 l 1,1,-1 - 370 490 l 1,2,-1 - 370 1368 l 1,3,-1 - 42 1368 l 1,4,-1 - 42 1484 l 1,5,-1 - 838 1484 l 1,6,-1 - 838 1368 l 1,7,-1 - 510 1368 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D41 -Encoding: 7489 7489 1377 -Width: 879 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 3 - 12 - 15 - 3 - 15 - 18 - 19 - 13 - 4 - 230 - 0 - 9 - 229 - 89 - 0 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -433 476 m 0,0,1 - 251 476 251 476 145 576.5 c 128,-1,2 - 39 677 39 677 39 852 c 2,3,-1 - 39 1484 l 1,4,-1 - 180 1484 l 1,5,-1 - 180 863 l 2,6,7 - 180 730 180 730 244.5 660.5 c 128,-1,8 - 309 591 309 591 433 591 c 0,9,10 - 561 591 561 591 629 663.5 c 128,-1,11 - 697 736 697 736 697 872 c 2,12,-1 - 697 1484 l 1,13,-1 - 838 1484 l 1,14,-1 - 838 865 l 2,15,16 - 838 685 838 685 730 580.5 c 128,-1,17 - 622 476 622 476 433 476 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D42 -Encoding: 7490 7490 1378 -Width: 1275 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 20 - 18 - 11 - 9 - 4 - 21 - 22 - 14 - 230 - 11 - 18 - 4 - 3 - 8 - 19 - 9 - 230 - 1 - 8 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1009 490 m 1,0,-1 - 845 490 l 1,1,-1 - 678 1120 l 2,2,3 - 656 1200 656 1200 637 1330 c 1,4,5 - 623 1232 623 1232 595 1120 c 2,6,-1 - 428 490 l 1,7,-1 - 264 490 l 1,8,-1 - 1 1484 l 1,9,-1 - 149 1484 l 1,10,-1 - 351 637 l 1,11,-1 - 375 750 l 1,12,-1 - 404 867 l 1,13,-1 - 570 1484 l 1,14,-1 - 704 1484 l 1,15,-1 - 871 867 l 2,16,17 - 908 725 908 725 925 639 c 1,18,-1 - 1125 1484 l 1,19,-1 - 1272 1484 l 1,20,-1 - 1009 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D43 -Encoding: 7491 7491 1379 -Width: 762 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 58 - 45 - 3 - 14 - 15 - 32 - 8 - 40 - 40 - 27 - 21 - 21 - 15 - 3 - 3 - 48 - 49 - 32 - 6 - 29 - 6 - 42 - 228 - 89 - 6 - 6 - 0 - 17 - 15 - 14 - 31 - 14 - 47 - 14 - 3 - 15 - 3 - 14 - 14 - 17 - 17 - 11 - 228 - 89 - 17 - 236 - 29 - 24 - 228 - 89 - 29 - 29 - 0 - 0 - 36 - 228 - 89 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -282 476 m 0,0,1 - 170 476 170 476 114.5 536.5 c 128,-1,2 - 59 597 59 597 59 703 c 0,3,4 - 59 823 59 823 136 886 c 128,-1,5 - 213 949 213 949 377 952 c 2,6,-1 - 542 955 l 1,7,-1 - 542 997 l 2,8,9 - 542 1092 542 1092 503.5 1131 c 128,-1,10 - 465 1170 465 1170 384 1170 c 256,11,12 - 303 1170 303 1170 265 1141 c 128,-1,13 - 227 1112 227 1112 220 1049 c 1,14,-1 - 92 1061 l 1,15,16 - 124 1267 124 1267 387 1267 c 0,17,18 - 525 1267 525 1267 595.5 1201 c 128,-1,19 - 666 1135 666 1135 666 1010 c 2,20,-1 - 666 682 l 2,21,22 - 666 625 666 625 680 596.5 c 128,-1,23 - 694 568 694 568 734 568 c 0,24,25 - 753 568 753 568 775 573 c 1,26,-1 - 775 494 l 1,27,28 - 724 483 724 483 680 483 c 0,29,30 - 610 483 610 483 580.5 521 c 128,-1,31 - 551 559 551 559 546 636 c 1,32,-1 - 542 636 l 1,33,34 - 495 550 495 550 434.5 513 c 128,-1,35 - 374 476 374 476 282 476 c 0,0,1 -310 571 m 0,36,37 - 376 571 376 571 428.5 603 c 128,-1,38 - 481 635 481 635 511.5 689.5 c 128,-1,39 - 542 744 542 744 542 804 c 2,40,-1 - 542 866 l 1,41,-1 - 408 864 l 2,42,43 - 283 861 283 861 234 821.5 c 128,-1,44 - 185 782 185 782 185 701 c 0,45,46 - 185 638 185 638 217.5 604.5 c 128,-1,47 - 250 571 250 571 310 571 c 0,36,37 -EndSplineSet -EndChar - -StartChar: uni1D44 -Encoding: 7492 7492 1380 -Width: 762 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 41 - 32 - 8 - 8 - 26 - 20 - 14 - 15 - 45 - 3 - 3 - 15 - 20 - 3 - 48 - 49 - 41 - 7 - 228 - 89 - 32 - 41 - 64 - 9 - 12 - 72 - 41 - 41 - 29 - 17 - 29 - 24 - 228 - 89 - 29 - 236 - 14 -PUSHW_1 - -64 -NPUSHB - 18 - 14 - 17 - 72 - 14 - 14 - 17 - 17 - 11 - 228 - 89 - 17 - 233 - 0 - 36 - 228 - 89 - 0 - 236 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -473 1267 m 0,0,1 - 585 1267 585 1267 640.5 1206.5 c 128,-1,2 - 696 1146 696 1146 696 1040 c 0,3,4 - 696 920 696 920 619 857 c 128,-1,5 - 542 794 542 794 378 791 c 2,6,-1 - 213 788 l 1,7,-1 - 213 746 l 2,8,9 - 213 651 213 651 251.5 612 c 128,-1,10 - 290 573 290 573 371 573 c 0,11,12 - 449 573 449 573 487 599.5 c 128,-1,13 - 525 626 525 626 535 694 c 1,14,-1 - 663 682 l 1,15,16 - 631 476 631 476 368 476 c 0,17,18 - 230 476 230 476 159.5 542 c 128,-1,19 - 89 608 89 608 89 733 c 2,20,-1 - 89 1061 l 2,21,22 - 89 1118 89 1118 75 1146.5 c 128,-1,23 - 61 1175 61 1175 21 1175 c 0,24,25 - 2 1175 2 1175 -20 1170 c 1,26,-1 - -20 1249 l 1,27,28 - 31 1260 31 1260 75 1260 c 0,29,30 - 145 1260 145 1260 174.5 1222 c 128,-1,31 - 204 1184 204 1184 209 1107 c 1,32,-1 - 213 1107 l 1,33,34 - 255 1190 255 1190 317.5 1228.5 c 128,-1,35 - 380 1267 380 1267 473 1267 c 0,0,1 -445 1172 m 0,36,37 - 377 1172 377 1172 324.5 1139.5 c 128,-1,38 - 272 1107 272 1107 242.5 1052 c 128,-1,39 - 213 997 213 997 213 939 c 2,40,-1 - 213 877 l 1,41,-1 - 347 879 l 2,42,43 - 472 882 472 882 521 921.5 c 128,-1,44 - 570 961 570 961 570 1042 c 0,45,46 - 570 1105 570 1105 537.5 1138.5 c 128,-1,47 - 505 1172 505 1172 445 1172 c 0,36,37 -EndSplineSet -EndChar - -StartChar: uni1D45 -Encoding: 7493 7493 1381 -Width: 772 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 29 - 12 - 22 - 22 - 17 - 23 - 6 - 17 - 6 - 36 - 35 - 14 - 235 - 11 - 0 - 8 - 3 - 8 - 32 - 228 - 89 - 8 - 236 - 3 - 26 - 228 - 89 - 20 - 3 - 233 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -559 613 m 1,0,1 - 524 539 524 539 468.5 507.5 c 128,-1,2 - 413 476 413 476 329 476 c 0,3,4 - 189 476 189 476 124 573 c 128,-1,5 - 59 670 59 670 59 868 c 0,6,7 - 59 1266 59 1266 329 1266 c 0,8,9 - 413 1266 413 1266 469 1233.5 c 128,-1,10 - 525 1201 525 1201 560 1132 c 1,11,-1 - 561 1132 l 1,12,13 - 561 1183 561 1183 568 1253 c 1,14,-1 - 685 1253 l 1,15,-1 - 681 1117 l 1,16,-1 - 681 647 l 2,17,18 - 681 546 681 546 685 490 c 1,19,-1 - 568 490 l 1,20,21 - 562 532 562 532 562 613 c 1,22,-1 - 559 613 l 1,0,1 -187 872 m 0,23,24 - 187 711 187 711 227.5 642.5 c 128,-1,25 - 268 574 268 574 361 574 c 0,26,27 - 465 574 465 574 512 649 c 128,-1,28 - 559 724 559 724 559 881 c 0,29,30 - 559 1032 559 1032 512 1102 c 128,-1,31 - 465 1172 465 1172 362 1172 c 0,32,33 - 270 1172 270 1172 228.5 1102 c 128,-1,34 - 187 1032 187 1032 187 872 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni1D46 -Encoding: 7494 7494 1382 -Width: 1228 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 53 - 8 - 40 - 13 - 35 - 59 - 52 - 24 - 24 - 1 - 59 - 45 - 31 - 19 - 19 - 59 - 40 - 3 - 60 - 61 - 40 - 53 - 228 - 89 - 40 - 40 - 37 - 11 - 41 - 23 - 228 - 89 - 13 - 16 - 35 - 33 - 41 - 64 - 9 - 12 - 72 - 41 - 41 - 16 - 33 - 30 -PUSHW_1 - -64 -NPUSHB - 34 - 14 - 17 - 72 - 30 - 30 - 33 - 33 - 27 - 228 - 89 - 33 - 33 - 37 - 37 - 56 - 228 - 89 - 37 - 233 - 16 - 48 - 228 - 89 - 16 - 236 - 7 - 7 - 11 - 11 - 4 - 228 - 89 - 11 - 236 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP2 -IP -SRP2 -IP -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -564 898 m 1,0,-1 - 564 910 l 2,1,2 - 562 1040 562 1040 510.5 1106 c 128,-1,3 - 459 1172 459 1172 365 1172 c 0,4,5 - 285 1172 285 1172 237 1139 c 128,-1,6 - 189 1106 189 1106 172 1055 c 1,7,-1 - 65 1087 l 1,8,9 - 102 1182 102 1182 178 1224.5 c 128,-1,10 - 254 1267 254 1267 365 1267 c 0,11,12 - 582 1267 582 1267 653 1086 c 1,13,14 - 708 1185 708 1185 779 1226 c 128,-1,15 - 850 1267 850 1267 949 1267 c 0,16,17 - 1063 1267 1063 1267 1120 1206.5 c 128,-1,18 - 1177 1146 1177 1146 1177 1040 c 0,19,20 - 1177 920 1177 920 1099 857 c 128,-1,21 - 1021 794 1021 794 850 791 c 2,22,-1 - 687 788 l 1,23,-1 - 687 746 l 2,24,25 - 687 651 687 651 725 612 c 128,-1,26 - 763 573 763 573 845 573 c 256,27,28 - 927 573 927 573 966.5 600 c 128,-1,29 - 1006 627 1006 627 1016 694 c 1,30,-1 - 1145 682 l 1,31,32 - 1113 476 1113 476 843 476 c 0,33,34 - 672 476 672 476 605 574 c 1,35,36 - 524 476 524 476 370 476 c 0,37,38 - 45 476 45 476 45 881 c 2,39,-1 - 45 898 l 1,40,-1 - 564 898 l 1,0,-1 -687 877 m 1,41,-1 - 820 879 l 2,42,43 - 948 882 948 882 999.5 923 c 128,-1,44 - 1051 964 1051 964 1051 1042 c 0,45,46 - 1051 1103 1051 1103 1017 1137.5 c 128,-1,47 - 983 1172 983 1172 920 1172 c 0,48,49 - 850 1172 850 1172 797 1139.5 c 128,-1,50 - 744 1107 744 1107 715.5 1053 c 128,-1,51 - 687 999 687 999 687 939 c 2,52,-1 - 687 877 l 1,41,-1 -171 801 m 1,53,54 - 182 680 182 680 230.5 625 c 128,-1,55 - 279 570 279 570 372 570 c 0,56,57 - 458 570 458 570 507.5 630.5 c 128,-1,58 - 557 691 557 691 562 801 c 1,59,-1 - 171 801 l 1,53,54 -EndSplineSet -EndChar - -StartChar: uni1D47 -Encoding: 7495 7495 1383 -Width: 773 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 17 - 5 - 31 - 31 - 14 - 25 - 0 - 14 - 0 - 37 - 38 - 18 - 5 - 22 - 2 - 22 - 28 - 228 - 89 - 22 - 236 - 15 - 234 - 2 - 34 - 228 - 89 - 12 - 2 - 233 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -716 875 m 0,0,1 - 716 476 716 476 446 476 c 0,2,3 - 362 476 362 476 306.5 507.5 c 128,-1,4 - 251 539 251 539 216 608 c 1,5,-1 - 215 608 l 1,6,7 - 215 590 215 590 214 570.5 c 128,-1,8 - 213 551 213 551 212 534 c 128,-1,9 - 211 517 211 517 209.5 505 c 128,-1,10 - 208 493 208 493 208 490 c 2,11,-1 - 90 490 l 1,12,13 - 94 546 94 546 94 647 c 2,14,-1 - 94 1536 l 1,15,-1 - 216 1536 l 1,16,-1 - 216 1238 l 1,17,-1 - 213 1130 l 1,18,-1 - 216 1130 l 1,19,20 - 251 1204 251 1204 306.5 1235.5 c 128,-1,21 - 362 1267 362 1267 446 1267 c 0,22,23 - 586 1267 586 1267 651 1170 c 128,-1,24 - 716 1073 716 1073 716 875 c 0,0,1 -588 871 m 0,25,26 - 588 1028 588 1028 547.5 1098.5 c 128,-1,27 - 507 1169 507 1169 414 1169 c 0,28,29 - 310 1169 310 1169 263 1095.5 c 128,-1,30 - 216 1022 216 1022 216 863 c 0,31,32 - 216 712 216 712 263 641 c 128,-1,33 - 310 570 310 570 413 570 c 0,34,35 - 505 570 505 570 546.5 640 c 128,-1,36 - 588 710 588 710 588 871 c 0,25,26 -EndSplineSet -EndChar - -StartChar: uni1D48 -Encoding: 7496 7496 1384 -Width: 773 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 23 - 6 - 29 - 14 - 22 - 22 - 19 - 17 - 6 - 17 - 35 - 36 - 15 - 234 - 13 - 0 - 8 - 3 - 8 - 32 - 228 - 89 - 8 - 236 - 3 - 26 - 228 - 89 - 20 - 3 - 233 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -559 613 m 1,0,1 - 524 539 524 539 468.5 507.5 c 128,-1,2 - 413 476 413 476 329 476 c 0,3,4 - 189 476 189 476 124 573 c 128,-1,5 - 59 670 59 670 59 868 c 0,6,7 - 59 1267 59 1267 329 1267 c 0,8,9 - 413 1267 413 1267 468.5 1235 c 128,-1,10 - 524 1203 524 1203 559 1134 c 1,11,-1 - 560 1134 l 1,12,-1 - 560 1157 l 1,13,-1 - 559 1220 l 1,14,-1 - 559 1536 l 1,15,-1 - 681 1536 l 1,16,-1 - 681 647 l 2,17,18 - 681 546 681 546 685 490 c 1,19,-1 - 568 490 l 1,20,21 - 562 532 562 532 562 613 c 1,22,-1 - 559 613 l 1,0,1 -187 872 m 256,23,24 - 187 711 187 711 227.5 642.5 c 128,-1,25 - 268 574 268 574 361 574 c 0,26,27 - 465 574 465 574 512 649 c 128,-1,28 - 559 724 559 724 559 881 c 0,29,30 - 559 1032 559 1032 512 1102.5 c 128,-1,31 - 465 1173 465 1173 362 1173 c 0,32,33 - 270 1173 270 1173 228.5 1103 c 128,-1,34 - 187 1033 187 1033 187 872 c 256,23,24 -EndSplineSet -EndChar - -StartChar: uni1D49 -Encoding: 7497 7497 1385 -Width: 761 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 6 - 7 - 7 - 20 - 19 - 26 - 0 - 0 - 13 - 19 - 13 - 28 - 27 - 6 - 6 - 0 - 3 - 26 - 0 - 228 - 89 - 26 - 64 - 9 - 12 - 72 - 26 - 26 - 10 - 16 - 16 - 23 - 228 - 89 - 16 - 236 - 10 - 3 - 228 - 89 - 10 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -188 845 m 1,0,1 - 188 713 188 713 240.5 642 c 128,-1,2 - 293 571 293 571 393 571 c 0,3,4 - 473 571 473 571 521 604 c 128,-1,5 - 569 637 569 637 586 688 c 1,6,-1 - 693 656 l 1,7,8 - 662 565 662 565 584 520.5 c 128,-1,9 - 506 476 506 476 393 476 c 0,10,11 - 229 476 229 476 144 576 c 128,-1,12 - 59 676 59 676 59 876 c 0,13,14 - 59 1065 59 1065 144 1166 c 128,-1,15 - 229 1267 229 1267 389 1267 c 0,16,17 - 713 1267 713 1267 713 862 c 2,18,-1 - 713 845 l 1,19,-1 - 188 845 l 1,0,1 -587 942 m 1,20,21 - 576 1063 576 1063 527.5 1118 c 128,-1,22 - 479 1173 479 1173 386 1173 c 0,23,24 - 297 1173 297 1173 245.5 1112.5 c 128,-1,25 - 194 1052 194 1052 189 942 c 1,26,-1 - 587 942 l 1,20,21 -EndSplineSet -EndChar - -StartChar: uni1D4A -Encoding: 7498 7498 1386 -Width: 761 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 19 - 7 - 18 - 0 - 25 - 25 - 12 - 18 - 12 - 26 - 27 - 18 - 19 - 228 - 89 - 18 - 6 - 18 - 6 - 15 - 9 - 15 - 22 - 228 - 89 - 15 - 233 - 9 - 3 - 228 - 89 - 9 - 236 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -584 898 m 1,0,1 - 584 1030 584 1030 531.5 1101 c 128,-1,2 - 479 1172 479 1172 379 1172 c 0,3,4 - 299 1172 299 1172 251 1139 c 128,-1,5 - 203 1106 203 1106 186 1055 c 1,6,-1 - 79 1087 l 1,7,8 - 143 1267 143 1267 379 1267 c 0,9,10 - 543 1267 543 1267 628 1167 c 128,-1,11 - 713 1067 713 1067 713 867 c 0,12,13 - 713 678 713 678 628 577 c 128,-1,14 - 543 476 543 476 383 476 c 0,15,16 - 59 476 59 476 59 881 c 2,17,-1 - 59 898 l 1,18,-1 - 584 898 l 1,0,1 -185 801 m 1,19,20 - 196 680 196 680 244.5 625 c 128,-1,21 - 293 570 293 570 386 570 c 0,22,23 - 475 570 475 570 526.5 630.5 c 128,-1,24 - 578 691 578 691 583 801 c 1,25,-1 - 185 801 l 1,19,20 -EndSplineSet -EndChar - -StartChar: uni1D4B -Encoding: 7499 7499 1387 -Width: 652 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 6 - 24 - 15 - 21 - 10 - 10 - 26 - 3 - 16 - 15 - 15 - 32 - 3 - 32 - 35 - 36 - 31 - 31 - 0 - 6 - 23 - 24 - 23 - 24 - 228 - 89 - 16 - 16 - 13 - 15 - 23 - 1 - 30 - 3 - 23 - 64 - 9 - 12 - 72 - 23 - 23 - 0 - 13 - 13 - 18 - 228 - 89 - 13 - 236 - 0 - 29 - 228 - 89 - 0 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SDS -SDB -DELTAP1 -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP2 -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -331 476 m 0,0,1 - 202 476 202 476 129 537 c 128,-1,2 - 56 598 56 598 56 704 c 0,3,4 - 56 779 56 779 107 830.5 c 128,-1,5 - 158 882 158 882 243 891 c 1,6,-1 - 243 893 l 1,7,8 - 171 900 171 900 123 948 c 128,-1,9 - 75 996 75 996 75 1066 c 0,10,11 - 75 1156 75 1156 145.5 1211.5 c 128,-1,12 - 216 1267 216 1267 328 1267 c 0,13,14 - 555 1267 555 1267 585 1085 c 1,15,-1 - 475 1071 l 1,16,17 - 458 1172 458 1172 329 1172 c 0,18,19 - 266 1172 266 1172 232.5 1142 c 128,-1,20 - 199 1112 199 1112 199 1060 c 0,21,22 - 199 938 199 938 411 938 c 1,23,-1 - 411 842 l 1,24,25 - 187 842 187 842 187 701 c 0,26,27 - 187 637 187 637 225.5 603.5 c 128,-1,28 - 264 570 264 570 328 570 c 0,29,30 - 465 570 465 570 501 686 c 1,31,-1 - 609 655 l 1,32,33 - 579 564 579 564 512.5 520 c 128,-1,34 - 446 476 446 476 331 476 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D4C -Encoding: 7500 7500 1388 -Width: 652 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 11 - 29 - 26 - 20 - 21 - 21 - 4 - 3 - 14 - 26 - 26 - 9 - 33 - 3 - 33 - 36 - 37 - 29 - 12 - 4 - 4 - 11 - 0 - 12 - 11 - 228 - 89 - 15 - 12 - 1 - 30 - 3 - 12 - 64 - 9 - 12 - 72 - 20 - 12 - 20 - 12 - 23 - 0 - 23 - 17 - 228 - 89 - 23 - 236 - 0 - 6 - 228 - 89 - 0 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -326 476 m 0,0,1 - 211 476 211 476 144.5 520 c 128,-1,2 - 78 564 78 564 48 655 c 1,3,-1 - 156 686 l 1,4,5 - 192 570 192 570 329 570 c 0,6,7 - 393 570 393 570 431.5 603.5 c 128,-1,8 - 470 637 470 637 470 701 c 0,9,10 - 470 842 470 842 246 842 c 1,11,-1 - 246 938 l 1,12,13 - 458 938 458 938 458 1060 c 0,14,15 - 458 1112 458 1112 424.5 1142 c 128,-1,16 - 391 1172 391 1172 328 1172 c 0,17,18 - 264 1172 264 1172 226.5 1145.5 c 128,-1,19 - 189 1119 189 1119 182 1071 c 1,20,-1 - 72 1085 l 1,21,22 - 102 1267 102 1267 329 1267 c 0,23,24 - 442 1267 442 1267 512 1211.5 c 128,-1,25 - 582 1156 582 1156 582 1066 c 0,26,27 - 582 995 582 995 533 947.5 c 128,-1,28 - 484 900 484 900 414 893 c 1,29,-1 - 414 891 l 1,30,31 - 499 882 499 882 550 830 c 128,-1,32 - 601 778 601 778 601 704 c 0,33,34 - 601 598 601 598 527.5 537 c 128,-1,35 - 454 476 454 476 326 476 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D4D -Encoding: 7501 7501 1389 -Width: 772 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 52 - 32 - 22 - 8 - 8 - 28 - 26 - 29 - 4 - 3 - 3 - 38 - 15 - 29 - 15 - 45 - 44 - 25 - 235 - 21 - 9 - 18 - 4 - 4 - 12 - 0 - 12 - 41 - 228 - 89 - 15 - 12 - 31 - 12 - 2 - 9 - 3 - 12 - 12 - 0 - 18 - 18 - 35 - 228 - 89 - 18 - 236 - 0 - 6 - 228 - 89 - 0 - 237 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -IP -IP -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -372 190 m 0,0,1 - 246 190 246 190 177 242 c 128,-1,2 - 108 294 108 294 89 379 c 1,3,-1 - 212 397 l 1,4,5 - 238 287 238 287 376 287 c 0,6,7 - 560 287 560 287 560 509 c 2,8,-1 - 560 632 l 1,9,-1 - 558 632 l 1,10,11 - 487 484 487 484 321 484 c 0,12,13 - 181 484 181 484 120 581.5 c 128,-1,14 - 59 679 59 679 59 870 c 0,15,16 - 59 1074 59 1074 128 1169.5 c 128,-1,17 - 197 1265 197 1265 335 1265 c 0,18,19 - 413 1265 413 1265 470.5 1228 c 128,-1,20 - 528 1191 528 1191 560 1122 c 1,21,-1 - 562 1122 l 1,22,23 - 562 1158 562 1158 565.5 1204 c 128,-1,24 - 569 1250 569 1250 571 1253 c 2,25,-1 - 685 1253 l 1,26,-1 - 684 1232 l 1,27,-1 - 681 1095 l 1,28,-1 - 681 512 l 2,29,30 - 681 351 681 351 605.5 270.5 c 128,-1,31 - 530 190 530 190 372 190 c 0,0,1 -560 871 m 0,32,33 - 560 1011 560 1011 506.5 1090.5 c 128,-1,34 - 453 1170 453 1170 365 1170 c 0,35,36 - 271 1170 271 1170 228 1100 c 128,-1,37 - 185 1030 185 1030 185 871 c 256,38,39 - 185 712 185 712 226 645 c 128,-1,40 - 267 578 267 578 363 578 c 0,41,42 - 452 578 452 578 506 656.5 c 128,-1,43 - 560 735 560 735 560 871 c 0,32,33 -EndSplineSet -EndChar - -StartChar: uni1D4E -Encoding: 7502 7502 1390 -Width: 322 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 2 - 2 - 5 - 1 - 1 - 9 - 8 - 7 - 235 - 2 - 3 - 229 - 89 - 2 - 6 - 232 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,white] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -215 328 m 1,0,-1 - 215 207 l 1,1,-1 - 94 207 l 1,2,-1 - 94 328 l 1,3,-1 - 215 328 l 1,0,-1 -215 1253 m 1,4,-1 - 215 490 l 1,5,-1 - 94 490 l 1,6,-1 - 94 1253 l 1,7,-1 - 215 1253 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni1D4F -Encoding: 7503 7503 1391 -Width: 694 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 1 - 10 - 7 - 8 - 9 - 9 - 0 - 11 - 11 - 13 - 7 - 3 - 3 - 4 - 4 - 12 - 13 - 2 - 7 - 10 - 7 - 1 - 3 - 4 - 8 - 235 - 5 - 234 - 0 - 4 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -555 490 m 1,0,-1 - 306 838 l 1,1,-1 - 216 761 l 1,2,-1 - 216 490 l 1,3,-1 - 94 490 l 1,4,-1 - 94 1536 l 1,5,-1 - 216 1536 l 1,6,-1 - 216 883 l 1,7,-1 - 539 1253 l 1,8,-1 - 683 1253 l 1,9,-1 - 384 925 l 1,10,-1 - 699 490 l 1,11,-1 - 555 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D50 -Encoding: 7504 7504 1392 -Width: 1173 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 13 - 8 - 8 - 9 - 37 - 0 - 29 - 28 - 28 - 0 - 9 - 3 - 38 - 39 - 24 - 33 - 228 - 89 - 24 - 236 - 21 - 14 - 18 - 0 - 18 - 4 - 228 - 89 - 18 - 236 - 11 - 235 - 0 - 29 - 9 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -522 490 m 1,0,-1 - 522 974 l 2,1,2 - 522 1081 522 1081 494 1125 c 128,-1,3 - 466 1169 466 1169 388 1169 c 256,4,5 - 310 1169 310 1169 264 1108 c 128,-1,6 - 218 1047 218 1047 218 932 c 2,7,-1 - 218 490 l 1,8,-1 - 96 490 l 1,9,-1 - 96 1090 l 1,10,-1 - 93 1253 l 1,11,-1 - 208 1253 l 1,12,-1 - 213 1157 l 1,13,-1 - 213 1122 l 1,14,-1 - 215 1122 l 1,15,16 - 253 1200 253 1200 303.5 1233.5 c 128,-1,17 - 354 1267 354 1267 430 1267 c 0,18,19 - 514 1267 514 1267 562.5 1232 c 128,-1,20 - 611 1197 611 1197 631 1122 c 1,21,-1 - 633 1122 l 1,22,23 - 700 1267 700 1267 856 1267 c 0,24,25 - 968 1267 968 1267 1018.5 1203.5 c 128,-1,26 - 1069 1140 1069 1140 1069 998 c 2,27,-1 - 1069 490 l 1,28,-1 - 948 490 l 1,29,-1 - 948 974 l 2,30,31 - 948 1081 948 1081 920 1125 c 128,-1,32 - 892 1169 892 1169 813 1169 c 0,33,34 - 735 1169 735 1169 689.5 1109.5 c 128,-1,35 - 644 1050 644 1050 644 932 c 2,36,-1 - 644 490 l 1,37,-1 - 522 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D51 -Encoding: 7505 7505 1393 -Width: 783 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 22 - 17 - 17 - 18 - 9 - 0 - 0 - 4 - 18 - 3 - 31 - 32 - 27 - 13 - 228 - 89 - 27 - 236 - 23 - 18 - 20 - 235 - 18 - 232 - 2 - 7 - 229 - 89 - 2 - 237 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -684 399 m 2,0,1 - 684 190 684 190 493 190 c 0,2,3 - 452 190 452 190 410 200 c 1,4,-1 - 410 316 l 1,5,6 - 437 305 437 305 482 305 c 0,7,8 - 562 305 562 305 562 409 c 2,9,-1 - 562 974 l 2,10,11 - 562 1082 562 1082 529 1125.5 c 128,-1,12 - 496 1169 496 1169 409 1169 c 256,13,14 - 322 1169 322 1169 270.5 1108 c 128,-1,15 - 219 1047 219 1047 219 932 c 2,16,-1 - 219 490 l 1,17,-1 - 96 490 l 1,18,-1 - 96 1090 l 1,19,-1 - 93 1253 l 1,20,-1 - 208 1253 l 1,21,-1 - 213 1157 l 1,22,-1 - 213 1122 l 1,23,-1 - 215 1122 l 1,24,25 - 259 1202 259 1202 313.5 1234.5 c 128,-1,26 - 368 1267 368 1267 451 1267 c 0,27,28 - 574 1267 574 1267 629 1203.5 c 128,-1,29 - 684 1140 684 1140 684 998 c 2,30,-1 - 684 399 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1D52 -Encoding: 7506 7506 1394 -Width: 773 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 16 - 5 - 10 - 0 - 5 - 0 - 22 - 23 - 7 - 13 - 228 - 89 - 7 - 236 - 2 - 19 - 228 - 89 - 2 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -716 872 m 0,0,1 - 716 476 716 476 384 476 c 0,2,3 - 230 476 230 476 144.5 573.5 c 128,-1,4 - 59 671 59 671 59 872 c 0,5,6 - 59 1267 59 1267 389 1267 c 0,7,8 - 561 1267 561 1267 638.5 1168.5 c 128,-1,9 - 716 1070 716 1070 716 872 c 0,0,1 -588 872 m 0,10,11 - 588 1030 588 1030 542.5 1101.5 c 128,-1,12 - 497 1173 497 1173 391 1173 c 0,13,14 - 283 1173 283 1173 235 1100 c 128,-1,15 - 187 1027 187 1027 187 872 c 0,16,17 - 187 722 187 722 234 646 c 128,-1,18 - 281 570 281 570 383 570 c 0,19,20 - 493 570 493 570 540.5 643.5 c 128,-1,21 - 588 717 588 717 588 872 c 0,10,11 -EndSplineSet -EndChar - -StartChar: uni1D53 -Encoding: 7507 7507 1395 -Width: 725 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 5 - 6 - 6 - 18 - 0 - 12 - 18 - 12 - 24 - 25 - 15 - 22 - 228 - 89 - 19 - 19 - 15 - 233 - 5 - 5 - 9 - 9 - 3 - 228 - 89 - 9 - 236 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -545 875 m 0,0,1 - 545 1032 545 1032 501.5 1100 c 128,-1,2 - 458 1168 458 1168 360 1168 c 0,3,4 - 224 1168 224 1168 202 1029 c 1,5,-1 - 76 1039 l 1,6,7 - 97 1149 97 1149 172 1208 c 128,-1,8 - 247 1267 247 1267 358 1267 c 0,9,10 - 511 1267 511 1267 592 1165 c 128,-1,11 - 673 1063 673 1063 673 872 c 0,12,13 - 673 679 673 679 591.5 577.5 c 128,-1,14 - 510 476 510 476 356 476 c 0,15,16 - 239 476 239 476 162.5 541.5 c 128,-1,17 - 86 607 86 607 72 717 c 1,18,-1 - 195 725 l 1,19,20 - 206 649 206 649 250 612.5 c 128,-1,21 - 294 576 294 576 360 576 c 0,22,23 - 545 576 545 576 545 875 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D54 -Encoding: 7508 7508 1396 -Width: 773 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 7 - 0 - 12 - 7 - 12 - 13 - 14 - 0 - 7 - 9 - 9 - 3 - 228 - 89 - 9 - 236 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -588 872 m 1,0,1 - 588 1030 588 1030 542.5 1101.5 c 128,-1,2 - 497 1173 497 1173 391 1173 c 0,3,4 - 283 1173 283 1173 235 1100 c 128,-1,5 - 187 1027 187 1027 187 872 c 1,6,-1 - 59 872 l 1,7,8 - 59 1267 59 1267 389 1267 c 0,9,10 - 561 1267 561 1267 638.5 1168.5 c 128,-1,11 - 716 1070 716 1070 716 872 c 1,12,-1 - 588 872 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D55 -Encoding: 7509 7509 1397 -Width: 773 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 5 - 12 - 0 - 5 - 0 - 13 - 14 - 12 - 5 - 2 - 64 - 2 - 9 - 228 - 89 - 2 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -716 872 m 1,0,1 - 716 476 716 476 384 476 c 0,2,3 - 230 476 230 476 144.5 573.5 c 128,-1,4 - 59 671 59 671 59 872 c 1,5,-1 - 187 872 l 1,6,7 - 187 722 187 722 234 646 c 128,-1,8 - 281 570 281 570 383 570 c 0,9,10 - 493 570 493 570 540.5 643.5 c 128,-1,11 - 588 717 588 717 588 872 c 1,12,-1 - 716 872 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D56 -Encoding: 7510 7510 1398 -Width: 774 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 31 - 18 - 8 - 8 - 9 - 25 - 0 - 9 - 0 - 37 - 38 - 18 - 4 - 22 - 2 - 22 - 28 - 228 - 89 - 22 - 236 - 12 - 235 - 9 - 237 - 2 - 34 - 228 - 89 - 2 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -716 875 m 0,0,1 - 716 476 716 476 446 476 c 0,2,3 - 277 476 277 476 217 608 c 1,4,-1 - 213 608 l 1,5,6 - 216 602 216 602 216 531 c 2,7,-1 - 216 190 l 1,8,-1 - 94 190 l 1,9,-1 - 94 1097 l 1,10,-1 - 91 1232 l 1,11,-1 - 90 1253 l 1,12,-1 - 208 1253 l 2,13,14 - 208 1251 208 1251 209.5 1238.5 c 128,-1,15 - 211 1226 211 1226 212 1208 c 128,-1,16 - 213 1190 213 1190 214 1169 c 128,-1,17 - 215 1148 215 1148 215 1130 c 1,18,-1 - 218 1130 l 1,19,20 - 252 1203 252 1203 306 1234.5 c 128,-1,21 - 360 1266 360 1266 446 1266 c 0,22,23 - 583 1266 583 1266 649.5 1170.5 c 128,-1,24 - 716 1075 716 1075 716 875 c 0,0,1 -588 872 m 0,25,26 - 588 1034 588 1034 546 1101 c 128,-1,27 - 504 1168 504 1168 414 1168 c 0,28,29 - 307 1168 307 1168 261.5 1092.5 c 128,-1,30 - 216 1017 216 1017 216 862 c 0,31,32 - 216 711 216 711 263 640.5 c 128,-1,33 - 310 570 310 570 413 570 c 0,34,35 - 505 570 505 570 546.5 641.5 c 128,-1,36 - 588 713 588 713 588 872 c 0,25,26 -EndSplineSet -EndChar - -StartChar: uni1D57 -Encoding: 7511 7511 1399 -Width: 450 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 11 - 15 - 15 - 8 - 6 - 4 - 0 - 13 - 4 - 3 - 21 - 22 - 14 - 6 - 7 - 6 - 228 - 89 - 11 - 9 - 64 - 7 - 235 - 2 - 18 - 228 - 89 - 2 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,white] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -388 496 m 1,0,1 - 328 479 328 479 264 479 c 0,2,3 - 117 479 117 479 117 651 c 2,4,-1 - 117 1160 l 1,5,-1 - 32 1160 l 1,6,-1 - 32 1253 l 1,7,-1 - 122 1253 l 1,8,-1 - 158 1423 l 1,9,-1 - 240 1423 l 1,10,-1 - 240 1253 l 1,11,-1 - 376 1253 l 1,12,-1 - 376 1160 l 1,13,-1 - 240 1160 l 1,14,-1 - 240 679 l 2,15,16 - 240 624 240 624 257 602 c 128,-1,17 - 274 580 274 580 317 580 c 0,18,19 - 343 580 343 580 388 589 c 1,20,-1 - 388 496 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D58 -Encoding: 7512 7512 1400 -Width: 783 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 13 - 13 - 10 - 1 - 20 - 10 - 20 - 23 - 22 - 13 - 17 - 8 - 21 - 235 - 12 - 17 - 17 - 4 - 228 - 89 - 17 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -213 1253 m 1,0,-1 - 213 769 l 2,1,2 - 213 659 213 659 246 616.5 c 128,-1,3 - 279 574 279 574 366 574 c 256,4,5 - 453 574 453 574 504.5 635 c 128,-1,6 - 556 696 556 696 556 811 c 2,7,-1 - 556 1253 l 1,8,-1 - 678 1253 l 1,9,-1 - 678 653 l 1,10,-1 - 682 490 l 1,11,-1 - 566 490 l 1,12,-1 - 562 620 l 1,13,-1 - 560 620 l 1,14,15 - 518 544 518 544 463 510 c 128,-1,16 - 408 476 408 476 324 476 c 0,17,18 - 201 476 201 476 146 539.5 c 128,-1,19 - 91 603 91 603 91 745 c 2,20,-1 - 91 1253 l 1,21,-1 - 213 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D59 -Encoding: 7513 7513 1401 -Width: 834 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 8 - 0 - 13 - 14 - 14 - 4 - 4 - 12 - 17 - 0 - 17 - 22 - 23 - 21 - 0 - 229 - 89 - 21 - 13 - 8 - 9 - 8 - 229 - 89 - 10 - 9 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -43 657 m 1,0,-1 - 507 657 l 2,1,2 - 617 657 617 657 659.5 690 c 128,-1,3 - 702 723 702 723 702 810 c 256,4,5 - 702 897 702 897 641 948.5 c 128,-1,6 - 580 1000 580 1000 465 1000 c 2,7,-1 - 43 1000 l 1,8,-1 - 43 1122 l 1,9,-1 - 623 1122 l 1,10,-1 - 786 1126 l 1,11,-1 - 786 1010 l 1,12,-1 - 656 1006 l 1,13,-1 - 656 1004 l 1,14,15 - 733 962 733 962 766.5 907 c 128,-1,16 - 800 852 800 852 800 768 c 0,17,18 - 800 645 800 645 736.5 590 c 128,-1,19 - 673 535 673 535 531 535 c 2,20,-1 - 43 535 l 1,21,-1 - 43 657 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D5A -Encoding: 7514 7514 1402 -Width: 1173 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 13 - 7 - 7 - 10 - 21 - 1 - 37 - 31 - 28 - 28 - 37 - 10 - 3 - 40 - 39 - 14 - 21 - 25 - 38 - 8 - 29 - 235 - 12 - 18 - 18 - 4 - 228 - 89 - 18 - 18 - 25 - 25 - 34 - 228 - 89 - 25 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -640 1254 m 1,0,-1 - 640 770 l 2,1,2 - 640 663 640 663 668 619 c 128,-1,3 - 696 575 696 575 774 575 c 256,4,5 - 852 575 852 575 898 636 c 128,-1,6 - 944 697 944 697 944 812 c 2,7,-1 - 944 1254 l 1,8,-1 - 1066 1254 l 1,9,-1 - 1066 654 l 1,10,-1 - 1069 491 l 1,11,-1 - 954 491 l 1,12,-1 - 950 587 l 1,13,-1 - 949 622 l 1,14,-1 - 947 622 l 1,15,16 - 904 539 904 539 855 508 c 128,-1,17 - 806 477 806 477 732 477 c 0,18,19 - 648 477 648 477 599.5 512 c 128,-1,20 - 551 547 551 547 531 622 c 1,21,-1 - 529 622 l 1,22,23 - 497 555 497 555 445 516 c 128,-1,24 - 393 477 393 477 306 477 c 0,25,26 - 193 477 193 477 143 540.5 c 128,-1,27 - 93 604 93 604 93 746 c 2,28,-1 - 93 1254 l 1,29,-1 - 214 1254 l 1,30,-1 - 214 770 l 2,31,32 - 214 663 214 663 242 619 c 128,-1,33 - 270 575 270 575 349 575 c 0,34,35 - 427 575 427 575 472.5 634.5 c 128,-1,36 - 518 694 518 694 518 812 c 2,37,-1 - 518 1254 l 1,38,-1 - 640 1254 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D5B -Encoding: 7515 7515 1403 -Width: 658 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 5 - 10 - 9 - 11 - 2 - 10 - 5 - 1 - 8 - 2 - 235 - 1 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -399 490 m 1,0,-1 - 254 490 l 1,1,-1 - -13 1253 l 1,2,-1 - 117 1253 l 1,3,-1 - 279 756 l 1,4,-1 - 327 589 l 1,5,6 - 341 641 341 641 351 674.5 c 128,-1,7 - 361 708 361 708 544 1253 c 1,8,-1 - 674 1253 l 1,9,-1 - 399 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D5C -Encoding: 7516 7516 1404 -Width: 800 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 22 - 9 - 18 - 9 - 12 - 3 - 3 - 29 - 29 - 3 - 41 - 40 - 32 - 25 - 228 - 89 - 32 - 233 - 28 - 36 - 0 - 9 - 22 - 15 - 4 - 4 - 0 - 15 - 236 - 0 - 6 - 228 - 89 - 0 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -IP -SRP2 -IP -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -181 477 m 0,0,1 - 130 477 130 477 88.5 494.5 c 128,-1,2 - 47 512 47 512 4 562 c 1,3,-1 - 64 644 l 1,4,5 - 116 579 116 579 178 579 c 0,6,7 - 233 579 233 579 265 620 c 2,8,-1 - 334 707 l 1,9,-1 - 230 835 l 2,10,11 - 141 945 141 945 141 1045 c 0,12,13 - 141 1148 141 1148 205 1207.5 c 128,-1,14 - 269 1267 269 1267 399 1267 c 0,15,16 - 528 1267 528 1267 592 1207.5 c 128,-1,17 - 656 1148 656 1148 656 1046 c 0,18,19 - 656 1001 656 1001 637.5 952.5 c 128,-1,20 - 619 904 619 904 567 835 c 2,21,-1 - 469 712 l 1,22,-1 - 533 625 l 2,23,24 - 567 579 567 579 619 579 c 0,25,26 - 650 579 650 579 680.5 597 c 128,-1,27 - 711 615 711 615 734 644 c 1,28,-1 - 793 562 l 1,29,30 - 750 512 750 512 709 494.5 c 128,-1,31 - 668 477 668 477 617 477 c 0,32,33 - 578 477 578 477 548.5 487.5 c 128,-1,34 - 519 498 519 498 493 520 c 128,-1,35 - 467 542 467 542 399 635 c 1,36,37 - 326 539 326 539 301 517.5 c 128,-1,38 - 276 496 276 496 248.5 486.5 c 128,-1,39 - 221 477 221 477 181 477 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D5D -Encoding: 7517 7517 1405 -Width: 789 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 30 - 18 - 21 - 16 - 21 - 8 - 8 - 9 - 34 - 16 - 16 - 27 - 0 - 9 - 0 - 41 - 42 - 31 - 30 - 228 - 89 - 18 - 6 - 15 - 31 - 1 - 12 - 3 - 31 - 31 - 3 - 13 - 13 - 37 - 228 - 89 - 13 - 234 - 9 - 237 - 3 - 24 - 228 - 89 - 3 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -IP -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -746 776 m 0,0,1 - 746 634 746 634 663.5 555 c 128,-1,2 - 581 476 581 476 435 476 c 0,3,4 - 312 476 312 476 219 542 c 1,5,-1 - 215 542 l 1,6,-1 - 219 400 l 1,7,-1 - 219 190 l 1,8,-1 - 96 190 l 1,9,-1 - 96 1214 l 2,10,11 - 96 1382 96 1382 173.5 1459 c 128,-1,12 - 251 1536 251 1536 405 1536 c 0,13,14 - 541 1536 541 1536 611 1471.5 c 128,-1,15 - 681 1407 681 1407 681 1290 c 0,16,17 - 681 1113 681 1113 530 1050 c 1,18,19 - 631 1029 631 1029 688.5 958 c 128,-1,20 - 746 887 746 887 746 776 c 0,0,1 -219 635 m 1,21,22 - 257 608 257 608 313.5 589 c 128,-1,23 - 370 570 370 570 430 570 c 0,24,25 - 529 570 529 570 579 625 c 128,-1,26 - 629 680 629 680 629 773 c 0,27,28 - 629 875 629 875 570 930.5 c 128,-1,29 - 511 986 511 986 400 986 c 1,30,-1 - 400 1086 l 1,31,32 - 487 1105 487 1105 525.5 1154 c 128,-1,33 - 564 1203 564 1203 564 1289 c 0,34,35 - 564 1357 564 1357 523 1397 c 128,-1,36 - 482 1437 482 1437 407 1437 c 0,37,38 - 309 1437 309 1437 264 1383.5 c 128,-1,39 - 219 1330 219 1330 219 1210 c 2,40,-1 - 219 635 l 1,21,22 -EndSplineSet -EndChar - -StartChar: uni1D5E -Encoding: 7518 7518 1406 -Width: 658 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 8 - 0 - 0 - 2 - 5 - 6 - 6 - 10 - 3 - 2 - 2 - 9 - 1 - 4 - 5 - 2 - 235 - 0 - 237 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -IP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -270 190 m 1,0,-1 - 270 491 l 1,1,-1 - 2 1253 l 1,2,-1 - 132 1253 l 1,3,-1 - 334 623 l 1,4,-1 - 537 1253 l 1,5,-1 - 667 1253 l 1,6,-1 - 392 490 l 1,7,-1 - 392 190 l 1,8,-1 - 270 190 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D5F -Encoding: 7519 7519 1407 -Width: 774 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 3 - 27 - 13 - 3 - 28 - 18 - 28 - 6 - 24 - 0 - 18 - 18 - 31 - 24 - 3 - 32 - 33 - 3 - 27 - 27 - 21 - 29 - 28 - 11 - 29 - 11 - 228 - 89 - 29 - 234 - 21 - 9 - 228 - 89 - 21 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -588 822 m 0,0,1 - 588 900 588 900 552.5 981 c 128,-1,2 - 517 1062 517 1062 438 1145 c 1,3,4 - 322 1103 322 1103 254.5 1019 c 128,-1,5 - 187 935 187 935 187 822 c 0,6,7 - 187 702 187 702 241 636 c 128,-1,8 - 295 570 295 570 389 570 c 0,9,10 - 588 570 588 570 588 822 c 0,0,1 -413 1443 m 2,11,12 - 362 1443 362 1443 308 1449 c 1,13,-1 - 523 1220 l 2,14,15 - 615 1120 615 1120 647.5 1067 c 128,-1,16 - 680 1014 680 1014 698 954 c 128,-1,17 - 716 894 716 894 716 825 c 0,18,19 - 716 663 716 663 627.5 569.5 c 128,-1,20 - 539 476 539 476 389 476 c 0,21,22 - 234 476 234 476 146.5 568 c 128,-1,23 - 59 660 59 660 59 823 c 0,24,25 - 59 958 59 958 137 1057 c 128,-1,26 - 215 1156 215 1156 374 1213 c 1,27,-1 - 158 1452 l 1,28,-1 - 158 1536 l 1,29,-1 - 656 1536 l 1,30,-1 - 656 1443 l 1,31,-1 - 413 1443 l 2,11,12 -EndSplineSet -EndChar - -StartChar: uni1D60 -Encoding: 7520 7520 1408 -Width: 901 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 24 - 0 - 13 - 9 - 18 - 18 - 5 - 30 - 4 - 4 - 5 - 15 - 9 - 9 - 5 - 0 - 3 - 34 - 33 - 21 - 27 - 228 - 89 - 21 - 236 - 13 - 12 - 236 - 30 - 18 - 6 - 18 - 228 - 89 - 3 - 6 - 233 - 5 - 237 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -845 888 m 0,0,1 - 845 695 845 695 758.5 590.5 c 128,-1,2 - 672 486 672 486 505 477 c 1,3,-1 - 505 190 l 1,4,-1 - 389 190 l 1,5,-1 - 389 477 l 1,6,7 - 228 483 228 483 143 583.5 c 128,-1,8 - 58 684 58 684 58 874 c 0,9,10 - 58 1034 58 1034 133.5 1141 c 128,-1,11 - 209 1248 209 1248 344 1270 c 1,12,-1 - 358 1174 l 1,13,14 - 186 1134 186 1134 186 871 c 0,15,16 - 186 721 186 721 236.5 650.5 c 128,-1,17 - 287 580 287 580 389 574 c 1,18,-1 - 389 983 l 2,19,20 - 389 1268 389 1268 601 1268 c 0,21,22 - 713 1268 713 1268 779 1166.5 c 128,-1,23 - 845 1065 845 1065 845 888 c 0,0,1 -716 890 m 0,24,25 - 716 1027 716 1027 686.5 1101 c 128,-1,26 - 657 1175 657 1175 603 1175 c 0,27,28 - 505 1175 505 1175 505 985 c 2,29,-1 - 505 574 l 1,30,31 - 615 579 615 579 665.5 655.5 c 128,-1,32 - 716 732 716 732 716 890 c 0,24,25 -EndSplineSet -EndChar - -StartChar: uni1D61 -Encoding: 7521 7521 1409 -Width: 703 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 19 - 16 - 0 - 3 - 4 - 18 - 20 - 20 - 23 - 10 - 2 - 22 - 16 - 3 - 19 - 0 - 4 - 2 - 17 - 235 - 12 - 7 - 228 - 89 - 12 - 236 - 21 - 2 - 238 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -SLOOP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -359 658 m 1,0,-1 - 132 191 l 1,1,-1 - 4 191 l 1,2,-1 - 304 773 l 1,3,-1 - 188 1015 l 2,4,5 - 141 1115 141 1115 118 1142 c 128,-1,6 - 95 1169 95 1169 67 1169 c 0,7,8 - 49 1169 49 1169 32 1162 c 1,9,-1 - 9 1254 l 1,10,11 - 43 1268 43 1268 90 1268 c 0,12,13 - 147 1268 147 1268 183 1235 c 128,-1,14 - 219 1202 219 1202 276 1081 c 2,15,-1 - 372 873 l 1,16,-1 - 552 1253 l 1,17,-1 - 679 1253 l 1,18,-1 - 429 761 l 1,19,-1 - 705 191 l 1,20,-1 - 576 191 l 1,21,-1 - 359 658 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D62 -Encoding: 7522 7522 1410 -Width: 322 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 807 869 N 1 0 0 1 161 -626 2 -EndChar - -StartChar: uni1D63 -Encoding: 7523 7523 1411 -Width: 491 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 629 691 N 1 0 0 1 0 -626 2 -EndChar - -StartChar: uni1D64 -Encoding: 7524 7524 1412 -Width: 783 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1400 7512 N 1 0 0 1 5 -626 2 -EndChar - -StartChar: uni1D65 -Encoding: 7525 7525 1413 -Width: 658 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1403 7515 N 1 0 0 1 0 -626 2 -EndChar - -StartChar: uni1D66 -Encoding: 7526 7526 1414 -Width: 789 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 30 - 18 - 21 - 16 - 21 - 6 - 8 - 8 - 9 - 34 - 16 - 16 - 27 - 0 - 9 - 0 - 41 - 42 - 31 - 30 - 228 - 89 - 18 - 15 - 31 - 31 - 31 - 2 - 11 - 3 - 31 - 31 - 3 - 13 - 13 - 37 - 228 - 89 - 13 - 8 - 3 - 24 - 228 - 89 - 3 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -747 150 m 0,0,1 - 747 8 747 8 664.5 -71 c 128,-1,2 - 582 -150 582 -150 436 -150 c 0,3,4 - 313 -150 313 -150 220 -84 c 1,5,-1 - 216 -84 l 1,6,-1 - 220 -226 l 1,7,-1 - 220 -415 l 1,8,-1 - 98 -415 l 1,9,-1 - 98 588 l 2,10,11 - 98 756 98 756 175 833 c 128,-1,12 - 252 910 252 910 407 910 c 0,13,14 - 542 910 542 910 612.5 845.5 c 128,-1,15 - 683 781 683 781 683 664 c 0,16,17 - 683 489 683 489 531 425 c 1,18,19 - 633 404 633 404 690 332 c 128,-1,20 - 747 260 747 260 747 150 c 0,0,1 -220 9 m 1,21,22 - 256 -17 256 -17 315 -36.5 c 128,-1,23 - 374 -56 374 -56 431 -56 c 0,24,25 - 529 -56 529 -56 579.5 -0.5 c 128,-1,26 - 630 55 630 55 630 148 c 0,27,28 - 630 249 630 249 571.5 304.5 c 128,-1,29 - 513 360 513 360 402 360 c 1,30,-1 - 402 460 l 1,31,32 - 489 479 489 479 527 528 c 128,-1,33 - 565 577 565 577 565 663 c 0,34,35 - 565 734 565 734 523 772.5 c 128,-1,36 - 481 811 481 811 408 811 c 0,37,38 - 310 811 310 811 265 757.5 c 128,-1,39 - 220 704 220 704 220 584 c 2,40,-1 - 220 9 l 1,21,22 -EndSplineSet -EndChar - -StartChar: uni1D67 -Encoding: 7527 7527 1415 -Width: 658 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 11 - 12 - 12 - 14 - 0 - 8 - 8 - 16 - 0 - 15 - 4 - 1 - 12 - 7 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP2 -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --13 626 m 1,0,-1 - 117 626 l 1,1,-1 - 284 150 l 2,2,3 - 318 48 318 48 331 -17 c 1,4,5 - 334 -2 334 -2 357 74.5 c 128,-1,6 - 380 151 380 151 544 626 c 1,7,-1 - 673 626 l 1,8,-1 - 408 -100 l 2,9,10 - 359 -239 359 -239 337 -416 c 1,11,-1 - 207 -416 l 1,12,13 - 220 -316 220 -316 267 -129 c 1,14,-1 - -13 626 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D68 -Encoding: 7528 7528 1416 -Width: 777 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 17 - 16 - 16 - 24 - 5 - 10 - 30 - 30 - 0 - 5 - 0 - 37 - 36 - 20 - 13 - 228 - 89 - 7 - 33 - 228 - 89 - 10 - 7 - 7 - 64 - 9 - 12 - 72 - 20 - 7 - 20 - 7 - 2 - 17 - 2 - 27 - 228 - 89 - 2 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -IP -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -60 246 m 0,0,1 - 60 641 60 641 390 641 c 0,2,3 - 562 641 562 641 639.5 542 c 128,-1,4 - 717 443 717 443 717 246 c 0,5,6 - 717 -151 717 -151 385 -151 c 0,7,8 - 305 -151 305 -151 253 -124.5 c 128,-1,9 - 201 -98 201 -98 164 -49 c 1,10,11 - 182 -181 182 -181 249.5 -228 c 128,-1,12 - 317 -275 317 -275 482 -275 c 0,13,14 - 630 -275 630 -275 679 -303 c 128,-1,15 - 728 -331 728 -331 736 -416 c 1,16,-1 - 625 -416 l 1,17,18 - 620 -395 620 -395 592.5 -387.5 c 128,-1,19 - 565 -380 565 -380 438 -380 c 0,20,21 - 284 -380 284 -380 205 -329.5 c 128,-1,22 - 126 -279 126 -279 93 -160 c 128,-1,23 - 60 -41 60 -41 60 246 c 0,0,1 -589 246 m 0,24,25 - 589 404 589 404 543.5 475.5 c 128,-1,26 - 498 547 498 547 392 547 c 0,27,28 - 284 547 284 547 236 474 c 128,-1,29 - 188 401 188 401 188 246 c 0,30,31 - 188 95 188 95 235.5 19 c 128,-1,32 - 283 -57 283 -57 384 -57 c 0,33,34 - 494 -57 494 -57 541.5 16.5 c 128,-1,35 - 589 90 589 90 589 246 c 0,24,25 -EndSplineSet -EndChar - -StartChar: uni1D69 -Encoding: 7529 7529 1417 -Width: 901 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 26 - 0 - 32 - 4 - 4 - 19 - 13 - 5 - 16 - 9 - 9 - 5 - 0 - 3 - 36 - 35 - 13 - 12 - 12 - 23 - 23 - 29 - 228 - 89 - 23 - 3 - 32 - 228 - 89 - 3 - 3 - 6 - 6 - 19 - 228 - 89 - 6 - 4 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -845 259 m 0,0,1 - 845 66 845 66 758.5 -38.5 c 128,-1,2 - 672 -143 672 -143 505 -152 c 1,3,-1 - 505 -415 l 1,4,-1 - 389 -415 l 1,5,-1 - 389 -152 l 1,6,7 - 229 -146 229 -146 143.5 -46.5 c 128,-1,8 - 58 53 58 53 58 245 c 0,9,10 - 58 406 58 406 134 512 c 128,-1,11 - 210 618 210 618 344 640 c 1,12,-1 - 358 544 l 1,13,14 - 275 526 275 526 231 451 c 128,-1,15 - 187 376 187 376 187 242 c 0,16,17 - 187 92 187 92 237 21 c 128,-1,18 - 287 -50 287 -50 389 -56 c 1,19,-1 - 389 353 l 2,20,21 - 389 490 389 490 441.5 564.5 c 128,-1,22 - 494 639 494 639 601 639 c 0,23,24 - 713 639 713 639 779 537.5 c 128,-1,25 - 845 436 845 436 845 259 c 0,0,1 -716 260 m 0,26,27 - 716 397 716 397 687 471 c 128,-1,28 - 658 545 658 545 603 545 c 0,29,30 - 505 545 505 545 505 355 c 2,31,-1 - 505 -56 l 1,32,33 - 615 -51 615 -51 665.5 26 c 128,-1,34 - 716 103 716 103 716 260 c 0,26,27 -EndSplineSet -EndChar - -StartChar: uni1D6A -Encoding: 7530 7530 1418 -Width: 703 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1409 7521 N 1 0 0 1 0 -626 2 -EndChar - -StartChar: uni1D6B -Encoding: 7531 7531 1419 -Width: 1860 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 56 - 20 - 17 - 11 - 27 - 42 - 30 - 0 - 0 - 27 - 6 - 7 - 7 - 36 - 35 - 35 - 27 - 17 - 3 - 43 - 44 - 6 - 6 - 0 - 3 - 42 - 0 - 80 - 89 - 42 - 42 - 32 - 9 - 32 - 39 - 80 - 89 - 32 - 16 - 11 - 30 - 14 - 28 - 18 - 15 - 14 - 24 - 80 - 89 - 14 - 22 - 9 - 3 - 80 - 89 - 9 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1005 503 m 1,0,1 - 1005 317 1005 317 1082 216 c 128,-1,2 - 1159 115 1159 115 1307 115 c 0,3,4 - 1424 115 1424 115 1494.5 162 c 128,-1,5 - 1565 209 1565 209 1590 281 c 1,6,-1 - 1748 236 l 1,7,8 - 1651 -20 1651 -20 1307 -20 c 0,9,10 - 1067 -20 1067 -20 941 133 c 1,11,12 - 890 53 890 53 794.5 16.5 c 128,-1,13 - 699 -20 699 -20 556 -20 c 0,14,15 - 336 -20 336 -20 234.5 69.5 c 128,-1,16 - 133 159 133 159 133 361 c 2,17,-1 - 133 1082 l 1,18,-1 - 314 1082 l 1,19,-1 - 314 396 l 2,20,21 - 314 287 314 287 336.5 229 c 128,-1,22 - 359 171 359 171 409.5 145 c 128,-1,23 - 460 119 460 119 556 119 c 0,24,25 - 700 119 700 119 757.5 181.5 c 128,-1,26 - 815 244 815 244 815 396 c 2,27,-1 - 815 1082 l 1,28,-1 - 996 1082 l 1,29,-1 - 996 996 l 1,30,31 - 1120 1102 1120 1102 1300 1102 c 0,32,33 - 1777 1102 1777 1102 1777 527 c 2,34,-1 - 1777 503 l 1,35,-1 - 1005 503 l 1,0,1 -1591 641 m 1,36,37 - 1576 812 1576 812 1504 890.5 c 128,-1,38 - 1432 969 1432 969 1297 969 c 0,39,40 - 1166 969 1166 969 1089.5 881.5 c 128,-1,41 - 1013 794 1013 794 1007 641 c 1,42,-1 - 1591 641 l 1,36,37 -EndSplineSet -EndChar - -StartChar: uni1D6C -Encoding: 7532 7532 1420 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 37 - 5 - 52 - 52 - 12 - 25 - 24 - 24 - 12 - 18 - 19 - 19 - 12 - 31 - 32 - 46 - 0 - 0 - 32 - 12 - 3 - 58 - 59 - 15 - 22 - 35 - 28 - 22 - 28 - 18 - 32 - 18 - 32 - 18 - 25 - 39 - 5 - 43 - 2 - 43 - 49 - 80 - 89 - 43 - 16 - 25 - 0 - 10 - 21 - 2 - 55 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 -20 1053 -20 655 -20 c 0,2,3 - 532 -20 532 -20 450.5 24.5 c 128,-1,4 - 369 69 369 69 318 168 c 1,5,-1 - 316 168 l 1,6,7 - 316 137 316 137 312 73.5 c 128,-1,8 - 308 10 308 10 306 0 c 1,9,-1 - 132 0 l 1,10,11 - 138 54 138 54 138 223 c 2,12,-1 - 138 1243 l 1,13,14 - 112 1251 112 1251 86 1251 c 0,15,16 - 47 1251 47 1251 33.5 1227 c 128,-1,17 - 20 1203 20 1203 20 1156 c 1,18,-1 - -110 1156 l 1,19,20 - -108 1260 -108 1260 -54.5 1322 c 128,-1,21 - -1 1384 -1 1384 83 1384 c 1,22,-1 - 138 1379 l 1,23,-1 - 138 1484 l 1,24,-1 - 318 1484 l 1,25,-1 - 318 1311 l 1,26,27 - 346 1304 346 1304 366 1304 c 0,28,29 - 397 1304 397 1304 410 1327.5 c 128,-1,30 - 423 1351 423 1351 429 1399 c 1,31,-1 - 559 1399 l 1,32,33 - 559 1285 559 1285 514 1228 c 128,-1,34 - 469 1171 469 1171 373 1171 c 1,35,-1 - 318 1177 l 1,36,-1 - 318 1061 l 2,37,38 - 318 996 318 996 314 908 c 1,39,-1 - 318 908 l 1,40,41 - 368 1012 368 1012 450.5 1057 c 128,-1,42 - 533 1102 533 1102 655 1102 c 0,43,44 - 860 1102 860 1102 956.5 964 c 128,-1,45 - 1053 826 1053 826 1053 546 c 0,0,1 -864 540 m 0,46,47 - 864 767 864 767 804 865 c 128,-1,48 - 744 963 744 963 609 963 c 0,49,50 - 457 963 457 963 387.5 859 c 128,-1,51 - 318 755 318 755 318 529 c 0,52,53 - 318 316 318 316 386 214.5 c 128,-1,54 - 454 113 454 113 607 113 c 0,55,56 - 743 113 743 113 803.5 213.5 c 128,-1,57 - 864 314 864 314 864 540 c 0,46,47 -EndSplineSet -EndChar - -StartChar: uni1D6D -Encoding: 7533 7533 1421 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 52 - 24 - 13 - 0 - 51 - 51 - 38 - 32 - 33 - 33 - 26 - 38 - 19 - 20 - 45 - 6 - 6 - 20 - 38 - 3 - 58 - 57 - 40 - 21 - 16 - 23 - 36 - 29 - 23 - 29 - 20 - 33 - 20 - 33 - 20 - 26 - 0 - 11 - 0 - 8 - 3 - 8 - 54 - 80 - 89 - 8 - 16 - 3 - 48 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -821 174 m 1,0,1 - 771 70 771 70 688.5 25 c 128,-1,2 - 606 -20 606 -20 484 -20 c 0,3,4 - 279 -20 279 -20 182.5 118 c 128,-1,5 - 86 256 86 256 86 536 c 0,6,7 - 86 1102 86 1102 484 1102 c 0,8,9 - 607 1102 607 1102 689 1057 c 128,-1,10 - 771 1012 771 1012 821 914 c 1,11,-1 - 823 914 l 1,12,-1 - 821 1035 l 1,13,-1 - 821 1243 l 1,14,15 - 795 1251 795 1251 769 1251 c 0,16,17 - 730 1251 730 1251 716.5 1227 c 128,-1,18 - 703 1203 703 1203 703 1156 c 1,19,-1 - 573 1156 l 1,20,21 - 575 1260 575 1260 628.5 1322 c 128,-1,22 - 682 1384 682 1384 766 1384 c 1,23,-1 - 821 1379 l 1,24,-1 - 821 1484 l 1,25,-1 - 1001 1484 l 1,26,-1 - 1001 1311 l 1,27,28 - 1029 1304 1029 1304 1049 1304 c 0,29,30 - 1080 1304 1080 1304 1093 1327.5 c 128,-1,31 - 1106 1351 1106 1351 1112 1399 c 1,32,-1 - 1242 1399 l 1,33,34 - 1242 1285 1242 1285 1197 1228 c 128,-1,35 - 1152 1171 1152 1171 1056 1171 c 1,36,-1 - 1001 1177 l 1,37,-1 - 1001 223 l 2,38,39 - 1001 54 1001 54 1007 0 c 1,40,-1 - 835 0 l 1,41,42 - 832 16 832 16 828.5 74 c 128,-1,43 - 825 132 825 132 825 174 c 1,44,-1 - 821 174 l 1,0,1 -275 542 m 0,45,46 - 275 315 275 315 335 217 c 128,-1,47 - 395 119 395 119 530 119 c 0,48,49 - 683 119 683 119 752 225 c 128,-1,50 - 821 331 821 331 821 554 c 0,51,52 - 821 769 821 769 752 869 c 128,-1,53 - 683 969 683 969 532 969 c 0,54,55 - 396 969 396 969 335.5 868.5 c 128,-1,56 - 275 768 275 768 275 542 c 0,45,46 -EndSplineSet -EndChar - -StartChar: uni1D6E -Encoding: 7534 7534 1422 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 6 - 7 - 7 - 42 - 35 - 35 - 45 - 19 - 20 - 20 - 13 - 41 - 1 - 12 - 12 - 29 - 27 - 25 - 13 - 13 - 44 - 45 - 16 - 23 - 10 - 3 - 23 - 3 - 19 - 7 - 19 - 7 - 19 - 41 - 12 - 41 - 0 - 81 - 89 - 41 - 15 - 32 - 37 - 80 - 89 - 32 - 0 - 28 - 25 - 81 - 89 - 28 - 15 - 12 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -361 951 m 1,0,-1 - 361 548 l 1,1,2 - 389 541 389 541 409 541 c 0,3,4 - 440 541 440 541 453 564.5 c 128,-1,5 - 466 588 466 588 472 636 c 1,6,-1 - 602 636 l 1,7,8 - 602 522 602 522 557 465 c 128,-1,9 - 512 408 512 408 416 408 c 1,10,-1 - 361 414 l 1,11,-1 - 361 0 l 1,12,-1 - 181 0 l 1,13,-1 - 181 480 l 1,14,15 - 155 488 155 488 129 488 c 0,16,17 - 90 488 90 488 76.5 464 c 128,-1,18 - 63 440 63 440 63 393 c 1,19,-1 - -67 393 l 1,20,21 - -65 497 -65 497 -11.5 559 c 128,-1,22 - 42 621 42 621 126 621 c 1,23,-1 - 181 616 l 1,24,-1 - 181 951 l 1,25,-1 - 29 951 l 1,26,-1 - 29 1082 l 1,27,-1 - 181 1082 l 1,28,-1 - 181 1204 l 2,29,30 - 181 1352 181 1352 246 1417 c 128,-1,31 - 311 1482 311 1482 445 1482 c 0,32,33 - 520 1482 520 1482 572 1470 c 1,34,-1 - 572 1333 l 1,35,36 - 527 1341 527 1341 492 1341 c 0,37,38 - 423 1341 423 1341 392 1306 c 128,-1,39 - 361 1271 361 1271 361 1179 c 2,40,-1 - 361 1082 l 1,41,-1 - 572 1082 l 1,42,-1 - 572 951 l 1,43,-1 - 361 951 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D6F -Encoding: 7535 7535 1423 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 77 - 51 - 43 - 43 - 38 - 34 - 42 - 27 - 0 - 57 - 47 - 47 - 61 - 0 - 58 - 20 - 4 - 4 - 12 - 9 - 5 - 5 - 0 - 42 - 3 - 68 - 67 - 27 - 20 - 31 - 43 - 21 - 31 - 54 - 80 - 89 - 31 - 16 - 46 - 48 - 48 - 1 - 60 - 60 - 58 - 6 - 12 - 12 - 3 - 58 - 41 - 44 - 44 - 35 - 50 - 37 - 58 - 50 - 8 - 8 - 50 - 58 - 37 - 4 - 24 - 0 - 24 - 64 - 80 - 89 - 24 - 16 - 15 - 15 - 4 - 21 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1410 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 855 1200 basechar 0 -AnchorPoint: "Anchor-15" 1560 1260 basechar 0 -AnchorPoint: "Anchor-14" 875 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -768 0 m 1,0,-1 - 768 428 l 1,1,2 - 464 486 464 486 321 499 c 1,3,-1 - 321 0 l 1,4,-1 - 142 0 l 1,5,-1 - 142 496 l 1,6,7 - 73 472 73 472 73 390 c 1,8,-1 - -57 390 l 1,9,10 - -57 478 -57 478 -2.5 544.5 c 128,-1,11 - 52 611 52 611 142 631 c 1,12,-1 - 142 851 l 2,13,14 - 142 1040 142 1040 136 1082 c 1,15,-1 - 306 1082 l 1,16,17 - 307 1077 307 1077 308 1055 c 128,-1,18 - 309 1033 309 1033 310.5 1004.5 c 128,-1,19 - 312 976 312 976 314 897 c 1,20,-1 - 317 897 l 1,21,22 - 375 1012 375 1012 450 1057 c 128,-1,23 - 525 1102 525 1102 633 1102 c 0,24,25 - 756 1102 756 1102 827.5 1053 c 128,-1,26 - 899 1004 899 1004 927 897 c 1,27,-1 - 930 897 l 1,28,29 - 986 1006 986 1006 1065.5 1054 c 128,-1,30 - 1145 1102 1145 1102 1258 1102 c 0,31,32 - 1422 1102 1422 1102 1496.5 1013 c 128,-1,33 - 1571 924 1571 924 1571 721 c 2,34,-1 - 1571 475 l 1,35,36 - 1634 511 1634 511 1634 635 c 1,37,-1 - 1764 635 l 1,38,39 - 1764 516 1764 516 1715 436.5 c 128,-1,40 - 1666 357 1666 357 1571 334 c 1,41,-1 - 1571 0 l 1,42,-1 - 1393 0 l 1,43,-1 - 1393 328 l 1,44,45 - 1224 341 1224 341 946 393 c 1,46,-1 - 946 0 l 1,47,-1 - 768 0 l 1,0,-1 -946 529 m 1,48,49 - 1247 472 1247 472 1393 460 c 1,50,-1 - 1393 686 l 2,51,52 - 1393 843 1393 843 1350 903 c 128,-1,53 - 1307 963 1307 963 1195 963 c 0,54,55 - 1077 963 1077 963 1011.5 875.5 c 128,-1,56 - 946 788 946 788 946 627 c 2,57,-1 - 946 529 l 1,48,49 -321 633 m 1,58,59 - 488 620 488 620 768 565 c 1,60,-1 - 768 686 l 2,61,62 - 768 843 768 843 725 903 c 128,-1,63 - 682 963 682 963 570 963 c 0,64,65 - 454 963 454 963 388.5 875 c 128,-1,66 - 323 787 323 787 321 633 c 1,58,59 -EndSplineSet -EndChar - -StartChar: uni1D70 -Encoding: 7536 7536 1424 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 53 - 45 - 0 - 0 - 35 - 31 - 39 - 40 - 20 - 7 - 7 - 16 - 13 - 8 - 39 - 8 - 53 - 52 - 24 - 28 - 0 - 38 - 1 - 1 - 32 - 44 - 6 - 9 - 9 - 40 - 16 - 13 - 44 - 16 - 35 - 35 - 16 - 44 - 13 - 4 - 7 - 28 - 28 - 49 - 80 - 89 - 28 - 16 - 20 - 15 - 7 - 21 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 840 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 560 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -825 0 m 1,0,-1 - 825 333 l 1,1,2 - 760 343 760 343 695 363 c 128,-1,3 - 630 383 630 383 566.5 406 c 128,-1,4 - 503 429 503 429 441.5 451.5 c 128,-1,5 - 380 474 380 474 322 488 c 1,6,-1 - 322 0 l 1,7,-1 - 142 0 l 1,8,-1 - 142 498 l 1,9,10 - 98 487 98 487 75.5 457.5 c 128,-1,11 - 53 428 53 428 53 390 c 1,12,-1 - -77 390 l 1,13,14 - -77 483 -77 483 -16 550.5 c 128,-1,15 - 45 618 45 618 142 634 c 1,16,-1 - 142 851 l 2,17,18 - 142 1040 142 1040 136 1082 c 1,19,-1 - 306 1082 l 1,20,21 - 307 1077 307 1077 308 1055 c 128,-1,22 - 309 1033 309 1033 310.5 1004.5 c 128,-1,23 - 312 976 312 976 314 897 c 1,24,-1 - 317 897 l 1,25,26 - 379 1009 379 1009 460.5 1055.5 c 128,-1,27 - 542 1102 542 1102 663 1102 c 0,28,29 - 841 1102 841 1102 923.5 1013.5 c 128,-1,30 - 1006 925 1006 925 1006 721 c 2,31,-1 - 1006 474 l 1,32,33 - 1084 510 1084 510 1084 635 c 1,34,-1 - 1214 635 l 1,35,36 - 1214 516 1214 516 1158.5 437.5 c 128,-1,37 - 1103 359 1103 359 1006 335 c 1,38,-1 - 1006 0 l 1,39,-1 - 825 0 l 1,0,-1 -322 624 m 1,40,41 - 417 604 417 604 587 543 c 0,42,43 - 762 480 762 480 825 467 c 1,44,-1 - 825 686 l 2,45,46 - 825 793 825 793 804 852 c 128,-1,47 - 783 911 783 911 737 937 c 128,-1,48 - 691 963 691 963 602 963 c 0,49,50 - 472 963 472 963 397 873.5 c 128,-1,51 - 322 784 322 784 322 624 c 1,40,41 -EndSplineSet -EndChar - -StartChar: uni1D71 -Encoding: 7537 7537 1425 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 47 - 0 - 54 - 36 - 7 - 20 - 20 - 32 - 28 - 21 - 21 - 14 - 0 - 3 - 61 - 60 - 40 - 4 - 44 - 2 - 44 - 50 - 80 - 89 - 44 - 16 - 35 - 15 - 24 - 31 - 10 - 17 - 31 - 17 - 28 - 14 - 28 - 14 - 28 - 2 - 20 - 27 - 2 - 57 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 165 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 -20 1053 -20 655 -20 c 0,2,3 - 405 -20 405 -20 319 168 c 1,4,-1 - 314 168 l 1,5,6 - 318 160 318 160 318 -2 c 2,7,-1 - 318 -174 l 1,8,9 - 350 -182 350 -182 370 -182 c 0,10,11 - 401 -182 401 -182 414 -158.5 c 128,-1,12 - 427 -135 427 -135 433 -87 c 1,13,-1 - 563 -87 l 1,14,15 - 563 -201 563 -201 518 -258 c 128,-1,16 - 473 -315 473 -315 377 -315 c 0,17,18 - 353 -315 353 -315 318 -307 c 1,19,-1 - 318 -425 l 1,20,-1 - 138 -425 l 1,21,-1 - 138 -242 l 1,22,23 - 115 -235 115 -235 90 -235 c 0,24,25 - 51 -235 51 -235 37.5 -259 c 128,-1,26 - 24 -283 24 -283 24 -330 c 1,27,-1 - -106 -330 l 1,28,29 - -104 -226 -104 -226 -50.5 -164 c 128,-1,30 - 3 -102 3 -102 87 -102 c 1,31,-1 - 138 -106 l 1,32,-1 - 138 861 l 2,33,34 - 138 1028 138 1028 132 1082 c 1,35,-1 - 306 1082 l 1,36,37 - 307 1078 307 1078 309 1053.5 c 128,-1,38 - 311 1029 311 1029 313.5 978 c 128,-1,39 - 316 927 316 927 316 908 c 1,40,-1 - 320 908 l 1,41,42 - 368 1008 368 1008 447 1054.5 c 128,-1,43 - 526 1101 526 1101 655 1101 c 0,44,45 - 855 1101 855 1101 954 967 c 128,-1,46 - 1053 833 1053 833 1053 546 c 0,0,1 -864 542 m 0,47,48 - 864 768 864 768 803 865 c 128,-1,49 - 742 962 742 962 609 962 c 0,50,51 - 502 962 502 962 441.5 917 c 128,-1,52 - 381 872 381 872 349.5 776.5 c 128,-1,53 - 318 681 318 681 318 528 c 0,54,55 - 318 315 318 315 386 214 c 128,-1,56 - 454 113 454 113 607 113 c 0,57,58 - 741 113 741 113 802.5 211.5 c 128,-1,59 - 864 310 864 310 864 542 c 0,47,48 -EndSplineSet -EndChar - -StartChar: uni1D72 -Encoding: 7538 7538 1426 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 30 - 17 - 42 - 42 - 11 - 7 - 0 - 0 - 36 - 24 - 3 - 44 - 43 - 17 - 14 - 42 - 3 - 10 - 39 - 32 - 10 - 32 - 6 - 36 - 6 - 36 - 6 - 21 - 42 - 21 - 21 - 26 - 83 - 89 - 21 - 16 - 14 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -142 0 m 1,0,-1 - 142 387 l 1,1,2 - 118 393 118 393 98 393 c 0,3,4 - 59 393 59 393 45.5 369 c 128,-1,5 - 32 345 32 345 32 298 c 1,6,-1 - -98 298 l 1,7,8 - -96 402 -96 402 -42.5 464 c 128,-1,9 - 11 526 11 526 95 526 c 1,10,-1 - 142 522 l 1,11,-1 - 142 830 l 2,12,13 - 142 944 142 944 136 1082 c 1,14,-1 - 306 1082 l 1,15,16 - 314 898 314 898 314 861 c 1,17,-1 - 318 861 l 1,18,19 - 361 1000 361 1000 417 1051 c 128,-1,20 - 473 1102 473 1102 575 1102 c 0,21,22 - 611 1102 611 1102 648 1092 c 1,23,-1 - 648 927 l 1,24,25 - 612 937 612 937 552 937 c 0,26,27 - 440 937 440 937 381 840.5 c 128,-1,28 - 322 744 322 744 322 564 c 2,29,-1 - 322 455 l 1,30,31 - 347 446 347 446 378 446 c 256,32,33 - 409 446 409 446 422 469.5 c 128,-1,34 - 435 493 435 493 441 541 c 1,35,-1 - 571 541 l 1,36,37 - 571 427 571 427 526 370 c 128,-1,38 - 481 313 481 313 385 313 c 0,39,40 - 357 313 357 313 322 321 c 1,41,-1 - 322 0 l 1,42,-1 - 142 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D73 -Encoding: 7539 7539 1427 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 12 - 25 - 25 - 33 - 0 - 26 - 26 - 19 - 7 - 3 - 39 - 38 - 29 - 36 - 22 - 15 - 36 - 15 - 33 - 19 - 33 - 19 - 33 - 4 - 25 - 21 - 4 - 9 - 83 - 89 - 4 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -142 686 m 2,0,1 - 142 814 142 814 188 907 c 128,-1,2 - 234 1000 234 1000 329 1051 c 128,-1,3 - 424 1102 424 1102 552 1102 c 0,4,5 - 611 1102 611 1102 648 1092 c 1,6,-1 - 648 927 l 1,7,8 - 612 937 612 937 552 937 c 0,9,10 - 428 937 428 937 373 867.5 c 128,-1,11 - 318 798 318 798 318 630 c 2,12,-1 - 318 455 l 1,13,14 - 343 446 343 446 374 446 c 256,15,16 - 405 446 405 446 418 469.5 c 128,-1,17 - 431 493 431 493 437 541 c 1,18,-1 - 567 541 l 1,19,20 - 567 427 567 427 522 370 c 128,-1,21 - 477 313 477 313 381 313 c 0,22,23 - 353 313 353 313 318 321 c 1,24,-1 - 318 0 l 1,25,-1 - 142 0 l 1,26,-1 - 142 387 l 1,27,28 - 118 393 118 393 98 393 c 0,29,30 - 59 393 59 393 45.5 369 c 128,-1,31 - 32 345 32 345 32 298 c 1,32,-1 - -98 298 l 1,33,34 - -96 402 -96 402 -42.5 464 c 128,-1,35 - 11 526 11 526 95 526 c 1,36,-1 - 142 522 l 1,37,-1 - 142 686 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1D74 -Encoding: 7540 7540 1428 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 40 - 25 - 23 - 6 - 27 - 54 - 52 - 33 - 13 - 0 - 27 - 0 - 56 - 57 - 25 - 22 - 20 - 20 - 54 - 52 - 48 - 13 - 48 - 40 - 3 - 30 - 3 - 30 - 37 - 80 - 89 - 34 - 30 - 16 - 3 - 10 - 80 - 89 - 7 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -950 299 m 0,0,1 - 950 146 950 146 834.5 63 c 128,-1,2 - 719 -20 719 -20 511 -20 c 0,3,4 - 309 -20 309 -20 199.5 46.5 c 128,-1,5 - 90 113 90 113 57 254 c 1,6,-1 - 216 285 l 1,7,8 - 239 198 239 198 311 157.5 c 128,-1,9 - 383 117 383 117 511 117 c 0,10,11 - 648 117 648 117 711.5 159 c 128,-1,12 - 775 201 775 201 775 285 c 0,13,14 - 775 347 775 347 733 385 c 128,-1,15 - 691 423 691 423 588 452 c 2,16,-1 - 460 489 l 2,17,18 - 375 515 375 515 308 535 c 128,-1,19 - 241 555 241 555 198 555 c 0,20,21 - 123 555 123 555 123 450 c 1,22,-1 - -7 450 l 1,23,24 - -3 628 -3 628 131 669 c 1,25,26 - 100 722 100 722 100 796 c 0,27,28 - 100 944 100 944 205.5 1021.5 c 128,-1,29 - 311 1099 311 1099 513 1099 c 0,30,31 - 692 1099 692 1099 797.5 1036 c 128,-1,32 - 903 973 903 973 931 834 c 1,33,-1 - 769 814 l 1,34,35 - 754 886 754 886 688.5 924.5 c 128,-1,36 - 623 963 623 963 513 963 c 0,37,38 - 391 963 391 963 333 926 c 128,-1,39 - 275 889 275 889 275 814 c 0,40,41 - 275 773 275 773 296.5 745.5 c 128,-1,42 - 318 718 318 718 356.5 698 c 128,-1,43 - 395 678 395 678 449 662.5 c 128,-1,44 - 503 647 503 647 568 629 c 2,45,-1 - 643 608 l 2,46,47 - 781 568 781 568 828 568 c 0,48,49 - 855 568 855 568 866.5 583 c 128,-1,50 - 878 598 878 598 884 649 c 1,51,-1 - 1014 649 l 1,52,53 - 1014 482 1014 482 917 438 c 1,54,55 - 950 378 950 378 950 299 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D75 -Encoding: 7541 7541 1429 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 32 - 22 - 44 - 25 - 21 - 39 - 39 - 18 - 15 - 10 - 4 - 44 - 4 - 46 - 45 - 6 - 13 - 35 - 28 - 13 - 28 - 10 - 31 - 10 - 31 - 10 - 21 - 2 - 21 - 24 - 81 - 89 - 20 - 64 - 21 - 15 - 18 - 15 - 81 - 89 - 18 - 15 - 2 - 42 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,black] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 260 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -554 8 m 1,0,1 - 465 -16 465 -16 372 -16 c 0,2,3 - 156 -16 156 -16 156 229 c 2,4,-1 - 156 507 l 1,5,-1 - 118 512 l 1,6,7 - 79 512 79 512 65.5 488 c 128,-1,8 - 52 464 52 464 52 417 c 1,9,-1 - -78 417 l 1,10,11 - -76 521 -76 521 -22.5 583 c 128,-1,12 - 31 645 31 645 115 645 c 1,13,-1 - 156 642 l 1,14,-1 - 156 951 l 1,15,-1 - 31 951 l 1,16,-1 - 31 1082 l 1,17,-1 - 163 1082 l 1,18,-1 - 216 1324 l 1,19,-1 - 336 1324 l 1,20,-1 - 336 1082 l 1,21,-1 - 536 1082 l 1,22,-1 - 536 951 l 1,23,-1 - 336 951 l 1,24,-1 - 336 575 l 1,25,26 - 341 573 341 573 366.5 569 c 128,-1,27 - 392 565 392 565 394 565 c 0,28,29 - 425 565 425 565 438 588.5 c 128,-1,30 - 451 612 451 612 457 660 c 1,31,-1 - 587 660 l 1,32,33 - 587 546 587 546 542 489 c 128,-1,34 - 497 432 497 432 401 432 c 0,35,36 - 396 432 396 432 367 435.5 c 128,-1,37 - 338 439 338 439 336 441 c 2,38,-1 - 336 268 l 2,39,40 - 336 190 336 190 361.5 158.5 c 128,-1,41 - 387 127 387 127 450 127 c 0,42,43 - 486 127 486 127 554 141 c 1,44,-1 - 554 8 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D76 -Encoding: 7542 7542 1430 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 8 - 19 - 2 - 25 - 4 - 31 - 14 - 14 - 3 - 7 - 31 - 20 - 24 - 4 - 24 - 21 - 7 - 4 - 34 - 35 - 24 - 21 - 22 - 21 - 80 - 89 - 10 - 17 - 0 - 27 - 17 - 27 - 14 - 31 - 14 - 31 - 14 - 5 - 22 - 15 - 7 - 4 - 5 - 4 - 80 - 89 - 5 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 740 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -738 431 m 0,0,1 - 687 431 687 431 523 470 c 1,2,-1 - 251 139 l 1,3,-1 - 950 139 l 1,4,-1 - 950 0 l 1,5,-1 - 49 0 l 1,6,-1 - 49 137 l 1,7,-1 - 356 512 l 1,8,9 - 300 525 300 525 272 525 c 0,10,11 - 233 525 233 525 218 501 c 128,-1,12 - 203 477 203 477 203 430 c 1,13,-1 - 73 430 l 1,14,15 - 75 534 75 534 130.5 596 c 128,-1,16 - 186 658 186 658 271 658 c 0,17,18 - 324 658 324 658 450 626 c 1,19,-1 - 710 943 l 1,20,-1 - 89 943 l 1,21,-1 - 89 1082 l 1,22,-1 - 913 1082 l 1,23,-1 - 913 945 l 1,24,-1 - 615 582 l 1,25,26 - 689 563 689 563 731 563 c 0,27,28 - 762 563 762 563 775 587 c 128,-1,29 - 788 611 788 611 794 659 c 1,30,-1 - 924 659 l 1,31,32 - 924 545 924 545 879 488 c 128,-1,33 - 834 431 834 431 738 431 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D77 -Encoding: 7543 7543 1431 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 38 - 3 - 16 - 31 - 10 - 23 - 23 - 26 - 28 - 16 - 28 - 46 - 45 - 13 - 41 - 80 - 89 - 22 - 10 - 13 - 13 - 19 - 0 - 19 - 35 - 80 - 89 - 26 - 26 - 19 - 27 - 0 - 7 - 80 - 89 - 4 - 0 - 16 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -594 1099 m 0,0,1 - 771 1099 771 1099 876 1029.5 c 128,-1,2 - 981 960 981 960 1011 832 c 1,3,-1 - 830 806 l 1,4,5 - 812 881 812 881 750.5 921.5 c 128,-1,6 - 689 962 689 962 589 962 c 0,7,8 - 320 962 320 962 320 647 c 2,9,-1 - 320 473 l 1,10,-1 - 323 473 l 1,11,12 - 428 682 428 682 670 682 c 0,13,14 - 869 682 869 682 962.5 550 c 128,-1,15 - 1056 418 1056 418 1056 135 c 0,16,17 - 1056 -152 1056 -152 955.5 -288.5 c 128,-1,18 - 855 -425 855 -425 650 -425 c 0,19,20 - 535 -425 535 -425 450.5 -372.5 c 128,-1,21 - 366 -320 366 -320 320 -223 c 1,22,-1 - 316 -223 l 1,23,24 - 316 -325 316 -325 306 -408 c 1,25,-1 - 135 -408 l 1,26,27 - 141 -354 141 -354 141 -184 c 2,28,-1 - 141 643 l 2,29,30 - 141 1099 141 1099 594 1099 c 0,0,1 -320 133 m 0,31,32 - 320 1 320 1 356 -94.5 c 128,-1,33 - 392 -190 392 -190 457.5 -240.5 c 128,-1,34 - 523 -291 523 -291 606 -291 c 0,35,36 - 744 -291 744 -291 807 -191 c 128,-1,37 - 870 -91 870 -91 870 133 c 0,38,39 - 870 355 870 355 811 452 c 128,-1,40 - 752 549 752 549 609 549 c 0,41,42 - 524 549 524 549 458 499 c 128,-1,43 - 392 449 392 449 356 355.5 c 128,-1,44 - 320 262 320 262 320 133 c 0,31,32 -EndSplineSet -EndChar - -StartChar: uni1D78 -Encoding: 7544 7544 1432 -Width: 779 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 7 - 3 - 3 - 4 - 8 - 0 - 0 - 11 - 4 - 11 - 12 - 13 - 7 - 2 - 228 - 89 - 7 - 64 - 9 - 12 - 72 - 7 - 7 - 6 - 11 - 3 - 3 - 11 - 232 - 9 - 9 - 6 - 235 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 580 480 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 779 1540 basechar 0 -AnchorPoint: "Anchor-20" 779 -380 basechar 0 -AnchorPoint: "Anchor-16" 260 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -561 475 m 1,0,-1 - 561 798 l 1,1,-1 - 217 798 l 1,2,-1 - 217 475 l 1,3,-1 - 98 475 l 1,4,-1 - 98 1192 l 1,5,-1 - 217 1192 l 1,6,-1 - 217 896 l 1,7,-1 - 561 896 l 1,8,-1 - 561 1192 l 1,9,-1 - 681 1192 l 1,10,-1 - 681 475 l 1,11,-1 - 561 475 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D79 -Encoding: 7545 7545 1433 -Width: 1140 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 15 - 42 - 42 - 25 - 11 - 18 - 18 - 4 - 7 - 36 - 12 - 0 - 0 - 7 - 25 - 3 - 46 - 45 - 4 - 33 - 80 - 89 - 18 - 13 - 4 - 4 - 29 - 13 - 29 - 39 - 80 - 89 - 29 - 27 - 15 - 12 - 13 - 12 - 80 - 89 - 13 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP2 -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1140 1540 basechar 0 -AnchorPoint: "Anchor-20" 1140 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -77 56 m 0,0,1 - 77 192 77 192 140 301 c 128,-1,2 - 203 410 203 410 314 470.5 c 128,-1,3 - 425 531 425 531 556 531 c 1,4,5 - 524 563 524 563 503.5 593 c 128,-1,6 - 483 623 483 623 483 661 c 0,7,8 - 483 702 483 702 504.5 732 c 128,-1,9 - 526 762 526 762 583 806 c 2,10,-1 - 760 943 l 1,11,-1 - 163 943 l 1,12,-1 - 163 1082 l 1,13,-1 - 968 1082 l 1,14,-1 - 968 947 l 1,15,-1 - 701 726 l 2,16,17 - 656 690 656 690 656 661 c 0,18,19 - 656 633 656 633 686.5 606 c 128,-1,20 - 717 579 717 579 763.5 545.5 c 128,-1,21 - 810 512 810 512 863.5 469.5 c 128,-1,22 - 917 427 917 427 963.5 369 c 128,-1,23 - 1010 311 1010 311 1040.5 234 c 128,-1,24 - 1071 157 1071 157 1071 56 c 0,25,26 - 1071 -86 1071 -86 1007 -195.5 c 128,-1,27 - 943 -305 943 -305 827.5 -365 c 128,-1,28 - 712 -425 712 -425 570 -425 c 0,29,30 - 427 -425 427 -425 313.5 -365.5 c 128,-1,31 - 200 -306 200 -306 138.5 -196.5 c 128,-1,32 - 77 -87 77 -87 77 56 c 0,0,1 -570 398 m 0,33,34 - 416 398 416 398 334.5 309.5 c 128,-1,35 - 253 221 253 221 253 56 c 0,36,37 - 253 -111 253 -111 335.5 -201 c 128,-1,38 - 418 -291 418 -291 570 -291 c 0,39,40 - 725 -291 725 -291 810 -200 c 128,-1,41 - 895 -109 895 -109 895 56 c 0,42,43 - 895 220 895 220 810.5 309 c 128,-1,44 - 726 398 726 398 570 398 c 0,33,34 -EndSplineSet -EndChar - -StartChar: uni1D7A -Encoding: 7546 7546 1434 -Width: 1609 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 72 - 28 - 27 - 20 - 21 - 19 - 16 - 16 - 37 - 37 - 38 - 11 - 14 - 14 - 44 - 38 - 9 - 13 - 13 - 51 - 6 - 4 - 2 - 2 - 38 - 19 - 27 - 4 - 53 - 52 - 13 - 0 - 9 - 50 - 47 - 47 - 42 - 80 - 89 - 47 - 22 - 37 - 21 - 39 - 14 - 18 - 3 - 23 - 28 - 21 - 23 - 33 - 80 - 89 - 23 - 16 - 19 - 16 - 0 - 9 - 12 - 81 - 89 - 8 - 64 - 9 - 15 - 6 - 3 - 81 - 89 - 6 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,black] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MDRP[rnd,white] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1310 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1609 1540 basechar 0 -AnchorPoint: "Anchor-20" 1609 -380 basechar 0 -AnchorPoint: "Anchor-16" 1020 1580 basechar 0 -AnchorPoint: "Anchor-15" 1450 1540 basechar 0 -AnchorPoint: "Anchor-14" 1029 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -179 125 m 1,0,1 - 167 170 167 170 167 229 c 2,2,-1 - 167 951 l 1,3,-1 - 42 951 l 1,4,-1 - 42 1082 l 1,5,-1 - 174 1082 l 1,6,-1 - 227 1324 l 1,7,-1 - 347 1324 l 1,8,-1 - 347 1082 l 1,9,-1 - 543 1082 l 1,10,-1 - 543 951 l 1,11,-1 - 347 951 l 1,12,-1 - 347 370 l 1,13,-1 - 602 743 l 1,14,-1 - 602 1484 l 1,15,-1 - 782 1484 l 1,16,-1 - 782 1098 l 1,17,-1 - 780 1004 l 1,18,-1 - 1129 1515 l 1,19,-1 - 1290 1515 l 1,20,-1 - 997 1087 l 1,21,22 - 1054 1102 1054 1102 1123 1102 c 0,23,24 - 1299 1102 1299 1102 1382.5 1014.5 c 128,-1,25 - 1466 927 1466 927 1466 721 c 2,26,-1 - 1466 0 l 1,27,-1 - 1285 0 l 1,28,-1 - 1285 686 l 2,29,30 - 1285 800 1285 800 1264 855.5 c 128,-1,31 - 1243 911 1243 911 1195 937 c 128,-1,32 - 1147 963 1147 963 1062 963 c 0,33,34 - 935 963 935 963 858.5 875 c 128,-1,35 - 782 787 782 787 782 638 c 2,36,-1 - 782 0 l 1,37,-1 - 602 0 l 1,38,-1 - 602 508 l 1,39,-1 - 367 165 l 1,40,41 - 394 127 394 127 461 127 c 0,42,43 - 497 127 497 127 565 141 c 1,44,-1 - 565 8 l 1,45,46 - 476 -16 476 -16 383 -16 c 0,47,48 - 310 -16 310 -16 262 11 c 1,49,-1 - 216 -57 l 1,50,-1 - 55 -57 l 1,51,-1 - 179 125 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D7B -Encoding: 7547 7547 1435 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 11 - 1 - 9 - 9 - 6 - 4 - 8 - 8 - 13 - 12 - 7 - 11 - 0 - 11 - 80 - 89 - 4 - 0 - 0 - 2 - 9 - 21 - 2 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -26 617 m 1,0,-1 - 135 617 l 1,1,-1 - 135 1082 l 1,2,-1 - 315 1082 l 1,3,-1 - 315 617 l 1,4,-1 - 429 617 l 1,5,-1 - 429 484 l 1,6,-1 - 315 484 l 1,7,-1 - 315 0 l 1,8,-1 - 135 0 l 1,9,-1 - 135 484 l 1,10,-1 - 26 484 l 1,11,-1 - 26 617 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D7C -Encoding: 7548 7548 1436 -Width: 455 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 1435 7547 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1D7D -Encoding: 7549 7549 1437 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 42 - 34 - 34 - 17 - 16 - 19 - 41 - 35 - 5 - 27 - 27 - 30 - 1 - 28 - 19 - 28 - 46 - 45 - 27 - 27 - 35 - 19 - 30 - 0 - 64 - 41 - 41 - 16 - 23 - 21 - 9 - 13 - 15 - 0 - 1 - 11 - 3 - 0 - 0 - 21 - 13 - 21 - 31 - 80 - 89 - 21 - 22 - 13 - 38 - 80 - 89 - 13 - 16 - 5 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP2 -IP -SRP2 -IP -SHP[rp1] -SHP[rp1] -MDAP[rnd] -SMD -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp2] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -30 617 m 1,0,-1 - 138 617 l 1,1,-1 - 138 861 l 2,2,3 - 138 1028 138 1028 132 1082 c 1,4,-1 - 306 1082 l 1,5,6 - 307 1078 307 1078 309 1053.5 c 128,-1,7 - 311 1029 311 1029 313.5 978 c 128,-1,8 - 316 927 316 927 316 908 c 1,9,-1 - 320 908 l 1,10,11 - 368 1008 368 1008 447 1054.5 c 128,-1,12 - 526 1101 526 1101 655 1101 c 0,13,14 - 842 1101 842 1101 940.5 983.5 c 128,-1,15 - 1039 866 1039 866 1051 617 c 1,16,-1 - 1129 617 l 1,17,-1 - 1129 484 l 1,18,-1 - 1052 484 l 1,19,20 - 1029 -20 1029 -20 655 -20 c 0,21,22 - 405 -20 405 -20 319 168 c 1,23,-1 - 314 168 l 1,24,25 - 318 160 318 160 318 -2 c 2,26,-1 - 318 -425 l 1,27,-1 - 138 -425 l 1,28,-1 - 138 484 l 1,29,-1 - 30 484 l 1,30,-1 - 30 617 l 1,0,-1 -607 113 m 0,31,32 - 732 113 732 113 794 199.5 c 128,-1,33 - 856 286 856 286 863 484 c 1,34,-1 - 318 484 l 1,35,36 - 326 291 326 291 395.5 202 c 128,-1,37 - 465 113 465 113 607 113 c 0,31,32 -609 962 m 0,38,39 - 467 962 467 962 399.5 875 c 128,-1,40 - 332 788 332 788 321 617 c 1,41,-1 - 862 617 l 1,42,43 - 853 800 853 800 791.5 881 c 128,-1,44 - 730 962 730 962 609 962 c 0,38,39 -EndSplineSet -EndChar - -StartChar: uni1D7E -Encoding: 7550 7550 1438 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 5 - 24 - 24 - 10 - 8 - 12 - 4 - 27 - 27 - 20 - 1 - 18 - 12 - 18 - 31 - 30 - 26 - 11 - 20 - 0 - 20 - 80 - 89 - 8 - 4 - 15 - 0 - 1 - 11 - 3 - 0 - 0 - 15 - 2 - 15 - 21 - 80 - 89 - 15 - 22 - 6 - 2 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 652 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1120 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 560 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -30 617 m 1,0,-1 - 133 617 l 1,1,-1 - 133 1082 l 1,2,-1 - 314 1082 l 1,3,-1 - 314 617 l 1,4,-1 - 808 617 l 1,5,-1 - 808 1082 l 1,6,-1 - 989 1082 l 1,7,-1 - 989 617 l 1,8,-1 - 1090 617 l 1,9,-1 - 1090 484 l 1,10,-1 - 989 484 l 1,11,-1 - 989 361 l 2,12,13 - 989 178 989 178 876 79 c 128,-1,14 - 763 -20 763 -20 559 -20 c 0,15,16 - 358 -20 358 -20 245.5 78.5 c 128,-1,17 - 133 177 133 177 133 361 c 2,18,-1 - 133 484 l 1,19,-1 - 30 484 l 1,20,-1 - 30 617 l 1,0,-1 -560 119 m 0,21,22 - 689 119 689 119 748.5 188 c 128,-1,23 - 808 257 808 257 808 396 c 2,24,-1 - 808 484 l 1,25,-1 - 314 484 l 1,26,-1 - 314 396 l 2,27,28 - 314 255 314 255 373.5 187 c 128,-1,29 - 433 119 433 119 560 119 c 0,21,22 -EndSplineSet -EndChar - -StartChar: uni1D7F -Encoding: 7551 7551 1439 -Width: 1164 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 56 - 12 - 39 - 39 - 23 - 22 - 18 - 11 - 42 - 42 - 19 - 15 - 8 - 4 - 4 - 27 - 35 - 5 - 1 - 33 - 27 - 33 - 46 - 45 - 41 - 25 - 35 - 0 - 35 - 80 - 89 - 22 - 11 - 15 - 0 - 1 - 11 - 3 - 0 - 0 - 30 - 6 - 30 - 36 - 80 - 89 - 30 - 22 - 19 - 5 - 6 - 5 - 80 - 89 - 16 - 6 - 15 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1164 1540 basechar 0 -AnchorPoint: "Anchor-20" 1164 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -10 617 m 1,0,-1 - 103 617 l 1,1,2 - 125 698 125 698 170.5 769.5 c 128,-1,3 - 216 841 216 841 321 943 c 1,4,-1 - 57 943 l 1,5,-1 - 57 1082 l 1,6,-1 - 511 1082 l 1,7,-1 - 511 943 l 1,8,9 - 433 905 433 905 373.5 822 c 128,-1,10 - 314 739 314 739 287 617 c 1,11,-1 - 876 617 l 1,12,13 - 849 738 849 738 789.5 821.5 c 128,-1,14 - 730 905 730 905 652 943 c 1,15,-1 - 652 1082 l 1,16,-1 - 1107 1082 l 1,17,-1 - 1107 943 l 1,18,-1 - 842 943 l 1,19,20 - 945 842 945 842 991 770.5 c 128,-1,21 - 1037 699 1037 699 1059 617 c 1,22,-1 - 1154 617 l 1,23,-1 - 1154 484 l 1,24,-1 - 1078 484 l 1,25,-1 - 1079 466 l 1,26,-1 - 1079 448 l 2,27,28 - 1079 239 1079 239 944 109.5 c 128,-1,29 - 809 -20 809 -20 581 -20 c 0,30,31 - 356 -20 356 -20 220 108 c 128,-1,32 - 84 236 84 236 84 448 c 2,33,-1 - 84 484 l 1,34,-1 - 10 484 l 1,35,-1 - 10 617 l 1,0,-1 -581 123 m 256,36,37 - 724 123 724 123 808 218 c 128,-1,38 - 892 313 892 313 892 472 c 2,39,-1 - 892 484 l 1,40,-1 - 271 484 l 1,41,-1 - 271 472 l 2,42,43 - 271 313 271 313 354.5 218 c 128,-1,44 - 438 123 438 123 581 123 c 256,36,37 -EndSplineSet -EndChar - -StartChar: uni1D80 -Encoding: 7552 7552 1440 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 37 - 28 - 18 - 43 - 43 - 25 - 8 - 3 - 12 - 12 - 0 - 25 - 0 - 25 - 50 - 49 - 2 - 18 - 30 - 3 - 34 - 15 - 34 - 40 - 80 - 89 - 34 - 16 - 27 - 0 - 23 - 21 - 15 - 46 - 80 - 89 - 15 - 22 - 5 - 10 - 80 - 89 - 5 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 272 1053 272 959 129 c 1,2,-1 - 959 -129 l 2,3,4 - 959 -425 959 -425 678 -425 c 0,5,6 - 619 -425 619 -425 546 -409 c 1,7,-1 - 546 -249 l 1,8,9 - 596 -267 596 -267 665 -267 c 0,10,11 - 790 -267 790 -267 790 -119 c 2,12,-1 - 790 0 l 1,13,14 - 727 -20 727 -20 655 -20 c 0,15,16 - 532 -20 532 -20 450.5 24.5 c 128,-1,17 - 369 69 369 69 318 168 c 1,18,-1 - 316 168 l 1,19,20 - 316 137 316 137 312 73.5 c 128,-1,21 - 308 10 308 10 306 0 c 1,22,-1 - 132 0 l 1,23,24 - 138 54 138 54 138 223 c 2,25,-1 - 138 1484 l 1,26,-1 - 318 1484 l 1,27,-1 - 318 1061 l 2,28,29 - 318 996 318 996 314 908 c 1,30,-1 - 318 908 l 1,31,32 - 368 1012 368 1012 450.5 1057 c 128,-1,33 - 533 1102 533 1102 655 1102 c 0,34,35 - 860 1102 860 1102 956.5 964 c 128,-1,36 - 1053 826 1053 826 1053 546 c 0,0,1 -864 540 m 0,37,38 - 864 767 864 767 804 865 c 128,-1,39 - 744 963 744 963 609 963 c 0,40,41 - 457 963 457 963 387.5 859 c 128,-1,42 - 318 755 318 755 318 529 c 0,43,44 - 318 316 318 316 386 214.5 c 128,-1,45 - 454 113 454 113 607 113 c 0,46,47 - 743 113 743 113 803.5 213.5 c 128,-1,48 - 864 314 864 314 864 540 c 0,37,38 -EndSplineSet -EndChar - -StartChar: uni1D81 -Encoding: 7553 7553 1441 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 47 - 14 - 0 - 39 - 39 - 16 - 16 - 28 - 28 - 18 - 33 - 6 - 6 - 23 - 18 - 3 - 46 - 45 - 29 - 16 - 80 - 89 - 29 - 21 - 20 - 25 - 80 - 89 - 20 - 27 - 14 - 0 - 11 - 0 - 8 - 3 - 8 - 42 - 80 - 89 - 8 - 16 - 3 - 36 - 80 - 89 - 3 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 870 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -821 174 m 1,0,1 - 771 70 771 70 688.5 25 c 128,-1,2 - 606 -20 606 -20 484 -20 c 0,3,4 - 279 -20 279 -20 182.5 118 c 128,-1,5 - 86 256 86 256 86 536 c 0,6,7 - 86 1102 86 1102 484 1102 c 0,8,9 - 607 1102 607 1102 689 1057 c 128,-1,10 - 771 1012 771 1012 821 914 c 1,11,-1 - 823 914 l 1,12,-1 - 821 1035 l 1,13,-1 - 821 1484 l 1,14,-1 - 1001 1484 l 1,15,-1 - 1001 155 l 1,16,-1 - 1090 155 l 1,17,-1 - 1090 -129 l 2,18,19 - 1090 -425 1090 -425 809 -425 c 0,20,21 - 750 -425 750 -425 677 -409 c 1,22,-1 - 677 -249 l 1,23,24 - 727 -267 727 -267 796 -267 c 0,25,26 - 921 -267 921 -267 921 -119 c 2,27,-1 - 921 0 l 1,28,-1 - 835 0 l 1,29,30 - 832 16 832 16 828.5 74 c 128,-1,31 - 825 132 825 132 825 174 c 1,32,-1 - 821 174 l 1,0,1 -275 542 m 0,33,34 - 275 315 275 315 335 217 c 128,-1,35 - 395 119 395 119 530 119 c 0,36,37 - 683 119 683 119 752 225 c 128,-1,38 - 821 331 821 331 821 554 c 0,39,40 - 821 769 821 769 752 869 c 128,-1,41 - 683 969 683 969 532 969 c 0,42,43 - 396 969 396 969 335.5 868.5 c 128,-1,44 - 275 768 275 768 275 542 c 0,33,34 -EndSplineSet -EndChar - -StartChar: uni1D82 -Encoding: 7554 7554 1442 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 32 - 25 - 25 - 12 - 3 - 16 - 1 - 14 - 8 - 14 - 3 - 3 - 35 - 34 - 31 - 0 - 81 - 89 - 31 - 15 - 22 - 27 - 80 - 89 - 22 - 0 - 18 - 15 - 81 - 89 - 18 - 15 - 14 - 2 - 80 - 89 - 14 - 21 - 5 - 10 - 80 - 89 - 5 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 371 1540 basechar 0 -AnchorPoint: "Anchor-15" 560 1540 basechar 0 -AnchorPoint: "Anchor-14" 270 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -361 951 m 1,0,-1 - 361 155 l 1,1,-1 - 445 155 l 1,2,-1 - 445 -129 l 2,3,4 - 445 -425 445 -425 164 -425 c 0,5,6 - 110 -425 110 -425 41 -410 c 1,7,-1 - 41 -250 l 1,8,9 - 88 -267 88 -267 151 -267 c 0,10,11 - 276 -267 276 -267 276 -119 c 2,12,-1 - 276 0 l 1,13,-1 - 181 0 l 1,14,-1 - 181 951 l 1,15,-1 - 29 951 l 1,16,-1 - 29 1082 l 1,17,-1 - 181 1082 l 1,18,-1 - 181 1204 l 2,19,20 - 181 1352 181 1352 246 1417 c 128,-1,21 - 311 1482 311 1482 445 1482 c 0,22,23 - 520 1482 520 1482 572 1470 c 1,24,-1 - 572 1333 l 1,25,26 - 527 1341 527 1341 492 1341 c 0,27,28 - 423 1341 423 1341 392 1306 c 128,-1,29 - 361 1271 361 1271 361 1179 c 2,30,-1 - 361 1082 l 1,31,-1 - 572 1082 l 1,32,-1 - 572 951 l 1,33,-1 - 361 951 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D83 -Encoding: 7555 7555 1443 -Width: 1460 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 64 - 5 - 41 - 40 - 0 - 7 - 7 - 47 - 32 - 18 - 54 - 12 - 26 - 26 - 18 - 41 - 3 - 62 - 61 - 37 - 15 - 40 - 6 - 80 - 89 - 32 - 29 - 19 - 23 - 40 - 40 - 29 - 23 - 29 - 51 - 80 - 89 - 29 - 16 - 23 - 57 - 80 - 89 - 23 - 21 - 44 - 2 - 80 - 89 - 44 - 44 - 9 - 9 - 16 - 80 - 89 - 53 - 13 - 1 - 38 - 13 - 1 - 13 - 9 - 27 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -DELTAP1 -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP2 -IP -SRP2 -IP -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1840 basechar 0 -AnchorPoint: "Anchor-20" 1460 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1067 -147 m 1,0,1 - 1112 -157 1112 -157 1152 -157 c 0,2,3 - 1270 -157 1270 -157 1270 -6 c 2,4,-1 - 1270 133 l 1,5,-1 - 1001 133 l 1,6,-1 - 1001 31 l 2,7,8 - 1001 -425 1001 -425 548 -425 c 0,9,10 - 371 -425 371 -425 266 -355.5 c 128,-1,11 - 161 -286 161 -286 131 -158 c 1,12,-1 - 312 -132 l 1,13,14 - 330 -207 330 -207 391.5 -247.5 c 128,-1,15 - 453 -288 453 -288 553 -288 c 0,16,17 - 822 -288 822 -288 822 27 c 2,18,-1 - 822 201 l 1,19,-1 - 820 201 l 1,20,21 - 769 97 769 97 680 44.5 c 128,-1,22 - 591 -8 591 -8 472 -8 c 0,23,24 - 273 -8 273 -8 179.5 124 c 128,-1,25 - 86 256 86 256 86 539 c 0,26,27 - 86 826 86 826 186.5 962.5 c 128,-1,28 - 287 1099 287 1099 492 1099 c 0,29,30 - 607 1099 607 1099 691.5 1046.5 c 128,-1,31 - 776 994 776 994 822 897 c 1,32,-1 - 824 897 l 1,33,34 - 824 927 824 927 828 1001 c 128,-1,35 - 832 1075 832 1075 836 1082 c 1,36,-1 - 1007 1082 l 1,37,38 - 1001 1028 1001 1028 1001 858 c 2,39,-1 - 1001 275 l 1,40,-1 - 1429 275 l 1,41,-1 - 1429 -16 l 2,42,43 - 1429 -312 1429 -312 1154 -312 c 0,44,45 - 1113 -312 1113 -312 1067 -304 c 1,46,-1 - 1067 -147 l 1,0,1 -822 541 m 0,47,48 - 822 673 822 673 786 768.5 c 128,-1,49 - 750 864 750 864 684.5 914.5 c 128,-1,50 - 619 965 619 965 536 965 c 0,51,52 - 398 965 398 965 335 865 c 128,-1,53 - 272 765 272 765 272 541 c 0,54,55 - 272 319 272 319 331 222 c 128,-1,56 - 390 125 390 125 533 125 c 0,57,58 - 618 125 618 125 684 175 c 128,-1,59 - 750 225 750 225 786 318.5 c 128,-1,60 - 822 412 822 412 822 541 c 0,47,48 -EndSplineSet -EndChar - -StartChar: uni1D84 -Encoding: 7556 7556 1444 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 5 - 14 - 22 - 3 - 13 - 11 - 11 - 7 - 7 - 8 - 12 - 13 - 13 - 3 - 16 - 8 - 16 - 24 - 25 - 19 - 0 - 80 - 89 - 19 - 27 - 5 - 6 - 6 - 14 - 11 - 11 - 7 - 12 - 15 - 10 - 0 - 7 - 21 - 3 - 16 - 80 - 89 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 760 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 514 1540 basechar 0 -AnchorPoint: "Anchor-15" 960 1540 basechar 0 -AnchorPoint: "Anchor-14" 512 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -730 -267 m 0,0,1 - 855 -267 855 -267 855 -119 c 2,2,-1 - 855 0 l 1,3,-1 - 816 0 l 1,4,-1 - 450 494 l 1,5,-1 - 318 385 l 1,6,-1 - 318 0 l 1,7,-1 - 138 0 l 1,8,-1 - 138 1484 l 1,9,-1 - 318 1484 l 1,10,-1 - 318 557 l 1,11,-1 - 793 1082 l 1,12,-1 - 1004 1082 l 1,13,-1 - 565 617 l 1,14,-1 - 911 155 l 1,15,-1 - 1024 155 l 1,16,-1 - 1024 -129 l 2,17,18 - 1024 -425 1024 -425 743 -425 c 0,19,20 - 684 -425 684 -425 611 -409 c 1,21,-1 - 611 -249 l 1,22,23 - 661 -267 661 -267 730 -267 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D85 -Encoding: 7557 7557 1445 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 9 - 6 - 4 - 11 - 11 - 6 - 15 - 3 - 16 - 17 - 13 - 2 - 80 - 89 - 13 - 27 - 7 - 0 - 6 - 9 - 80 - 89 - 6 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 170 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -15 -255 m 1,0,1 - 58 -267 58 -267 111 -267 c 0,2,3 - 238 -267 238 -267 238 -119 c 2,4,-1 - 238 0 l 1,5,-1 - 138 0 l 1,6,-1 - 138 1484 l 1,7,-1 - 318 1484 l 1,8,-1 - 318 155 l 1,9,-1 - 405 155 l 1,10,-1 - 405 -129 l 2,11,12 - 405 -425 405 -425 124 -425 c 0,13,14 - 79 -425 79 -425 15 -414 c 1,15,-1 - 15 -255 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D86 -Encoding: 7558 7558 1446 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 54 - 45 - 32 - 32 - 43 - 34 - 24 - 53 - 53 - 0 - 17 - 8 - 8 - 12 - 9 - 9 - 0 - 38 - 34 - 4 - 55 - 54 - 45 - 32 - 80 - 89 - 45 - 21 - 36 - 41 - 80 - 89 - 36 - 27 - 28 - 49 - 80 - 89 - 28 - 16 - 17 - 24 - 21 - 9 - 21 - 4 - 80 - 89 - 21 - 16 - 12 - 15 - 0 - 9 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1400 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 855 1200 basechar 0 -AnchorPoint: "Anchor-15" 1560 1260 basechar 0 -AnchorPoint: "Anchor-14" 853 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -768 0 m 1,0,-1 - 768 686 l 2,1,2 - 768 843 768 843 725 903 c 128,-1,3 - 682 963 682 963 570 963 c 0,4,5 - 455 963 455 963 388 875 c 128,-1,6 - 321 787 321 787 321 627 c 2,7,-1 - 321 0 l 1,8,-1 - 142 0 l 1,9,-1 - 142 851 l 2,10,11 - 142 1040 142 1040 136 1082 c 1,12,-1 - 306 1082 l 1,13,14 - 307 1077 307 1077 308 1055 c 128,-1,15 - 309 1033 309 1033 310.5 1004.5 c 128,-1,16 - 312 976 312 976 314 897 c 1,17,-1 - 317 897 l 1,18,19 - 375 1012 375 1012 450 1057 c 128,-1,20 - 525 1102 525 1102 633 1102 c 0,21,22 - 756 1102 756 1102 827.5 1053 c 128,-1,23 - 899 1004 899 1004 927 897 c 1,24,-1 - 930 897 l 1,25,26 - 986 1006 986 1006 1065.5 1054 c 128,-1,27 - 1145 1102 1145 1102 1258 1102 c 0,28,29 - 1422 1102 1422 1102 1496.5 1013 c 128,-1,30 - 1571 924 1571 924 1571 721 c 2,31,-1 - 1571 155 l 1,32,-1 - 1669 155 l 1,33,-1 - 1669 -129 l 2,34,35 - 1669 -425 1669 -425 1388 -425 c 0,36,37 - 1329 -425 1329 -425 1256 -409 c 1,38,-1 - 1256 -249 l 1,39,40 - 1306 -267 1306 -267 1375 -267 c 0,41,42 - 1500 -267 1500 -267 1500 -119 c 2,43,-1 - 1500 0 l 1,44,-1 - 1393 0 l 1,45,-1 - 1393 686 l 2,46,47 - 1393 843 1393 843 1350 903 c 128,-1,48 - 1307 963 1307 963 1195 963 c 0,49,50 - 1077 963 1077 963 1011.5 875.5 c 128,-1,51 - 946 788 946 788 946 627 c 2,52,-1 - 946 0 l 1,53,-1 - 768 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D87 -Encoding: 7559 7559 1447 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 36 - 4 - 4 - 30 - 30 - 2 - 32 - 22 - 13 - 13 - 17 - 14 - 32 - 14 - 40 - 39 - 34 - 0 - 80 - 89 - 34 - 27 - 22 - 26 - 14 - 26 - 9 - 80 - 89 - 26 - 16 - 17 - 15 - 14 - 21 - 4 - 30 - 80 - 89 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 870 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 560 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -802 -267 m 0,0,1 - 927 -267 927 -267 927 -119 c 2,2,-1 - 927 0 l 1,3,-1 - 825 0 l 1,4,-1 - 825 686 l 2,5,6 - 825 793 825 793 804 852 c 128,-1,7 - 783 911 783 911 737 937 c 128,-1,8 - 691 963 691 963 602 963 c 0,9,10 - 472 963 472 963 397 874 c 128,-1,11 - 322 785 322 785 322 627 c 2,12,-1 - 322 0 l 1,13,-1 - 142 0 l 1,14,-1 - 142 851 l 2,15,16 - 142 1040 142 1040 136 1082 c 1,17,-1 - 306 1082 l 1,18,19 - 307 1077 307 1077 308 1055 c 128,-1,20 - 309 1033 309 1033 310.5 1004.5 c 128,-1,21 - 312 976 312 976 314 897 c 1,22,-1 - 317 897 l 1,23,24 - 379 1009 379 1009 460.5 1055.5 c 128,-1,25 - 542 1102 542 1102 663 1102 c 0,26,27 - 841 1102 841 1102 923.5 1013.5 c 128,-1,28 - 1006 925 1006 925 1006 721 c 2,29,-1 - 1006 155 l 1,30,-1 - 1096 155 l 1,31,-1 - 1096 -129 l 2,32,33 - 1096 -425 1096 -425 815 -425 c 0,34,35 - 756 -425 756 -425 683 -409 c 1,36,-1 - 683 -249 l 1,37,38 - 733 -267 733 -267 802 -267 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D88 -Encoding: 7560 7560 1448 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 38 - 45 - 31 - 21 - 22 - 22 - 23 - 3 - 13 - 7 - 13 - 0 - 26 - 23 - 0 - 23 - 52 - 51 - 2 - 18 - 31 - 3 - 35 - 16 - 35 - 41 - 80 - 89 - 35 - 16 - 26 - 15 - 23 - 27 - 16 - 48 - 80 - 89 - 16 - 22 - 5 - 10 - 80 - 89 - 5 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1053 546 m 0,0,1 - 1053 229 1053 229 929 90 c 1,2,-1 - 929 -129 l 2,3,4 - 929 -425 929 -425 652 -425 c 0,5,6 - 593 -425 593 -425 520 -409 c 1,7,-1 - 520 -249 l 1,8,9 - 570 -267 570 -267 639 -267 c 0,10,11 - 700 -267 700 -267 732 -233.5 c 128,-1,12 - 764 -200 764 -200 764 -119 c 2,13,-1 - 764 -7 l 1,14,15 - 710 -20 710 -20 655 -20 c 0,16,17 - 405 -20 405 -20 319 168 c 1,18,-1 - 314 168 l 1,19,20 - 318 160 318 160 318 -2 c 2,21,-1 - 318 -425 l 1,22,-1 - 138 -425 l 1,23,-1 - 138 861 l 2,24,25 - 138 1028 138 1028 132 1082 c 1,26,-1 - 306 1082 l 1,27,28 - 307 1078 307 1078 309 1053.5 c 128,-1,29 - 311 1029 311 1029 313.5 978 c 128,-1,30 - 316 927 316 927 316 908 c 1,31,-1 - 320 908 l 1,32,33 - 368 1008 368 1008 447 1054.5 c 128,-1,34 - 526 1101 526 1101 655 1101 c 0,35,36 - 855 1101 855 1101 954 967 c 128,-1,37 - 1053 833 1053 833 1053 546 c 0,0,1 -864 542 m 0,38,39 - 864 768 864 768 803 865 c 128,-1,40 - 742 962 742 962 609 962 c 0,41,42 - 502 962 502 962 441.5 917 c 128,-1,43 - 381 872 381 872 349.5 776.5 c 128,-1,44 - 318 681 318 681 318 528 c 0,45,46 - 318 315 318 315 386 214 c 128,-1,47 - 454 113 454 113 607 113 c 0,48,49 - 741 113 741 113 802.5 211.5 c 128,-1,50 - 864 310 864 310 864 542 c 0,38,39 -EndSplineSet -EndChar - -StartChar: uni1D89 -Encoding: 7561 7561 1449 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 10 - 23 - 23 - 4 - 25 - 2 - 2 - 16 - 29 - 5 - 4 - 16 - 4 - 33 - 32 - 27 - 0 - 80 - 89 - 27 - 27 - 10 - 14 - 4 - 14 - 19 - 83 - 89 - 14 - 16 - 7 - 15 - 4 - 23 - 80 - 89 - 4 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 190 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 380 1200 basechar 0 -AnchorPoint: "Anchor-15" 600 1260 basechar 0 -AnchorPoint: "Anchor-14" 237 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -111 -267 m 0,0,1 - 236 -267 236 -267 236 -119 c 2,2,-1 - 236 0 l 1,3,-1 - 142 0 l 1,4,-1 - 142 830 l 2,5,6 - 142 944 142 944 136 1082 c 1,7,-1 - 306 1082 l 1,8,9 - 314 898 314 898 314 861 c 1,10,-1 - 318 861 l 1,11,12 - 361 1000 361 1000 417 1051 c 128,-1,13 - 473 1102 473 1102 575 1102 c 0,14,15 - 611 1102 611 1102 648 1092 c 1,16,-1 - 648 927 l 1,17,18 - 612 937 612 937 552 937 c 0,19,20 - 440 937 440 937 381 840.5 c 128,-1,21 - 322 744 322 744 322 564 c 2,22,-1 - 322 155 l 1,23,-1 - 405 155 l 1,24,-1 - 405 -129 l 2,25,26 - 405 -425 405 -425 124 -425 c 0,27,28 - 73 -425 73 -425 0 -409 c 1,29,-1 - 0 -249 l 1,30,31 - 49 -267 49 -267 111 -267 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D8A -Encoding: 7562 7562 1450 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 37 - 36 - 36 - 22 - 9 - 9 - 16 - 15 - 15 - 4 - 0 - 43 - 30 - 0 - 30 - 54 - 53 - 22 - 43 - 12 - 33 - 33 - 40 - 80 - 89 - 37 - 33 - 16 - 12 - 19 - 80 - 89 - 16 - 12 - 22 - 2 - 7 - 80 - 89 - 2 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 730 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -950 -129 m 2,0,1 - 950 -425 950 -425 669 -425 c 0,2,3 - 610 -425 610 -425 537 -409 c 1,4,-1 - 537 -249 l 1,5,6 - 587 -267 587 -267 656 -267 c 0,7,8 - 781 -267 781 -267 781 -119 c 2,9,-1 - 781 31 l 1,10,11 - 673 -20 673 -20 511 -20 c 0,12,13 - 309 -20 309 -20 199.5 46.5 c 128,-1,14 - 90 113 90 113 57 254 c 1,15,-1 - 216 285 l 1,16,17 - 239 198 239 198 311 157.5 c 128,-1,18 - 383 117 383 117 511 117 c 0,19,20 - 648 117 648 117 711.5 159 c 128,-1,21 - 775 201 775 201 775 285 c 0,22,23 - 775 349 775 349 731 389 c 128,-1,24 - 687 429 687 429 589 455 c 2,25,-1 - 460 489 l 2,26,27 - 305 529 305 529 239.5 567.5 c 128,-1,28 - 174 606 174 606 137 661 c 128,-1,29 - 100 716 100 716 100 796 c 0,30,31 - 100 944 100 944 205.5 1021.5 c 128,-1,32 - 311 1099 311 1099 513 1099 c 0,33,34 - 692 1099 692 1099 797.5 1036 c 128,-1,35 - 903 973 903 973 931 834 c 1,36,-1 - 769 814 l 1,37,38 - 754 886 754 886 688.5 924.5 c 128,-1,39 - 623 963 623 963 513 963 c 0,40,41 - 391 963 391 963 333 926 c 128,-1,42 - 275 889 275 889 275 814 c 0,43,44 - 275 768 275 768 299 738 c 128,-1,45 - 323 708 323 708 370 687 c 128,-1,46 - 417 666 417 666 568 629 c 0,47,48 - 711 593 711 593 774 562.5 c 128,-1,49 - 837 532 837 532 873.5 495 c 128,-1,50 - 910 458 910 458 930 409.5 c 128,-1,51 - 950 361 950 361 950 299 c 2,52,-1 - 950 -129 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1D8B -Encoding: 7563 7563 1451 -Width: 792 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 29 - 20 - 24 - 18 - 32 - 32 - 6 - 6 - 12 - 20 - 3 - 39 - 0 - 38 - 27 - 22 - 80 - 89 - 18 - 31 - 80 - 89 - 27 - 18 - 12 - 12 - 18 - 27 - 3 - 35 - 9 - 35 - 2 - 80 - 89 - 35 - 27 - 9 - 14 - 80 - 89 - 9 - 0 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -CALL -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 60 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 792 1540 basechar 0 -AnchorPoint: "Anchor-20" 792 -380 basechar 0 -AnchorPoint: "Anchor-16" 349 1540 basechar 0 -AnchorPoint: "Anchor-15" 560 1540 basechar 0 -AnchorPoint: "Anchor-14" 105 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet --89 -256 m 1,0,1 - -36 -270 -36 -270 -3 -270 c 0,2,3 - 51 -270 51 -270 80.5 -248.5 c 128,-1,4 - 110 -227 110 -227 123 -186.5 c 128,-1,5 - 136 -146 136 -146 136 -37 c 2,6,-1 - 136 1130 l 2,7,8 - 136 1484 136 1484 452 1484 c 0,9,10 - 539 1484 539 1484 583 1466 c 1,11,-1 - 583 1303 l 1,12,13 - 534 1330 534 1330 468 1330 c 0,14,15 - 391 1330 391 1330 353.5 1277.5 c 128,-1,16 - 316 1225 316 1225 316 1097 c 2,17,-1 - 316 275 l 1,18,-1 - 762 275 l 1,19,-1 - 762 -16 l 2,20,21 - 762 -312 762 -312 487 -312 c 0,22,23 - 446 -312 446 -312 400 -304 c 1,24,-1 - 400 -147 l 1,25,26 - 445 -157 445 -157 485 -157 c 0,27,28 - 603 -157 603 -157 603 -6 c 2,29,-1 - 603 133 l 1,30,-1 - 316 133 l 1,31,-1 - 316 -70 l 2,32,33 - 316 -250 316 -250 242 -337.5 c 128,-1,34 - 168 -425 168 -425 14 -425 c 0,35,36 - -38 -425 -38 -425 -89 -414 c 1,37,-1 - -89 -256 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D8C -Encoding: 7564 7564 1452 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 11 - 2 - 2 - 22 - 13 - 0 - 18 - 14 - 18 - 6 - 22 - 4 - 24 - 23 - 18 - 13 - 21 - 14 - 15 - 4 - 9 - 80 - 89 - 4 - 7 - 83 - 89 - 4 - 13 - 13 - 0 - 80 - 89 - 13 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 513 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1260 basechar 0 -AnchorPoint: "Anchor-14" 520 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -665 139 m 1,0,-1 - 903 139 l 1,1,-1 - 903 -130 l 2,2,3 - 903 -426 903 -426 628 -426 c 0,4,5 - 587 -426 587 -426 541 -418 c 1,6,-1 - 541 -261 l 1,7,8 - 586 -271 586 -271 626 -271 c 0,9,10 - 744 -271 744 -271 744 -120 c 2,11,-1 - 744 0 l 1,12,-1 - 400 0 l 1,13,-1 - 7 1082 l 1,14,-1 - 199 1082 l 1,15,-1 - 437 378 l 2,16,17 - 450 338 450 338 506 141 c 1,18,-1 - 541 258 l 1,19,-1 - 580 376 l 1,20,-1 - 826 1082 l 1,21,-1 - 1017 1082 l 1,22,-1 - 665 139 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D8D -Encoding: 7565 7565 1453 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 1 - 2 - 2 - 5 - 4 - 23 - 21 - 11 - 11 - 7 - 8 - 8 - 0 - 6 - 4 - 4 - 24 - 25 - 23 - 11 - 80 - 89 - 23 - 21 - 14 - 19 - 80 - 89 - 14 - 27 - 7 - 15 - 0 - 3 - 9 - 6 - 4 - 1 - 5 - 15 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 514 1540 basechar 0 -AnchorPoint: "Anchor-15" 960 1540 basechar 0 -AnchorPoint: "Anchor-14" 512 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -510 444 m 1,0,-1 - 217 0 l 1,1,-1 - 23 0 l 1,2,-1 - 408 556 l 1,3,-1 - 41 1082 l 1,4,-1 - 240 1082 l 1,5,-1 - 510 661 l 1,6,-1 - 778 1082 l 1,7,-1 - 979 1082 l 1,8,-1 - 612 558 l 1,9,-1 - 905 139 l 1,10,-1 - 1018 139 l 1,11,-1 - 1018 -130 l 2,12,13 - 1018 -426 1018 -426 743 -426 c 0,14,15 - 702 -426 702 -426 656 -418 c 1,16,-1 - 656 -261 l 1,17,18 - 701 -271 701 -271 741 -271 c 0,19,20 - 859 -271 859 -271 859 -120 c 2,21,-1 - 859 0 l 1,22,-1 - 801 0 l 1,23,-1 - 510 444 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D8E -Encoding: 7566 7566 1454 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 6 - 2 - 19 - 1 - 5 - 5 - 17 - 8 - 8 - 13 - 19 - 3 - 20 - 21 - 10 - 15 - 80 - 89 - 10 - 19 - 0 - 6 - 19 - 6 - 80 - 89 - 19 - 21 - 5 - 2 - 3 - 2 - 80 - 89 - 3 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 715 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 460 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -49 137 m 1,0,-1 - 710 943 l 1,1,-1 - 89 943 l 1,2,-1 - 89 1082 l 1,3,-1 - 913 1082 l 1,4,-1 - 913 945 l 1,5,-1 - 251 139 l 1,6,-1 - 950 139 l 1,7,-1 - 950 -130 l 2,8,9 - 950 -426 950 -426 675 -426 c 0,10,11 - 634 -426 634 -426 588 -418 c 1,12,-1 - 588 -261 l 1,13,14 - 633 -271 633 -271 673 -271 c 0,15,16 - 791 -271 791 -271 791 -120 c 2,17,-1 - 791 0 l 1,18,-1 - 49 0 l 1,19,-1 - 49 137 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D8F -Encoding: 7567 7567 1455 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 65 - 38 - 7 - 46 - 46 - 21 - 21 - 35 - 35 - 30 - 26 - 14 - 15 - 15 - 52 - 3 - 26 - 3 - 56 - 55 - 36 - 23 - 81 - 89 - 36 - 21 - 33 - 28 - 80 - 89 - 33 - 27 - 6 - 48 - 81 - 89 - 38 - 6 - 6 - 0 - 17 - 63 - 14 - 1 - 15 - 14 - 111 - 14 - 2 - 11 - 3 - 14 - 14 - 17 - 17 - 11 - 80 - 89 - 17 - 16 - 0 - 42 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -SRP1 -SRP2 -IP -MDAP[rnd] -IP -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1166 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -414 -20 m 0,0,1 - 251 -20 251 -20 169 66 c 128,-1,2 - 87 152 87 152 87 302 c 0,3,4 - 87 470 87 470 197.5 560 c 128,-1,5 - 308 650 308 650 554 656 c 2,6,-1 - 797 660 l 1,7,-1 - 797 719 l 2,8,9 - 797 851 797 851 741 908 c 128,-1,10 - 685 965 685 965 565 965 c 0,11,12 - 444 965 444 965 389 924 c 128,-1,13 - 334 883 334 883 323 793 c 1,14,-1 - 135 810 l 1,15,16 - 181 1102 181 1102 569 1102 c 0,17,18 - 773 1102 773 1102 876 1008.5 c 128,-1,19 - 979 915 979 915 979 738 c 2,20,-1 - 979 272 l 2,21,22 - 979 111 979 111 1072 111 c 0,23,24 - 1098 111 1098 111 1131 118 c 1,25,-1 - 1131 -120 l 2,26,27 - 1131 -271 1131 -271 1249 -271 c 0,28,29 - 1289 -271 1289 -271 1334 -261 c 1,30,-1 - 1334 -418 l 1,31,32 - 1288 -426 1288 -426 1247 -426 c 0,33,34 - 972 -426 972 -426 972 -130 c 2,35,-1 - 972 -9 l 1,36,37 - 812 2 812 2 803 207 c 1,38,-1 - 797 207 l 1,39,40 - 728 83 728 83 636.5 31.5 c 128,-1,41 - 545 -20 545 -20 414 -20 c 0,0,1 -455 115 m 0,42,43 - 554 115 554 115 631 160 c 128,-1,44 - 708 205 708 205 752.5 283.5 c 128,-1,45 - 797 362 797 362 797 445 c 2,46,-1 - 797 534 l 1,47,-1 - 600 530 l 2,48,49 - 473 528 473 528 407.5 504 c 128,-1,50 - 342 480 342 480 307 430 c 128,-1,51 - 272 380 272 380 272 299 c 0,52,53 - 272 211 272 211 319.5 163 c 128,-1,54 - 367 115 367 115 455 115 c 0,42,43 -EndSplineSet -EndChar - -StartChar: uni1D90 -Encoding: 7568 7568 1456 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 25 - 12 - 35 - 35 - 33 - 33 - 9 - 9 - 4 - 0 - 41 - 20 - 0 - 20 - 48 - 47 - 29 - 16 - 25 - 13 - 22 - 17 - 22 - 38 - 80 - 89 - 22 - 16 - 7 - 4 - 80 - 89 - 7 - 2 - 83 - 89 - 7 - 17 - 17 - 44 - 80 - 89 - 17 - 22 - 11 - 33 - 80 - 89 - 11 - 21 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1100 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1069 -120 m 2,0,1 - 1069 -271 1069 -271 1187 -271 c 0,2,3 - 1227 -271 1227 -271 1272 -261 c 1,4,-1 - 1272 -418 l 1,5,6 - 1226 -426 1226 -426 1185 -426 c 0,7,8 - 910 -426 910 -426 910 -130 c 2,9,-1 - 910 0 l 1,10,-1 - 829 0 l 1,11,-1 - 827 119 l 1,12,-1 - 827 178 l 1,13,-1 - 823 178 l 1,14,15 - 769 71 769 71 690 25.5 c 128,-1,16 - 611 -20 611 -20 484 -20 c 0,17,18 - 278 -20 278 -20 182 119 c 128,-1,19 - 86 258 86 258 86 536 c 0,20,21 - 86 1102 86 1102 484 1102 c 0,22,23 - 607 1102 607 1102 687 1058.5 c 128,-1,24 - 767 1015 767 1015 821 914 c 1,25,-1 - 823 914 l 1,26,27 - 823 944 823 944 827 1017.5 c 128,-1,28 - 831 1091 831 1091 835 1096 c 1,29,-1 - 1008 1096 l 1,30,31 - 1001 1037 1001 1037 1001 801 c 2,32,-1 - 1001 139 l 1,33,-1 - 1069 139 l 1,34,-1 - 1069 -120 l 2,0,1 -821 554 m 0,35,36 - 821 765 821 765 752 867 c 128,-1,37 - 683 969 683 969 532 969 c 0,38,39 - 395 969 395 969 335 867 c 128,-1,40 - 275 765 275 765 275 542 c 0,41,42 - 275 315 275 315 335.5 217 c 128,-1,43 - 396 119 396 119 530 119 c 0,44,45 - 683 119 683 119 752 228 c 128,-1,46 - 821 337 821 337 821 554 c 0,35,36 -EndSplineSet -EndChar - -StartChar: uni1D91 -Encoding: 7569 7569 1457 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 41 - 14 - 34 - 34 - 25 - 20 - 29 - 29 - 25 - 35 - 7 - 25 - 7 - 48 - 47 - 32 - 27 - 80 - 89 - 32 - 27 - 17 - 22 - 80 - 89 - 17 - 0 - 12 - 0 - 9 - 4 - 9 - 44 - 80 - 89 - 9 - 16 - 4 - 38 - 80 - 89 - 4 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1030 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -825 174 m 1,0,-1 - 821 174 l 1,1,2 - 771 70 771 70 688.5 25 c 128,-1,3 - 606 -20 606 -20 484 -20 c 0,4,5 - 279 -20 279 -20 182.5 118 c 128,-1,6 - 86 256 86 256 86 536 c 0,7,8 - 86 1102 86 1102 484 1102 c 0,9,10 - 607 1102 607 1102 689 1057 c 128,-1,11 - 771 1012 771 1012 821 914 c 1,12,-1 - 823 914 l 1,13,-1 - 821 1035 l 1,14,-1 - 821 1202 l 2,15,16 - 821 1498 821 1498 1104 1498 c 0,17,18 - 1169 1498 1169 1498 1239 1483 c 1,19,-1 - 1239 1315 l 1,20,21 - 1181 1336 1181 1336 1122 1336 c 0,22,23 - 1001 1336 1001 1336 1001 1188 c 2,24,-1 - 1001 -123 l 2,25,26 - 1001 -271 1001 -271 1123 -271 c 0,27,28 - 1187 -271 1187 -271 1229 -256 c 1,29,-1 - 1229 -410 l 1,30,31 - 1166 -425 1166 -425 1105 -425 c 0,32,33 - 825 -425 825 -425 825 -129 c 2,34,-1 - 825 174 l 1,0,-1 -275 542 m 0,35,36 - 275 315 275 315 335 217 c 128,-1,37 - 395 119 395 119 530 119 c 0,38,39 - 683 119 683 119 752 225 c 128,-1,40 - 821 331 821 331 821 554 c 0,41,42 - 821 769 821 769 752 869 c 128,-1,43 - 683 969 683 969 532 969 c 0,44,45 - 396 969 396 969 335.5 868.5 c 128,-1,46 - 275 768 275 768 275 542 c 0,35,36 -EndSplineSet -EndChar - -StartChar: uni1D92 -Encoding: 7570 7570 1458 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 6 - 17 - 17 - 12 - 8 - 8 - 30 - 28 - 0 - 36 - 36 - 23 - 28 - 23 - 38 - 37 - 6 - 6 - 0 - 3 - 36 - 0 - 80 - 89 - 36 - 36 - 20 - 26 - 26 - 33 - 80 - 89 - 26 - 16 - 20 - 3 - 80 - 89 - 20 - 22 - 15 - 10 - 80 - 89 - 15 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1110 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -276 503 m 1,0,1 - 276 317 276 317 353 216 c 128,-1,2 - 430 115 430 115 578 115 c 0,3,4 - 695 115 695 115 765.5 162 c 128,-1,5 - 836 209 836 209 861 281 c 1,6,-1 - 1019 236 l 1,7,-1 - 1019 -123 l 2,8,9 - 1019 -271 1019 -271 1141 -271 c 0,10,11 - 1205 -271 1205 -271 1247 -256 c 1,12,-1 - 1247 -410 l 1,13,14 - 1184 -425 1184 -425 1123 -425 c 0,15,16 - 843 -425 843 -425 843 -129 c 2,17,-1 - 843 48 l 1,18,19 - 739 -20 739 -20 578 -20 c 0,20,21 - 338 -20 338 -20 212.5 123 c 128,-1,22 - 87 266 87 266 87 548 c 0,23,24 - 87 816 87 816 212.5 959 c 128,-1,25 - 338 1102 338 1102 571 1102 c 0,26,27 - 1048 1102 1048 1102 1048 527 c 2,28,-1 - 1048 503 l 1,29,-1 - 276 503 l 1,0,1 -862 641 m 1,30,31 - 847 812 847 812 775 890.5 c 128,-1,32 - 703 969 703 969 568 969 c 0,33,34 - 437 969 437 969 360.5 881.5 c 128,-1,35 - 284 794 284 794 278 641 c 1,36,-1 - 862 641 l 1,30,31 -EndSplineSet -EndChar - -StartChar: uni1D93 -Encoding: 7571 7571 1459 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 59 - 34 - 45 - 45 - 36 - 7 - 6 - 6 - 26 - 10 - 16 - 15 - 15 - 40 - 36 - 22 - 10 - 10 - 29 - 3 - 36 - 3 - 49 - 48 - 43 - 38 - 80 - 89 - 43 - 27 - 6 - 25 - 26 - 25 - 26 - 80 - 89 - 25 - 25 - 0 - 13 - 13 - 19 - 80 - 89 - 16 - 16 - 13 - 16 - 46 - 0 - 34 - 34 - 0 - 0 - 32 - 80 - 89 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -IP -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 979 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 939 1540 basechar 0 -AnchorPoint: "Anchor-20" 939 -380 basechar 0 -AnchorPoint: "Anchor-16" 480 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1260 basechar 0 -AnchorPoint: "Anchor-14" 480 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -477 -20 m 0,0,1 - 286 -20 286 -20 179.5 65.5 c 128,-1,2 - 73 151 73 151 73 301 c 0,3,4 - 73 409 73 409 148 482.5 c 128,-1,5 - 223 556 223 556 347 569 c 1,6,-1 - 347 571 l 1,7,8 - 240 580 240 580 169.5 646.5 c 128,-1,9 - 99 713 99 713 99 812 c 0,10,11 - 99 941 99 941 203.5 1021.5 c 128,-1,12 - 308 1102 308 1102 473 1102 c 0,13,14 - 804 1102 804 1102 850 844 c 1,15,-1 - 688 824 l 1,16,17 - 676 894 676 894 620 931 c 128,-1,18 - 564 968 564 968 474 968 c 0,19,20 - 381 968 381 968 331.5 925 c 128,-1,21 - 282 882 282 882 282 808 c 0,22,23 - 282 721 282 721 357 678.5 c 128,-1,24 - 432 636 432 636 595 636 c 1,25,-1 - 595 499 l 1,26,27 - 428 499 428 499 344.5 448 c 128,-1,28 - 261 397 261 397 261 300 c 0,29,30 - 261 216 261 216 316.5 165 c 128,-1,31 - 372 114 372 114 473 114 c 0,32,33 - 674 114 674 114 727 278 c 1,34,-1 - 886 234 l 1,35,-1 - 886 -123 l 2,36,37 - 886 -271 886 -271 1008 -271 c 0,38,39 - 1072 -271 1072 -271 1114 -256 c 1,40,-1 - 1114 -410 l 1,41,42 - 1051 -425 1051 -425 990 -425 c 0,43,44 - 710 -425 710 -425 710 -129 c 2,45,-1 - 710 40 l 1,46,47 - 611 -20 611 -20 477 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D94 -Encoding: 7572 7572 1460 -Width: 939 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 19 - 38 - 30 - 23 - 35 - 35 - 16 - 42 - 29 - 30 - 30 - 0 - 9 - 9 - 5 - 42 - 3 - 49 - 48 - 38 - 20 - 19 - 20 - 19 - 80 - 89 - 20 - 20 - 32 - 47 - 45 - 11 - 11 - 45 - 45 - 13 - 80 - 89 - 45 - 22 - 29 - 29 - 32 - 32 - 26 - 80 - 89 - 32 - 16 - 7 - 2 - 80 - 89 - 7 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -IP -SRP1 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 330 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 939 1540 basechar 0 -AnchorPoint: "Anchor-20" 939 -380 basechar 0 -AnchorPoint: "Anchor-16" 480 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1260 basechar 0 -AnchorPoint: "Anchor-14" 480 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -229 -123 m 2,0,1 - 229 -271 229 -271 351 -271 c 0,2,3 - 415 -271 415 -271 457 -256 c 1,4,-1 - 457 -410 l 1,5,6 - 394 -425 394 -425 333 -425 c 0,7,8 - 53 -425 53 -425 53 -129 c 2,9,-1 - 53 234 l 1,10,-1 - 212 278 l 1,11,12 - 265 114 265 114 466 114 c 0,13,14 - 567 114 567 114 622.5 164.5 c 128,-1,15 - 678 215 678 215 678 300 c 0,16,17 - 678 397 678 397 594.5 448 c 128,-1,18 - 511 499 511 499 344 499 c 1,19,-1 - 344 636 l 1,20,21 - 505 636 505 636 581 678 c 128,-1,22 - 657 720 657 720 657 808 c 0,23,24 - 657 882 657 882 607.5 925 c 128,-1,25 - 558 968 558 968 465 968 c 0,26,27 - 376 968 376 968 319.5 931 c 128,-1,28 - 263 894 263 894 251 824 c 1,29,-1 - 89 844 l 1,30,31 - 135 1102 135 1102 466 1102 c 0,32,33 - 630 1102 630 1102 735 1022 c 128,-1,34 - 840 942 840 942 840 812 c 0,35,36 - 840 713 840 713 769 646.5 c 128,-1,37 - 698 580 698 580 592 571 c 1,38,-1 - 592 569 l 1,39,40 - 715 556 715 556 790.5 483 c 128,-1,41 - 866 410 866 410 866 301 c 0,42,43 - 866 151 866 151 760 65.5 c 128,-1,44 - 654 -20 654 -20 462 -20 c 0,45,46 - 328 -20 328 -20 229 40 c 1,47,-1 - 229 -123 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1D95 -Encoding: 7573 7573 1461 -Width: 1332 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 49 - 0 - 37 - 37 - 24 - 24 - 12 - 23 - 23 - 18 - 14 - 31 - 7 - 29 - 14 - 29 - 39 - 38 - 24 - 31 - 30 - 31 - 80 - 89 - 12 - 30 - 30 - 27 - 9 - 27 - 34 - 80 - 89 - 27 - 22 - 21 - 16 - 80 - 89 - 21 - 27 - 6 - 6 - 9 - 9 - 3 - 80 - 89 - 9 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1331 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1332 1540 basechar 0 -AnchorPoint: "Anchor-20" 1332 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -860 579 m 1,0,1 - 860 765 860 765 783 866 c 128,-1,2 - 706 967 706 967 558 967 c 0,3,4 - 441 967 441 967 370.5 920 c 128,-1,5 - 300 873 300 873 275 801 c 1,6,-1 - 117 846 l 1,7,8 - 214 1102 214 1102 558 1102 c 0,9,10 - 790 1102 790 1102 914 970.5 c 128,-1,11 - 1038 839 1038 839 1048 577 c 1,12,-1 - 1221 577 l 1,13,-1 - 1221 -123 l 2,14,15 - 1221 -271 1221 -271 1343 -271 c 0,16,17 - 1407 -271 1407 -271 1449 -256 c 1,18,-1 - 1449 -410 l 1,19,20 - 1386 -425 1386 -425 1325 -425 c 0,21,22 - 1045 -425 1045 -425 1045 -129 c 2,23,-1 - 1045 442 l 1,24,25 - 1023 216 1023 216 900 98 c 128,-1,26 - 777 -20 777 -20 565 -20 c 0,27,28 - 88 -20 88 -20 88 555 c 2,29,-1 - 88 579 l 1,30,-1 - 860 579 l 1,0,1 -274 441 m 1,31,32 - 289 270 289 270 361 191.5 c 128,-1,33 - 433 113 433 113 568 113 c 0,34,35 - 699 113 699 113 775.5 200.5 c 128,-1,36 - 852 288 852 288 858 441 c 1,37,-1 - 274 441 l 1,31,32 -EndSplineSet -EndChar - -StartChar: uni1D96 -Encoding: 7574 7574 1462 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 13 - 9 - 9 - 2 - 2 - 19 - 7 - 7 - 16 - 4 - 4 - 21 - 20 - 17 - 16 - 83 - 89 - 17 - 0 - 5 - 15 - 4 - 7 - 83 - 89 - 4 - 21 - 0 - 11 - 80 - 89 - 0 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 500 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -512 -425 m 0,0,1 - 232 -425 232 -425 232 -129 c 2,2,-1 - 232 0 l 1,3,-1 - 137 0 l 1,4,-1 - 137 1082 l 1,5,-1 - 317 1082 l 1,6,-1 - 317 155 l 1,7,-1 - 408 155 l 1,8,-1 - 408 -123 l 2,9,10 - 408 -271 408 -271 530 -271 c 0,11,12 - 594 -271 594 -271 636 -256 c 1,13,-1 - 636 -410 l 1,14,15 - 573 -425 573 -425 512 -425 c 0,0,1 -137 1312 m 1,16,-1 - 137 1484 l 1,17,-1 - 317 1484 l 1,18,-1 - 317 1312 l 1,19,-1 - 137 1312 l 1,16,-1 -EndSplineSet -EndChar - -StartChar: uni1D97 -Encoding: 7575 7575 1463 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 6 - 19 - 25 - 13 - 34 - 34 - 30 - 19 - 3 - 37 - 36 - 32 - 27 - 80 - 89 - 32 - 27 - 24 - 22 - 0 - 0 - 22 - 22 - 3 - 80 - 89 - 22 - 22 - 12 - 12 - 16 - 16 - 9 - 80 - 89 - 16 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 320 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -243 334 m 1,0,1 - 258 226 258 226 322.5 174 c 128,-1,2 - 387 122 387 122 483 122 c 0,3,4 - 621 122 621 122 688.5 226.5 c 128,-1,5 - 756 331 756 331 756 546 c 0,6,7 - 756 772 756 772 691.5 866.5 c 128,-1,8 - 627 961 627 961 485 961 c 0,9,10 - 380 961 380 961 323 908 c 128,-1,11 - 266 855 266 855 252 765 c 1,12,-1 - 67 779 l 1,13,14 - 96 930 96 930 204.5 1016 c 128,-1,15 - 313 1102 313 1102 480 1102 c 0,16,17 - 704 1102 704 1102 824 958.5 c 128,-1,18 - 944 815 944 815 944 542 c 0,19,20 - 944 267 944 267 824.5 123.5 c 128,-1,21 - 705 -20 705 -20 478 -20 c 0,22,23 - 339 -20 339 -20 237 51 c 1,24,-1 - 237 -123 l 2,25,26 - 237 -271 237 -271 359 -271 c 0,27,28 - 423 -271 423 -271 465 -256 c 1,29,-1 - 465 -410 l 1,30,31 - 402 -425 402 -425 341 -425 c 0,32,33 - 61 -425 61 -425 61 -129 c 2,34,-1 - 61 322 l 1,35,-1 - 243 334 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D98 -Encoding: 7576 7576 1464 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 28 - 0 - 0 - 21 - 8 - 21 - 35 - 34 - 3 - 14 - 14 - 34 - 17 - 3 - 80 - 89 - 17 - 17 - 25 - 11 - 25 - 30 - 80 - 89 - 25 - 0 - 11 - 6 - 80 - 89 - 11 - 27 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 349 1540 basechar 0 -AnchorPoint: "Anchor-15" 560 1540 basechar 0 -AnchorPoint: "Anchor-14" 105 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -316 206 m 2,0,1 - 316 33 316 33 254 -51.5 c 128,-1,2 - 192 -136 192 -136 65 -147 c 1,3,4 - 67 -213 67 -213 90.5 -242 c 128,-1,5 - 114 -271 114 -271 173 -271 c 0,6,7 - 237 -271 237 -271 279 -256 c 1,8,-1 - 279 -410 l 1,9,10 - 216 -425 216 -425 155 -425 c 0,11,12 - 16 -425 16 -425 -47.5 -356 c 128,-1,13 - -111 -287 -111 -287 -111 -140 c 2,14,-1 - -111 30 l 1,15,16 - -51 6 -51 6 6 6 c 0,17,18 - 56 6 56 6 83.5 25.5 c 128,-1,19 - 111 45 111 45 122.5 84 c 128,-1,20 - 134 123 134 123 134 226 c 2,21,-1 - 134 1130 l 2,22,23 - 134 1303 134 1303 209.5 1393.5 c 128,-1,24 - 285 1484 285 1484 432 1484 c 0,25,26 - 539 1484 539 1484 583 1466 c 1,27,-1 - 583 1299 l 1,28,29 - 534 1326 534 1326 468 1326 c 0,30,31 - 391 1326 391 1326 353.5 1273.5 c 128,-1,32 - 316 1221 316 1221 316 1093 c 2,33,-1 - 316 206 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1D99 -Encoding: 7577 7577 1465 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 28 - 8 - 8 - 11 - 11 - 22 - 17 - 13 - 1 - 35 - 13 - 35 - 38 - 37 - 28 - 0 - 32 - 32 - 5 - 80 - 89 - 32 - 22 - 24 - 12 - 80 - 89 - 24 - 21 - 20 - 15 - 80 - 89 - 20 - 27 - 10 - 15 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1166 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -314 1082 m 1,0,-1 - 314 396 l 2,1,2 - 314 289 314 289 335 230 c 128,-1,3 - 356 171 356 171 402 145 c 128,-1,4 - 448 119 448 119 537 119 c 0,5,6 - 667 119 667 119 742 208 c 128,-1,7 - 817 297 817 297 817 455 c 2,8,-1 - 817 1082 l 1,9,-1 - 997 1082 l 1,10,-1 - 997 155 l 1,11,-1 - 1086 155 l 1,12,-1 - 1086 -123 l 2,13,14 - 1086 -271 1086 -271 1208 -271 c 0,15,16 - 1273 -271 1273 -271 1309 -256 c 1,17,-1 - 1309 -410 l 1,18,19 - 1246 -425 1246 -425 1190 -425 c 0,20,21 - 910 -425 910 -425 910 -129 c 2,22,-1 - 910 0 l 1,23,-1 - 833 0 l 1,24,25 - 832 5 832 5 831 27 c 128,-1,26 - 830 49 830 49 828.5 77.5 c 128,-1,27 - 827 106 827 106 825 185 c 1,28,-1 - 822 185 l 1,29,30 - 760 73 760 73 678.5 26.5 c 128,-1,31 - 597 -20 597 -20 476 -20 c 0,32,33 - 298 -20 298 -20 215.5 68.5 c 128,-1,34 - 133 157 133 157 133 361 c 2,35,-1 - 133 1082 l 1,36,-1 - 314 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1D9A -Encoding: 7578 7578 1466 -Width: 1116 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 62 - 10 - 32 - 17 - 3 - 13 - 12 - 16 - 16 - 6 - 19 - 13 - 26 - 36 - 19 - 36 - 39 - 38 - 25 - 23 - 0 - 0 - 23 - 3 - 23 - 80 - 89 - 11 - 17 - 17 - 10 - 81 - 89 - 3 - 64 - 9 - 12 - 72 - 15 - 17 - 1 - 11 - 3 - 3 - 17 - 3 - 17 - 34 - 14 - 34 - 29 - 80 - 89 - 34 - 27 - 16 - 13 - 14 - 13 - 80 - 89 - 14 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 330 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1116 1540 basechar 0 -AnchorPoint: "Anchor-20" 1116 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1540 basechar 0 -AnchorPoint: "Anchor-15" 1280 1540 basechar 0 -AnchorPoint: "Anchor-14" 560 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -246 204 m 1,0,1 - 265 73 265 73 340.5 14.5 c 128,-1,2 - 416 -44 416 -44 555 -44 c 0,3,4 - 688 -44 688 -44 771 27 c 128,-1,5 - 854 98 854 98 854 201 c 0,6,7 - 854 343 854 343 772.5 407.5 c 128,-1,8 - 691 472 691 472 507 472 c 2,9,-1 - 425 472 l 1,10,-1 - 425 600 l 1,11,-1 - 799 941 l 1,12,-1 - 116 941 l 1,13,-1 - 116 1082 l 1,14,-1 - 999 1082 l 1,15,-1 - 999 932 l 1,16,-1 - 615 600 l 1,17,18 - 1035 571 1035 571 1035 201 c 0,19,20 - 1035 98 1035 98 974.5 9 c 128,-1,21 - 914 -80 914 -80 806.5 -130.5 c 128,-1,22 - 699 -181 699 -181 561 -181 c 0,23,24 - 354 -181 354 -181 236 -73 c 1,25,-1 - 236 -123 l 2,26,27 - 236 -196 236 -196 270 -233.5 c 128,-1,28 - 304 -271 304 -271 366 -271 c 0,29,30 - 430 -271 430 -271 472 -256 c 1,31,-1 - 472 -410 l 1,32,33 - 409 -425 409 -425 348 -425 c 0,34,35 - 68 -425 68 -425 68 -129 c 2,36,-1 - 68 192 l 1,37,-1 - 246 204 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1D9B -Encoding: 7579 7579 1467 -Width: 772 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 22 - 6 - 28 - 21 - 14 - 14 - 18 - 13 - 15 - 6 - 15 - 35 - 34 - 0 - 11 - 3 - 8 - 31 - 8 - 228 - 89 - 31 - 223 - 18 - 235 - 15 - 232 - 3 - 25 - 228 - 89 - 3 - 236 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -214 1130 m 1,0,1 - 248 1204 248 1204 303.5 1235.5 c 128,-1,2 - 359 1267 359 1267 443 1267 c 0,3,4 - 583 1267 583 1267 648.5 1170 c 128,-1,5 - 714 1073 714 1073 714 875 c 0,6,7 - 714 475 714 475 443 475 c 0,8,9 - 359 475 359 475 303.5 507 c 128,-1,10 - 248 539 248 539 214 608 c 1,11,-1 - 212 608 l 1,12,-1 - 214 523 l 1,13,-1 - 214 490 l 1,14,-1 - 91 490 l 1,15,-1 - 91 1095 l 2,16,17 - 91 1227 91 1227 87 1253 c 1,18,-1 - 204 1253 l 1,19,20 - 211 1204 211 1204 211 1130 c 1,21,-1 - 214 1130 l 1,0,1 -585 870 m 0,22,23 - 585 1027 585 1027 545 1098 c 128,-1,24 - 505 1169 505 1169 412 1169 c 0,25,26 - 308 1169 308 1169 261 1093.5 c 128,-1,27 - 214 1018 214 1018 214 862 c 0,28,29 - 214 711 214 711 261 640 c 128,-1,30 - 308 569 308 569 410 569 c 0,31,32 - 500 569 500 569 542.5 638.5 c 128,-1,33 - 585 708 585 708 585 870 c 0,22,23 -EndSplineSet -EndChar - -StartChar: uni1D9C -Encoding: 7580 7580 1468 -Width: 725 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 0 - 12 - 18 - 6 - 12 - 6 - 24 - 25 - 15 - 21 - 228 - 89 - 19 - 15 - 236 - 5 - 9 - 9 - 2 - 228 - 89 - 9 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -192 876 m 0,0,1 - 192 577 192 577 378 577 c 0,2,3 - 444 577 444 577 487 613.5 c 128,-1,4 - 530 650 530 650 541 726 c 1,5,-1 - 665 718 l 1,6,7 - 651 609 651 609 575.5 542.5 c 128,-1,8 - 500 476 500 476 381 476 c 0,9,10 - 229 476 229 476 146.5 576.5 c 128,-1,11 - 64 677 64 677 64 873 c 0,12,13 - 64 1063 64 1063 144.5 1165.5 c 128,-1,14 - 225 1268 225 1268 380 1268 c 0,15,16 - 494 1268 494 1268 567.5 1208 c 128,-1,17 - 641 1148 641 1148 661 1040 c 1,18,-1 - 535 1030 l 1,19,20 - 513 1168 513 1168 376 1168 c 0,21,22 - 278 1168 278 1168 235 1100 c 128,-1,23 - 192 1032 192 1032 192 876 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1D9D -Encoding: 7581 7581 1469 -Width: 713 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 34 - 14 - 26 - 38 - 6 - 20 - 8 - 2 - 5 - 5 - 8 - 6 - 26 - 4 - 41 - 40 - 24 - 36 - 228 - 89 - 22 - 38 - 6 - 2 - 4 - 24 - 24 - 0 - 11 - 11 - 17 - 228 - 89 - 15 - 11 - 236 - 0 - 30 - 228 - 89 - 4 - 96 - 0 - 1 - 0 - 233 -SVTCA[y-axis] -MIAP[rnd] -DELTAP1 -MDRP[rnd,white] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SLOOP -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -380 477 m 0,0,1 - 272 477 272 477 195 533 c 1,2,3 - 160 478 160 478 135 426 c 1,4,-1 - 51 491 l 1,5,-1 - 125 608 l 1,6,7 - 58 710 58 710 58 873 c 0,8,9 - 58 1062 58 1062 138.5 1165 c 128,-1,10 - 219 1268 219 1268 373 1268 c 0,11,12 - 487 1268 487 1268 560.5 1208 c 128,-1,13 - 634 1148 634 1148 654 1040 c 1,14,-1 - 528 1030 l 1,15,16 - 509 1168 509 1168 370 1168 c 0,17,18 - 273 1168 273 1168 229.5 1102.5 c 128,-1,19 - 186 1037 186 1037 186 876 c 0,20,21 - 186 781 186 781 209 712 c 1,22,23 - 338 851 338 851 473 851 c 0,24,25 - 655 851 655 851 655 689 c 0,26,27 - 655 628 655 628 623.5 581 c 128,-1,28 - 592 534 592 534 531.5 505.5 c 128,-1,29 - 471 477 471 477 380 477 c 0,0,1 -380 571 m 0,30,31 - 436 571 436 571 474.5 586 c 128,-1,32 - 513 601 513 601 533.5 625 c 128,-1,33 - 554 649 554 649 554 678 c 0,34,35 - 554 753 554 753 470 753 c 0,36,37 - 358 753 358 753 259 622 c 1,38,39 - 306 571 306 571 380 571 c 0,30,31 -EndSplineSet -EndChar - -StartChar: uni1D9E -Encoding: 7582 7582 1470 -Width: 764 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 47 - 8 - 28 - 28 - 25 - 21 - 18 - 10 - 13 - 4 - 12 - 19 - 19 - 25 - 12 - 34 - 3 - 25 - 3 - 41 - 40 - 10 - 21 - 13 - 18 - 4 - 11 - 19 - 19 - 16 - 11 - 6 - 6 - 31 - 228 - 89 - 8 - 6 - 6 - 0 - 16 - 234 - 0 - 37 - 228 - 89 - 0 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -SLOOP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -377 477 m 0,0,1 - 220 477 220 477 135 567.5 c 128,-1,2 - 50 658 50 658 50 830 c 0,3,4 - 50 1001 50 1001 134 1091.5 c 128,-1,5 - 218 1182 218 1182 381 1182 c 0,6,7 - 475 1182 475 1182 539 1140 c 1,8,9 - 465 1292 465 1292 379 1372 c 1,10,-1 - 175 1279 l 1,11,-1 - 175 1359 l 1,12,-1 - 323 1425 l 1,13,14 - 260 1478 260 1478 158 1537 c 1,15,-1 - 301 1537 l 1,16,17 - 353 1513 353 1513 416 1465 c 1,18,-1 - 624 1558 l 1,19,-1 - 624 1479 l 1,20,-1 - 480 1414 l 1,21,22 - 592 1309 592 1309 653.5 1168 c 128,-1,23 - 715 1027 715 1027 715 855 c 2,24,-1 - 715 851 l 2,25,26 - 715 668 715 668 630.5 572.5 c 128,-1,27 - 546 477 546 477 377 477 c 0,0,1 -586 830 m 0,28,29 - 586 963 586 963 539.5 1025.5 c 128,-1,30 - 493 1088 493 1088 384 1088 c 0,31,32 - 274 1088 274 1088 226.5 1023.5 c 128,-1,33 - 179 959 179 959 179 830 c 0,34,35 - 179 696 179 696 228 633.5 c 128,-1,36 - 277 571 277 571 375 571 c 0,37,38 - 486 571 486 571 536 633.5 c 128,-1,39 - 586 696 586 696 586 830 c 0,28,29 -EndSplineSet -EndChar - -StartChar: uni1D9F -Encoding: 7583 7583 1471 -Width: 652 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 68 - 16 - 35 - 27 - 21 - 33 - 33 - 12 - 0 - 26 - 27 - 27 - 7 - 6 - 0 - 6 - 39 - 38 - 35 - 17 - 16 - 17 - 16 - 228 - 89 - 17 - 64 - 14 - 17 - 72 - 17 - 64 - 9 - 12 - 72 - 17 - 17 - 3 - 30 - 15 - 26 - 1 - 22 - 3 - 26 - 64 - 14 - 17 - 72 - 26 - 26 - 30 - 30 - 24 - 228 - 89 - 30 - 236 - 3 - 9 - 228 - 89 - 64 - 7 - 1 - 7 - 7 - 3 - 233 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -593 692 m 0,0,1 - 593 592 593 592 520.5 533.5 c 128,-1,2 - 448 475 448 475 318 475 c 0,3,4 - 194 475 194 475 122 534.5 c 128,-1,5 - 50 594 50 594 39 716 c 1,6,-1 - 160 726 l 1,7,8 - 172 568 172 568 318 568 c 0,9,10 - 393 568 393 568 431.5 602.5 c 128,-1,11 - 470 637 470 637 470 700 c 0,12,13 - 470 761 470 761 431.5 795 c 128,-1,14 - 393 829 393 829 315 829 c 2,15,-1 - 250 829 l 1,16,-1 - 250 929 l 1,17,-1 - 311 929 l 2,18,19 - 374 929 374 929 412.5 961.5 c 128,-1,20 - 451 994 451 994 451 1049 c 0,21,22 - 451 1103 451 1103 417.5 1137.5 c 128,-1,23 - 384 1172 384 1172 315 1172 c 0,24,25 - 198 1172 198 1172 177 1028 c 1,26,-1 - 55 1039 l 1,27,28 - 68 1145 68 1145 137 1205.5 c 128,-1,29 - 206 1266 206 1266 317 1266 c 0,30,31 - 437 1266 437 1266 505 1209 c 128,-1,32 - 573 1152 573 1152 573 1055 c 0,33,34 - 573 930 573 930 423 882 c 1,35,36 - 505 868 505 868 549 819 c 128,-1,37 - 593 770 593 770 593 692 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1DA0 -Encoding: 7584 7584 1472 -Width: 469 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 17 - 1 - 1 - 7 - 4 - 2 - 19 - 13 - 2 - 13 - 21 - 22 - 6 - 3 - 228 - 89 - 6 - 6 - 18 - 18 - 0 - 228 - 89 - 18 - 18 - 1 - 10 - 10 - 14 - 228 - 89 - 10 - 234 - 1 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -272 1161 m 1,0,-1 - 272 490 l 1,1,-1 - 149 490 l 1,2,-1 - 149 1161 l 1,3,-1 - 46 1161 l 1,4,-1 - 46 1253 l 1,5,-1 - 149 1253 l 1,6,-1 - 149 1338 l 2,7,8 - 149 1442 149 1442 193 1488 c 128,-1,9 - 237 1534 237 1534 329 1534 c 0,10,11 - 386 1534 386 1534 415 1526 c 1,12,-1 - 415 1429 l 1,13,-1 - 361 1435 l 1,14,15 - 314 1435 314 1435 293 1410.5 c 128,-1,16 - 272 1386 272 1386 272 1321 c 2,17,-1 - 272 1253 l 1,18,-1 - 415 1253 l 1,19,-1 - 415 1161 l 1,20,-1 - 272 1161 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DA1 -Encoding: 7585 7585 1473 -Width: 469 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 19 - 12 - 0 - 17 - 17 - 5 - 3 - 7 - 12 - 7 - 21 - 22 - 0 - 18 - 228 - 89 - 0 - 0 - 3 - 3 - 6 - 228 - 89 - 3 - 3 - 2 - 10 - 10 - 14 - 228 - 89 - 10 - 2 - 235 -SVTCA[y-axis] -MIAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -187 767 m 1,0,-1 - 187 1253 l 1,1,-1 - 310 1253 l 1,2,-1 - 310 767 l 1,3,-1 - 413 767 l 1,4,-1 - 413 675 l 1,5,-1 - 310 675 l 1,6,-1 - 310 405 l 2,7,8 - 310 301 310 301 266 255 c 128,-1,9 - 222 209 222 209 130 209 c 0,10,11 - 73 209 73 209 44 217 c 1,12,-1 - 44 314 l 1,13,-1 - 98 308 l 1,14,15 - 145 308 145 308 166 332.5 c 128,-1,16 - 187 357 187 357 187 422 c 2,17,-1 - 187 675 l 1,18,-1 - 44 675 l 1,19,-1 - 44 767 l 1,20,-1 - 187 767 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DA2 -Encoding: 7586 7586 1474 -Width: 772 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1389 7501 N 1 0 0 1 0 0 3 -EndChar - -StartChar: uni1DA3 -Encoding: 7587 7587 1475 -Width: 785 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 9 - 6 - 22 - 15 - 19 - 19 - 18 - 6 - 18 - 23 - 24 - 12 - 3 - 228 - 89 - 0 - 79 - 12 - 95 - 12 - 111 - 12 - 3 - 12 - 12 - 7 - 19 - 232 - 16 - 7 - 234 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -DELTAP1 -IP -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -565 904 m 1,0,1 - 524 827 524 827 468.5 793 c 128,-1,2 - 413 759 413 759 329 759 c 0,3,4 - 210 759 210 759 153 821.5 c 128,-1,5 - 96 884 96 884 96 1028 c 2,6,-1 - 96 1536 l 1,7,-1 - 219 1536 l 1,8,-1 - 219 1052 l 2,9,10 - 219 936 219 936 254.5 896.5 c 128,-1,11 - 290 857 290 857 371 857 c 0,12,13 - 459 857 459 857 510 919.5 c 128,-1,14 - 561 982 561 982 561 1086 c 2,15,-1 - 561 1536 l 1,16,-1 - 684 1536 l 1,17,-1 - 684 490 l 1,18,-1 - 561 490 l 1,19,-1 - 561 762 l 2,20,21 - 561 874 561 874 567 904 c 1,22,-1 - 565 904 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1DA4 -Encoding: 7588 7588 1476 -Width: 322 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 15 - 9 - 7 - 11 - 11 - 12 - 4 - 2 - 0 - 0 - 16 - 17 - 12 - 13 - 234 - 10 - 2 - 3 - 2 - 228 - 89 - 7 - 3 - 64 - 9 - 12 - 72 - 3 - 3 - 5 - 235 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -CALL -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 490 m 1,0,-1 - 100 852 l 1,1,-1 - 17 852 l 1,2,-1 - 17 940 l 1,3,-1 - 100 940 l 1,4,-1 - 100 1253 l 1,5,-1 - 221 1253 l 1,6,-1 - 221 940 l 1,7,-1 - 302 940 l 1,8,-1 - 302 852 l 1,9,-1 - 221 852 l 1,10,-1 - 221 490 l 1,11,-1 - 100 490 l 1,0,-1 -100 1415 m 1,12,-1 - 100 1536 l 1,13,-1 - 221 1536 l 1,14,-1 - 221 1415 l 1,15,-1 - 100 1415 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: uni1DA5 -Encoding: 7589 7589 1477 -Width: 322 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 0 - 0 - 4 - 5 - 1 - 235 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 490 m 1,0,-1 - 100 1253 l 1,1,-1 - 221 1253 l 1,2,-1 - 221 490 l 1,3,-1 - 100 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DA6 -Encoding: 7590 7590 1478 -Width: 322 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 0 - 0 - 5 - 4 - 1 - 235 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 490 m 1,0,-1 - 100 1253 l 1,1,-1 - 221 1253 l 1,2,-1 - 221 490 l 1,3,-1 - 100 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DA7 -Encoding: 7591 7591 1479 -Width: 322 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 9 - 7 - 11 - 11 - 4 - 2 - 0 - 0 - 12 - 13 - 10 - 2 - 3 - 2 - 228 - 89 - 7 - 3 - 64 - 9 - 12 - 72 - 3 - 3 - 5 - 235 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -CALL -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 490 m 1,0,-1 - 100 852 l 1,1,-1 - 17 852 l 1,2,-1 - 17 940 l 1,3,-1 - 100 940 l 1,4,-1 - 100 1253 l 1,5,-1 - 221 1253 l 1,6,-1 - 221 940 l 1,7,-1 - 302 940 l 1,8,-1 - 302 852 l 1,9,-1 - 221 852 l 1,10,-1 - 221 490 l 1,11,-1 - 100 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DA8 -Encoding: 7592 7592 1480 -Width: 554 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 28 - 7 - 21 - 21 - 31 - 12 - 10 - 14 - 14 - 32 - 33 - 25 - 3 - 3 - 32 - 29 - 28 - 229 - 89 - 29 - 234 - 13 - 22 - 6 - 22 - 228 - 89 - 10 - 15 - 6 - 1 - 13 - 3 - 6 - 6 - 0 - 8 - 235 - 0 - 17 - 228 - 89 - 0 - 238 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -232 191 m 0,0,1 - 123 191 123 191 61 239.5 c 128,-1,2 - -1 288 -1 288 -1 377 c 256,3,4 - -1 466 -1 466 48.5 511 c 128,-1,5 - 98 556 98 556 205 556 c 2,6,-1 - 334 556 l 1,7,-1 - 334 1253 l 1,8,-1 - 456 1253 l 1,9,-1 - 456 556 l 1,10,-1 - 549 556 l 1,11,-1 - 549 458 l 1,12,-1 - 456 458 l 1,13,-1 - 456 432 l 2,14,15 - 456 326 456 326 395.5 258.5 c 128,-1,16 - 335 191 335 191 232 191 c 0,0,1 -213 291 m 0,17,18 - 272 291 272 291 303 329.5 c 128,-1,19 - 334 368 334 368 334 442 c 2,20,-1 - 334 458 l 1,21,-1 - 209 458 l 2,22,23 - 157 458 157 458 135 437.5 c 128,-1,24 - 113 417 113 417 113 376 c 0,25,26 - 113 337 113 337 140.5 314 c 128,-1,27 - 168 291 168 291 213 291 c 0,17,18 -334 1415 m 1,28,-1 - 334 1536 l 1,29,-1 - 456 1536 l 1,30,-1 - 456 1415 l 1,31,-1 - 334 1415 l 1,28,-1 -EndSplineSet -EndChar - -StartChar: uni1DA9 -Encoding: 7593 7593 1481 -Width: 322 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 0 - 10 - 10 - 13 - 5 - 14 - 11 - 234 - 8 - 5 - 229 - 89 - 8 - 3 - 229 - 89 - 8 - 238 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -210 409 m 2,0,1 - 210 352 210 352 229.5 328.5 c 128,-1,2 - 249 305 249 305 286 305 c 0,3,4 - 322 305 322 305 356 315 c 1,5,-1 - 356 201 l 1,6,7 - 312 191 312 191 278 191 c 0,8,9 - 87 191 87 191 87 399 c 2,10,-1 - 87 1536 l 1,11,-1 - 210 1536 l 1,12,-1 - 210 409 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1DAA -Encoding: 7594 7594 1482 -Width: 322 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 11 - 4 - 4 - 9 - 9 - 15 - 6 - 6 - 17 - 16 - 7 - 234 - 13 - 2 - 229 - 89 - 13 - 6 - 64 - 6 - 9 - 228 - 89 - 6 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -3 310 m 1,0,1 - 35 302 35 302 69 302 c 0,2,3 - 155 302 155 302 155 406 c 2,4,-1 - 155 490 l 1,5,-1 - 87 490 l 1,6,-1 - 87 1536 l 1,7,-1 - 209 1536 l 1,8,-1 - 209 599 l 1,9,-1 - 269 599 l 1,10,-1 - 269 399 l 2,11,12 - 269 191 269 191 78 191 c 0,13,14 - 38 191 38 191 3 198 c 1,15,-1 - 3 310 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1DAB -Encoding: 7595 7595 1483 -Width: 563 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 4 - 1 - 1 - 0 - 6 - 7 - 2 - 235 - 1 - 4 - 228 - 89 - 1 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -517 490 m 1,0,-1 - 88 490 l 1,1,-1 - 88 1253 l 1,2,-1 - 208 1253 l 1,3,-1 - 208 595 l 1,4,-1 - 517 595 l 1,5,-1 - 517 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DAC -Encoding: 7596 7596 1484 -Width: 1171 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 22 - 16 - 16 - 18 - 17 - 29 - 7 - 7 - 8 - 45 - 36 - 36 - 40 - 8 - 17 - 4 - 46 - 47 - 38 - 43 - 229 - 89 - 38 - 237 - 32 - 3 - 228 - 89 - 32 - 236 - 26 - 12 - 228 - 89 - 26 - 236 - 29 - 22 - 17 - 19 - 235 - 8 - 17 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -IP -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -945 973 m 2,0,1 - 945 1081 945 1081 917 1125 c 128,-1,2 - 889 1169 889 1169 811 1169 c 256,3,4 - 733 1169 733 1169 687 1109.5 c 128,-1,5 - 641 1050 641 1050 641 932 c 2,6,-1 - 641 490 l 1,7,-1 - 520 490 l 1,8,-1 - 520 973 l 2,9,10 - 520 1081 520 1081 492 1125 c 128,-1,11 - 464 1169 464 1169 386 1169 c 256,12,13 - 308 1169 308 1169 262 1107.5 c 128,-1,14 - 216 1046 216 1046 216 932 c 2,15,-1 - 216 490 l 1,16,-1 - 95 490 l 1,17,-1 - 95 1090 l 1,18,-1 - 91 1253 l 1,19,-1 - 206 1253 l 1,20,-1 - 212 1157 l 1,21,-1 - 212 1122 l 1,22,-1 - 214 1122 l 1,23,24 - 252 1200 252 1200 302.5 1233.5 c 128,-1,25 - 353 1267 353 1267 429 1267 c 0,26,27 - 512 1267 512 1267 560.5 1232 c 128,-1,28 - 609 1197 609 1197 628 1122 c 1,29,-1 - 631 1122 l 1,30,31 - 698 1267 698 1267 854 1267 c 0,32,33 - 966 1267 966 1267 1016 1203.5 c 128,-1,34 - 1066 1140 1066 1140 1066 998 c 2,35,-1 - 1066 399 l 2,36,37 - 1066 190 1066 190 875 190 c 0,38,39 - 833 190 833 190 783 202 c 1,40,-1 - 783 317 l 1,41,42 - 820 304 820 304 864 304 c 0,43,44 - 945 304 945 304 945 409 c 2,45,-1 - 945 973 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1DAD -Encoding: 7597 7597 1485 -Width: 1171 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 7 - 11 - 11 - 10 - 18 - 1 - 34 - 28 - 25 - 25 - 34 - 10 - 3 - 37 - 36 - 18 - 19 - 12 - 19 - 22 - 35 - 8 - 26 - 235 - 15 - 4 - 228 - 89 - 15 - 15 - 22 - 22 - 31 - 228 - 89 - 22 - 233 - 11 - 237 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -637 1253 m 1,0,-1 - 637 769 l 2,1,2 - 637 660 637 660 665.5 617 c 128,-1,3 - 694 574 694 574 771 574 c 0,4,5 - 849 574 849 574 895 635 c 128,-1,6 - 941 696 941 696 941 811 c 2,7,-1 - 941 1253 l 1,8,-1 - 1062 1253 l 1,9,-1 - 1062 190 l 1,10,-1 - 942 190 l 1,11,-1 - 942 613 l 1,12,13 - 904 537 904 537 853.5 506.5 c 128,-1,14 - 803 476 803 476 728 476 c 0,15,16 - 645 476 645 476 596.5 510.5 c 128,-1,17 - 548 545 548 545 529 620 c 1,18,-1 - 527 620 l 1,19,20 - 495 554 495 554 442.5 515 c 128,-1,21 - 390 476 390 476 303 476 c 0,22,23 - 191 476 191 476 141 539 c 128,-1,24 - 91 602 91 602 91 744 c 2,25,-1 - 91 1253 l 1,26,-1 - 212 1253 l 1,27,-1 - 212 769 l 2,28,29 - 212 660 212 660 240.5 617 c 128,-1,30 - 269 574 269 574 346 574 c 0,31,32 - 424 574 424 574 470 633.5 c 128,-1,33 - 516 693 516 693 516 811 c 2,34,-1 - 516 1253 l 1,35,-1 - 637 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DAE -Encoding: 7598 7598 1486 -Width: 783 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 5 - 22 - 22 - 27 - 0 - 31 - 14 - 13 - 31 - 13 - 32 - 33 - 24 - 29 - 229 - 89 - 24 - 237 - 5 - 2 - 14 - 232 - 9 - 18 - 228 - 89 - 9 - 236 - 2 - 235 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -98 1090 m 2,0,1 - 98 1233 98 1233 94 1253 c 1,2,-1 - 210 1253 l 1,3,-1 - 215 1157 l 1,4,-1 - 215 1122 l 1,5,-1 - 217 1122 l 1,6,7 - 261 1202 261 1202 315.5 1234.5 c 128,-1,8 - 370 1267 370 1267 453 1267 c 0,9,10 - 575 1267 575 1267 630.5 1203.5 c 128,-1,11 - 686 1140 686 1140 686 998 c 2,12,-1 - 686 490 l 1,13,-1 - 563 490 l 1,14,-1 - 563 973 l 2,15,16 - 563 1085 563 1085 530 1127 c 128,-1,17 - 497 1169 497 1169 411 1169 c 0,18,19 - 324 1169 324 1169 272.5 1107.5 c 128,-1,20 - 221 1046 221 1046 221 932 c 2,21,-1 - 221 399 l 2,22,23 - 221 190 221 190 30 190 c 0,24,25 - -10 190 -10 190 -63 202 c 1,26,-1 - -63 316 l 1,27,28 - -29 304 -29 304 18 304 c 0,29,30 - 98 304 98 304 98 409 c 2,31,-1 - 98 1090 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1DAF -Encoding: 7599 7599 1487 -Width: 783 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 9 - 4 - 0 - 23 - 17 - 17 - 19 - 18 - 0 - 18 - 32 - 31 - 27 - 13 - 228 - 89 - 27 - 236 - 23 - 18 - 20 - 235 - 18 - 232 - 7 - 2 - 229 - 89 - 7 - 237 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -686 409 m 2,0,1 - 686 304 686 304 766 304 c 0,2,3 - 809 304 809 304 838 316 c 1,4,-1 - 838 200 l 1,5,6 - 796 190 796 190 754 190 c 0,7,8 - 563 190 563 190 563 399 c 2,9,-1 - 563 973 l 2,10,11 - 563 1085 563 1085 530 1127 c 128,-1,12 - 497 1169 497 1169 412 1169 c 0,13,14 - 324 1169 324 1169 272.5 1107.5 c 128,-1,15 - 221 1046 221 1046 221 932 c 2,16,-1 - 221 490 l 1,17,-1 - 99 490 l 1,18,-1 - 99 1090 l 1,19,-1 - 95 1253 l 1,20,-1 - 210 1253 l 1,21,-1 - 216 1157 l 1,22,-1 - 216 1122 l 1,23,-1 - 218 1122 l 1,24,25 - 262 1202 262 1202 316.5 1234.5 c 128,-1,26 - 371 1267 371 1267 453 1267 c 0,27,28 - 576 1267 576 1267 631 1203.5 c 128,-1,29 - 686 1140 686 1140 686 998 c 2,30,-1 - 686 409 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1DB0 -Encoding: 7600 7600 1488 -Width: 782 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 11 - 13 - 13 - 14 - 4 - 3 - 3 - 7 - 14 - 7 - 16 - 17 - 3 - 11 - 14 - 5 - 15 - 235 - 8 - 14 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -213 1252 m 1,0,-1 - 530 769 l 2,1,2 - 547 742 547 742 569 696 c 1,3,-1 - 566 784 l 1,4,-1 - 566 1252 l 1,5,-1 - 682 1252 l 1,6,-1 - 682 490 l 1,7,-1 - 568 490 l 1,8,-1 - 255 982 l 2,9,10 - 237 1009 237 1009 205 1073 c 1,11,-1 - 210 958 l 1,12,-1 - 210 490 l 1,13,-1 - 95 490 l 1,14,-1 - 95 1252 l 1,15,-1 - 213 1252 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DB1 -Encoding: 7601 7601 1489 -Width: 773 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 20 - 14 - 14 - 5 - 21 - 13 - 13 - 0 - 5 - 0 - 24 - 25 - 20 - 14 - 228 - 89 - 20 - 64 - 14 - 17 - 72 - 20 - 64 - 9 - 12 - 72 - 20 - 20 - 2 - 7 - 7 - 17 - 228 - 89 - 7 - 236 - 2 - 10 - 228 - 89 - 2 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -715 873 m 0,0,1 - 715 476 715 476 383 476 c 0,2,3 - 229 476 229 476 143.5 573.5 c 128,-1,4 - 58 671 58 671 58 873 c 0,5,6 - 58 1268 58 1268 388 1268 c 0,7,8 - 560 1268 560 1268 637.5 1169 c 128,-1,9 - 715 1070 715 1070 715 873 c 0,0,1 -382 570 m 0,10,11 - 484 570 484 570 531 631.5 c 128,-1,12 - 578 693 578 693 585 822 c 1,13,-1 - 188 822 l 1,14,15 - 195 697 195 697 242.5 633.5 c 128,-1,16 - 290 570 290 570 382 570 c 0,10,11 -390 1174 m 0,17,18 - 291 1174 291 1174 243 1112.5 c 128,-1,19 - 195 1051 195 1051 188 926 c 1,20,-1 - 585 926 l 1,21,22 - 578 1055 578 1055 532.5 1114.5 c 128,-1,23 - 487 1174 487 1174 390 1174 c 0,17,18 -EndSplineSet -EndChar - -StartChar: uni1DB2 -Encoding: 7602 7602 1490 -Width: 768 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 23 - 4 - 20 - 9 - 15 - 15 - 25 - 6 - 0 - 16 - 12 - 12 - 0 - 4 - 3 - 29 - 30 - 7 - 234 - 9 - 19 - 228 - 89 - 9 - 9 - 6 - 6 - 26 - 228 - 89 - 6 - 236 - 20 - 25 - 1 - 25 - 228 - 89 - 14 - 1 - 233 - 0 - 238 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -324 191 m 1,0,-1 - 324 480 l 1,1,2 - 195 496 195 496 125 592.5 c 128,-1,3 - 55 689 55 689 55 872 c 0,4,5 - 55 1228 55 1228 324 1264 c 1,6,-1 - 324 1536 l 1,7,-1 - 436 1536 l 1,8,-1 - 436 1264 l 1,9,10 - 580 1250 580 1250 646 1152.5 c 128,-1,11 - 712 1055 712 1055 712 872 c 0,12,13 - 712 510 712 510 436 480 c 1,14,-1 - 436 191 l 1,15,-1 - 324 191 l 1,0,-1 -584 872 m 0,16,17 - 584 1012 584 1012 548 1084 c 128,-1,18 - 512 1156 512 1156 436 1169 c 1,19,-1 - 436 575 l 1,20,21 - 511 590 511 590 547.5 662 c 128,-1,22 - 584 734 584 734 584 872 c 0,16,17 -183 872 m 0,23,24 - 183 612 183 612 324 576 c 1,25,-1 - 324 1166 l 1,26,27 - 251 1146 251 1146 217 1075 c 128,-1,28 - 183 1004 183 1004 183 872 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni1DB3 -Encoding: 7603 7603 1491 -Width: 696 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 19 - 5 - 44 - 25 - 25 - 13 - 13 - 33 - 39 - 48 - 33 - 48 - 51 - 50 - 46 - 41 - 229 - 89 - 46 - 36 - 5 - 25 - 16 - 38 - 36 - 0 - 0 - 36 - 36 - 3 - 228 - 89 - 36 - 233 - 16 - 22 - 228 - 89 - 20 - 20 - 16 - 236 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -IP -SRP1 -IP -IP -SRP0 -MDRP[rnd,grey] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -155 692 m 1,0,1 - 171 631 171 631 220 602.5 c 128,-1,2 - 269 574 269 574 356 574 c 0,3,4 - 535 574 535 574 535 692 c 0,5,6 - 535 728 535 728 518.5 750.5 c 128,-1,7 - 502 773 502 773 471.5 788.5 c 128,-1,8 - 441 804 441 804 321 836 c 0,9,10 - 218 864 218 864 172 891 c 128,-1,11 - 126 918 126 918 101 957.5 c 128,-1,12 - 76 997 76 997 76 1053 c 0,13,14 - 76 1157 76 1157 148 1211.5 c 128,-1,15 - 220 1266 220 1266 357 1266 c 0,16,17 - 479 1266 479 1266 550.5 1222 c 128,-1,18 - 622 1178 622 1178 641 1079 c 1,19,-1 - 531 1065 l 1,20,21 - 510 1170 510 1170 357 1170 c 0,22,23 - 274 1170 274 1170 234.5 1144.5 c 128,-1,24 - 195 1119 195 1119 195 1065 c 0,25,26 - 195 1025 195 1025 222 1000 c 128,-1,27 - 249 975 249 975 314 957 c 2,28,-1 - 394 935 l 2,29,30 - 515 902 515 902 558.5 875 c 128,-1,31 - 602 848 602 848 628 806 c 128,-1,32 - 654 764 654 764 654 702 c 0,33,34 - 654 594 654 594 576.5 535.5 c 128,-1,35 - 499 477 499 477 356 477 c 0,36,37 - 241 477 241 477 162 519 c 1,38,-1 - 162 407 l 2,39,40 - 162 306 162 306 245 306 c 0,41,42 - 277 306 277 306 313 314 c 1,43,-1 - 313 200 l 1,44,45 - 270 192 270 192 236 192 c 0,46,47 - 47 192 47 192 47 400 c 2,48,-1 - 47 670 l 1,49,-1 - 155 692 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1DB4 -Encoding: 7604 7604 1492 -Width: 322 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 16 - 22 - 22 - 3 - 9 - 9 - 24 - 25 - 13 - 18 - 229 - 89 - 13 - 16 - 229 - 89 - 13 - 234 - 0 - 5 - 228 - 89 - 0 - 3 - 229 - 89 - 0 - 238 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -10 191 m 0,0,1 - -39 191 -39 191 -81 204 c 1,2,-1 - -81 317 l 1,3,4 - -33 300 -33 300 -1 300 c 0,5,6 - 35 300 35 300 55.5 315 c 128,-1,7 - 76 330 76 330 85.5 359 c 128,-1,8 - 95 388 95 388 95 464 c 2,9,-1 - 95 1287 l 2,10,11 - 95 1408 95 1408 145.5 1472 c 128,-1,12 - 196 1536 196 1536 298 1536 c 0,13,14 - 371 1536 371 1536 401 1524 c 1,15,-1 - 401 1406 l 1,16,17 - 366 1425 366 1425 323 1425 c 0,18,19 - 269 1425 269 1425 244 1387.5 c 128,-1,20 - 219 1350 219 1350 219 1261 c 2,21,-1 - 219 441 l 2,22,23 - 219 191 219 191 10 191 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1DB5 -Encoding: 7605 7605 1493 -Width: 450 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 23 - 10 - 0 - 21 - 25 - 25 - 18 - 16 - 4 - 14 - 0 - 14 - 32 - 31 - 19 - 222 - 24 - 16 - 17 - 16 - 228 - 89 - 21 - 17 - 235 - 11 - 28 - 228 - 89 - 11 - 233 - 2 - 7 - 229 - 89 - 2 - 238 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -389 390 m 2,0,1 - 389 191 389 191 217 191 c 0,2,3 - 173 191 173 191 125 203 c 1,4,-1 - 125 316 l 1,5,6 - 162 303 162 303 198 303 c 0,7,8 - 233 303 233 303 254 323 c 128,-1,9 - 275 343 275 343 275 400 c 2,10,-1 - 275 479 l 1,11,-1 - 266 479 l 2,12,13 - 119 479 119 479 119 652 c 2,14,-1 - 119 1161 l 1,15,-1 - 34 1161 l 1,16,-1 - 34 1253 l 1,17,-1 - 123 1253 l 1,18,-1 - 159 1424 l 1,19,-1 - 241 1424 l 1,20,-1 - 241 1253 l 1,21,-1 - 377 1253 l 1,22,-1 - 377 1161 l 1,23,-1 - 241 1161 l 1,24,-1 - 241 680 l 2,25,26 - 241 624 241 624 258 602 c 128,-1,27 - 275 580 275 580 319 580 c 0,28,29 - 349 580 349 580 389 590 c 1,30,-1 - 389 390 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1DB6 -Encoding: 7606 7606 1494 -Width: 783 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 12 - 2 - 28 - 28 - 7 - 5 - 9 - 1 - 31 - 31 - 23 - 22 - 19 - 9 - 19 - 35 - 34 - 12 - 13 - 30 - 8 - 21 - 22 - 21 - 228 - 89 - 5 - 1 - 13 - 22 - 64 - 9 - 12 - 72 - 22 - 22 - 11 - 3 - 24 - 235 - 16 - 25 - 228 - 89 - 16 - 233 - 11 - 232 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -IP -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -214 1253 m 1,0,-1 - 214 926 l 1,1,-1 - 557 926 l 1,2,-1 - 557 1253 l 1,3,-1 - 679 1253 l 1,4,-1 - 679 926 l 1,5,-1 - 752 926 l 1,6,-1 - 752 832 l 1,7,-1 - 679 832 l 1,8,-1 - 679 653 l 1,9,-1 - 683 491 l 1,10,-1 - 567 491 l 1,11,-1 - 562 621 l 1,12,-1 - 560 621 l 1,13,14 - 516 540 516 540 461 508.5 c 128,-1,15 - 406 477 406 477 325 477 c 0,16,17 - 202 477 202 477 146.5 540 c 128,-1,18 - 91 603 91 603 91 745 c 2,19,-1 - 91 832 l 1,20,-1 - 19 832 l 1,21,-1 - 19 926 l 1,22,-1 - 91 926 l 1,23,-1 - 91 1253 l 1,24,-1 - 214 1253 l 1,0,-1 -366 575 m 0,25,26 - 454 575 454 575 505.5 638.5 c 128,-1,27 - 557 702 557 702 557 817 c 2,28,-1 - 557 832 l 1,29,-1 - 214 832 l 1,30,-1 - 214 770 l 2,31,32 - 214 660 214 660 247 617.5 c 128,-1,33 - 280 575 280 575 366 575 c 0,25,26 -EndSplineSet -EndChar - -StartChar: uni1DB7 -Encoding: 7607 7607 1495 -Width: 794 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 8 - 17 - 17 - 22 - 22 - 12 - 3 - 42 - 33 - 33 - 28 - 28 - 38 - 47 - 3 - 47 - 50 - 51 - 39 - 12 - 13 - 12 - 228 - 89 - 8 - 42 - 0 - 36 - 13 - 235 - 0 - 25 - 228 - 89 - 0 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -394 477 m 0,0,1 - 242 477 242 477 149 566.5 c 128,-1,2 - 56 656 56 656 56 806 c 0,3,4 - 56 868 56 868 74 911.5 c 128,-1,5 - 92 955 92 955 113 988.5 c 128,-1,6 - 134 1022 134 1022 152 1048.5 c 128,-1,7 - 170 1075 170 1075 170 1104 c 0,8,9 - 170 1126 170 1126 155.5 1140.5 c 128,-1,10 - 141 1155 141 1155 112 1155 c 2,11,-1 - 56 1155 l 1,12,-1 - 56 1253 l 1,13,-1 - 140 1253 l 2,14,15 - 200 1253 200 1253 237.5 1218 c 128,-1,16 - 275 1183 275 1183 275 1120 c 0,17,18 - 275 1073 275 1073 260.5 1038 c 128,-1,19 - 246 1003 246 1003 229 970.5 c 128,-1,20 - 212 938 212 938 197.5 903.5 c 128,-1,21 - 183 869 183 869 183 823 c 0,22,23 - 183 710 183 710 240 643.5 c 128,-1,24 - 297 577 297 577 394 577 c 0,25,26 - 490 577 490 577 547.5 643 c 128,-1,27 - 605 709 605 709 605 823 c 0,28,29 - 605 869 605 869 590.5 903.5 c 128,-1,30 - 576 938 576 938 559 970.5 c 128,-1,31 - 542 1003 542 1003 527.5 1038 c 128,-1,32 - 513 1073 513 1073 513 1120 c 0,33,34 - 513 1183 513 1183 550.5 1218 c 128,-1,35 - 588 1253 588 1253 648 1253 c 2,36,-1 - 732 1253 l 1,37,-1 - 732 1155 l 1,38,-1 - 676 1155 l 2,39,40 - 647 1155 647 1155 632.5 1140.5 c 128,-1,41 - 618 1126 618 1126 618 1104 c 0,42,43 - 618 1075 618 1075 636 1048.5 c 128,-1,44 - 654 1022 654 1022 675 988.5 c 128,-1,45 - 696 955 696 955 714 911.5 c 128,-1,46 - 732 868 732 868 732 806 c 0,47,48 - 732 657 732 657 639.5 567 c 128,-1,49 - 547 477 547 477 394 477 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1DB8 -Encoding: 7608 7608 1496 -Width: 774 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 3 - 10 - 13 - 3 - 13 - 16 - 17 - 11 - 4 - 235 - 0 - 8 - 228 - 89 - 0 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -385 477 m 256,0,1 - 239 477 239 477 165 548 c 128,-1,2 - 91 619 91 619 91 778 c 2,3,-1 - 91 1253 l 1,4,-1 - 214 1253 l 1,5,-1 - 214 770 l 2,6,7 - 214 575 214 575 385 575 c 256,8,9 - 556 575 556 575 556 770 c 2,10,-1 - 556 1253 l 1,11,-1 - 679 1253 l 1,12,-1 - 679 778 l 2,13,14 - 679 619 679 619 605 548 c 128,-1,15 - 531 477 531 477 385 477 c 256,0,1 -EndSplineSet -EndChar - -StartChar: uni1DB9 -Encoding: 7609 7609 1497 -Width: 724 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 9 - 6 - 17 - 14 - 14 - 0 - 6 - 0 - 21 - 22 - 17 - 7 - 235 - 3 - 12 - 228 - 89 - 3 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -675 893 m 0,0,1 - 675 694 675 694 594.5 585.5 c 128,-1,2 - 514 477 514 477 367 477 c 256,3,4 - 220 477 220 477 153.5 550.5 c 128,-1,5 - 87 624 87 624 87 786 c 2,6,-1 - 87 1253 l 1,7,-1 - 210 1253 l 1,8,-1 - 210 782 l 2,9,10 - 210 679 210 679 248 627 c 128,-1,11 - 286 575 286 575 373 575 c 0,12,13 - 549 575 549 575 549 890 c 0,14,15 - 549 983 549 983 528.5 1080 c 128,-1,16 - 508 1177 508 1177 471 1253 c 1,17,-1 - 599 1253 l 1,18,19 - 632 1181 632 1181 653.5 1081 c 128,-1,20 - 675 981 675 981 675 893 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1DBA -Encoding: 7610 7610 1498 -Width: 658 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 5 - 9 - 2 - 2 - 11 - 9 - 10 - 5 - 3 - 9 - 232 - 0 - 235 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -262 1253 m 1,0,-1 - 407 1253 l 1,1,-1 - 674 490 l 1,2,-1 - 544 490 l 1,3,-1 - 382 987 l 1,4,-1 - 334 1154 l 1,5,6 - 320 1102 320 1102 310 1068.5 c 128,-1,7 - 300 1035 300 1035 117 490 c 1,8,-1 - -13 490 l 1,9,-1 - 262 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DBB -Encoding: 7611 7611 1499 -Width: 734 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 7 - 3 - 0 - 9 - 2 - 6 - 0 - 6 - 10 - 11 - 6 - 3 - 4 - 3 - 228 - 89 - 4 - 235 - 1 - 7 - 0 - 7 - 228 - 89 - 0 - 232 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -60 490 m 1,0,-1 - 60 586 l 1,1,-1 - 510 1155 l 1,2,-1 - 87 1155 l 1,3,-1 - 87 1253 l 1,4,-1 - 648 1253 l 1,5,-1 - 648 1157 l 1,6,-1 - 198 588 l 1,7,-1 - 673 588 l 1,8,-1 - 673 490 l 1,9,-1 - 60 490 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DBC -Encoding: 7612 7612 1500 -Width: 734 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 19 - 15 - 12 - 10 - 5 - 0 - 0 - 14 - 18 - 12 - 18 - 21 - 22 - 18 - 15 - 16 - 15 - 228 - 89 - 16 - 235 - 13 - 19 - 12 - 19 - 228 - 89 - 12 - 232 - 8 - 5 - 229 - 89 - 8 - 3 - 229 - 89 - 8 - 237 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -659 409 m 2,0,1 - 659 352 659 352 673.5 328 c 128,-1,2 - 688 304 688 304 726 304 c 0,3,4 - 759 304 759 304 787 312 c 1,5,-1 - 787 199 l 1,6,7 - 738 190 738 190 702 190 c 0,8,9 - 539 190 539 190 539 399 c 2,10,-1 - 539 490 l 1,11,-1 - 46 490 l 1,12,-1 - 46 586 l 1,13,-1 - 496 1155 l 1,14,-1 - 73 1155 l 1,15,-1 - 73 1253 l 1,16,-1 - 634 1253 l 1,17,-1 - 634 1156 l 1,18,-1 - 184 588 l 1,19,-1 - 659 588 l 1,20,-1 - 659 409 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1DBD -Encoding: 7613 7613 1501 -Width: 734 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 22 - 18 - 17 - 21 - 21 - 6 - 25 - 14 - 13 - 14 - 15 - 29 - 6 - 15 - 6 - 32 - 33 - 21 - 18 - 19 - 18 - 228 - 89 - 3 - 23 - 228 - 89 - 3 - 3 - 15 - 19 - 235 - 25 - 16 - 22 - 15 - 22 - 228 - 89 - 12 - 10 - 15 - 232 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[rnd,grey] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -292 588 m 1,0,1 - 362 709 362 709 425.5 764.5 c 128,-1,2 - 489 820 489 820 555 820 c 0,3,4 - 637 820 637 820 682 776 c 128,-1,5 - 727 732 727 732 727 660 c 0,6,7 - 727 576 727 576 680 533 c 128,-1,8 - 633 490 633 490 529 490 c 2,9,-1 - 357 490 l 1,10,11 - 327 432 327 432 301 365 c 1,12,-1 - 207 408 l 1,13,-1 - 244 490 l 1,14,-1 - 37 490 l 1,15,-1 - 37 587 l 1,16,-1 - 486 1155 l 1,17,-1 - 64 1155 l 1,18,-1 - 64 1253 l 1,19,-1 - 624 1253 l 1,20,-1 - 624 1157 l 1,21,-1 - 174 588 l 1,22,-1 - 292 588 l 1,0,1 -553 717 m 0,23,24 - 487 717 487 717 406 588 c 1,25,-1 - 523 588 l 2,26,27 - 575 588 575 588 599 604 c 128,-1,28 - 623 620 623 620 623 658 c 0,29,30 - 623 686 623 686 604 701.5 c 128,-1,31 - 585 717 585 717 553 717 c 0,23,24 -EndSplineSet -EndChar - -StartChar: uni1DBE -Encoding: 7614 7614 1502 -Width: 756 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 22 - 3 - 25 - 24 - 2 - 2 - 18 - 6 - 25 - 13 - 12 - 6 - 12 - 27 - 26 - 3 - 22 - 228 - 89 - 3 - 3 - 9 - 0 - 9 - 15 - 228 - 89 - 13 - 13 - 9 - 237 - 2 - 25 - 0 - 25 - 228 - 89 - 0 - 235 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -78 1253 m 1,0,-1 - 679 1253 l 1,1,-1 - 679 1127 l 1,2,-1 - 418 873 l 1,3,4 - 553 854 553 854 628 767 c 128,-1,5 - 703 680 703 680 703 539 c 0,6,7 - 703 384 703 384 610 287 c 128,-1,8 - 517 190 517 190 361 190 c 0,9,10 - 225 190 225 190 143 258.5 c 128,-1,11 - 61 327 61 327 46 456 c 1,12,-1 - 167 465 l 1,13,14 - 197 287 197 287 365 287 c 0,15,16 - 466 287 466 287 523 356.5 c 128,-1,17 - 580 426 580 426 580 543 c 0,18,19 - 580 653 580 653 518.5 716.5 c 128,-1,20 - 457 780 457 780 345 780 c 2,21,-1 - 289 780 l 1,22,-1 - 289 881 l 1,23,-1 - 556 1153 l 1,24,-1 - 78 1153 l 1,25,-1 - 78 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DBF -Encoding: 7615 7615 1503 -Width: 746 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 21 - 15 - 15 - 6 - 22 - 14 - 14 - 0 - 6 - 0 - 25 - 26 - 21 - 15 - 228 - 89 - 15 - 21 - 1 - 12 - 3 - 21 - 21 - 8 - 3 - 8 - 18 - 228 - 89 - 8 - 234 - 3 - 11 - 228 - 89 - 3 - 233 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -691 1013 m 0,0,1 - 691 744 691 744 609 613 c 128,-1,2 - 527 482 527 482 372 482 c 0,3,4 - 225 482 225 482 142.5 612 c 128,-1,5 - 60 742 60 742 60 1013 c 0,6,7 - 60 1541 60 1541 377 1541 c 0,8,9 - 541 1541 541 1541 616 1409.5 c 128,-1,10 - 691 1278 691 1278 691 1013 c 0,0,1 -371 575 m 0,11,12 - 468 575 468 575 512.5 671.5 c 128,-1,13 - 557 768 557 768 561 970 c 1,14,-1 - 190 970 l 1,15,16 - 193 777 193 777 237 676 c 128,-1,17 - 281 575 281 575 371 575 c 0,11,12 -379 1450 m 0,18,19 - 282 1450 282 1450 238 1357 c 128,-1,20 - 194 1264 194 1264 190 1063 c 1,21,-1 - 561 1063 l 1,22,23 - 557 1264 557 1264 514.5 1357 c 128,-1,24 - 472 1450 472 1450 379 1450 c 0,18,19 -EndSplineSet -EndChar - -StartChar: uni1DC0 -Encoding: 7616 7616 1504 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 11 - 9 - 0 - 8 - 8 - 3 - 0 - 128 - 13 - 13 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -MDAP[rnd] -SMD -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -SRP1 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1220 mark 0 -LayerCount: 2 -Fore -SplineSet -44 1218 m 1,0,-1 - -166 1540 l 1,1,-1 - -166 1577 l 1,2,-1 - 24 1577 l 1,3,-1 - 119 1251 l 1,4,-1 - 119 1218 l 1,5,-1 - 44 1218 l 1,0,-1 -173 1393 m 1,6,-1 - 173 1577 l 1,7,-1 - 336 1577 l 1,8,-1 - 336 1393 l 1,9,-1 - 173 1393 l 1,6,-1 --336 1219 m 1,10,-1 - -336 1403 l 1,11,-1 - -171 1403 l 1,12,-1 - -171 1219 l 1,13,-1 - -336 1219 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni1DC1 -Encoding: 7617 7617 1505 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 12 - 9 - 12 - 9 - 8 - 3 - 128 - 10 - 5 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -IP -MDAP[rnd] -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1220 mark 0 -LayerCount: 2 -Fore -SplineSet --140 1218 m 1,0,-1 - -140 1251 l 1,1,-1 - -45 1577 l 1,2,-1 - 145 1577 l 1,3,-1 - 145 1540 l 1,4,-1 - -65 1218 l 1,5,-1 - -140 1218 l 1,0,-1 -218 1393 m 1,6,-1 - 218 1577 l 1,7,-1 - 381 1577 l 1,8,-1 - 381 1393 l 1,9,-1 - 218 1393 l 1,6,-1 --380 1219 m 1,10,-1 - -380 1403 l 1,11,-1 - -215 1403 l 1,12,-1 - -215 1219 l 1,13,-1 - -380 1219 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni1DC2 -Encoding: 7618 7618 1506 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 17 - 31 - 41 - 3 - 24 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 0 -80 mark 0 -AnchorPoint: "Anchor-14" 0 -80 mark 0 -LayerCount: 2 -Fore -SplineSet -90 -434 m 1,0,1 - -89 -434 -89 -434 -89 -370 c 0,2,3 - -89 -354 -89 -354 -72.5 -344 c 128,-1,4 - -56 -334 -56 -334 -35.5 -327 c 128,-1,5 - -15 -320 -15 -320 1.5 -315 c 128,-1,6 - 18 -310 18 -310 18 -304 c 0,7,8 - 18 -295 18 -295 1.5 -291 c 128,-1,9 - -15 -287 -15 -287 -35.5 -282 c 128,-1,10 - -56 -277 -56 -277 -72.5 -269 c 128,-1,11 - -89 -261 -89 -261 -89 -243 c 0,12,13 - -89 -228 -89 -228 -71 -217.5 c 128,-1,14 - -53 -207 -53 -207 -32 -198 c 128,-1,15 - -11 -189 -11 -189 7 -181 c 128,-1,16 - 25 -173 25 -173 25 -164 c 0,17,18 - 25 -147 25 -147 -24 -147 c 0,19,20 - -67 -147 -67 -147 -114 -167 c 1,21,-1 - -123 -119 l 1,22,23 - -63 -86 -63 -86 -3 -86 c 0,24,25 - 102 -86 102 -86 102 -148 c 0,26,27 - 102 -172 102 -172 86 -186.5 c 128,-1,28 - 70 -201 70 -201 51.5 -210.5 c 128,-1,29 - 33 -220 33 -220 17 -226.5 c 128,-1,30 - 1 -233 1 -233 1 -241 c 0,31,32 - 1 -247 1 -247 15.5 -251 c 128,-1,33 - 30 -255 30 -255 48 -261 c 128,-1,34 - 66 -267 66 -267 80.5 -277 c 128,-1,35 - 95 -287 95 -287 95 -304 c 0,36,37 - 95 -320 95 -320 80.5 -329.5 c 128,-1,38 - 66 -339 66 -339 48 -345 c 128,-1,39 - 30 -351 30 -351 15.5 -355.5 c 128,-1,40 - 1 -360 1 -360 1 -367 c 256,41,42 - 1 -374 1 -374 20.5 -382 c 128,-1,43 - 40 -390 40 -390 90 -392 c 1,44,-1 - 90 -434 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni1DC3 -Encoding: 7619 7619 1507 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 18 - 18 - 10 - 128 - 13 - 6 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1240 mark 0 -LayerCount: 2 -Fore -SplineSet -349 1370 m 1,0,-1 - 315 1370 l 2,1,2 - 259 1370 259 1370 211 1351.5 c 128,-1,3 - 163 1333 163 1333 115 1310.5 c 128,-1,4 - 67 1288 67 1288 15.5 1269.5 c 128,-1,5 - -36 1251 -36 1251 -100 1251 c 0,6,7 - -209 1251 -209 1251 -276 1317.5 c 128,-1,8 - -343 1384 -343 1384 -343 1493 c 1,9,-1 - -216 1493 l 1,10,11 - -216 1436 -216 1436 -183 1400.5 c 128,-1,12 - -150 1365 -150 1365 -93 1365 c 0,13,14 - -41 1365 -41 1365 4 1385 c 128,-1,15 - 49 1405 49 1405 95.5 1429 c 128,-1,16 - 142 1453 142 1453 194.5 1473 c 128,-1,17 - 247 1493 247 1493 314 1493 c 2,18,-1 - 349 1493 l 1,19,-1 - 349 1370 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DC4 -Encoding: 7620 7620 1508 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 5 - 2 - 128 - 2 - 3 - 142 - 89 - 2 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1230 mark 0 -LayerCount: 2 -Fore -SplineSet -300 1384 m 1,0,-1 - 29 1236 l 1,1,-1 - -314 1236 l 1,2,-1 - -314 1364 l 1,3,-1 - 0 1364 l 1,4,-1 - 236 1492 l 1,5,-1 - 300 1384 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DC5 -Encoding: 7621 7621 1509 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 4 - 142 - 89 - 15 - 3 - 31 - 3 - 47 - 3 - 3 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -DELTAP1 -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1230 mark 0 -LayerCount: 2 -Fore -SplineSet -314 1236 m 1,0,-1 - -29 1236 l 1,1,-1 - -300 1384 l 1,2,-1 - -236 1492 l 1,3,-1 - 0 1364 l 1,4,-1 - 314 1364 l 1,5,-1 - 314 1236 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DC6 -Encoding: 7622 7622 1510 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 4 - 2 - 142 - 89 - 15 - 4 - 31 - 4 - 47 - 4 - 3 - 4 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -DELTAP1 -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1230 mark 0 -LayerCount: 2 -Fore -SplineSet -236 1236 m 1,0,-1 - 0 1364 l 1,1,-1 - -314 1364 l 1,2,-1 - -314 1492 l 1,3,-1 - 29 1492 l 1,4,-1 - 300 1344 l 1,5,-1 - 236 1236 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DC7 -Encoding: 7623 7623 1511 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 5 - 1 - 142 - 89 - 15 - 5 - 31 - 5 - 47 - 5 - 3 - 5 - 2 -SVTCA[y-axis] -MDAP[rnd] -MDRP[rnd,grey] -DELTAP1 -CALL -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1230 mark 0 -LayerCount: 2 -Fore -SplineSet -314 1364 m 1,0,-1 - 0 1364 l 1,1,-1 - -236 1236 l 1,2,-1 - -300 1344 l 1,3,-1 - -29 1492 l 1,4,-1 - 314 1492 l 1,5,-1 - 314 1364 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DC8 -Encoding: 7624 7624 1512 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 7 - 7 - 5 - 128 - 6 - 3 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1230 mark 0 -LayerCount: 2 -Fore -SplineSet -417 1345 m 1,0,-1 - 356 1236 l 1,1,-1 - 132 1358 l 1,2,-1 - -114 1236 l 1,3,-1 - -414 1384 l 1,4,-1 - -353 1493 l 1,5,-1 - -117 1365 l 1,6,-1 - 118 1493 l 1,7,-1 - 417 1345 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DC9 -Encoding: 7625 7625 1513 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 7 - 6 - 6 - 1 - 4 - 128 - 3 - 2 - 2 - 5 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1200 mark 0 -AnchorPoint: "Anchor-16" 0 1230 mark 0 -LayerCount: 2 -Fore -SplineSet -118 1236 m 1,0,-1 - -117 1364 l 1,1,-1 - -353 1236 l 1,2,-1 - -414 1345 l 1,3,-1 - -114 1493 l 1,4,-1 - 132 1371 l 1,5,-1 - 356 1493 l 1,6,-1 - 417 1384 l 1,7,-1 - 118 1236 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DCA -Encoding: 7626 7626 1514 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 5 - 0 - 128 - 13 - 3 - 9 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" -30 -50 mark 0 -AnchorPoint: "Anchor-14" -30 -50 mark 0 -LayerCount: 2 -Fore -SplineSet --142 -425 m 1,0,-1 - -142 -145 l 2,1,2 - -142 -83 -142 -83 -145 -61 c 1,3,-1 - -61 -61 l 1,4,-1 - -57 -135 l 1,5,-1 - -55 -135 l 1,6,7 - -32 -87 -32 -87 -4.5 -70.5 c 128,-1,8 - 23 -54 23 -54 72 -54 c 1,9,-1 - 108 -57 l 1,10,-1 - 108 -147 l 1,11,12 - 90 -143 90 -143 61 -143 c 0,13,14 - 0 -143 0 -143 -26.5 -178.5 c 128,-1,15 - -53 -214 -53 -214 -53 -269 c 2,16,-1 - -53 -425 l 1,17,-1 - -142 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DFE -Encoding: 7678 7678 1515 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 0 - 128 - 4 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-27" 0 1680 basemark 0 -AnchorPoint: "Anchor-27" 0 1120 mark 0 -AnchorPoint: "Anchor-16" 0 1150 mark 0 -LayerCount: 2 -Fore -SplineSet -141 1569 m 1,0,-1 - 141 1455 l 1,1,-1 - -29 1359 l 1,2,-1 - 141 1263 l 1,3,-1 - 141 1149 l 1,4,-1 - -140 1318 l 1,5,-1 - -140 1400 l 1,6,-1 - 141 1569 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1DFF -Encoding: 7679 7679 1516 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 11 - 8 - 12 - 9 - 9 - 4 - 2 - 128 - 6 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,white] -IP -SHP[rp1] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-28" 0 -520 basemark 0 -AnchorPoint: "Anchor-28" 30 0 mark 0 -AnchorPoint: "Anchor-14" 30 0 mark 0 -LayerCount: 2 -Fore -SplineSet -1 -175 m 1,0,-1 - 1 -257 l 1,1,-1 - -280 -426 l 1,2,-1 - -280 -312 l 1,3,-1 - -110 -216 l 1,4,-1 - -280 -120 l 1,5,-1 - -280 -6 l 1,6,-1 - 1 -175 l 1,0,-1 -260 -353 m 1,7,-1 - 178 -353 l 1,8,-1 - 9 -72 l 1,9,-1 - 123 -72 l 1,10,-1 - 219 -242 l 1,11,-1 - 315 -72 l 1,12,-1 - 429 -72 l 1,13,-1 - 260 -353 l 1,7,-1 -EndSplineSet -EndChar - -StartChar: uni1E00 -Encoding: 7680 7680 1517 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 23 - 1 - 23 - 17 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1260 1540 basechar 0 -AnchorPoint: "Anchor-14" 690 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 743 805 N 1 0 0 1 684 0 2 -EndChar - -StartChar: uni1E01 -Encoding: 7681 7681 1518 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 3 - 2 - 55 -PUSHW_1 - -44 -PUSHB_5 - 55 - 49 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 980 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 743 805 N 1 0 0 1 569 0 2 -EndChar - -StartChar: uni1E02 -Encoding: 7682 7682 1519 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 3 - 34 - 34 - 5 - 38 - 3 - 32 -PUSHW_1 - -53 -PUSHB_5 - 32 - 34 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 760 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 37 66 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 414 293 2 -EndChar - -StartChar: uni1E03 -Encoding: 7683 7683 1520 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 2 - 39 - 39 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 69 98 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 402 0 2 -EndChar - -StartChar: uni1E04 -Encoding: 7684 7684 1521 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 3 - 32 -PUSHW_1 - -76 -PUSHB_5 - 32 - 34 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 570 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 650 1540 basechar 0 -AnchorPoint: "Anchor-15" 1080 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 37 66 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 788 0 2 -EndChar - -StartChar: uni1E05 -Encoding: 7685 7685 1522 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 37 - 10 - 37 - 39 - 10 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 530 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 650 1580 basechar 0 -AnchorPoint: "Anchor-15" 930 1540 basechar 0 -AnchorPoint: "Anchor-14" 610 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 69 98 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 754 0 2 -EndChar - -StartChar: uni1E06 -Encoding: 7686 7686 1523 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 3 - 33 -PUSHW_1 - -73 -PUSHB_5 - 33 - 34 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 650 1540 basechar 0 -AnchorPoint: "Anchor-15" 1080 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 37 66 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 640 0 2 -EndChar - -StartChar: uni1E07 -Encoding: 7687 7687 1524 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 38 -PUSHW_1 - -26 -PUSHB_5 - 38 - 39 - 10 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 594 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 69 98 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 567 0 2 -EndChar - -StartChar: uni1E08 -Encoding: 7688 7688 1525 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 0 - 5 - 5 - 5 - 38 - 32 - 52 - 1 -DELTAP1 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 770 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 2303 -1 N 1 0 0 1 535 0 2 -Refer: 38 67 N 1 0 0 1 0 0 2 -Refer: 122 184 N 1 0 0 1 510 0 2 -EndChar - -StartChar: uni1E09 -Encoding: 7689 7689 1526 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 50 - 50 - 17 - 38 - 31 - 52 - 1 -DELTAP1 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 540 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 122 184 N 1 0 0 1 274 20 2 -Refer: 70 99 N 1 0 0 1 0 0 2 -Refer: 118 180 N 1 0 0 1 359 0 2 -EndChar - -StartChar: uni1E0A -Encoding: 7690 7690 1527 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 23 - 23 - 5 - 38 - 2 - 21 -PUSHW_1 - -68 -PUSHB_5 - 21 - 23 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 670 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 460 293 2 -EndChar - -StartChar: uni1E0B -Encoding: 7691 7691 1528 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 2 - 35 - 35 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 71 100 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 260 0 2 -EndChar - -StartChar: uni1E0C -Encoding: 7692 7692 1529 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 21 -PUSHW_1 - -85 -PUSHB_5 - 21 - 23 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 630 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 710 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 690 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 840 0 2 -EndChar - -StartChar: uni1E0D -Encoding: 7693 7693 1530 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 36 -PUSHW_1 - -27 -PUSHB_5 - 36 - 38 - 6 - 18 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 870 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 1020 1260 basechar 0 -AnchorPoint: "Anchor-14" 530 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 71 100 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 670 0 2 -EndChar - -StartChar: uni1E0E -Encoding: 7694 7694 1531 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 22 -PUSHW_1 - -125 -PUSHB_5 - 22 - 23 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 671 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 650 1540 basechar 0 -AnchorPoint: "Anchor-15" 1080 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 650 0 2 -EndChar - -StartChar: uni1E0F -Encoding: 7695 7695 1532 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 37 - 6 - 37 - 38 - 6 - 18 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 583 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 560 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 71 100 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 553 0 2 -EndChar - -StartChar: uni1E10 -Encoding: 7696 7696 1533 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 24 -PUSHW_1 - -115 -PUSHB_5 - 24 - 29 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 640 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1260 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 3 -Refer: 744 806 N 1 0 0 1 662 0 2 -EndChar - -StartChar: uni1E11 -Encoding: 7697 7697 1534 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 39 -PUSHW_1 - -8 -PUSHB_5 - 39 - 44 - 6 - 18 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 870 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 71 100 N 1 0 0 1 0 0 3 -Refer: 744 806 N 1 0 0 1 541 0 2 -EndChar - -StartChar: uni1E12 -Encoding: 7698 7698 1535 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 27 -PUSHW_1 - -79 -PUSHB_5 - 27 - 21 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 710 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 39 68 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 700 0 2 -EndChar - -StartChar: uni1E13 -Encoding: 7699 7699 1536 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 42 -PUSHW_1 - -21 -PUSHB_5 - 42 - 36 - 6 - 18 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 500 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 520 1580 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 520 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 71 100 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 530 0 2 -EndChar - -StartChar: uni1E14 -Encoding: 7700 7700 1537 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 19 - 19 - 5 - 38 - 2 - 1 - 20 -PUSHW_1 - -22 -PUSHB_5 - 20 - 21 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2503 -1 N 1 0 0 1 700 0 2 -EndChar - -StartChar: uni1E15 -Encoding: 7701 7701 1538 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 3 - 31 - 30 - 1 - 48 - 30 - 160 - 30 - 176 - 30 - 208 - 30 - 224 - 30 - 240 - 30 - 6 - 30 - 2 - 26 - 26 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 250 0 2 -Refer: 67 96 N 1 0 0 1 196 275 2 -EndChar - -StartChar: uni1E16 -Encoding: 7702 7702 1539 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 1 - 21 - 5 - 38 - 2 - 1 - 21 -PUSHW_1 - -22 -PUSHB_5 - 21 - 20 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2504 -1 N 1 0 0 1 700 0 2 -EndChar - -StartChar: uni1E17 -Encoding: 7703 7703 1540 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 2 - 31 - 31 - 1 - 48 - 31 - 160 - 31 - 176 - 31 - 208 - 31 - 224 - 31 - 240 - 31 - 6 - 31 - 3 - 32 - 32 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 366 275 2 -Refer: 651 713 N 1 0 0 1 250 0 2 -EndChar - -StartChar: uni1E18 -Encoding: 7704 7704 1541 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 19 -PUSHW_1 - -15 -PUSHB_5 - 19 - 13 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1210 1540 basechar 0 -AnchorPoint: "Anchor-14" 720 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 713 0 2 -EndChar - -StartChar: uni1E19 -Encoding: 7705 7705 1542 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 33 - 12 - 33 - 27 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 585 0 2 -EndChar - -StartChar: uni1E1A -Encoding: 7706 7706 1543 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 21 -PUSHW_1 - -22 -PUSHB_5 - 21 - 33 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -350 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1210 1540 basechar 0 -AnchorPoint: "Anchor-14" 720 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 754 816 N 1 0 0 1 700 0 2 -EndChar - -StartChar: uni1E1B -Encoding: 7707 7707 1544 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 35 -PUSHW_1 - -1 -PUSHB_5 - 35 - 47 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 -350 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 754 816 N 1 0 0 1 566 0 2 -EndChar - -StartChar: uni1E1C -Encoding: 7708 7708 1545 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 12 - 12 - 5 - 38 - 1 - 15 - 0 - 15 - 21 - 1 - 2 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 730 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 2 -Refer: 666 728 N 1 0 0 1 385 362 2 -Refer: 122 184 N 1 0 0 1 442 0 2 -EndChar - -StartChar: uni1E1D -Encoding: 7709 7709 1546 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 26 - 26 - 17 - 38 - 2 - 29 - 0 - 29 - 35 - 12 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 2 -Refer: 666 728 N 1 0 0 1 272 0 2 -Refer: 122 184 N 1 0 0 1 298 0 2 -EndChar - -StartChar: uni1E1E -Encoding: 7710 7710 1547 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 13 - 13 - 5 - 38 - 1 - 11 - 37 - 11 - 13 - 7 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 190 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 41 70 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 460 293 2 -EndChar - -StartChar: uni1E1F -Encoding: 7711 7711 1548 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 25 - 25 - 2 - 38 - 1 - 23 - 75 - 23 - 25 - 5 - 21 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 73 102 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 130 293 2 -EndChar - -StartChar: uni1E20 -Encoding: 7712 7712 1549 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 32 - 32 - 5 - 38 - 1 - 33 - 29 - 33 - 34 - 0 - 24 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-16" 810 1800 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 810 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 42 71 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 475 329 2 -EndChar - -StartChar: uni1E21 -Encoding: 7713 7713 1550 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 48 - 48 - 17 - 38 - 2 - 49 - 9 - 49 - 50 - 17 - 28 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 660 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 74 103 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1E22 -Encoding: 7714 7714 1551 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 15 - 15 - 5 - 38 - 1 - 13 - 5 - 13 - 15 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1150 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 499 293 2 -EndChar - -StartChar: uni1E23 -Encoding: 7715 7715 1552 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 28 - 28 - 2 - 38 - 1 - 26 - 54 - 26 - 28 - 19 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 75 104 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 382 293 2 -EndChar - -StartChar: uni1E24 -Encoding: 7716 7716 1553 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 13 -PUSHW_1 - -16 -PUSHB_5 - 13 - 15 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1150 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 875 0 2 -EndChar - -StartChar: uni1E25 -Encoding: 7717 7717 1554 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 26 -PUSHW_1 - -12 -PUSHB_5 - 26 - 28 - 19 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 870 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 560 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 75 104 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 713 0 2 -EndChar - -StartChar: uni1E26 -Encoding: 7718 7718 1555 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 19 - 19 - 5 - 38 - 2 - 1 - 17 -PUSHW_1 - -19 -PUSHB_5 - 17 - 15 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1150 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 397 0 2 -EndChar - -StartChar: uni1E27 -Encoding: 7719 7719 1556 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 32 - 32 - 2 - 38 - 2 - 1 - 30 - 39 - 30 - 28 - 19 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 560 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 75 104 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 290 362 2 -EndChar - -StartChar: uni1E28 -Encoding: 7720 7720 1557 -Width: 1479 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 1150 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -Refer: 122 184 N 1 0 0 1 26 0 2 -EndChar - -StartChar: uni1E29 -Encoding: 7721 7721 1558 -Width: 1139 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 560 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 75 104 N 1 0 0 1 0 0 3 -Refer: 122 184 N 1 0 0 1 -11 0 2 -EndChar - -StartChar: uni1E2A -Encoding: 7722 7722 1559 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 15 -PUSHW_1 - -13 -PUSHB_5 - 15 - 23 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1190 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -Refer: 752 814 N 1 0 0 1 727 0 2 -EndChar - -StartChar: uni1E2B -Encoding: 7723 7723 1560 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 28 - 0 - 28 - 36 - 19 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 590 -350 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 75 104 N 1 0 0 1 0 0 3 -Refer: 752 814 N 1 0 0 1 574 0 2 -EndChar - -StartChar: uni1E2C -Encoding: 7724 7724 1561 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 13 -PUSHW_1 - -1 -PUSHB_5 - 13 - 25 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 280 -350 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 754 816 N 1 0 0 1 283 0 2 -EndChar - -StartChar: uni1E2D -Encoding: 7725 7725 1562 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 17 - 0 - 17 - 29 - 5 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 -350 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 76 105 N 1 0 0 1 0 0 3 -Refer: 754 816 N 1 0 0 1 226 0 2 -EndChar - -StartChar: uni1E2E -Encoding: 7726 7726 1563 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 3 - 2 - 1 - 17 - 17 - 5 - 38 - 3 - 2 - 1 - 15 - 6 - 15 - 13 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2357 -1 N 1 0 0 1 290 0 2 -EndChar - -StartChar: uni1E2F -Encoding: 7727 7727 1564 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 3 - 31 - 14 - 47 - 14 - 111 - 14 - 143 - 14 - 4 - 159 - 14 - 175 - 14 - 207 - 14 - 3 - 14 - 2 - 1 - 8 - 8 - 17 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 243 305 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -38 0 2 -Refer: 118 180 N 1 0 0 1 139 260 2 -EndChar - -StartChar: uni1E30 -Encoding: 7728 7728 1565 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 17 - 17 - 5 - 38 - 1 - 13 - 1 - 13 - 16 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 46 75 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 473 0 2 -EndChar - -StartChar: uni1E31 -Encoding: 7729 7729 1566 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 17 - 17 - 2 - 38 - 1 - 13 -PUSHW_1 - -143 -PUSHB_5 - 13 - 16 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 78 107 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 155 40 2 -EndChar - -StartChar: uni1E32 -Encoding: 7730 7730 1567 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 13 -PUSHW_1 - -73 -PUSHB_5 - 13 - 15 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1314 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 46 75 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 833 0 2 -EndChar - -StartChar: uni1E33 -Encoding: 7731 7731 1568 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 13 -PUSHW_1 - -57 -PUSHB_5 - 13 - 15 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 860 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 1020 1260 basechar 0 -AnchorPoint: "Anchor-14" 530 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 78 107 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 676 0 2 -EndChar - -StartChar: uni1E34 -Encoding: 7732 7732 1569 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 14 -PUSHW_1 - -62 -PUSHB_5 - 14 - 15 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1190 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1314 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 46 75 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 694 0 2 -EndChar - -StartChar: uni1E35 -Encoding: 7733 7733 1570 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 14 -PUSHW_1 - -33 -PUSHB_5 - 14 - 15 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 570 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 570 1580 basechar 0 -AnchorPoint: "Anchor-15" 1020 1540 basechar 0 -AnchorPoint: "Anchor-14" 540 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 78 107 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 550 0 2 -EndChar - -StartChar: uni1E36 -Encoding: 7734 7734 1571 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 7 - 9 - 7 - 9 - 1 - 5 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 780 0 2 -EndChar - -StartChar: uni1E37 -Encoding: 7735 7735 1572 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 5 -PUSHW_1 - -1 -PUSHB_5 - 5 - 7 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 170 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1540 basechar 0 -AnchorPoint: "Anchor-15" 434 1260 basechar 0 -AnchorPoint: "Anchor-14" 230 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 378 0 2 -EndChar - -StartChar: uni1E38 -Encoding: 7736 7736 1573 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 2 - 10 - 10 - 5 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 768 0 2 -Refer: 651 713 N 1 0 0 1 295 329 2 -EndChar - -StartChar: uni1E39 -Encoding: 7737 7737 1574 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 2 - 8 - 8 - 2 - 38 -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 170 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1540 basechar 0 -AnchorPoint: "Anchor-15" 434 1260 basechar 0 -AnchorPoint: "Anchor-14" 230 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 379 0 2 -Refer: 651 713 N 1 0 0 1 -99 334 2 -EndChar - -StartChar: uni1E3A -Encoding: 7738 7738 1575 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 8 -PUSHW_1 - -3 -PUSHB_5 - 8 - 9 - 1 - 5 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 620 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 617 0 2 -EndChar - -StartChar: uni1E3B -Encoding: 7739 7739 1576 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 6 - 1 - 6 - 7 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 220 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1540 basechar 0 -AnchorPoint: "Anchor-15" 434 1260 basechar 0 -AnchorPoint: "Anchor-14" 230 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1E3C -Encoding: 7740 7740 1577 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 13 -PUSHW_1 - -12 -PUSHB_5 - 13 - 7 - 1 - 5 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 47 76 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 612 0 2 -EndChar - -StartChar: uni1E3D -Encoding: 7741 7741 1578 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 11 -PUSHW_1 - -4 -PUSHB_5 - 11 - 5 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1540 basechar 0 -AnchorPoint: "Anchor-15" 434 1260 basechar 0 -AnchorPoint: "Anchor-14" 230 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 79 108 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 229 0 2 -EndChar - -StartChar: uni1E3E -Encoding: 7742 7742 1579 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 32 - 32 - 5 - 38 - 1 - 28 - 79 - 28 - 31 - 15 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 860 1540 basechar 0 -AnchorPoint: "Anchor-15" 1540 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 48 77 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 648 0 2 -EndChar - -StartChar: uni1E3F -Encoding: 7743 7743 1580 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 47 - 47 - 17 - 38 - 1 - 43 - 125 - 43 - 46 - 12 - 32 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1410 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 860 1540 basechar 0 -AnchorPoint: "Anchor-15" 1540 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 80 109 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 695 0 2 -EndChar - -StartChar: uni1E40 -Encoding: 7744 7744 1581 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 30 - 30 - 5 - 38 - 1 - 28 - 4 - 28 - 30 - 15 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 860 1540 basechar 0 -AnchorPoint: "Anchor-15" 1540 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 48 77 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 611 293 2 -EndChar - -StartChar: uni1E41 -Encoding: 7745 7745 1582 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 45 - 45 - 17 - 38 - 1 - 43 - 3 - 43 - 45 - 12 - 32 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1410 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 860 1540 basechar 0 -AnchorPoint: "Anchor-15" 1540 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 80 109 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 611 0 2 -EndChar - -StartChar: uni1E42 -Encoding: 7746 7746 1583 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 28 - 5 - 28 - 30 - 15 - 26 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 850 1540 basechar 0 -AnchorPoint: "Anchor-15" 1550 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 48 77 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 1009 0 2 -EndChar - -StartChar: uni1E43 -Encoding: 7747 7747 1584 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 43 - 1 - 43 - 45 - 12 - 32 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1410 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1706 1540 basechar 0 -AnchorPoint: "Anchor-20" 1706 -380 basechar 0 -AnchorPoint: "Anchor-16" 850 1540 basechar 0 -AnchorPoint: "Anchor-15" 1550 1540 basechar 0 -AnchorPoint: "Anchor-14" 860 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 80 109 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 1006 0 2 -EndChar - -StartChar: uni1E44 -Encoding: 7748 7748 1585 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 17 - 17 - 5 - 38 - 1 - 15 -PUSHW_1 - -1 -PUSHB_5 - 15 - 17 - 6 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 493 293 2 -EndChar - -StartChar: uni1E45 -Encoding: 7749 7749 1586 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 30 - 30 - 17 - 38 - 1 - 28 - 15 - 28 - 30 - 13 - 26 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 840 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 340 0 2 -EndChar - -StartChar: uni1E46 -Encoding: 7750 7750 1587 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 15 -PUSHW_1 - -10 -PUSHB_5 - 15 - 17 - 6 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 881 0 2 -EndChar - -StartChar: uni1E47 -Encoding: 7751 7751 1588 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 28 -PUSHW_1 - -4 -PUSHB_5 - 28 - 30 - 13 - 26 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 880 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 590 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 570 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 718 0 2 -EndChar - -StartChar: uni1E48 -Encoding: 7752 7752 1589 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 16 -PUSHW_1 - -2 -PUSHB_5 - 16 - 17 - 6 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 760 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 738 0 2 -EndChar - -StartChar: uni1E49 -Encoding: 7753 7753 1590 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 29 -PUSHW_1 - -1 -PUSHB_5 - 29 - 30 - 13 - 26 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 570 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 590 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 570 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 570 0 2 -EndChar - -StartChar: uni1E4A -Encoding: 7754 7754 1591 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 21 -PUSHW_1 - -17 -PUSHB_5 - 21 - 15 - 6 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 700 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 49 78 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 728 0 2 -EndChar - -StartChar: uni1E4B -Encoding: 7755 7755 1592 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 34 -PUSHW_1 - -6 -PUSHB_5 - 34 - 28 - 13 - 26 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 590 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 570 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 81 110 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 570 0 2 -EndChar - -StartChar: uni1E4C -Encoding: 7756 7756 1593 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 2 - 35 - 5 - 38 - 3 - 2 - 35 - 7 - 35 - 47 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2505 -1 N 1 0 0 1 803 0 2 -EndChar - -StartChar: uni1E4D -Encoding: 7757 7757 1594 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 3 - 127 - 52 - 159 - 52 - 239 - 52 - 3 - 80 - 52 - 192 - 52 - 2 - 52 - 2 - 23 - 23 - 17 - 38 - 3 - 2 - 32 - 0 - 32 - 44 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 235 0 2 -Refer: 2303 -1 N 1 0 0 1 395 10 2 -EndChar - -StartChar: uni1E4E -Encoding: 7758 7758 1595 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 4 - 3 - 2 - 43 - 5 - 38 - 4 - 3 - 2 - 43 - 4 - 43 - 55 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1539 1840 basechar 0 -AnchorPoint: "Anchor-20" 1539 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2506 -1 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1E4F -Encoding: 7759 7759 1596 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 73 - 4 - 3 - 31 - 52 - 47 - 52 - 63 - 52 - 95 - 52 - 4 - 31 - 52 - 47 - 52 - 63 - 52 - 79 - 52 - 95 - 52 - 111 - 52 - 175 - 52 - 223 - 52 - 8 - 15 - 52 - 31 - 52 - 47 - 52 - 63 - 52 - 95 - 52 - 111 - 52 - 127 - 52 - 159 - 52 - 239 - 52 - 9 - 192 - 52 - 1 - 52 - 2 - 23 - 23 - 17 - 38 - 4 - 3 - 51 - 0 - 51 - 50 - 32 - 44 - 37 - 2 - 32 - 0 - 32 - 44 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 235 0 2 -Refer: 2306 -1 N 1 0 0 1 255 10 2 -EndChar - -StartChar: uni1E50 -Encoding: 7760 7760 1597 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 34 - 34 - 5 - 38 - 3 - 2 - 35 -PUSHW_1 - -32 -PUSHB_5 - 35 - 36 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2503 -1 N 1 0 0 1 763 0 2 -EndChar - -StartChar: uni1E51 -Encoding: 7761 7761 1598 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 3 - 31 - 30 - 1 - 48 - 30 - 160 - 30 - 176 - 30 - 208 - 30 - 224 - 30 - 240 - 30 - 6 - 30 - 2 - 23 - 23 - 17 - 38 - 3 - 2 - 24 - 0 - 24 - 23 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 235 0 2 -Refer: 67 96 N 1 0 0 1 181 275 2 -EndChar - -StartChar: uni1E52 -Encoding: 7762 7762 1599 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 2 - 36 - 5 - 38 - 3 - 2 - 36 -PUSHW_1 - -29 -PUSHB_5 - 36 - 35 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2504 -1 N 1 0 0 1 766 0 2 -EndChar - -StartChar: uni1E53 -Encoding: 7763 7763 1600 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 3 - 31 - 30 - 1 - 48 - 30 - 160 - 30 - 176 - 30 - 208 - 30 - 224 - 30 - 240 - 30 - 6 - 30 - 2 - 23 - 23 - 17 - 38 - 3 - 2 - 24 - 0 - 24 - 23 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 235 0 2 -Refer: 118 180 N 1 0 0 1 351 275 2 -EndChar - -StartChar: uni1E54 -Encoding: 7764 7764 1601 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 23 - 23 - 5 - 38 - 2 - 19 -PUSHW_1 - -1 -PUSHB_5 - 19 - 22 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 51 80 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 428 0 2 -EndChar - -StartChar: uni1E55 -Encoding: 7765 7765 1602 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 42 - 42 - 17 - 38 - 2 - 38 - 56 - 38 - 41 - 12 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 83 112 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 365 0 2 -EndChar - -StartChar: uni1E56 -Encoding: 7766 7766 1603 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 21 - 21 - 5 - 38 - 2 - 19 -PUSHW_1 - -12 -PUSHB_5 - 19 - 21 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 51 80 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 455 293 2 -EndChar - -StartChar: uni1E57 -Encoding: 7767 7767 1604 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 40 - 40 - 17 - 38 - 2 - 38 - 24 - 38 - 40 - 12 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 600 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 600 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 83 112 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 371 0 2 -EndChar - -StartChar: uni1E58 -Encoding: 7768 7768 1605 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 26 - 26 - 5 - 38 - 2 - 24 -PUSHW_1 - -80 -PUSHB_5 - 24 - 26 - 5 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 450 293 2 -EndChar - -StartChar: uni1E59 -Encoding: 7769 7769 1606 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 23 - 23 - 17 - 38 - 1 - 21 - 14 - 21 - 23 - 3 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 240 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 85 114 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 160 0 2 -EndChar - -StartChar: uni1E5A -Encoding: 7770 7770 1607 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 24 -PUSHW_1 - -57 -PUSHB_5 - 24 - 26 - 5 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1210 1540 basechar 0 -AnchorPoint: "Anchor-14" 720 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 870 0 2 -EndChar - -StartChar: uni1E5B -Encoding: 7771 7771 1608 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 21 -PUSHW_1 - -2 -PUSHB_5 - 21 - 23 - 3 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 330 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 420 1200 basechar 0 -AnchorPoint: "Anchor-15" 680 1260 basechar 0 -AnchorPoint: "Anchor-14" 400 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 85 114 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 541 0 2 -EndChar - -StartChar: uni1E5C -Encoding: 7772 7772 1609 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 24 - 5 - 38 - 2 - 24 - 0 - 24 - 23 - 5 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 392 329 2 -Refer: 2323 -1 N 1 0 0 1 870 0 2 -EndChar - -StartChar: uni1E5D -Encoding: 7773 7773 1610 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 24 - 24 - 17 - 38 - 1 - 25 - 0 - 25 - 24 - 0 - 12 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 330 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 85 114 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 541 0 2 -Refer: 651 713 N 1 0 0 1 65 0 2 -EndChar - -StartChar: uni1E5E -Encoding: 7774 7774 1611 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 25 -PUSHW_1 - -2 -PUSHB_5 - 25 - 26 - 5 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 780 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 710 1540 basechar 0 -AnchorPoint: "Anchor-15" 1230 1540 basechar 0 -AnchorPoint: "Anchor-14" 750 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 774 0 2 -EndChar - -StartChar: uni1E5F -Encoding: 7775 7775 1612 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 22 -PUSHW_1 - -33 -PUSHB_5 - 22 - 23 - 3 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 360 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 682 1540 basechar 0 -AnchorPoint: "Anchor-20" 682 -380 basechar 0 -AnchorPoint: "Anchor-16" 420 1200 basechar 0 -AnchorPoint: "Anchor-15" 680 1260 basechar 0 -AnchorPoint: "Anchor-14" 350 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 85 114 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 359 0 2 -EndChar - -StartChar: uni1E60 -Encoding: 7776 7776 1613 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 49 - 49 - 5 - 38 - 1 - 47 - 23 - 47 - 49 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 460 293 2 -EndChar - -StartChar: uni1E61 -Encoding: 7777 7777 1614 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 46 - 46 - 17 - 38 - 1 - 44 - 3 - 44 - 46 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 261 0 2 -EndChar - -StartChar: uni1E62 -Encoding: 7778 7778 1615 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 47 - 2 - 47 - 49 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 640 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 710 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 836 0 2 -EndChar - -StartChar: uni1E63 -Encoding: 7779 7779 1616 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 44 - 0 - 44 - 46 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 460 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 520 1200 basechar 0 -AnchorPoint: "Anchor-15" 860 1260 basechar 0 -AnchorPoint: "Anchor-14" 500 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 655 0 2 -EndChar - -StartChar: uni1E64 -Encoding: 7780 7780 1617 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 55 - 55 - 5 - 38 - 2 - 1 - 48 - 106 - 48 - 54 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 2507 -1 N 1 0 0 1 700 0 2 -EndChar - -StartChar: uni1E65 -Encoding: 7781 7781 1618 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 52 - 52 - 17 - 38 - 2 - 1 - 45 - 55 - 45 - 51 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 2507 -1 N 1 0 0 1 470 -317 2 -EndChar - -StartChar: uni1E66 -Encoding: 7782 7782 1619 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 51 - 51 - 5 - 38 - 2 - 1 - 53 -PUSHW_1 - -7 -PUSHB_5 - 53 - 59 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 800 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1140 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 2508 -1 N 1 0 0 1 675 0 2 -EndChar - -StartChar: uni1E67 -Encoding: 7783 7783 1620 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 48 - 48 - 17 - 38 - 2 - 1 - 50 - 3 - 50 - 56 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 2508 -1 N 1 0 0 1 507 -317 2 -EndChar - -StartChar: uni1E68 -Encoding: 7784 7784 1621 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 46 - 46 - 5 - 38 - 1 - 47 - 23 - 47 - 49 - 5 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 620 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 710 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 700 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 54 83 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 436 293 2 -Refer: 2323 -1 N 1 0 0 1 835 0 2 -EndChar - -StartChar: uni1E69 -Encoding: 7785 7785 1622 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 46 - 46 - 17 - 38 - 1 - 44 - 3 - 44 - 46 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 430 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 520 1200 basechar 0 -AnchorPoint: "Anchor-15" 860 1260 basechar 0 -AnchorPoint: "Anchor-14" 500 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 86 115 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 257 0 2 -Refer: 2323 -1 N 1 0 0 1 655 0 2 -EndChar - -StartChar: uni1E6A -Encoding: 7786 7786 1623 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 11 - 11 - 5 - 38 - 1 - 9 - 0 - 9 - 11 - 5 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 55 84 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 379 293 2 -EndChar - -StartChar: uni1E6B -Encoding: 7787 7787 1624 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 24 - 24 - 5 - 38 - 1 - 22 -PUSHW_1 - -9 -PUSHB_5 - 22 - 24 - 7 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 260 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 87 116 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 37 269 2 -EndChar - -StartChar: uni1E6C -Encoding: 7788 7788 1625 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 9 - 0 - 9 - 11 - 5 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 560 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 55 84 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 776 0 2 -EndChar - -StartChar: uni1E6D -Encoding: 7789 7789 1626 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 22 - 56 - 22 - 24 - 7 - 20 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 290 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 420 1200 basechar 0 -AnchorPoint: "Anchor-15" 680 1260 basechar 0 -AnchorPoint: "Anchor-14" 350 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 87 116 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 500 0 2 -EndChar - -StartChar: uni1E6E -Encoding: 7790 7790 1627 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 10 -PUSHW_1 - -1 -PUSHB_5 - 10 - 11 - 5 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 610 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 55 84 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 624 0 2 -EndChar - -StartChar: uni1E6F -Encoding: 7791 7791 1628 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 23 - 41 - 23 - 24 - 7 - 20 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 340 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 420 1200 basechar 0 -AnchorPoint: "Anchor-15" 680 1260 basechar 0 -AnchorPoint: "Anchor-14" 350 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 87 116 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 334 0 2 -EndChar - -StartChar: uni1E70 -Encoding: 7792 7792 1629 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 15 -PUSHW_1 - -5 -PUSHB_5 - 15 - 9 - 5 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 605 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 55 84 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 625 0 2 -EndChar - -StartChar: uni1E71 -Encoding: 7793 7793 1630 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 28 - 41 - 28 - 22 - 7 - 20 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 330 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 420 1200 basechar 0 -AnchorPoint: "Anchor-15" 680 1260 basechar 0 -AnchorPoint: "Anchor-14" 350 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 87 116 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 339 0 2 -EndChar - -StartChar: uni1E72 -Encoding: 7794 7794 1631 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 1 - 25 -PUSHW_1 - -2 -PUSHB_5 - 25 - 23 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 710 -420 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 720 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 742 804 N 1 0 0 1 738 0 2 -EndChar - -StartChar: uni1E73 -Encoding: 7795 7795 1632 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 32 - 1 - 32 - 30 - 26 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 540 -440 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 742 804 N 1 0 0 1 570 0 2 -EndChar - -StartChar: uni1E74 -Encoding: 7796 7796 1633 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 29 - 0 - 29 - 41 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 715 -350 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 720 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 754 816 N 1 0 0 1 739 0 2 -EndChar - -StartChar: uni1E75 -Encoding: 7797 7797 1634 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 36 - 1 - 36 - 48 - 26 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 540 -350 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 754 816 N 1 0 0 1 569 0 2 -EndChar - -StartChar: uni1E76 -Encoding: 7798 7798 1635 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 27 -PUSHW_1 - -3 -PUSHB_5 - 27 - 21 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 720 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 741 0 2 -EndChar - -StartChar: uni1E77 -Encoding: 7799 7799 1636 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 34 -PUSHW_1 - -23 -PUSHB_5 - 34 - 28 - 26 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 530 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 570 1580 basechar 0 -AnchorPoint: "Anchor-15" 1020 1540 basechar 0 -AnchorPoint: "Anchor-14" 540 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 751 813 N 1 0 0 1 550 0 2 -EndChar - -StartChar: uni1E78 -Encoding: 7800 7800 1637 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 28 - 5 - 38 - 2 - 1 - 28 - 0 - 28 - 40 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2505 -1 N 1 0 0 1 739 0 2 -EndChar - -StartChar: uni1E79 -Encoding: 7801 7801 1638 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 2 - 127 - 53 - 159 - 53 - 239 - 53 - 3 - 80 - 53 - 192 - 53 - 2 - 53 - 1 - 27 - 27 - 17 - 38 - 2 - 1 - 36 - 0 - 36 - 48 - 26 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 220 0 2 -Refer: 2303 -1 N 1 0 0 1 355 10 2 -EndChar - -StartChar: uni1E7A -Encoding: 7802 7802 1639 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 3 - 2 - 1 - 29 - 29 - 5 - 38 - 3 - 2 - 1 - 27 -PUSHW_1 - -2 -PUSHB_5 - 27 - 21 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2509 -1 N 1 0 0 1 737 0 2 -EndChar - -StartChar: uni1E7B -Encoding: 7803 7803 1640 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 3 - 2 - 31 - 36 - 47 - 36 - 63 - 36 - 79 - 36 - 111 - 36 - 5 - 15 - 36 - 63 - 36 - 2 - 192 - 36 - 208 - 36 - 224 - 36 - 240 - 36 - 4 - 36 - 1 - 27 - 27 - 17 - 38 - 3 - 2 - 35 - 0 - 35 - 34 - 29 - 30 - 37 - 1 - 28 - 0 - 28 - 27 - 26 - 10 - 37 -CALL -SRP1 -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 244 0 2 -Refer: 106 168 N 1 0 0 1 236 250 2 -EndChar - -StartChar: uni1E7C -Encoding: 7804 7804 1641 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 18 - 5 - 38 - 1 - 18 - 5 - 18 - 30 - 2 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 620 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 57 86 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 353 0 2 -EndChar - -StartChar: uni1E7D -Encoding: 7805 7805 1642 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 20 - 17 - 38 - 1 - 20 -PUSHW_1 - -2 -PUSHB_5 - 20 - 32 - 2 - 10 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 440 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 89 118 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 174 0 2 -EndChar - -StartChar: uni1E7E -Encoding: 7806 7806 1643 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 10 -PUSHW_1 - -2 -PUSHB_5 - 10 - 12 - 2 - 8 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 620 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1314 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 57 86 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 832 0 2 -EndChar - -StartChar: uni1E7F -Encoding: 7807 7807 1644 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 12 -PUSHW_1 - -10 -PUSHB_5 - 12 - 14 - 2 - 10 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 440 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 520 1200 basechar 0 -AnchorPoint: "Anchor-15" 860 1260 basechar 0 -AnchorPoint: "Anchor-14" 500 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 89 118 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 653 0 2 -EndChar - -StartChar: Wgrave -Encoding: 7808 7808 1645 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 26 - 26 - 5 - 38 - 1 - 27 -PUSHW_1 - -72 -PUSHB_5 - 27 - 30 - 9 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1300 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1933 1540 basechar 0 -AnchorPoint: "Anchor-20" 1933 -380 basechar 0 -AnchorPoint: "Anchor-16" 950 1840 basechar 0 -AnchorPoint: "Anchor-15" 1930 1540 basechar 0 -AnchorPoint: "Anchor-14" 960 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 58 87 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 577 0 2 -EndChar - -StartChar: wgrave -Encoding: 7809 7809 1646 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 21 - 21 - 17 - 38 - 1 - 22 -PUSHW_1 - -94 -PUSHB_5 - 22 - 25 - 8 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1000 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 740 1580 basechar 0 -AnchorPoint: "Anchor-15" 1490 1260 basechar 0 -AnchorPoint: "Anchor-14" 750 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 90 119 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 328 0 2 -EndChar - -StartChar: Wacute -Encoding: 7810 7810 1647 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 26 - 5 - 38 - 1 - 26 - 75 - 26 - 29 - 9 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1300 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1933 1540 basechar 0 -AnchorPoint: "Anchor-20" 1933 -380 basechar 0 -AnchorPoint: "Anchor-16" 950 1840 basechar 0 -AnchorPoint: "Anchor-15" 1930 1540 basechar 0 -AnchorPoint: "Anchor-14" 960 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 58 87 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 759 0 2 -EndChar - -StartChar: wacute -Encoding: 7811 7811 1648 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 21 - 17 - 38 - 1 - 21 - 93 - 21 - 24 - 8 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1000 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 740 1580 basechar 0 -AnchorPoint: "Anchor-15" 1490 1260 basechar 0 -AnchorPoint: "Anchor-14" 750 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 90 119 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 550 0 2 -EndChar - -StartChar: Wdieresis -Encoding: 7812 7812 1649 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 26 - 26 - 5 - 38 - 2 - 1 - 30 - 2 - 30 - 28 - 9 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1300 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1933 1540 basechar 0 -AnchorPoint: "Anchor-20" 1933 -380 basechar 0 -AnchorPoint: "Anchor-16" 950 1840 basechar 0 -AnchorPoint: "Anchor-15" 1930 1540 basechar 0 -AnchorPoint: "Anchor-14" 960 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 58 87 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 646 0 2 -EndChar - -StartChar: wdieresis -Encoding: 7813 7813 1650 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 21 - 21 - 17 - 38 - 2 - 1 - 25 - 0 - 25 - 23 - 8 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1000 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 740 1580 basechar 0 -AnchorPoint: "Anchor-15" 1490 1260 basechar 0 -AnchorPoint: "Anchor-14" 750 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 90 119 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 417 0 2 -EndChar - -StartChar: uni1E86 -Encoding: 7814 7814 1651 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 29 - 29 - 5 - 38 - 1 - 27 - 0 - 27 - 29 - 9 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1300 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1933 1540 basechar 0 -AnchorPoint: "Anchor-20" 1933 -380 basechar 0 -AnchorPoint: "Anchor-16" 970 1540 basechar 0 -AnchorPoint: "Anchor-15" 1900 1540 basechar 0 -AnchorPoint: "Anchor-14" 970 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 58 87 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 722 293 2 -EndChar - -StartChar: uni1E87 -Encoding: 7815 7815 1652 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 24 - 24 - 17 - 38 - 1 - 22 - 0 - 22 - 24 - 8 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1000 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 90 119 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 494 0 2 -EndChar - -StartChar: uni1E88 -Encoding: 7816 7816 1653 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 27 - 0 - 27 - 29 - 9 - 25 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1330 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1933 1540 basechar 0 -AnchorPoint: "Anchor-20" 1933 -380 basechar 0 -AnchorPoint: "Anchor-16" 980 1540 basechar 0 -AnchorPoint: "Anchor-15" 1930 1540 basechar 0 -AnchorPoint: "Anchor-14" 980 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 58 87 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 1119 0 2 -EndChar - -StartChar: uni1E89 -Encoding: 7817 7817 1654 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 22 - 0 - 22 - 24 - 8 - 20 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1060 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 740 1200 basechar 0 -AnchorPoint: "Anchor-15" 1470 1260 basechar 0 -AnchorPoint: "Anchor-14" 740 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 90 119 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 892 0 2 -EndChar - -StartChar: uni1E8A -Encoding: 7818 7818 1655 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 15 - 15 - 5 - 38 - 1 - 13 - 8 - 13 - 15 - 3 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 59 88 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 447 293 2 -EndChar - -StartChar: uni1E8B -Encoding: 7819 7819 1656 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 15 - 15 - 17 - 38 - 1 - 13 -PUSHW_1 - -1 -PUSHB_5 - 13 - 15 - 3 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 820 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 91 120 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 265 0 2 -EndChar - -StartChar: uni1E8C -Encoding: 7820 7820 1657 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 19 - 19 - 5 - 38 - 2 - 1 - 17 - 6 - 17 - 15 - 3 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1130 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 59 88 N 1 0 0 1 0 0 3 -Refer: 2306 -1 N 1 0 0 1 367 0 2 -EndChar - -StartChar: uni1E8D -Encoding: 7821 7821 1658 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 19 - 19 - 17 - 38 - 2 - 1 - 17 -PUSHW_1 - -3 -PUSHB_5 - 17 - 15 - 3 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 820 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 91 120 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 186 0 2 -EndChar - -StartChar: uni1E8E -Encoding: 7822 7822 1659 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 12 - 12 - 5 - 38 - 1 - 10 - 3 - 10 - 12 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 440 293 2 -EndChar - -StartChar: uni1E8F -Encoding: 7823 7823 1660 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 26 - 26 - 17 - 38 - 1 - 24 - 14 - 24 - 26 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 460 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 281 0 2 -EndChar - -StartChar: uni1E90 -Encoding: 7824 7824 1661 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 16 - 16 - 5 - 38 - 1 - 17 - 26 - 17 - 11 - 2 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1030 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 61 90 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 321 0 2 -EndChar - -StartChar: uni1E91 -Encoding: 7825 7825 1662 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 16 - 16 - 17 - 38 - 1 - 17 -PUSHW_1 - -6 -PUSHB_5 - 17 - 11 - 1 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 740 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 840 1200 basechar 0 -AnchorPoint: "Anchor-14" 500 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 93 122 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 165 0 2 -EndChar - -StartChar: uni1E92 -Encoding: 7826 7826 1663 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 11 -PUSHW_1 - -1 -PUSHB_5 - 11 - 13 - 2 - 9 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1030 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 650 1540 basechar 0 -AnchorPoint: "Anchor-15" 1080 1540 basechar 0 -AnchorPoint: "Anchor-14" 640 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 61 90 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 776 0 2 -EndChar - -StartChar: uni1E93 -Encoding: 7827 7827 1664 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 11 -PUSHW_1 - -5 -PUSHB_5 - 11 - 13 - 1 - 9 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 820 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 520 1200 basechar 0 -AnchorPoint: "Anchor-15" 860 1260 basechar 0 -AnchorPoint: "Anchor-14" 500 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 93 122 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 648 0 2 -EndChar - -StartChar: uni1E94 -Encoding: 7828 7828 1665 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 12 - 0 - 12 - 13 - 2 - 9 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 630 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1251 1540 basechar 0 -AnchorPoint: "Anchor-20" 1251 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 61 90 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 626 0 2 -EndChar - -StartChar: uni1E95 -Encoding: 7829 7829 1666 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 12 -PUSHW_1 - -3 -PUSHB_5 - 12 - 13 - 1 - 9 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 500 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 520 1200 basechar 0 -AnchorPoint: "Anchor-15" 860 1260 basechar 0 -AnchorPoint: "Anchor-14" 500 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 93 122 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 500 0 2 -EndChar - -StartChar: uni1E96 -Encoding: 7830 7830 1667 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 27 -PUSHW_1 - -2 -PUSHB_5 - 27 - 28 - 19 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 550 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 75 104 N 1 0 0 1 0 0 3 -Refer: 755 817 N 1 0 0 1 572 0 2 -EndChar - -StartChar: uni1E97 -Encoding: 7831 7831 1668 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 28 - 28 - 5 - 38 - 2 - 1 - 26 -PUSHW_1 - -3 -PUSHB_5 - 26 - 24 - 7 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 380 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 260 1480 basechar 0 -AnchorPoint: "Anchor-15" 460 1480 basechar 0 -AnchorPoint: "Anchor-14" 380 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 87 116 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -34 269 2 -EndChar - -StartChar: uni1E98 -Encoding: 7832 7832 1669 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 24 - 24 - 17 - 38 - 2 - 1 - 27 -PUSHW_1 - -3 -PUSHB_5 - 27 - 21 - 8 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1000 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 740 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 90 119 N 1 0 0 1 0 0 3 -Refer: 668 730 N 1 0 0 1 444 0 2 -EndChar - -StartChar: uni1E99 -Encoding: 7833 7833 1670 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 26 - 26 - 17 - 38 - 2 - 1 - 29 - 11 - 29 - 23 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 668 730 N 1 0 0 1 231 0 2 -EndChar - -StartChar: uni1E9A -Encoding: 7834 7834 1671 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 62 - 17 - 38 - 2 - 62 -PUSHW_1 - -17 -PUSHB_5 - 62 - 59 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 640 702 N 1 0 0 1 257 0 2 -EndChar - -StartChar: uni1E9B -Encoding: 7835 7835 1672 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 17 - 17 - 2 - 38 - 1 - 15 -PUSHW_1 - -7 -PUSHB_5 - 15 - 17 - 2 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 321 383 N 1 0 0 1 0 0 3 -Refer: 667 729 N 1 0 0 1 80 293 2 -EndChar - -StartChar: uni1E9E -Encoding: 7838 7838 1673 -Width: 1439 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 6 - 16 - 35 - 3 - 34 - 27 - 27 - 28 - 18 - 34 - 34 - 12 - 0 - 28 - 0 - 38 - 39 - 17 - 35 - 35 - 15 - 96 - 89 - 18 - 35 - 35 - 32 - 4 - 32 - 21 - 95 - 89 - 32 - 4 - 28 - 18 - 4 - 9 - 95 - 89 - 4 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1347 400 m 0,0,1 - 1347 272 1347 272 1287.5 177 c 128,-1,2 - 1228 82 1228 82 1117.5 31 c 128,-1,3 - 1007 -20 1007 -20 865 -20 c 0,4,5 - 707 -20 707 -20 577 12 c 1,6,-1 - 604 170 l 1,7,8 - 711 131 711 131 853 131 c 0,9,10 - 1007 131 1007 131 1081 202 c 128,-1,11 - 1155 273 1155 273 1155 400 c 0,12,13 - 1155 540 1155 540 1071 601.5 c 128,-1,14 - 987 663 987 663 777 663 c 2,15,-1 - 708 663 l 1,16,-1 - 708 803 l 1,17,-1 - 1017 1154 l 1,18,19 - 967 1209 967 1209 881 1241.5 c 128,-1,20 - 795 1274 795 1274 709 1274 c 0,21,22 - 610 1274 610 1274 543 1251 c 128,-1,23 - 476 1228 476 1228 436 1181 c 128,-1,24 - 396 1134 396 1134 377.5 1055 c 128,-1,25 - 359 976 359 976 359 826 c 2,26,-1 - 359 0 l 1,27,-1 - 168 0 l 1,28,-1 - 168 808 l 2,29,30 - 168 1137 168 1137 297.5 1283.5 c 128,-1,31 - 427 1430 427 1430 711 1430 c 0,32,33 - 1067 1430 1067 1430 1257 1161 c 1,34,-1 - 926 806 l 1,35,36 - 1126 792 1126 792 1236.5 686 c 128,-1,37 - 1347 580 1347 580 1347 400 c 0,0,1 -EndSplineSet -EndChar - -StartChar: Adotbelow -Encoding: 7840 7840 1674 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 18 -PUSHW_1 - -14 -PUSHB_5 - 18 - 20 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1260 1540 basechar 0 -AnchorPoint: "Anchor-14" 668 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 820 0 2 -EndChar - -StartChar: adotbelow -Encoding: 7841 7841 1675 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 50 -PUSHW_1 - -52 -PUSHB_5 - 50 - 52 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 560 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 712 0 2 -EndChar - -StartChar: Ahookabove -Encoding: 7842 7842 1676 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 32 - 32 - 5 - 38 - 2 - 23 - 24 - 23 - 27 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 980 0 2 -EndChar - -StartChar: ahookabove -Encoding: 7843 7843 1677 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 64 - 64 - 17 - 38 - 2 - 55 -PUSHW_1 - -65 -PUSHB_5 - 55 - 59 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 540 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 820 -309 2 -EndChar - -StartChar: Acircumflexacute -Encoding: 7844 7844 1678 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 29 - 29 - 5 - 38 - 3 - 2 - 30 - 102 - 30 - 19 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2557 -1 N 1 0 0 1 685 0 2 -EndChar - -StartChar: acircumflexacute -Encoding: 7845 7845 1679 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 61 - 61 - 17 - 38 - 3 - 2 - 62 - 68 - 62 - 51 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 2565 -1 N 1 0 0 1 581 0 2 -EndChar - -StartChar: Acircumflexgrave -Encoding: 7846 7846 1680 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 29 - 29 - 5 - 38 - 3 - 2 - 21 -PUSHW_1 - -102 -PUSHB_5 - 21 - 24 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2558 -1 N 1 0 0 1 685 0 2 -EndChar - -StartChar: acircumflexgrave -Encoding: 7847 7847 1681 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 63 - 63 - 17 - 38 - 3 - 2 - 53 -PUSHW_1 - -135 -PUSHB_5 - 53 - 58 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 2566 -1 N 1 0 0 1 581 0 2 -EndChar - -StartChar: Acircumflexhookabove -Encoding: 7848 7848 1682 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 40 - 40 - 5 - 38 - 3 - 2 - 41 - 61 - 41 - 26 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2559 -1 N 1 0 0 1 685 0 2 -EndChar - -StartChar: acircumflexhookabove -Encoding: 7849 7849 1683 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 73 - 73 - 17 - 38 - 3 - 2 - 74 - 23 - 74 - 58 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 2567 -1 N 1 0 0 1 561 0 2 -EndChar - -StartChar: Acircumflextilde -Encoding: 7850 7850 1684 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 49 - 49 - 5 - 38 - 3 - 2 - 25 - 1 - 25 - 37 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2560 -1 N 1 0 0 1 684 0 2 -EndChar - -StartChar: acircumflextilde -Encoding: 7851 7851 1685 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 57 - 57 - 17 - 38 - 3 - 2 - 67 -PUSHW_1 - -54 -PUSHB_5 - 67 - 52 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 2568 -1 N 1 0 0 1 561 0 2 -EndChar - -StartChar: Acircumflexdotbelow -Encoding: 7852 7852 1686 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 19 - 19 - 5 - 38 - 2 - 23 - 0 - 23 - 18 - 5 - 6 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 352 0 2 -Refer: 2323 -1 N 1 0 0 1 835 0 2 -EndChar - -StartChar: acircumflexdotbelow -Encoding: 7853 7853 1687 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 54 - 54 - 17 - 38 - 2 - 55 - 0 - 55 - 50 - 3 - 20 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 222 0 2 -Refer: 2323 -1 N 1 0 0 1 727 0 2 -EndChar - -StartChar: Abreveacute -Encoding: 7854 7854 1688 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 23 - 23 - 5 - 38 - 3 - 2 - 26 - 3 - 26 - 34 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2561 -1 N 1 0 0 1 686 0 2 -EndChar - -StartChar: abreveacute -Encoding: 7855 7855 1689 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 49 - 49 - 17 - 38 - 3 - 2 - 52 -PUSHW_1 - -52 -PUSHB_5 - 52 - 58 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 2569 -1 N 1 0 0 1 561 0 2 -EndChar - -StartChar: Abrevegrave -Encoding: 7856 7856 1690 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 23 - 23 - 5 - 38 - 3 - 2 - 26 - 3 - 26 - 34 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2562 -1 N 1 0 0 1 686 0 2 -EndChar - -StartChar: abrevegrave -Encoding: 7857 7857 1691 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 49 - 49 - 17 - 38 - 3 - 2 - 52 -PUSHW_1 - -52 -PUSHB_5 - 52 - 58 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 2570 -1 N 1 0 0 1 561 0 2 -EndChar - -StartChar: Abrevehookabove -Encoding: 7858 7858 1692 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 17 - 17 - 5 - 38 - 3 - 2 - 20 - 3 - 20 - 28 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2563 -1 N 1 0 0 1 686 0 2 -EndChar - -StartChar: abrevehookabove -Encoding: 7859 7859 1693 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 49 - 49 - 17 - 38 - 3 - 2 - 52 -PUSHW_1 - -52 -PUSHB_5 - 52 - 58 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 2571 -1 N 1 0 0 1 561 0 2 -EndChar - -StartChar: Abrevetilde -Encoding: 7860 7860 1694 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 17 - 17 - 5 - 38 - 3 - 2 - 37 - 1 - 37 - 50 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2564 -1 N 1 0 0 1 684 0 2 -EndChar - -StartChar: abrevetilde -Encoding: 7861 7861 1695 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 49 - 49 - 17 - 38 - 3 - 2 - 52 -PUSHW_1 - -52 -PUSHB_5 - 52 - 58 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 2572 -1 N 1 0 0 1 561 0 2 -EndChar - -StartChar: Abrevedotbelow -Encoding: 7862 7862 1696 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 17 - 17 - 5 - 38 - 2 - 20 - 0 - 20 - 28 - 5 - 6 - 37 - 3 - 32 -PUSHW_1 - -14 -PUSHB_5 - 32 - 33 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 374 0 2 -Refer: 2323 -1 N 1 0 0 1 820 0 2 -EndChar - -StartChar: abrevedotbelow -Encoding: 7863 7863 1697 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 49 - 49 - 17 - 38 - 2 - 52 - 0 - 52 - 58 - 3 - 21 - 37 - 3 - 62 -PUSHW_1 - -52 -PUSHB_5 - 62 - 64 - 3 - 27 - 37 -CALL -SRP1 -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 68 97 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 260 0 2 -Refer: 2323 -1 N 1 0 0 1 712 0 2 -EndChar - -StartChar: Edotbelow -Encoding: 7864 7864 1698 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 13 -PUSHW_1 - -14 -PUSHB_5 - 13 - 15 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1540 basechar 0 -AnchorPoint: "Anchor-15" 1210 1540 basechar 0 -AnchorPoint: "Anchor-14" 720 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 860 0 2 -EndChar - -StartChar: edotbelow -Encoding: 7865 7865 1699 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 27 - 11 - 27 - 29 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 100 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 730 0 2 -EndChar - -StartChar: Ehookabove -Encoding: 7866 7866 1700 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 27 - 27 - 5 - 38 - 1 - 18 -PUSHW_1 - -8 -PUSHB_5 - 18 - 22 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1880 basechar 0 -AnchorPoint: "Anchor-15" 1210 1540 basechar 0 -AnchorPoint: "Anchor-14" 720 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 987 0 2 -EndChar - -StartChar: ehookabove -Encoding: 7867 7867 1701 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 41 - 41 - 17 - 38 - 2 - 32 - 10 - 32 - 36 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 850 -309 2 -EndChar - -StartChar: Etilde -Encoding: 7868 7868 1702 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 21 - 5 - 38 - 1 - 21 - 2 - 21 - 33 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 700 1880 basechar 0 -AnchorPoint: "Anchor-15" 1210 1540 basechar 0 -AnchorPoint: "Anchor-14" 720 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 390 0 2 -EndChar - -StartChar: etilde -Encoding: 7869 7869 1703 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 2 - 35 - 17 - 38 - 2 - 35 - 8 - 35 - 47 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 240 0 2 -EndChar - -StartChar: Ecircumflexacute -Encoding: 7870 7870 1704 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 24 - 24 - 5 - 38 - 2 - 1 - 25 - 102 - 25 - 14 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2557 -1 N 1 0 0 1 725 0 2 -EndChar - -StartChar: ecircumflexacute -Encoding: 7871 7871 1705 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 38 - 38 - 17 - 38 - 3 - 2 - 39 - 113 - 39 - 28 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 2565 -1 N 1 0 0 1 581 0 2 -EndChar - -StartChar: Ecircumflexgrave -Encoding: 7872 7872 1706 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 24 - 24 - 5 - 38 - 2 - 1 - 16 -PUSHW_1 - -106 -PUSHB_5 - 16 - 19 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2558 -1 N 1 0 0 1 721 0 2 -EndChar - -StartChar: ecircumflexgrave -Encoding: 7873 7873 1707 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 40 - 40 - 17 - 38 - 3 - 2 - 30 -PUSHW_1 - -89 -PUSHB_5 - 30 - 35 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 2566 -1 N 1 0 0 1 581 0 2 -EndChar - -StartChar: Ecircumflexhookabove -Encoding: 7874 7874 1708 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 35 - 35 - 5 - 38 - 2 - 1 - 36 - 41 - 36 - 21 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2559 -1 N 1 0 0 1 705 0 2 -EndChar - -StartChar: ecircumflexhookabove -Encoding: 7875 7875 1709 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 50 - 50 - 17 - 38 - 3 - 2 - 51 - 79 - 51 - 35 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 2567 -1 N 1 0 0 1 571 0 2 -EndChar - -StartChar: Ecircumflextilde -Encoding: 7876 7876 1710 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 44 - 44 - 5 - 38 - 2 - 1 - 20 -PUSHW_1 - -2 -PUSHB_5 - 20 - 32 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2560 -1 N 1 0 0 1 720 0 2 -EndChar - -StartChar: ecircumflextilde -Encoding: 7877 7877 1711 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 2 - 34 - 17 - 38 - 3 - 2 - 44 -PUSHW_1 - -9 -PUSHB_5 - 44 - 29 - 12 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 2568 -1 N 1 0 0 1 561 0 2 -EndChar - -StartChar: Ecircumflexdotbelow -Encoding: 7878 7878 1712 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 1 - 17 - 17 - 5 - 38 - 1 - 18 - 0 - 18 - 13 - 1 - 2 - 37 - 2 - 23 -PUSHW_1 - -14 -PUSHB_5 - 23 - 24 - 1 - 11 - 37 -CALL -SRP1 -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 1120 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 375 0 2 -Refer: 2323 -1 N 1 0 0 1 860 0 2 -EndChar - -StartChar: ecircumflexdotbelow -Encoding: 7879 7879 1713 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 32 - 17 - 38 -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 860 100 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 72 101 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 233 0 2 -Refer: 2323 -1 N 1 0 0 1 730 0 2 -EndChar - -StartChar: Ihookabove -Encoding: 7880 7880 1714 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 78 - 1 - 19 - 19 - 5 - 38 - 1 - 10 - 13 - 10 - 14 - 1 - 3 - 37 - 15 - 24 - 1 - 19 - 0 - 24 - 16 - 24 - 32 - 24 - 48 - 24 - 64 - 24 - 5 - 57 - 0 - 24 - 64 - 24 - 80 - 24 - 96 - 24 - 112 - 24 - 160 - 24 - 176 - 24 - 240 - 24 - 8 - 0 - 24 - 16 - 24 - 64 - 24 - 80 - 24 - 160 - 24 - 176 - 24 - 192 - 24 - 240 - 24 - 8 - 32 - 24 - 64 - 24 - 80 - 24 - 96 - 24 - 112 - 24 - 144 - 24 - 240 - 24 - 7 -DELTAP1 -DELTAP2 -DELTAP3 -SDB -DELTAP1 -SDB -DELTAP1 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 400 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 2 -Refer: 715 777 N 1 0 0 1 570 0 2 -EndChar - -StartChar: ihookabove -Encoding: 7881 7881 1715 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 54 - 1 - 19 - 19 - 17 - 38 - 1 - 10 - 0 - 10 - 14 - 1 - 3 - 37 - 31 - 24 - 159 - 24 - 223 - 24 - 255 - 24 - 4 - 79 - 24 - 223 - 24 - 2 - 31 - 24 - 1 - 0 - 24 - 112 - 24 - 128 - 24 - 176 - 24 - 192 - 24 - 224 - 24 - 6 - 144 - 24 - 160 - 24 - 176 - 24 - 192 - 24 - 240 - 24 - 5 -DELTAP2 -DELTAP3 -DELTAP1 -DELTAP2 -DELTAP3 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 2355 -1 N 1 0 0 1 0 0 2 -Refer: 715 777 N 1 0 0 1 499 -288 2 -EndChar - -StartChar: Idotbelow -Encoding: 7882 7882 1716 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 5 -PUSHW_1 - -6 -PUSHB_5 - 5 - 7 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 230 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 280 1540 basechar 0 -AnchorPoint: "Anchor-15" 401 1540 basechar 0 -AnchorPoint: "Anchor-14" 280 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 429 0 2 -EndChar - -StartChar: idotbelow -Encoding: 7883 7883 1717 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 9 - 0 - 9 - 11 - 5 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 240 1540 basechar 0 -AnchorPoint: "Anchor-15" 434 1260 basechar 0 -AnchorPoint: "Anchor-14" 230 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 76 105 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 378 0 2 -EndChar - -StartChar: Odotbelow -Encoding: 7884 7884 1718 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 28 -PUSHW_1 - -7 -PUSHB_5 - 28 - 30 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 730 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-19" 1100 1300 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 790 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 940 0 2 -EndChar - -StartChar: odotbelow -Encoding: 7885 7885 1719 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 24 -PUSHW_1 - -10 -PUSHB_5 - 24 - 26 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 500 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 800 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 960 1260 basechar 0 -AnchorPoint: "Anchor-14" 560 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 710 0 2 -EndChar - -StartChar: Ohookabove -Encoding: 7886 7886 1720 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 42 - 42 - 5 - 38 - 2 - 33 - 11 - 33 - 37 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -AnchorPoint: "Anchor-19" 1100 1300 basechar 0 -AnchorPoint: "Anchor-16" 800 1880 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 790 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 1080 0 2 -EndChar - -StartChar: ohookabove -Encoding: 7887 7887 1721 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 38 - 38 - 17 - 38 - 2 - 29 -PUSHW_1 - -3 -PUSHB_5 - 29 - 33 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 800 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 839 -288 2 -EndChar - -StartChar: Ocircumflexacute -Encoding: 7888 7888 1722 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 39 - 39 - 5 - 38 - 3 - 2 - 40 - 100 - 40 - 29 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2557 -1 N 1 0 0 1 796 0 2 -EndChar - -StartChar: ocircumflexacute -Encoding: 7889 7889 1723 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 35 - 35 - 17 - 38 - 3 - 2 - 36 - 99 - 36 - 25 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 2565 -1 N 1 0 0 1 569 0 2 -EndChar - -StartChar: Ocircumflexgrave -Encoding: 7890 7890 1724 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 39 - 39 - 5 - 38 - 3 - 2 - 31 -PUSHW_1 - -104 -PUSHB_5 - 31 - 34 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2558 -1 N 1 0 0 1 796 0 2 -EndChar - -StartChar: ocircumflexgrave -Encoding: 7891 7891 1725 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 37 - 37 - 17 - 38 - 3 - 2 - 27 -PUSHW_1 - -103 -PUSHB_5 - 27 - 32 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 2566 -1 N 1 0 0 1 569 0 2 -EndChar - -StartChar: Ocircumflexhookabove -Encoding: 7892 7892 1726 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 50 - 50 - 5 - 38 - 3 - 2 - 51 - 59 - 51 - 36 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2559 -1 N 1 0 0 1 796 0 2 -EndChar - -StartChar: ocircumflexhookabove -Encoding: 7893 7893 1727 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 47 - 47 - 17 - 38 - 3 - 2 - 48 - 67 - 48 - 32 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 2567 -1 N 1 0 0 1 561 0 2 -EndChar - -StartChar: Ocircumflextilde -Encoding: 7894 7894 1728 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 59 - 59 - 5 - 38 - 3 - 2 - 35 - 0 - 35 - 47 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2560 -1 N 1 0 0 1 796 0 2 -EndChar - -StartChar: ocircumflextilde -Encoding: 7895 7895 1729 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 31 - 31 - 17 - 38 - 3 - 2 - 41 -PUSHW_1 - -11 -PUSHB_5 - 41 - 26 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 2568 -1 N 1 0 0 1 561 0 2 -EndChar - -StartChar: Ocircumflexdotbelow -Encoding: 7896 7896 1730 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 32 - 32 - 5 - 38 - 2 - 34 - 0 - 34 - 28 - 8 - 0 - 37 - 3 - 38 -PUSHW_1 - -7 -PUSHB_5 - 38 - 39 - 8 - 0 - 37 -CALL -SRP1 -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 730 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1593 1540 basechar 0 -AnchorPoint: "Anchor-20" 1593 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 0 0 3 -Refer: 2304 -1 N 1 0 0 1 456 5 2 -Refer: 2323 -1 N 1 0 0 1 940 0 2 -EndChar - -StartChar: ocircumflexdotbelow -Encoding: 7897 7897 1731 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 28 - 28 - 17 - 38 - 2 - 29 - 0 - 29 - 24 - 6 - 0 - 37 - 3 - 34 -PUSHW_1 - -10 -PUSHB_5 - 34 - 35 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 500 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 648 710 N 1 0 0 1 224 0 2 -Refer: 2323 -1 N 1 0 0 1 710 0 2 -EndChar - -StartChar: Ohornacute -Encoding: 7898 7898 1732 -Width: 1756 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 43 - 43 - 5 - 38 - 2 - 39 -PUSHW_1 - -50 -PUSHB_5 - 39 - 42 - 8 - 21 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1756 1540 basechar 0 -AnchorPoint: "Anchor-20" 1756 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 354 416 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 569 0 2 -EndChar - -StartChar: ohornacute -Encoding: 7899 7899 1733 -Width: 1343 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 38 - 38 - 17 - 38 - 2 - 34 -PUSHW_1 - -43 -PUSHB_5 - 34 - 37 - 6 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1343 1540 basechar 0 -AnchorPoint: "Anchor-20" 1343 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 355 417 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 357 0 2 -EndChar - -StartChar: Ohorngrave -Encoding: 7900 7900 1734 -Width: 1756 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 43 - 43 - 5 - 38 - 2 - 40 -PUSHW_1 - -157 -PUSHB_5 - 40 - 43 - 8 - 21 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1756 1540 basechar 0 -AnchorPoint: "Anchor-20" 1756 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 354 416 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 428 0 2 -EndChar - -StartChar: ohorngrave -Encoding: 7901 7901 1735 -Width: 1343 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 38 - 38 - 17 - 38 - 2 - 35 -PUSHW_1 - -197 -PUSHB_5 - 35 - 38 - 6 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1343 1540 basechar 0 -AnchorPoint: "Anchor-20" 1343 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 355 417 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 169 0 2 -EndChar - -StartChar: Ohornhookabove -Encoding: 7902 7902 1736 -Width: 1756 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 53 - 53 - 5 - 38 - 2 - 44 -PUSHW_1 - -95 -PUSHB_5 - 44 - 48 - 8 - 21 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1756 1540 basechar 0 -AnchorPoint: "Anchor-20" 1756 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 354 416 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 1080 0 2 -EndChar - -StartChar: ohornhookabove -Encoding: 7903 7903 1737 -Width: 1343 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 48 - 48 - 17 - 38 - 2 - 39 -PUSHW_1 - -118 -PUSHB_5 - 39 - 43 - 6 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1343 1540 basechar 0 -AnchorPoint: "Anchor-20" 1343 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 355 417 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 839 -288 2 -EndChar - -StartChar: Ohorntilde -Encoding: 7904 7904 1738 -Width: 1756 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 47 - 5 - 38 - 2 - 47 -PUSHW_1 - -108 -PUSHB_5 - 47 - 59 - 8 - 21 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 920 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1756 1540 basechar 0 -AnchorPoint: "Anchor-20" 1756 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 354 416 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 459 0 2 -EndChar - -StartChar: ohorntilde -Encoding: 7905 7905 1739 -Width: 1343 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 42 - 17 - 38 - 2 - 42 -PUSHW_1 - -105 -PUSHB_5 - 42 - 54 - 6 - 17 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1343 1540 basechar 0 -AnchorPoint: "Anchor-20" 1343 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 355 417 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 244 0 2 -EndChar - -StartChar: Ohorndotbelow -Encoding: 7906 7906 1740 -Width: 1756 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 39 -PUSHW_1 - -114 -PUSHB_5 - 39 - 41 - 8 - 21 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 730 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1756 1540 basechar 0 -AnchorPoint: "Anchor-20" 1756 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 354 416 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 940 0 2 -EndChar - -StartChar: ohorndotbelow -Encoding: 7907 7907 1741 -Width: 1343 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 34 -PUSHW_1 - -122 -PUSHB_5 - 34 - 36 - 6 - 17 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 500 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1343 1540 basechar 0 -AnchorPoint: "Anchor-20" 1343 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 355 417 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 713 0 2 -EndChar - -StartChar: Udotbelow -Encoding: 7908 7908 1742 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 21 -PUSHW_1 - -12 -PUSHB_5 - 21 - 23 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1260 1300 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1330 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 878 0 2 -EndChar - -StartChar: udotbelow -Encoding: 7909 7909 1743 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 28 -PUSHW_1 - -39 -PUSHB_5 - 28 - 30 - 26 - 13 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 860 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 1000 basechar 0 -AnchorPoint: "Anchor-16" 560 1200 basechar 0 -AnchorPoint: "Anchor-15" 1020 1260 basechar 0 -AnchorPoint: "Anchor-14" 530 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 680 0 2 -EndChar - -StartChar: Uhookabove -Encoding: 7910 7910 1744 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 35 - 35 - 5 - 38 - 1 - 26 -PUSHW_1 - -12 -PUSHB_5 - 26 - 30 - 5 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-19" 1260 1300 basechar 0 -AnchorPoint: "Anchor-16" 730 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 56 85 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 1000 0 2 -EndChar - -StartChar: uhookabove -Encoding: 7911 7911 1745 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 42 - 42 - 17 - 38 - 1 - 33 -PUSHW_1 - -1 -PUSHB_5 - 33 - 37 - 26 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-19" 910 1000 basechar 0 -AnchorPoint: "Anchor-16" 560 1580 basechar 0 -AnchorPoint: "Anchor-15" 1020 1260 basechar 0 -AnchorPoint: "Anchor-14" 530 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 88 117 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 839 -288 2 -EndChar - -StartChar: Uhornacute -Encoding: 7912 7912 1746 -Width: 1749 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 36 - 36 - 5 - 38 - 1 - 32 -PUSHW_1 - -92 -PUSHB_5 - 32 - 35 - 5 - 23 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1749 1540 basechar 0 -AnchorPoint: "Anchor-20" 1749 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 369 431 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 535 0 2 -EndChar - -StartChar: uhornacute -Encoding: 7913 7913 1747 -Width: 1371 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 43 - 43 - 17 - 38 - 1 - 39 -PUSHW_1 - -43 -PUSHB_5 - 39 - 42 - 37 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1371 1540 basechar 0 -AnchorPoint: "Anchor-20" 1371 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 370 432 N 1 0 0 1 0 0 3 -Refer: 118 180 N 1 0 0 1 393 0 2 -EndChar - -StartChar: Uhorngrave -Encoding: 7914 7914 1748 -Width: 1749 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 36 - 36 - 5 - 38 - 1 - 33 -PUSHW_1 - -247 -PUSHB_5 - 33 - 36 - 5 - 23 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1749 1540 basechar 0 -AnchorPoint: "Anchor-20" 1749 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 369 431 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 346 0 2 -EndChar - -StartChar: uhorngrave -Encoding: 7915 7915 1749 -Width: 1371 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 43 - 43 - 17 - 38 - 1 - 40 -PUSHW_1 - -266 -PUSHB_5 - 40 - 43 - 37 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1371 1540 basechar 0 -AnchorPoint: "Anchor-20" 1371 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 370 432 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 136 0 2 -EndChar - -StartChar: Uhornhookabove -Encoding: 7916 7916 1750 -Width: 1749 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 46 - 46 - 5 - 38 - 1 - 37 -PUSHW_1 - -163 -PUSHB_5 - 37 - 41 - 5 - 23 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1749 1540 basechar 0 -AnchorPoint: "Anchor-20" 1749 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 369 431 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 1020 0 2 -EndChar - -StartChar: uhornhookabove -Encoding: 7917 7917 1751 -Width: 1371 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 53 - 53 - 17 - 38 - 1 - 44 -PUSHW_1 - -154 -PUSHB_5 - 44 - 48 - 37 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1371 1540 basechar 0 -AnchorPoint: "Anchor-20" 1371 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 370 432 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 839 -288 2 -EndChar - -StartChar: Uhorntilde -Encoding: 7918 7918 1752 -Width: 1749 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 40 - 5 - 38 - 1 - 40 -PUSHW_1 - -151 -PUSHB_5 - 40 - 52 - 5 - 23 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 830 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1749 1540 basechar 0 -AnchorPoint: "Anchor-20" 1749 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 369 431 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 424 0 2 -EndChar - -StartChar: uhorntilde -Encoding: 7919 7919 1753 -Width: 1371 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 47 - 17 - 38 - 1 - 47 -PUSHW_1 - -145 -PUSHB_5 - 47 - 59 - 37 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 850 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1371 1540 basechar 0 -AnchorPoint: "Anchor-20" 1371 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 370 432 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 240 0 2 -EndChar - -StartChar: Uhorndotbelow -Encoding: 7920 7920 1754 -Width: 1749 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 32 -PUSHW_1 - -188 -PUSHB_5 - 32 - 34 - 5 - 23 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 680 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1749 1540 basechar 0 -AnchorPoint: "Anchor-20" 1749 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 369 431 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 874 0 2 -EndChar - -StartChar: uhorndotbelow -Encoding: 7921 7921 1755 -Width: 1371 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 1 - 39 -PUSHW_1 - -186 -PUSHB_5 - 39 - 41 - 37 - 18 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 860 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1371 1540 basechar 0 -AnchorPoint: "Anchor-20" 1371 -380 basechar 0 -LayerCount: 2 -Fore -Refer: 370 432 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 685 0 2 -EndChar - -StartChar: Ygrave -Encoding: 7922 7922 1756 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 9 - 9 - 5 - 38 - 1 - 10 -PUSHW_1 - -75 -PUSHB_5 - 10 - 13 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 652 1840 basechar 0 -AnchorPoint: "Anchor-15" 1314 1540 basechar 0 -AnchorPoint: "Anchor-14" 679 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 2302 -1 N 1 0 0 1 290 0 2 -EndChar - -StartChar: ygrave -Encoding: 7923 7923 1757 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 23 - 23 - 17 - 38 - 1 - 24 -PUSHW_1 - -89 -PUSHB_5 - 24 - 27 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 980 1200 basechar 0 -AnchorPoint: "Anchor-14" 540 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 67 96 N 1 0 0 1 105 0 2 -EndChar - -StartChar: Ydotbelow -Encoding: 7924 7924 1758 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 10 - 0 - 10 - 12 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 620 -310 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1314 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 834 0 2 -EndChar - -StartChar: ydotbelow -Encoding: 7925 7925 1759 -Width: 1024 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 1050 1260 basechar 0 -AnchorPoint: "Anchor-14" 810 -440 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 2323 -1 N 1 0 0 1 960 0 2 -EndChar - -StartChar: Yhookabove -Encoding: 7926 7926 1760 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 24 - 24 - 5 - 38 - 1 - 15 - 5 - 15 - 19 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 961 0 2 -EndChar - -StartChar: yhookabove -Encoding: 7927 7927 1761 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 38 - 38 - 17 - 38 - 1 - 29 - 4 - 29 - 33 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 640 1540 basechar 0 -AnchorPoint: "Anchor-15" 1200 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 715 777 N 1 0 0 1 789 -288 2 -EndChar - -StartChar: Ytilde -Encoding: 7928 7928 1762 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 18 - 5 - 38 - 1 - 18 - 12 - 18 - 30 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 600 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1540 basechar 0 -AnchorPoint: "Anchor-15" 1000 1540 basechar 0 -AnchorPoint: "Anchor-14" 680 -130 basechar 0 -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 2307 -1 N 1 0 0 1 360 0 2 -EndChar - -StartChar: ytilde -Encoding: 7929 7929 1763 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 32 - 17 - 38 - 1 - 32 - 19 - 32 - 44 - 9 - 18 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-25" 200 -400 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 580 -540 basechar 0 -LayerCount: 2 -Fore -Refer: 92 121 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 196 0 2 -EndChar - -StartChar: uni1F00 -Encoding: 7936 7936 1764 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 44 - 17 - 38 - 2 - 44 -PUSHW_1 - -41 -PUSHB_5 - 44 - 40 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 220 100 2 -EndChar - -StartChar: uni1F01 -Encoding: 7937 7937 1765 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 45 - 45 - 17 - 38 - 2 - 49 -PUSHW_1 - -62 -PUSHB_5 - 49 - 44 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 206 100 2 -EndChar - -StartChar: uni1F02 -Encoding: 7938 7938 1766 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 2 - 50 - 17 - 38 - 3 - 2 - 50 -PUSHW_1 - -53 -PUSHB_5 - 50 - 40 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 220 100 2 -EndChar - -StartChar: uni1F03 -Encoding: 7939 7939 1767 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 51 - 51 - 17 - 38 - 3 - 2 - 55 -PUSHW_1 - -73 -PUSHB_5 - 55 - 40 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 200 100 2 -EndChar - -StartChar: uni1F04 -Encoding: 7940 7940 1768 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 2 - 50 - 17 - 38 - 3 - 2 - 50 - 11 - 50 - 41 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 280 100 2 -EndChar - -StartChar: uni1F05 -Encoding: 7941 7941 1769 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 51 - 51 - 17 - 38 - 3 - 2 - 55 - 11 - 55 - 41 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 280 100 2 -EndChar - -StartChar: uni1F06 -Encoding: 7942 7942 1770 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 69 - 69 - 17 - 38 - 3 - 2 - 48 -PUSHW_1 - -54 -PUSHB_5 - 48 - 61 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1955 8143 N 1 0 0 1 210 70 2 -EndChar - -StartChar: uni1F07 -Encoding: 7943 7943 1771 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 70 - 70 - 17 - 38 - 3 - 2 - 48 -PUSHW_1 - -54 -PUSHB_5 - 48 - 61 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1968 8159 N 1 0 0 1 210 60 2 -EndChar - -StartChar: uni1F08 -Encoding: 7944 7944 1772 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 -119 0 2 -EndChar - -StartChar: uni1F09 -Encoding: 7945 7945 1773 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 -109 0 2 -EndChar - -StartChar: uni1F0A -Encoding: 7946 7946 1774 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 22 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1953 8141 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni1F0B -Encoding: 7947 7947 1775 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 22 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1966 8157 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni1F0C -Encoding: 7948 7948 1776 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1954 8142 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni1F0D -Encoding: 7949 7949 1777 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1967 8158 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni1F0E -Encoding: 7950 7950 1778 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1955 8143 N 1 0 0 1 80 0 2 -EndChar - -StartChar: uni1F0F -Encoding: 7951 7951 1779 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1968 8159 N 1 0 0 1 80 0 2 -EndChar - -StartChar: uni1F10 -Encoding: 7952 7952 1780 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 44 - 17 - 38 - 1 - 44 - 6 - 44 - 40 - 10 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 871 949 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 134 100 2 -EndChar - -StartChar: uni1F11 -Encoding: 7953 7953 1781 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 45 - 45 - 17 - 38 - 1 - 49 - 12 - 49 - 44 - 10 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 871 949 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 147 100 2 -EndChar - -StartChar: uni1F12 -Encoding: 7954 7954 1782 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 1 - 50 - 17 - 38 - 2 - 1 - 50 -PUSHW_1 - -40 -PUSHB_5 - 50 - 40 - 10 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 871 949 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 100 100 2 -EndChar - -StartChar: uni1F13 -Encoding: 7955 7955 1783 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 51 - 51 - 17 - 38 - 2 - 1 - 55 -PUSHW_1 - -40 -PUSHB_5 - 55 - 40 - 10 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 871 949 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 100 100 2 -EndChar - -StartChar: uni1F14 -Encoding: 7956 7956 1784 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 50 - 17 - 38 - 2 - 1 - 50 - 5 - 50 - 41 - 10 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 871 949 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 140 100 2 -EndChar - -StartChar: uni1F15 -Encoding: 7957 7957 1785 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 51 - 51 - 17 - 38 - 2 - 1 - 55 - 5 - 55 - 41 - 10 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 871 949 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 140 100 2 -EndChar - -StartChar: uni1F18 -Encoding: 7960 7960 1786 -Width: 1566 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 200 0 2 -Refer: 1938 8125 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F19 -Encoding: 7961 7961 1787 -Width: 1566 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 200 0 2 -Refer: 1996 8190 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F1A -Encoding: 7962 7962 1788 -Width: 1900 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 600 0 2 -Refer: 1953 8141 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F1B -Encoding: 7963 7963 1789 -Width: 1900 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 600 0 2 -Refer: 1966 8157 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F1C -Encoding: 7964 7964 1790 -Width: 1900 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 600 0 2 -Refer: 1954 8142 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F1D -Encoding: 7965 7965 1791 -Width: 1900 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 600 0 2 -Refer: 1967 8158 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F20 -Encoding: 7968 7968 1792 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 31 - 17 - 38 - 1 - 31 - 14 - 31 - 27 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 226 100 2 -EndChar - -StartChar: uni1F21 -Encoding: 7969 7969 1793 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 32 - 32 - 17 - 38 - 1 - 36 - 18 - 36 - 31 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 237 100 2 -EndChar - -StartChar: uni1F22 -Encoding: 7970 7970 1794 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 1 - 37 - 17 - 38 - 2 - 1 - 37 -PUSHW_1 - -24 -PUSHB_5 - 37 - 27 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 200 100 2 -EndChar - -StartChar: uni1F23 -Encoding: 7971 7971 1795 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 38 - 38 - 17 - 38 - 2 - 1 - 42 -PUSHW_1 - -24 -PUSHB_5 - 42 - 27 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 200 100 2 -EndChar - -StartChar: uni1F24 -Encoding: 7972 7972 1796 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 37 - 17 - 38 - 2 - 1 - 37 - 91 - 37 - 28 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 310 100 2 -EndChar - -StartChar: uni1F25 -Encoding: 7973 7973 1797 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 38 - 38 - 17 - 38 - 2 - 1 - 42 - 47 - 42 - 28 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 266 100 2 -EndChar - -StartChar: uni1F26 -Encoding: 7974 7974 1798 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 56 - 56 - 17 - 38 - 2 - 1 - 35 - 11 - 35 - 48 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1955 8143 N 1 0 0 1 226 60 2 -EndChar - -StartChar: uni1F27 -Encoding: 7975 7975 1799 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 57 - 57 - 17 - 38 - 2 - 1 - 35 - 22 - 35 - 48 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1968 8159 N 1 0 0 1 237 60 2 -EndChar - -StartChar: uni1F28 -Encoding: 7976 7976 1800 -Width: 1679 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 200 0 2 -Refer: 1938 8125 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F29 -Encoding: 7977 7977 1801 -Width: 1679 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 200 0 2 -Refer: 1996 8190 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F2A -Encoding: 7978 7978 1802 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1953 8141 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F2B -Encoding: 7979 7979 1803 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1966 8157 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni1F2C -Encoding: 7980 7980 1804 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1954 8142 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F2D -Encoding: 7981 7981 1805 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1967 8158 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F2E -Encoding: 7982 7982 1806 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 47 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1955 8143 N 1 0 0 1 11 0 2 -EndChar - -StartChar: uni1F2F -Encoding: 7983 7983 1807 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 47 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1968 8159 N 1 0 0 1 11 0 2 -EndChar - -StartChar: uni1F30 -Encoding: 7984 7984 1808 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 15 - 17 - 38 - 1 - 15 -PUSHW_1 - -21 -PUSHB_5 - 15 - 11 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 -99 100 2 -EndChar - -StartChar: uni1F31 -Encoding: 7985 7985 1809 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 16 - 16 - 17 - 38 - 1 - 20 -PUSHW_1 - -28 -PUSHB_5 - 20 - 15 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 -99 100 2 -EndChar - -StartChar: uni1F32 -Encoding: 7986 7986 1810 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 1 - 21 - 17 - 38 - 2 - 1 - 21 -PUSHW_1 - -54 -PUSHB_5 - 21 - 11 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 -119 100 2 -EndChar - -StartChar: uni1F33 -Encoding: 7987 7987 1811 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 22 - 22 - 17 - 38 - 2 - 1 - 26 -PUSHW_1 - -54 -PUSHB_5 - 26 - 11 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 -119 100 2 -EndChar - -StartChar: uni1F34 -Encoding: 7988 7988 1812 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 21 - 17 - 38 - 2 - 1 - 21 - 31 - 21 - 12 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 -39 100 2 -EndChar - -StartChar: uni1F35 -Encoding: 7989 7989 1813 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 22 - 22 - 17 - 38 - 2 - 1 - 26 - 31 - 26 - 12 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 -39 100 2 -EndChar - -StartChar: uni1F36 -Encoding: 7990 7990 1814 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 40 - 40 - 17 - 38 - 2 - 1 - 19 -PUSHW_1 - -24 -PUSHB_5 - 19 - 32 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1955 8143 N 1 0 0 1 -99 100 2 -EndChar - -StartChar: uni1F37 -Encoding: 7991 7991 1815 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 41 - 41 - 17 - 38 - 2 - 1 - 19 -PUSHW_1 - -24 -PUSHB_5 - 19 - 32 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1968 8159 N 1 0 0 1 -99 100 2 -EndChar - -StartChar: uni1F38 -Encoding: 7992 7992 1816 -Width: 769 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 4 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 200 0 2 -Refer: 1938 8125 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F39 -Encoding: 7993 7993 1817 -Width: 769 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 4 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 200 0 2 -Refer: 1996 8190 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F3A -Encoding: 7994 7994 1818 -Width: 1169 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 9 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 600 0 2 -Refer: 1953 8141 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F3B -Encoding: 7995 7995 1819 -Width: 1169 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 9 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 600 0 2 -Refer: 1966 8157 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F3C -Encoding: 7996 7996 1820 -Width: 1169 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 4 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 600 0 2 -Refer: 1954 8142 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F3D -Encoding: 7997 7997 1821 -Width: 1169 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 4 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 600 0 2 -Refer: 1967 8158 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F3E -Encoding: 7998 7998 1822 -Width: 1169 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 39 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 600 0 2 -Refer: 1955 8143 N 1 0 0 1 11 0 2 -EndChar - -StartChar: uni1F3F -Encoding: 7999 7999 1823 -Width: 1169 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 39 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 600 0 2 -Refer: 1968 8159 N 1 0 0 1 11 0 2 -EndChar - -StartChar: uni1F40 -Encoding: 8000 8000 1824 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 28 - 17 - 38 - 2 - 28 -PUSHW_1 - -3 -PUSHB_5 - 28 - 24 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 222 100 2 -EndChar - -StartChar: uni1F41 -Encoding: 8001 8001 1825 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 29 - 29 - 17 - 38 - 2 - 33 -PUSHW_1 - -10 -PUSHB_5 - 33 - 28 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 222 100 2 -EndChar - -StartChar: uni1F42 -Encoding: 8002 8002 1826 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 2 - 34 - 17 - 38 - 3 - 2 - 34 -PUSHW_1 - -37 -PUSHB_5 - 34 - 24 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 200 100 2 -EndChar - -StartChar: uni1F43 -Encoding: 8003 8003 1827 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 35 - 35 - 17 - 38 - 3 - 2 - 39 -PUSHW_1 - -37 -PUSHB_5 - 39 - 24 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 200 100 2 -EndChar - -StartChar: uni1F44 -Encoding: 8004 8004 1828 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 2 - 34 - 17 - 38 - 3 - 2 - 34 - 47 - 34 - 25 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 280 100 2 -EndChar - -StartChar: uni1F45 -Encoding: 8005 8005 1829 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 35 - 35 - 17 - 38 - 3 - 2 - 39 - 47 - 39 - 25 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 280 100 2 -EndChar - -StartChar: uni1F48 -Encoding: 8008 8008 1830 -Width: 1693 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 27 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 100 0 2 -Refer: 1938 8125 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F49 -Encoding: 8009 8009 1831 -Width: 1693 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 37 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 100 0 2 -Refer: 1996 8190 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F4A -Encoding: 8010 8010 1832 -Width: 2093 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 43 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 500 0 2 -Refer: 1953 8141 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F4B -Encoding: 8011 8011 1833 -Width: 2093 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 43 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 500 0 2 -Refer: 1966 8157 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F4C -Encoding: 8012 8012 1834 -Width: 1993 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 43 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 400 0 2 -Refer: 1954 8142 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F4D -Encoding: 8013 8013 1835 -Width: 1993 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 43 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 50 79 N 1 0 0 1 400 0 2 -Refer: 1967 8158 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F50 -Encoding: 8016 8016 1836 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 27 - 17 - 38 - 1 - 27 -PUSHW_1 - -18 -PUSHB_5 - 27 - 23 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 215 100 2 -EndChar - -StartChar: uni1F51 -Encoding: 8017 8017 1837 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 28 - 28 - 17 - 38 - 1 - 32 -PUSHW_1 - -30 -PUSHB_5 - 32 - 27 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 210 100 2 -EndChar - -StartChar: uni1F52 -Encoding: 8018 8018 1838 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 1 - 33 - 17 - 38 - 2 - 1 - 33 -PUSHW_1 - -45 -PUSHB_5 - 33 - 23 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 200 100 2 -EndChar - -StartChar: uni1F53 -Encoding: 8019 8019 1839 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 34 - 34 - 17 - 38 - 2 - 1 - 38 -PUSHW_1 - -45 -PUSHB_5 - 38 - 23 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 200 100 2 -EndChar - -StartChar: uni1F54 -Encoding: 8020 8020 1840 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 33 - 17 - 38 - 2 - 1 - 33 - 59 - 33 - 24 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 300 100 2 -EndChar - -StartChar: uni1F55 -Encoding: 8021 8021 1841 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 34 - 34 - 17 - 38 - 2 - 1 - 38 - 59 - 38 - 24 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 300 100 2 -EndChar - -StartChar: uni1F56 -Encoding: 8022 8022 1842 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 52 - 52 - 17 - 38 - 2 - 1 - 31 -PUSHW_1 - -21 -PUSHB_5 - 31 - 44 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1955 8143 N 1 0 0 1 215 60 2 -EndChar - -StartChar: uni1F57 -Encoding: 8023 8023 1843 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 53 - 53 - 17 - 38 - 2 - 1 - 31 -PUSHW_1 - -26 -PUSHB_5 - 31 - 44 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1968 8159 N 1 0 0 1 210 60 2 -EndChar - -StartChar: uni1F59 -Encoding: 8025 8025 1844 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 19 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 300 0 2 -Refer: 1996 8190 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F5B -Encoding: 8027 8027 1845 -Width: 1966 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 25 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 600 0 2 -Refer: 1966 8157 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F5D -Encoding: 8029 8029 1846 -Width: 2066 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 25 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 700 0 2 -Refer: 1967 8158 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F5F -Encoding: 8031 8031 1847 -Width: 1966 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 34 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 600 0 2 -Refer: 1968 8159 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni1F60 -Encoding: 8032 8032 1848 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 48 - 17 - 38 - 1 - 48 -PUSHW_1 - -4 -PUSHB_5 - 48 - 44 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 450 100 2 -EndChar - -StartChar: uni1F61 -Encoding: 8033 8033 1849 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 49 - 49 - 17 - 38 - 1 - 53 -PUSHW_1 - -31 -PUSHB_5 - 53 - 48 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 430 100 2 -EndChar - -StartChar: uni1F62 -Encoding: 8034 8034 1850 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 1 - 54 - 17 - 38 - 2 - 1 - 54 -PUSHW_1 - -17 -PUSHB_5 - 54 - 44 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 450 100 2 -EndChar - -StartChar: uni1F63 -Encoding: 8035 8035 1851 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 55 - 55 - 17 - 38 - 2 - 1 - 59 -PUSHW_1 - -17 -PUSHB_5 - 59 - 44 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 450 100 2 -EndChar - -StartChar: uni1F64 -Encoding: 8036 8036 1852 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 54 - 17 - 38 - 2 - 1 - 54 - 38 - 54 - 45 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 500 100 2 -EndChar - -StartChar: uni1F65 -Encoding: 8037 8037 1853 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 55 - 55 - 17 - 38 - 2 - 1 - 59 - 38 - 59 - 45 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 500 100 2 -EndChar - -StartChar: uni1F66 -Encoding: 8038 8038 1854 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 73 - 73 - 17 - 38 - 2 - 1 - 52 -PUSHW_1 - -7 -PUSHB_5 - 52 - 65 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1955 8143 N 1 0 0 1 450 100 2 -EndChar - -StartChar: uni1F67 -Encoding: 8039 8039 1855 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 74 - 74 - 17 - 38 - 2 - 1 - 52 -PUSHW_1 - -27 -PUSHB_5 - 52 - 65 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1968 8159 N 1 0 0 1 430 100 2 -EndChar - -StartChar: uni1F68 -Encoding: 8040 8040 1856 -Width: 1631 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 46 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 100 0 2 -Refer: 1938 8125 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F69 -Encoding: 8041 8041 1857 -Width: 1631 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 46 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 100 0 2 -Refer: 1996 8190 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1F6A -Encoding: 8042 8042 1858 -Width: 2031 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 500 0 2 -Refer: 1953 8141 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F6B -Encoding: 8043 8043 1859 -Width: 2031 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 500 0 2 -Refer: 1966 8157 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F6C -Encoding: 8044 8044 1860 -Width: 1931 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 400 0 2 -Refer: 1954 8142 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F6D -Encoding: 8045 8045 1861 -Width: 1931 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 400 0 2 -Refer: 1967 8158 N 1 0 0 1 -18 0 2 -EndChar - -StartChar: uni1F6E -Encoding: 8046 8046 1862 -Width: 1931 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 71 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 400 0 2 -Refer: 1955 8143 N 1 0 0 1 -6 0 2 -EndChar - -StartChar: uni1F6F -Encoding: 8047 8047 1863 -Width: 1931 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 71 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 400 0 2 -Refer: 1968 8159 N 1 0 0 1 -6 0 2 -EndChar - -StartChar: uni1F70 -Encoding: 8048 8048 1864 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 44 - 44 - 17 - 38 - 2 - 41 -PUSHW_1 - -128 -PUSHB_5 - 41 - 44 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 136 0 2 -EndChar - -StartChar: uni1F71 -Encoding: 8049 8049 1865 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 44 - 44 - 17 - 38 - 2 - 40 -PUSHW_1 - -1 -PUSHB_5 - 40 - 43 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 261 0 2 -EndChar - -StartChar: uni1F72 -Encoding: 8050 8050 1866 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 44 - 44 - 17 - 38 - 1 - 41 -PUSHW_1 - -82 -PUSHB_5 - 41 - 44 - 10 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 871 949 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 49 0 2 -EndChar - -StartChar: uni1F73 -Encoding: 8051 8051 1867 -Width: 913 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 44 - 44 - 17 - 38 - 1 - 40 - 34 - 40 - 43 - 10 - 4 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 871 949 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 163 0 2 -EndChar - -StartChar: uni1F74 -Encoding: 8052 8052 1868 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 31 - 31 - 17 - 38 - 1 - 28 -PUSHW_1 - -48 -PUSHB_5 - 28 - 31 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 167 0 2 -EndChar - -StartChar: uni1F75 -Encoding: 8053 8053 1869 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 31 - 31 - 17 - 38 - 1 - 27 - 78 - 27 - 30 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 291 0 2 -EndChar - -StartChar: uni1F76 -Encoding: 8054 8054 1870 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 15 - 15 - 17 - 38 - 1 - 12 -PUSHW_1 - -113 -PUSHB_5 - 12 - 15 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 -187 0 2 -EndChar - -StartChar: uni1F77 -Encoding: 8055 8055 1871 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 15 - 15 - 17 - 38 - 1 - 11 - 12 - 11 - 14 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 -64 0 2 -EndChar - -StartChar: uni1F78 -Encoding: 8056 8056 1872 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 28 - 28 - 17 - 38 - 2 - 25 -PUSHW_1 - -69 -PUSHB_5 - 25 - 28 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 159 0 2 -EndChar - -StartChar: uni1F79 -Encoding: 8057 8057 1873 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 28 - 28 - 17 - 38 - 2 - 24 - 40 - 24 - 27 - 6 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 82 111 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 267 0 2 -EndChar - -StartChar: uni1F7A -Encoding: 8058 8058 1874 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 27 - 27 - 17 - 38 - 1 - 24 -PUSHW_1 - -109 -PUSHB_5 - 24 - 27 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 127 0 2 -EndChar - -StartChar: uni1F7B -Encoding: 8059 8059 1875 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 27 - 27 - 17 - 38 - 1 - 23 - 18 - 23 - 26 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 253 0 2 -EndChar - -StartChar: uni1F7C -Encoding: 8060 8060 1876 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 48 - 48 - 17 - 38 - 1 - 45 -PUSHW_1 - -91 -PUSHB_5 - 45 - 48 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 367 0 2 -EndChar - -StartChar: uni1F7D -Encoding: 8061 8061 1877 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 48 - 48 - 17 - 38 - 1 - 44 - 75 - 44 - 47 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 531 0 2 -EndChar - -StartChar: uni1F80 -Encoding: 8064 8064 1878 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 44 - 17 - 38 - 2 - 44 -PUSHW_1 - -41 -PUSHB_5 - 44 - 40 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 200 100 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1F81 -Encoding: 8065 8065 1879 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 45 - 45 - 17 - 38 - 2 - 49 -PUSHW_1 - -62 -PUSHB_5 - 49 - 44 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 186 100 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1F82 -Encoding: 8066 8066 1880 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 2 - 50 - 17 - 38 - 3 - 2 - 50 -PUSHW_1 - -53 -PUSHB_5 - 50 - 40 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 200 100 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1F83 -Encoding: 8067 8067 1881 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 51 - 51 - 17 - 38 - 3 - 2 - 55 -PUSHW_1 - -73 -PUSHB_5 - 55 - 40 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 200 100 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1F84 -Encoding: 8068 8068 1882 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 2 - 50 - 17 - 38 - 3 - 2 - 50 - 11 - 50 - 41 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 275 100 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1F85 -Encoding: 8069 8069 1883 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 3 - 2 - 51 - 51 - 17 - 38 - 3 - 2 - 55 - 11 - 55 - 41 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 275 100 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1F86 -Encoding: 8070 8070 1884 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 69 - 69 - 17 - 38 - 3 - 2 - 48 -PUSHW_1 - -54 -PUSHB_5 - 48 - 61 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1955 8143 N 1 0 0 1 200 60 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1F87 -Encoding: 8071 8071 1885 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 70 - 70 - 17 - 38 - 3 - 2 - 48 -PUSHW_1 - -54 -PUSHB_5 - 48 - 61 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1968 8159 N 1 0 0 1 200 60 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1F88 -Encoding: 8072 8072 1886 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 -99 0 2 -Refer: 775 837 N 1 0 0 1 685 0 2 -EndChar - -StartChar: uni1F89 -Encoding: 8073 8073 1887 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 -99 0 2 -Refer: 775 837 N 1 0 0 1 685 0 2 -EndChar - -StartChar: uni1F8A -Encoding: 8074 8074 1888 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 22 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1953 8141 N 1 0 0 1 0 0 2 -Refer: 775 837 N 1 0 0 1 985 0 2 -EndChar - -StartChar: uni1F8B -Encoding: 8075 8075 1889 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 22 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1966 8157 N 1 0 0 1 0 0 2 -Refer: 775 837 N 1 0 0 1 985 0 2 -EndChar - -StartChar: uni1F8C -Encoding: 8076 8076 1890 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1954 8142 N 1 0 0 1 0 0 2 -Refer: 775 837 N 1 0 0 1 985 0 2 -EndChar - -StartChar: uni1F8D -Encoding: 8077 8077 1891 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1967 8158 N 1 0 0 1 0 0 2 -Refer: 775 837 N 1 0 0 1 985 0 2 -EndChar - -StartChar: uni1F8E -Encoding: 8078 8078 1892 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1955 8143 N 1 0 0 1 80 0 2 -Refer: 775 837 N 1 0 0 1 985 0 2 -EndChar - -StartChar: uni1F8F -Encoding: 8079 8079 1893 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 2 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 300 0 2 -Refer: 1968 8159 N 1 0 0 1 80 0 2 -Refer: 775 837 N 1 0 0 1 985 0 2 -EndChar - -StartChar: uni1F90 -Encoding: 8080 8080 1894 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 31 - 17 - 38 - 1 - 31 - 14 - 31 - 27 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 226 100 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1F91 -Encoding: 8081 8081 1895 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 32 - 32 - 17 - 38 - 1 - 36 - 18 - 36 - 31 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 237 100 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1F92 -Encoding: 8082 8082 1896 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 1 - 37 - 17 - 38 - 2 - 1 - 37 -PUSHW_1 - -24 -PUSHB_5 - 37 - 27 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 200 100 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1F93 -Encoding: 8083 8083 1897 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 38 - 38 - 17 - 38 - 2 - 1 - 42 -PUSHW_1 - -24 -PUSHB_5 - 42 - 27 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 200 100 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1F94 -Encoding: 8084 8084 1898 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 37 - 17 - 38 - 2 - 1 - 37 - 91 - 37 - 28 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 310 100 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1F95 -Encoding: 8085 8085 1899 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 38 - 38 - 17 - 38 - 2 - 1 - 42 - 47 - 42 - 28 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 310 100 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1F96 -Encoding: 8086 8086 1900 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 56 - 56 - 17 - 38 - 2 - 1 - 35 - 11 - 35 - 48 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1955 8143 N 1 0 0 1 226 100 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1F97 -Encoding: 8087 8087 1901 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 57 - 57 - 17 - 38 - 2 - 1 - 35 - 22 - 35 - 48 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1968 8159 N 1 0 0 1 237 100 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1F98 -Encoding: 8088 8088 1902 -Width: 1679 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 200 0 2 -Refer: 1938 8125 N 1 0 0 1 -228 0 2 -Refer: 775 837 N 1 0 0 1 940 0 2 -EndChar - -StartChar: uni1F99 -Encoding: 8089 8089 1903 -Width: 1679 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 200 0 2 -Refer: 1996 8190 N 1 0 0 1 -228 0 2 -Refer: 775 837 N 1 0 0 1 940 0 2 -EndChar - -StartChar: uni1F9A -Encoding: 8090 8090 1904 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1953 8141 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1340 0 2 -EndChar - -StartChar: uni1F9B -Encoding: 8091 8091 1905 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 17 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1966 8157 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1340 0 2 -EndChar - -StartChar: uni1F9C -Encoding: 8092 8092 1906 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1954 8142 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1340 0 2 -EndChar - -StartChar: uni1F9D -Encoding: 8093 8093 1907 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1967 8158 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1340 0 2 -EndChar - -StartChar: uni1F9E -Encoding: 8094 8094 1908 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 37 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1955 8143 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1340 0 2 -EndChar - -StartChar: uni1F9F -Encoding: 8095 8095 1909 -Width: 2079 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 37 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 600 0 2 -Refer: 1968 8159 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1340 0 2 -EndChar - -StartChar: uni1FA0 -Encoding: 8096 8096 1910 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 48 - 17 - 38 - 1 - 48 -PUSHW_1 - -4 -PUSHB_5 - 48 - 44 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 450 100 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FA1 -Encoding: 8097 8097 1911 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 48 - 17 - 38 - 1 - 48 -PUSHW_1 - -4 -PUSHB_5 - 48 - 44 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 430 100 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FA2 -Encoding: 8098 8098 1912 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 1 - 54 - 17 - 38 - 2 - 1 - 54 -PUSHW_1 - -17 -PUSHB_5 - 54 - 44 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 450 100 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FA3 -Encoding: 8099 8099 1913 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 55 - 55 - 17 - 38 - 2 - 1 - 59 -PUSHW_1 - -17 -PUSHB_5 - 59 - 44 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 450 100 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FA4 -Encoding: 8100 8100 1914 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 1 - 54 - 17 - 38 - 2 - 1 - 54 - 38 - 54 - 45 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 500 100 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FA5 -Encoding: 8101 8101 1915 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 2 - 1 - 55 - 55 - 17 - 38 - 2 - 1 - 59 - 38 - 59 - 45 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 500 100 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FA6 -Encoding: 8102 8102 1916 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 73 - 73 - 17 - 38 - 2 - 1 - 52 -PUSHW_1 - -7 -PUSHB_5 - 52 - 65 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1955 8143 N 1 0 0 1 450 60 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FA7 -Encoding: 8103 8103 1917 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 74 - 74 - 17 - 38 - 2 - 1 - 52 -PUSHW_1 - -27 -PUSHB_5 - 52 - 65 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1968 8159 N 1 0 0 1 430 60 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FA8 -Encoding: 8104 8104 1918 -Width: 1631 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 46 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 100 0 2 -Refer: 1938 8125 N 1 0 0 1 -228 0 2 -Refer: 775 837 N 1 0 0 1 864 0 2 -EndChar - -StartChar: uni1FA9 -Encoding: 8105 8105 1919 -Width: 1631 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 46 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 100 0 2 -Refer: 1996 8190 N 1 0 0 1 -228 0 2 -Refer: 775 837 N 1 0 0 1 864 0 2 -EndChar - -StartChar: uni1FAA -Encoding: 8106 8106 1920 -Width: 2031 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 500 0 2 -Refer: 1953 8141 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1264 0 2 -EndChar - -StartChar: uni1FAB -Encoding: 8107 8107 1921 -Width: 2031 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 500 0 2 -Refer: 1966 8157 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1264 0 2 -EndChar - -StartChar: uni1FAC -Encoding: 8108 8108 1922 -Width: 1931 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 400 0 2 -Refer: 1954 8142 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1164 0 2 -EndChar - -StartChar: uni1FAD -Encoding: 8109 8109 1923 -Width: 1931 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 52 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 400 0 2 -Refer: 1967 8158 N 1 0 0 1 -18 0 2 -Refer: 775 837 N 1 0 0 1 1164 0 2 -EndChar - -StartChar: uni1FAE -Encoding: 8110 8110 1924 -Width: 1931 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 71 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 400 0 2 -Refer: 1955 8143 N 1 0 0 1 -6 0 2 -Refer: 775 837 N 1 0 0 1 1164 0 2 -EndChar - -StartChar: uni1FAF -Encoding: 8111 8111 1925 -Width: 1931 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 1 - 71 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 400 0 2 -Refer: 1968 8159 N 1 0 0 1 -6 0 2 -Refer: 775 837 N 1 0 0 1 1164 0 2 -EndChar - -StartChar: uni1FB0 -Encoding: 8112 8112 1926 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 39 - 39 - 17 - 38 - 2 - 42 -PUSHW_1 - -67 -PUSHB_5 - 42 - 48 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 240 0 2 -EndChar - -StartChar: uni1FB1 -Encoding: 8113 8113 1927 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 40 - 40 - 17 - 38 - 2 - 41 -PUSHW_1 - -60 -PUSHB_5 - 41 - 42 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 220 0 2 -EndChar - -StartChar: uni1FB2 -Encoding: 8114 8114 1928 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 44 - 44 - 17 - 38 - 2 - 41 -PUSHW_1 - -128 -PUSHB_5 - 41 - 44 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 126 0 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1FB3 -Encoding: 8115 8115 1929 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 2 - 50 -PUSHW_1 - -23 -PUSHB_5 - 50 - 45 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1FB4 -Encoding: 8116 8116 1930 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 44 - 44 - 17 - 38 - 2 - 40 -PUSHW_1 - -1 -PUSHB_5 - 40 - 43 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 271 0 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1FB6 -Encoding: 8118 8118 1931 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 48 - 17 - 38 - 2 - 48 -PUSHW_1 - -60 -PUSHB_5 - 48 - 60 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 210 0 2 -EndChar - -StartChar: uni1FB7 -Encoding: 8119 8119 1932 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 48 - 17 - 38 - 2 - 48 -PUSHW_1 - -60 -PUSHB_5 - 48 - 60 - 6 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 210 0 2 -Refer: 775 837 N 1 0 0 1 540 0 2 -EndChar - -StartChar: uni1FB8 -Encoding: 8120 8120 1933 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 17 - 17 - 5 - 38 - 2 - 20 - 0 - 20 - 28 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 374 0 2 -EndChar - -StartChar: uni1FB9 -Encoding: 8121 8121 1934 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 18 - 18 - 5 - 38 - 2 - 19 - 2 - 19 - 20 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 360 329 2 -EndChar - -StartChar: uni1FBA -Encoding: 8122 8122 1935 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 20 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 -151 0 2 -EndChar - -StartChar: uni1FBB -Encoding: 8123 8123 1936 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 20 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 -118 0 2 -EndChar - -StartChar: uni1FBC -Encoding: 8124 8124 1937 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 28 - 46 - 28 - 23 - 4 - 7 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 36 65 N 1 0 0 1 0 0 3 -Refer: 775 837 N 1 0 0 1 687 0 2 -EndChar - -StartChar: uni1FBD -Encoding: 8125 8125 1938 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 8 - 0 - 0 - 5 - 9 - 9 - 12 - 11 - 9 - 9 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -446 1484 m 1,0,-1 - 446 1407 l 2,1,2 - 446 1320 446 1320 430.5 1265 c 128,-1,3 - 415 1210 415 1210 370 1157 c 1,4,-1 - 243 1157 l 1,5,6 - 288 1208 288 1208 311 1246 c 128,-1,7 - 334 1284 334 1284 334 1319 c 1,8,-1 - 247 1319 l 1,9,-1 - 247 1484 l 1,10,-1 - 446 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1FBE -Encoding: 8126 8126 1939 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 12 - 11 - 11 - 5 - 13 - 14 - 3 - 11 - 128 - 8 - 27 -SVTCA[y-axis] -MIAP[rnd] -SMD -MDRP[min,rnd,black] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -408 -252 m 2,0,1 - 408 -285 408 -285 418.5 -296.5 c 128,-1,2 - 429 -308 429 -308 453 -308 c 0,3,4 - 467 -308 467 -308 500 -302 c 1,5,-1 - 500 -414 l 1,6,7 - 456 -425 456 -425 418 -425 c 0,8,9 - 276 -425 276 -425 276 -273 c 2,10,-1 - 276 -127 l 1,11,-1 - 408 -127 l 1,12,-1 - 408 -252 l 2,0,1 -EndSplineSet -EndChar - -StartChar: uni1FBF -Encoding: 8127 8127 1940 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 8 - 0 - 0 - 5 - 10 - 10 - 11 - 12 - 9 - 9 - 0 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -446 1484 m 1,0,-1 - 446 1407 l 2,1,2 - 446 1320 446 1320 430.5 1265 c 128,-1,3 - 415 1210 415 1210 370 1157 c 1,4,-1 - 243 1157 l 1,5,6 - 288 1208 288 1208 311 1246 c 128,-1,7 - 334 1284 334 1284 334 1319 c 1,8,-1 - 247 1319 l 1,9,-1 - 247 1484 l 1,10,-1 - 446 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1FC0 -Encoding: 8128 8128 1941 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 20 - 21 - 21 - 25 - 8 - 9 - 9 - 24 - 5 - 18 - 20 - 13 - 128 - 8 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -492 1201 m 0,0,1 - 450 1201 450 1201 408 1219.5 c 128,-1,2 - 366 1238 366 1238 327 1260.5 c 128,-1,3 - 288 1283 288 1283 252.5 1301.5 c 128,-1,4 - 217 1320 217 1320 186 1320 c 0,5,6 - 131 1320 131 1320 104 1289 c 128,-1,7 - 77 1258 77 1258 68 1201 c 1,8,-1 - -23 1201 l 1,9,10 - -12 1303 -12 1303 12 1355.5 c 128,-1,11 - 36 1408 36 1408 76.5 1438.5 c 128,-1,12 - 117 1469 117 1469 180 1469 c 0,13,14 - 224 1469 224 1469 266 1450.5 c 128,-1,15 - 308 1432 308 1432 347 1409.5 c 128,-1,16 - 386 1387 386 1387 420.5 1368.5 c 128,-1,17 - 455 1350 455 1350 485 1350 c 0,18,19 - 585 1350 585 1350 602 1469 c 1,20,-1 - 694 1469 l 1,21,22 - 677 1321 677 1321 627 1261 c 128,-1,23 - 577 1201 577 1201 492 1201 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni1FC1 -Encoding: 8129 8129 1942 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 16 - 6 - 5 - 1 - 2 - 5 - 2 - 17 - 27 - 28 - 17 - 28 - 32 - 33 - 25 - 13 - 27 - 20 - 128 - 16 - 8 - 8 - 1 - 5 - 0 - 4 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp2] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -447 1220 m 1,0,-1 - 447 1404 l 1,1,-1 - 610 1404 l 1,2,-1 - 610 1220 l 1,3,-1 - 447 1220 l 1,0,-1 -72 1219 m 1,4,-1 - 72 1403 l 1,5,-1 - 237 1403 l 1,6,-1 - 237 1219 l 1,7,-1 - 72 1219 l 1,4,-1 -484 1485 m 0,8,9 - 446 1485 446 1485 408 1502 c 128,-1,10 - 370 1519 370 1519 335 1539 c 128,-1,11 - 300 1559 300 1559 267.5 1576 c 128,-1,12 - 235 1593 235 1593 207 1593 c 0,13,14 - 156 1593 156 1593 132 1565 c 128,-1,15 - 108 1537 108 1537 100 1485 c 1,16,-1 - 17 1485 l 1,17,18 - 30 1614 30 1614 76.5 1671 c 128,-1,19 - 123 1728 123 1728 201 1728 c 0,20,21 - 241 1728 241 1728 279 1711 c 128,-1,22 - 317 1694 317 1694 352 1674 c 128,-1,23 - 387 1654 387 1654 419 1637 c 128,-1,24 - 451 1620 451 1620 478 1620 c 0,25,26 - 569 1620 569 1620 584 1728 c 1,27,-1 - 667 1728 l 1,28,29 - 655 1633 655 1633 634 1586 c 128,-1,30 - 613 1539 613 1539 577 1512 c 128,-1,31 - 541 1485 541 1485 484 1485 c 0,8,9 -EndSplineSet -EndChar - -StartChar: uni1FC2 -Encoding: 8130 8130 1943 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 31 - 31 - 17 - 38 - 1 - 27 -PUSHW_1 - -23 -PUSHB_5 - 27 - 31 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 167 0 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1FC3 -Encoding: 8131 8131 1944 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1FC4 -Encoding: 8132 8132 1945 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 31 - 31 - 17 - 38 - 1 - 27 -PUSHW_1 - -23 -PUSHB_5 - 27 - 30 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 291 0 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1FC6 -Encoding: 8134 8134 1946 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 35 - 17 - 38 - 1 - 35 - 7 - 35 - 47 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 228 0 2 -EndChar - -StartChar: uni1FC7 -Encoding: 8135 8135 1947 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 35 - 17 - 38 - 1 - 35 - 7 - 35 - 47 - 13 - 25 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 873 951 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 228 0 2 -Refer: 775 837 N 1 0 0 1 230 0 2 -EndChar - -StartChar: uni1FC8 -Encoding: 8136 8136 1948 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 15 - 0 - 1 - 17 -PUSHW_1 - -142 -PUSHB_5 - 17 - 17 - 1 - 1 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 300 0 2 -Refer: 1984 8175 N 1 0 0 1 -169 0 2 -EndChar - -StartChar: uni1FC9 -Encoding: 8137 8137 1949 -Width: 1666 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 15 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 40 69 N 1 0 0 1 300 0 2 -Refer: 825 900 N 1 0 0 1 -139 0 2 -EndChar - -StartChar: uni1FCA -Encoding: 8138 8138 1950 -Width: 1779 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 15 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 300 0 2 -Refer: 1984 8175 N 1 0 0 1 -169 0 2 -EndChar - -StartChar: uni1FCB -Encoding: 8139 8139 1951 -Width: 1779 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 15 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 300 0 2 -Refer: 825 900 N 1 0 0 1 -139 0 2 -EndChar - -StartChar: uni1FCC -Encoding: 8140 8140 1952 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 23 - 42 - 23 - 18 - 5 - 11 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 43 72 N 1 0 0 1 0 0 3 -Refer: 775 837 N 1 0 0 1 740 0 2 -EndChar - -StartChar: uni1FCD -Encoding: 8141 8141 1953 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 14 - 6 - 6 - 11 - 15 - 3 - 0 - 15 - 0 - 17 - 18 - 15 - 15 - 10 - 4 - 4 - 16 - 10 - 128 - 2 - 2 - 10 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SMD -SRP0 -MDRP[min,rnd,grey] -SHP[rp2] -MDAP[rnd] -SRP1 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -622 1196 m 1,0,-1 - 622 1184 l 1,1,-1 - 508 1184 l 1,2,-1 - 319 1470 l 1,3,-1 - 319 1484 l 1,4,-1 - 549 1484 l 1,5,-1 - 622 1196 l 1,0,-1 -245 1484 m 1,6,-1 - 245 1407 l 2,7,8 - 245 1320 245 1320 229.5 1265 c 128,-1,9 - 214 1210 214 1210 169 1157 c 1,10,-1 - 42 1157 l 1,11,12 - 87 1208 87 1208 110 1246 c 128,-1,13 - 133 1284 133 1284 133 1319 c 1,14,-1 - 46 1319 l 1,15,-1 - 46 1484 l 1,16,-1 - 245 1484 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni1FCE -Encoding: 8142 8142 1954 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 4 - 2 - 14 - 6 - 6 - 11 - 15 - 2 - 15 - 18 - 17 - 15 - 15 - 11 - 0 - 0 - 6 - 11 - 128 - 4 - 4 - 11 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SMD -SRP0 -MDRP[min,rnd,grey] -SHP[rp2] -MDAP[rnd] -SRP1 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -402 1484 m 1,0,-1 - 632 1484 l 1,1,-1 - 632 1470 l 1,2,-1 - 443 1184 l 1,3,-1 - 329 1184 l 1,4,-1 - 329 1196 l 1,5,-1 - 402 1484 l 1,0,-1 -245 1484 m 1,6,-1 - 245 1407 l 2,7,8 - 245 1320 245 1320 229.5 1265 c 128,-1,9 - 214 1210 214 1210 169 1157 c 1,10,-1 - 42 1157 l 1,11,12 - 87 1208 87 1208 110 1246 c 128,-1,13 - 133 1284 133 1284 133 1319 c 1,14,-1 - 46 1319 l 1,15,-1 - 46 1484 l 1,16,-1 - 245 1484 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni1FCF -Encoding: 8143 8143 1955 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 33 - 26 - 26 - 30 - 35 - 35 - 36 - 37 - 21 - 22 - 22 - 37 - 8 - 9 - 9 - 36 - 33 - 29 - 21 - 21 - 5 - 13 - 64 - 9 - 12 - 72 - 13 - 13 - 18 - 0 - 8 - 8 - 0 - 0 - 15 - 35 - 1 - 35 - 29 -SVTCA[y-axis] -MDAP[rnd] -MDRP[rnd,grey] -DELTAP1 -SHP[rp2] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -MDAP[rnd] -CALL -SHP[rp1] -SHP[rp1] -MDAP[rnd] -SRP1 -IP -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -498 1518 m 0,0,1 - 456 1518 456 1518 414 1532.5 c 128,-1,2 - 372 1547 372 1547 333 1565 c 128,-1,3 - 294 1583 294 1583 258.5 1597.5 c 128,-1,4 - 223 1612 223 1612 192 1612 c 0,5,6 - 137 1612 137 1612 110 1586 c 128,-1,7 - 83 1560 83 1560 74 1503 c 1,8,-1 - -17 1503 l 1,9,10 - -6 1600 -6 1600 17.5 1649.5 c 128,-1,11 - 41 1699 41 1699 82 1727.5 c 128,-1,12 - 123 1756 123 1756 186 1756 c 0,13,14 - 230 1756 230 1756 272.5 1740.5 c 128,-1,15 - 315 1725 315 1725 355 1706.5 c 128,-1,16 - 395 1688 395 1688 430.5 1672.5 c 128,-1,17 - 466 1657 466 1657 496 1657 c 0,18,19 - 550 1657 550 1657 575 1683.5 c 128,-1,20 - 600 1710 600 1710 608 1766 c 1,21,-1 - 700 1766 l 1,22,23 - 684 1628 684 1628 634.5 1573 c 128,-1,24 - 585 1518 585 1518 498 1518 c 0,0,1 -437 1474 m 1,25,-1 - 437 1397 l 2,26,27 - 437 1310 437 1310 421.5 1255 c 128,-1,28 - 406 1200 406 1200 361 1147 c 1,29,-1 - 234 1147 l 1,30,31 - 279 1198 279 1198 302 1236 c 128,-1,32 - 325 1274 325 1274 325 1309 c 1,33,-1 - 238 1309 l 1,34,-1 - 238 1474 l 1,35,-1 - 437 1474 l 1,25,-1 -EndSplineSet -EndChar - -StartChar: uni1FD0 -Encoding: 8144 8144 1956 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 10 - 10 - 17 - 38 - 1 - 13 -PUSHW_1 - -40 -PUSHB_5 - 13 - 19 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 -71 0 2 -EndChar - -StartChar: uni1FD1 -Encoding: 8145 8145 1957 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 11 - 11 - 17 - 38 - 1 - 12 -PUSHW_1 - -41 -PUSHB_5 - 12 - 13 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 -100 0 2 -EndChar - -StartChar: uni1FD2 -Encoding: 8146 8146 1958 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 51 - 3 - 207 - 20 - 1 - 2 - 31 - 20 - 47 - 20 - 79 - 20 - 111 - 20 - 4 - 15 - 20 - 63 - 20 - 175 - 20 - 191 - 20 - 4 - 64 - 20 - 80 - 20 - 96 - 20 - 112 - 20 - 128 - 20 - 5 - 20 - 2 - 1 - 17 - 17 - 17 - 38 - 3 - 2 - 1 - 14 - 0 - 14 - 13 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SDS -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -100 0 2 -Refer: 1984 8175 N 1 0 0 1 -218 240 2 -EndChar - -StartChar: uni1FD3 -Encoding: 8147 8147 1959 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 51 - 3 - 207 - 20 - 1 - 2 - 31 - 20 - 47 - 20 - 79 - 20 - 111 - 20 - 4 - 15 - 20 - 63 - 20 - 175 - 20 - 191 - 20 - 4 - 64 - 20 - 80 - 20 - 96 - 20 - 112 - 20 - 128 - 20 - 5 - 20 - 2 - 1 - 17 - 17 - 17 - 38 - 3 - 2 - 1 - 14 - 0 - 14 - 13 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SDS -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -101 0 2 -Refer: 825 900 N 1 0 0 1 -30 240 2 -EndChar - -StartChar: uni1FD6 -Encoding: 8150 8150 1960 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 19 - 17 - 38 - 1 - 19 -PUSHW_1 - -45 -PUSHB_5 - 19 - 31 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 -114 0 2 -EndChar - -StartChar: uni1FD7 -Encoding: 8151 8151 1961 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 3 - 2 - 1 - 17 - 17 - 17 - 38 - 3 - 2 - 1 - 27 -PUSHW_1 - -36 -PUSHB_5 - 27 - 38 - 4 - 9 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1942 8129 N 1 0 0 1 -111 0 2 -EndChar - -StartChar: uni1FD8 -Encoding: 8152 8152 1962 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 4 - 4 - 5 - 38 - 1 - 7 -PUSHW_1 - -5 -PUSHB_5 - 7 - 13 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 -19 362 2 -EndChar - -StartChar: uni1FD9 -Encoding: 8153 8153 1963 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 5 - 5 - 5 - 38 - 1 - 6 - 2 - 6 - 7 - 1 - 3 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 -39 334 2 -EndChar - -StartChar: uni1FDA -Encoding: 8154 8154 1964 -Width: 869 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 7 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 300 0 2 -Refer: 1984 8175 N 1 0 0 1 -171 0 2 -EndChar - -StartChar: uni1FDB -Encoding: 8155 8155 1965 -Width: 869 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 7 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 44 73 N 1 0 0 1 300 0 2 -Refer: 825 900 N 1 0 0 1 -118 0 2 -EndChar - -StartChar: uni1FDD -Encoding: 8157 8157 1966 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 4 - 1 - 8 - 6 - 6 - 16 - 1 - 16 - 18 - 17 - 7 - 7 - 12 - 5 - 5 - 6 - 12 - 128 - 2 - 2 - 12 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SMD -SRP0 -MDRP[min,rnd,grey] -SHP[rp2] -MDAP[rnd] -SRP1 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -622 1196 m 1,0,-1 - 622 1184 l 1,1,-1 - 508 1184 l 1,2,-1 - 319 1470 l 1,3,-1 - 319 1484 l 1,4,-1 - 549 1484 l 1,5,-1 - 622 1196 l 1,0,-1 -241 1484 m 1,6,-1 - 241 1319 l 1,7,-1 - 154 1319 l 1,8,9 - 154 1284 154 1284 177 1246 c 128,-1,10 - 200 1208 200 1208 245 1157 c 1,11,-1 - 118 1157 l 1,12,13 - 73 1211 73 1211 57.5 1266 c 128,-1,14 - 42 1321 42 1321 42 1407 c 2,15,-1 - 42 1484 l 1,16,-1 - 241 1484 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni1FDE -Encoding: 8158 8158 1967 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 4 - 2 - 8 - 6 - 6 - 16 - 2 - 16 - 18 - 17 - 7 - 7 - 12 - 0 - 0 - 6 - 12 - 128 - 3 - 3 - 12 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SMD -SRP0 -MDRP[min,rnd,grey] -SHP[rp2] -MDAP[rnd] -SRP1 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -402 1484 m 1,0,-1 - 632 1484 l 1,1,-1 - 632 1470 l 1,2,-1 - 443 1184 l 1,3,-1 - 329 1184 l 1,4,-1 - 329 1196 l 1,5,-1 - 402 1484 l 1,0,-1 -241 1484 m 1,6,-1 - 241 1319 l 1,7,-1 - 154 1319 l 1,8,9 - 154 1284 154 1284 177 1246 c 128,-1,10 - 200 1208 200 1208 245 1157 c 1,11,-1 - 118 1157 l 1,12,13 - 73 1211 73 1211 57.5 1266 c 128,-1,14 - 42 1321 42 1321 42 1407 c 2,15,-1 - 42 1484 l 1,16,-1 - 241 1484 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni1FDF -Encoding: 8159 8159 1968 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 21 - 21 - 5 - 13 - 64 - 9 - 12 - 72 - 13 - 13 - 18 - 0 - 8 - 8 - 0 - 0 - 15 - 35 - 1 - 35 - 31 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SHP[rp1] -SHP[rp1] -MDAP[rnd] -CALL -SHP[rp1] -SHP[rp1] -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -498 1518 m 0,0,1 - 456 1518 456 1518 414 1532.5 c 128,-1,2 - 372 1547 372 1547 333 1565 c 128,-1,3 - 294 1583 294 1583 258.5 1597.5 c 128,-1,4 - 223 1612 223 1612 192 1612 c 0,5,6 - 137 1612 137 1612 110 1586 c 128,-1,7 - 83 1560 83 1560 74 1503 c 1,8,-1 - -17 1503 l 1,9,10 - -6 1600 -6 1600 17.5 1649.5 c 128,-1,11 - 41 1699 41 1699 82 1727.5 c 128,-1,12 - 123 1756 123 1756 186 1756 c 0,13,14 - 230 1756 230 1756 272.5 1740.5 c 128,-1,15 - 315 1725 315 1725 355 1706.5 c 128,-1,16 - 395 1688 395 1688 430.5 1672.5 c 128,-1,17 - 466 1657 466 1657 496 1657 c 0,18,19 - 550 1657 550 1657 575 1683.5 c 128,-1,20 - 600 1710 600 1710 608 1766 c 1,21,-1 - 700 1766 l 1,22,23 - 684 1628 684 1628 634.5 1573 c 128,-1,24 - 585 1518 585 1518 498 1518 c 0,0,1 -433 1474 m 1,25,-1 - 433 1309 l 1,26,-1 - 346 1309 l 1,27,28 - 346 1274 346 1274 369 1236 c 128,-1,29 - 392 1198 392 1198 437 1147 c 1,30,-1 - 310 1147 l 1,31,32 - 265 1201 265 1201 249.5 1256 c 128,-1,33 - 234 1311 234 1311 234 1397 c 2,34,-1 - 234 1474 l 1,35,-1 - 433 1474 l 1,25,-1 -EndSplineSet -EndChar - -StartChar: uni1FE0 -Encoding: 8160 8160 1969 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 22 - 22 - 17 - 38 - 1 - 25 -PUSHW_1 - -35 -PUSHB_5 - 25 - 31 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 666 728 N 1 0 0 1 244 0 2 -EndChar - -StartChar: uni1FE1 -Encoding: 8161 8161 1970 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 23 - 23 - 17 - 38 - 1 - 24 -PUSHW_1 - -29 -PUSHB_5 - 24 - 25 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 223 0 2 -EndChar - -StartChar: uni1FE2 -Encoding: 8162 8162 1971 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 51 - 3 - 207 - 33 - 1 - 2 - 31 - 33 - 47 - 33 - 79 - 33 - 111 - 33 - 4 - 15 - 33 - 63 - 33 - 175 - 33 - 191 - 33 - 4 - 64 - 33 - 80 - 33 - 96 - 33 - 112 - 33 - 128 - 33 - 5 - 33 - 2 - 1 - 22 - 22 - 17 - 38 - 3 - 2 - 1 - 26 - 0 - 26 - 25 - 6 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SDS -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 200 0 2 -Refer: 1984 8175 N 1 0 0 1 92 240 2 -EndChar - -StartChar: uni1FE3 -Encoding: 8163 8163 1972 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 51 - 3 - 207 - 33 - 1 - 2 - 31 - 33 - 47 - 33 - 79 - 33 - 111 - 33 - 4 - 15 - 33 - 63 - 33 - 175 - 33 - 191 - 33 - 4 - 64 - 33 - 80 - 33 - 96 - 33 - 112 - 33 - 128 - 33 - 5 - 33 - 2 - 1 - 22 - 22 - 17 - 38 - 3 - 2 - 1 - 26 - 0 - 26 - 25 - 6 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SDS -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 200 0 2 -Refer: 825 900 N 1 0 0 1 260 240 2 -EndChar - -StartChar: uni1FE4 -Encoding: 8164 8164 1973 -Width: 1165 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 36 - 17 - 38 - 2 - 36 -PUSHW_1 - -3 -PUSHB_5 - 36 - 32 - 12 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 883 961 N 1 0 0 1 0 0 3 -Refer: 1938 8125 N 1 0 0 1 260 100 2 -EndChar - -StartChar: uni1FE5 -Encoding: 8165 8165 1974 -Width: 1165 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 37 - 37 - 17 - 38 - 2 - 41 -PUSHW_1 - -20 -PUSHB_5 - 41 - 36 - 12 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 883 961 N 1 0 0 1 0 0 3 -Refer: 1996 8190 N 1 0 0 1 250 100 2 -EndChar - -StartChar: uni1FE6 -Encoding: 8166 8166 1975 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 31 - 17 - 38 - 1 - 31 -PUSHW_1 - -22 -PUSHB_5 - 31 - 43 - 7 - 0 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 220 0 2 -EndChar - -StartChar: uni1FE7 -Encoding: 8167 8167 1976 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 3 - 2 - 1 - 29 - 29 - 17 - 38 - 3 - 2 - 1 - 39 - 0 - 39 - 50 - 7 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1942 8129 N 1 0 0 1 186 0 2 -EndChar - -StartChar: uni1FE8 -Encoding: 8168 8168 1977 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 9 - 9 - 5 - 38 - 1 - 12 -PUSHW_1 - -4 -PUSHB_5 - 12 - 20 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 2309 -1 N 1 0 0 1 370 0 2 -EndChar - -StartChar: uni1FE9 -Encoding: 8169 8169 1978 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 10 - 10 - 5 - 38 - 1 - 11 - 6 - 11 - 12 - 4 - 8 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 364 329 2 -EndChar - -StartChar: uni1FEA -Encoding: 8170 8170 1979 -Width: 1766 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 400 0 2 -Refer: 1984 8175 N 1 0 0 1 -128 0 2 -EndChar - -StartChar: uni1FEB -Encoding: 8171 8171 1980 -Width: 1816 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 12 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 60 89 N 1 0 0 1 450 0 2 -Refer: 825 900 N 1 0 0 1 -83 0 2 -EndChar - -StartChar: uni1FEC -Encoding: 8172 8172 1981 -Width: 1566 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 28 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 51 80 N 1 0 0 1 200 0 2 -Refer: 1996 8190 N 1 0 0 1 -228 0 2 -EndChar - -StartChar: uni1FED -Encoding: 8173 8173 1982 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 1 - 0 - 0 - 15 - 10 - 8 - 11 - 11 - 14 - 2 - 12 - 12 - 9 - 128 - 11 - 6 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SMD -MDRP[min,rnd,white] -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -705 1232 m 1,0,-1 - 532 1232 l 1,1,-1 - 532 1418 l 1,2,-1 - 705 1418 l 1,3,-1 - 705 1232 l 1,0,-1 -471 1245 m 1,4,-1 - 471 1232 l 1,5,-1 - 354 1232 l 1,6,-1 - 162 1495 l 1,7,-1 - 162 1507 l 1,8,-1 - 340 1507 l 1,9,-1 - 471 1245 l 1,4,-1 -151 1232 m 1,10,-1 - -22 1232 l 1,11,-1 - -22 1418 l 1,12,-1 - 151 1418 l 1,13,-1 - 151 1232 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni1FEE -Encoding: 8174 8174 1983 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 6 - 1 - 0 - 0 - 15 - 10 - 9 - 11 - 11 - 14 - 2 - 12 - 12 - 5 - 128 - 11 - 8 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SMD -MDRP[min,rnd,white] -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -705 1232 m 1,0,-1 - 532 1232 l 1,1,-1 - 532 1418 l 1,2,-1 - 705 1418 l 1,3,-1 - 705 1232 l 1,0,-1 -342 1507 m 1,4,-1 - 520 1507 l 1,5,-1 - 520 1495 l 1,6,-1 - 328 1232 l 1,7,-1 - 211 1232 l 1,8,-1 - 211 1245 l 1,9,-1 - 342 1507 l 1,4,-1 -151 1232 m 1,10,-1 - -22 1232 l 1,11,-1 - -22 1418 l 1,12,-1 - 151 1418 l 1,13,-1 - 151 1232 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni1FEF -Encoding: 8175 8175 1984 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 4 - 6 - 7 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -404 1218 m 1,0,-1 - 203 1506 l 1,1,-1 - 203 1543 l 1,2,-1 - 410 1543 l 1,3,-1 - 479 1251 l 1,4,-1 - 479 1218 l 1,5,-1 - 404 1218 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1FF2 -Encoding: 8178 8178 1985 -Width: 1599 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 1984 8175 N 1 0 0 1 367 0 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FF3 -Encoding: 8179 8179 1986 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 54 - 43 - 54 - 49 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FF4 -Encoding: 8180 8180 1987 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 43 - 17 - 38 - 1 - 43 - 55 - 43 - 46 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 825 900 N 1 0 0 1 491 0 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FF6 -Encoding: 8182 8182 1988 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 52 - 17 - 38 - 1 - 52 -PUSHW_1 - -5 -PUSHB_5 - 52 - 64 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 458 0 2 -EndChar - -StartChar: uni1FF7 -Encoding: 8183 8183 1989 -Width: 1599 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 52 - 17 - 38 - 1 - 52 -PUSHW_1 - -5 -PUSHB_5 - 52 - 64 - 27 - 14 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 891 969 N 1 0 0 1 0 0 3 -Refer: 670 732 N 1 0 0 1 458 0 2 -Refer: 775 837 N 1 0 0 1 800 0 2 -EndChar - -StartChar: uni1FF8 -Encoding: 8184 8184 1990 -Width: 1893 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 0 - 3 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1984 8175 N 1 0 0 1 -111 0 2 -Refer: 50 79 N 1 0 0 1 300 0 2 -EndChar - -StartChar: uni1FF9 -Encoding: 8185 8185 1991 -Width: 1693 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 0 - 3 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 825 900 N 1 0 0 1 -228 0 2 -Refer: 50 79 N 1 0 0 1 100 0 2 -EndChar - -StartChar: uni1FFA -Encoding: 8186 8186 1992 -Width: 1831 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 0 - 3 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1984 8175 N 1 0 0 1 -111 0 2 -Refer: 859 937 N 1 0 0 1 300 0 2 -EndChar - -StartChar: uni1FFB -Encoding: 8187 8187 1993 -Width: 1631 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 0 - 3 - 0 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 825 900 N 1 0 0 1 -158 0 2 -Refer: 859 937 N 1 0 0 1 100 0 2 -EndChar - -StartChar: uni1FFC -Encoding: 8188 8188 1994 -Width: 1531 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 47 - 43 - 47 - 42 - 27 - 10 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 859 937 N 1 0 0 1 0 0 3 -Refer: 775 837 N 1 0 0 1 766 0 2 -EndChar - -StartChar: uni1FFD -Encoding: 8189 8189 1995 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 3 - 0 - 7 - 6 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -243 1195 m 1,0,-1 - 243 1215 l 1,1,-1 - 373 1474 l 1,2,-1 - 580 1474 l 1,3,-1 - 580 1445 l 1,4,-1 - 337 1195 l 1,5,-1 - 243 1195 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni1FFE -Encoding: 8190 8190 1996 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 2 - 9 - 5 - 1 - 1 - 9 - 9 - 11 - 12 - 2 - 2 - 0 - 128 - 6 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -435 1484 m 1,0,-1 - 435 1319 l 1,1,-1 - 348 1319 l 1,2,3 - 348 1284 348 1284 371 1246 c 128,-1,4 - 394 1208 394 1208 439 1157 c 1,5,-1 - 312 1157 l 1,6,7 - 267 1211 267 1211 251.5 1266 c 128,-1,8 - 236 1321 236 1321 236 1407 c 2,9,-1 - 236 1484 l 1,10,-1 - 435 1484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2000 -Encoding: 8192 8192 1997 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni2001 -Encoding: 8193 8193 1998 -Width: 2048 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni2002 -Encoding: 8194 8194 1999 -Width: 1024 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni2003 -Encoding: 8195 8195 2000 -Width: 2048 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni2004 -Encoding: 8196 8196 2001 -Width: 683 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni2005 -Encoding: 8197 8197 2002 -Width: 512 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni2006 -Encoding: 8198 8198 2003 -Width: 341 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni2007 -Encoding: 8199 8199 2004 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni2008 -Encoding: 8200 8200 2005 -Width: 569 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni2009 -Encoding: 8201 8201 2006 -Width: 410 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni200A -Encoding: 8202 8202 2007 -Width: 171 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni200B -Encoding: 8203 8203 2008 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -EndChar - -StartChar: uni200C -Encoding: 8204 8204 2009 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 3 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -42 1287 m 1,0,-1 - 42 -273 l 1,1,-1 - -42 -273 l 1,2,-1 - -42 1287 l 1,3,-1 - 42 1287 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni200D -Encoding: 8205 8205 2010 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 14 - 2 - 11 - 5 - 8 - 5 - 9 - 13 - 9 - 7 - 13 - 3 - 3 - 1 - 7 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -42 -273 m 1,0,-1 - -42 -273 l 1,1,-1 - -42 1096 l 1,2,-1 - -169 968 l 1,3,-1 - -224 1023 l 1,4,-1 - -55 1191 l 1,5,-1 - -224 1358 l 1,6,-1 - -169 1414 l 1,7,-1 - 0 1244 l 1,8,-1 - 169 1414 l 1,9,-1 - 224 1358 l 1,10,-1 - 55 1191 l 1,11,-1 - 224 1023 l 1,12,-1 - 169 968 l 1,13,-1 - 42 1096 l 1,14,-1 - 42 -273 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni200E -Encoding: 8206 8206 2011 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 1 - 4 - 4 - 7 - 7 - 6 - 10 - 3 - 6 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -435 1193 m 1,0,-1 - 212 974 l 1,1,-1 - 157 1029 l 1,2,-1 - 289 1154 l 1,3,-1 - 41 1154 l 1,4,-1 - 41 -273 l 1,5,-1 - -41 -273 l 1,6,-1 - -41 1233 l 1,7,-1 - 289 1233 l 1,8,-1 - 157 1358 l 1,9,-1 - 212 1414 l 1,10,-1 - 435 1193 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni200F -Encoding: 8207 8207 2012 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 15 - 12 - 31 - 12 - 2 - 5 - 2 - 2 - 10 - 10 - 1 - 7 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -SVTCA[x-axis] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -40 -273 m 1,0,-1 - -42 -273 l 1,1,-1 - -42 1154 l 1,2,-1 - -290 1154 l 1,3,-1 - -158 1029 l 1,4,-1 - -213 974 l 1,5,-1 - -436 1193 l 1,6,-1 - -213 1414 l 1,7,-1 - -158 1358 l 1,8,-1 - -290 1233 l 1,9,-1 - 40 1233 l 1,10,-1 - 40 -273 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2010 -Encoding: 8208 8208 2013 -Width: 682 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 16 45 N 1 0 0 1 0 0 2 -EndChar - -StartChar: uni2012 -Encoding: 8210 8210 2014 -Width: 1139 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2015 8211 N 1 0 0 1 0 0 3 -EndChar - -StartChar: endash -Encoding: 8211 8211 2015 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 0 - 2 - 4 - 5 - 1 - 0 - 186 - 89 - 15 - 1 - 31 - 1 - 63 - 1 - 79 - 1 - 4 - 47 - 1 - 63 - 1 - 111 - 1 - 175 - 1 - 223 - 1 - 5 - 1 - 64 - 38 - 43 - 72 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -0 451 m 1,0,-1 - 0 588 l 1,1,-1 - 1138 588 l 1,2,-1 - 1138 451 l 1,3,-1 - 0 451 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: emdash -Encoding: 8212 8212 2016 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 2 - 0 - 5 - 4 - 1 - 0 - 186 - 89 - 15 - 1 - 31 - 1 - 63 - 1 - 79 - 1 - 4 - 47 - 1 - 63 - 1 - 111 - 1 - 175 - 1 - 223 - 1 - 5 - 1 - 64 - 38 - 43 - 72 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -0 451 m 1,0,-1 - 0 588 l 1,1,-1 - 2048 588 l 1,2,-1 - 2048 451 l 1,3,-1 - 0 451 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2015 -Encoding: 8213 8213 2017 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 2 - 5 - 0 - 4 - 1 - 0 - 186 - 89 - 15 - 1 - 31 - 1 - 63 - 1 - 79 - 1 - 4 - 47 - 1 - 63 - 1 - 111 - 1 - 175 - 1 - 223 - 1 - 5 - 1 - 64 - 38 - 43 - 72 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -DELTAP1 -DELTAP2 -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -0 451 m 1,0,-1 - 0 588 l 1,1,-1 - 2048 588 l 1,2,-1 - 2048 451 l 1,3,-1 - 0 451 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2016 -Encoding: 8214 8214 2018 -Width: 846 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 387 449 N 1 0 0 1 0 0 2 -EndChar - -StartChar: underscoredbl -Encoding: 8215 8215 2019 -Width: 1131 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 0 - 0 - 1 - 1 - 16 - 1 - 32 - 1 - 144 - 1 - 224 - 1 - 240 - 1 - 5 - 1 - 1 - 31 - 5 - 1 - 63 - 5 - 79 - 5 - 95 - 5 - 111 - 5 - 127 - 5 - 5 - 0 - 5 - 144 - 5 - 2 - 5 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 66 95 N 1 0 0 1 0 -27 2 -Refer: 66 95 N 1 0 0 1 0 190 2 -EndChar - -StartChar: quoteleft -Encoding: 8216 8216 2020 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 9 - 9 - 7 - 0 - 0 - 11 - 10 - 0 - 7 - 156 - 91 - 5 - 0 - 169 - 91 - 5 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -127 952 m 1,0,-1 - 127 1098 l 2,1,2 - 127 1195 127 1195 145.5 1268.5 c 128,-1,3 - 164 1342 164 1342 207 1409 c 1,4,-1 - 328 1409 l 1,5,6 - 233 1272 233 1272 233 1147 c 1,7,-1 - 322 1147 l 1,8,-1 - 322 952 l 1,9,-1 - 127 952 l 1,0,-1 -EndSplineSet -Kerns2: 2020 -37 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: quoteright -Encoding: 8217 8217 2021 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 6 - 0 - 0 - 4 - 8 - 8 - 11 - 10 - 8 - 7 - 156 - 91 - 8 - 3 - 169 - 91 - 8 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -328 1264 m 2,0,1 - 328 1159 328 1159 309 1087.5 c 128,-1,2 - 290 1016 290 1016 250 952 c 1,3,-1 - 127 952 l 1,4,5 - 221 1088 221 1088 221 1212 c 1,6,-1 - 133 1212 l 1,7,-1 - 133 1409 l 1,8,-1 - 328 1409 l 1,9,-1 - 328 1264 l 2,0,1 -EndSplineSet -Kerns2: 2021 -37 "'kern' Horizontal Kerning lookup 17 subtable" 86 -37 "'kern' Horizontal Kerning lookup 17 subtable" 3 -76 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: quotesinglbase -Encoding: 8218 8218 2022 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 0 - 0 - 4 - 8 - 8 - 11 - 10 - 8 - 3 - 169 - 91 - 7 - 8 - 156 - 91 - 7 -SVTCA[y-axis] -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -328 51 m 2,0,1 - 328 -55 328 -55 309 -126 c 128,-1,2 - 290 -197 290 -197 250 -262 c 1,3,-1 - 127 -262 l 1,4,5 - 221 -126 221 -126 221 0 c 1,6,-1 - 133 0 l 1,7,-1 - 133 195 l 1,8,-1 - 328 195 l 1,9,-1 - 328 51 l 2,0,1 -EndSplineSet -EndChar - -StartChar: quotereversed -Encoding: 8219 8219 2023 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 4 - 1 - 2 - 8 - 1 - 8 - 11 - 10 - 9 - 4 - 169 - 91 - 9 - 2 - 156 - 89 - 9 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -321 1409 m 1,0,-1 - 321 1212 l 1,1,-1 - 233 1212 l 1,2,3 - 233 1088 233 1088 327 952 c 1,4,-1 - 204 952 l 1,5,6 - 164 1016 164 1016 145 1088.5 c 128,-1,7 - 126 1161 126 1161 126 1264 c 2,8,-1 - 126 1409 l 1,9,-1 - 321 1409 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: quotedblleft -Encoding: 8220 8220 2024 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 15 - 19 - 19 - 10 - 5 - 9 - 7 - 0 - 0 - 9 - 17 - 10 - 9 - 10 - 21 - 20 - 7 - 17 - 10 - 17 - 156 - 91 - 0 - 0 - 10 - 15 - 10 - 169 - 91 - 4 - 15 - 3 - 175 - 21 - 1 - 159 - 21 - 1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -407 952 m 1,0,-1 - 407 1098 l 2,1,2 - 407 1193 407 1193 425 1267.5 c 128,-1,3 - 443 1342 443 1342 485 1409 c 1,4,-1 - 607 1409 l 1,5,6 - 513 1273 513 1273 513 1147 c 1,7,-1 - 601 1147 l 1,8,-1 - 601 952 l 1,9,-1 - 407 952 l 1,0,-1 -75 952 m 1,10,-1 - 75 1098 l 2,11,12 - 75 1195 75 1195 93.5 1268.5 c 128,-1,13 - 112 1342 112 1342 155 1409 c 1,14,-1 - 276 1409 l 1,15,16 - 181 1272 181 1272 181 1147 c 1,17,-1 - 270 1147 l 1,18,-1 - 270 952 l 1,19,-1 - 75 952 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: quotedblright -Encoding: 8221 8221 2025 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 16 - 10 - 10 - 18 - 6 - 9 - 4 - 8 - 8 - 9 - 14 - 18 - 9 - 18 - 21 - 20 - 7 - 17 - 18 - 17 - 156 - 91 - 3 - 3 - 13 - 18 - 13 - 169 - 91 - 8 - 18 - 3 - 175 - 21 - 1 - 159 - 21 - 1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -607 1264 m 2,0,1 - 607 1171 607 1171 590 1098 c 128,-1,2 - 573 1025 573 1025 528 952 c 1,3,-1 - 407 952 l 1,4,5 - 501 1088 501 1088 501 1214 c 1,6,-1 - 413 1214 l 1,7,-1 - 413 1409 l 1,8,-1 - 607 1409 l 1,9,-1 - 607 1264 l 2,0,1 -276 1264 m 2,10,11 - 276 1159 276 1159 257 1087.5 c 128,-1,12 - 238 1016 238 1016 198 952 c 1,13,-1 - 75 952 l 1,14,15 - 169 1088 169 1088 169 1214 c 1,16,-1 - 81 1214 l 1,17,-1 - 81 1409 l 1,18,-1 - 276 1409 l 1,19,-1 - 276 1264 l 2,10,11 -EndSplineSet -EndChar - -StartChar: quotedblbase -Encoding: 8222 8222 2026 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 16 - 10 - 10 - 18 - 6 - 0 - 0 - 4 - 8 - 8 - 14 - 18 - 18 - 21 - 20 - 3 - 3 - 13 - 18 - 13 - 169 - 91 - 8 - 8 - 18 - 17 - 18 - 156 - 91 - 7 - 17 - 175 - 21 - 1 - 159 - 21 - 1 -DELTAP1 -DELTAP1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -607 51 m 2,0,1 - 607 -44 607 -44 589.5 -117.5 c 128,-1,2 - 572 -191 572 -191 528 -262 c 1,3,-1 - 407 -262 l 1,4,5 - 501 -126 501 -126 501 0 c 1,6,-1 - 413 0 l 1,7,-1 - 413 195 l 1,8,-1 - 607 195 l 1,9,-1 - 607 51 l 2,0,1 -276 51 m 2,10,11 - 276 -55 276 -55 257 -126 c 128,-1,12 - 238 -197 238 -197 198 -262 c 1,13,-1 - 75 -262 l 1,14,15 - 169 -126 169 -126 169 0 c 1,16,-1 - 81 0 l 1,17,-1 - 81 195 l 1,18,-1 - 276 195 l 1,19,-1 - 276 51 l 2,10,11 -EndSplineSet -Kerns2: 987 -68 "'kern' Horizontal Kerning lookup 17 subtable" 984 -68 "'kern' Horizontal Kerning lookup 17 subtable" 979 -160 "'kern' Horizontal Kerning lookup 17 subtable" 956 -160 "'kern' Horizontal Kerning lookup 17 subtable" 947 -160 "'kern' Horizontal Kerning lookup 17 subtable" -EndChar - -StartChar: uni201F -Encoding: 8223 8223 2027 -Width: 682 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2023 8219 N 1 0 0 1 -54 0 2 -Refer: 2023 8219 N 1 0 0 1 255 0 2 -EndChar - -StartChar: dagger -Encoding: 8224 8224 2028 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 11 - 9 - 8 - 0 - 0 - 7 - 6 - 4 - 3 - 3 - 13 - 12 - 10 - 11 - 193 - 89 - 7 - 10 - 194 - 89 - 5 - 4 - 193 - 89 - 7 - 5 - 194 - 89 - 7 - 0 - 1 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -CALL -CALL -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -649 1000 m 1,0,-1 - 627 -138 l 1,1,-1 - 512 -138 l 1,2,-1 - 490 1000 l 1,3,-1 - 138 973 l 1,4,-1 - 138 1137 l 1,5,-1 - 490 1108 l 1,6,-1 - 462 1484 l 1,7,-1 - 677 1484 l 1,8,-1 - 649 1108 l 1,9,-1 - 1002 1137 l 1,10,-1 - 1002 973 l 1,11,-1 - 649 1000 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: daggerdbl -Encoding: 8225 8225 2029 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 60 - 12 - 8 - 8 - 5 - 6 - 11 - 14 - 15 - 5 - 9 - 9 - 0 - 19 - 1 - 1 - 20 - 17 - 3 - 4 - 16 - 3 - 0 - 0 - 23 - 22 - 18 - 19 - 193 - 89 - 15 - 18 - 194 - 91 - 13 - 12 - 193 - 89 - 15 - 13 - 194 - 91 - 15 - 7 - 8 - 193 - 89 - 4 - 7 - 194 - 91 - 2 - 1 - 193 - 89 - 4 - 2 - 194 - 91 - 4 - 0 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -CALL -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -CALL -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SLOOP -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SLOOP -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -497 1000 m 1,0,-1 - 137 973 l 1,1,-1 - 137 1137 l 1,2,-1 - 497 1108 l 1,3,-1 - 481 1484 l 1,4,-1 - 656 1484 l 1,5,-1 - 640 1108 l 1,6,-1 - 1001 1137 l 1,7,-1 - 1001 973 l 1,8,-1 - 640 1000 l 1,9,-1 - 614 670 l 1,10,-1 - 640 343 l 1,11,-1 - 1000 370 l 1,12,-1 - 1000 206 l 1,13,-1 - 640 235 l 1,14,-1 - 656 -141 l 1,15,-1 - 481 -141 l 1,16,-1 - 497 235 l 1,17,-1 - 136 206 l 1,18,-1 - 136 370 l 1,19,-1 - 497 343 l 1,20,-1 - 523 670 l 1,21,-1 - 497 1000 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: bullet -Encoding: 8226 8226 2030 -Width: 717 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 0 - 12 - 13 - 143 - 3 - 1 - 0 - 3 - 48 - 3 - 2 - 3 - 15 - 9 - 1 - 9 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -MDRP[min,rnd,black] -DELTAP1 -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -636 682 m 256,0,1 - 636 569 636 569 554.5 485 c 128,-1,2 - 473 401 473 401 355 401 c 0,3,4 - 242 401 242 401 161.5 484 c 128,-1,5 - 81 567 81 567 81 682 c 256,6,7 - 81 797 81 797 162 876.5 c 128,-1,8 - 243 956 243 956 355 956 c 0,9,10 - 471 956 471 956 553.5 875.5 c 128,-1,11 - 636 795 636 795 636 682 c 256,0,1 -EndSplineSet -EndChar - -StartChar: ellipsis -Encoding: 8230 8230 2031 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 11 - 8 - 7 - 4 - 3 - 0 - 0 - 4 - 8 - 3 - 12 - 13 - 5 - 1 - 9 - 8 - 9 - 155 - 91 - 4 - 0 - 8 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1576 0 m 1,0,-1 - 1576 219 l 1,1,-1 - 1770 219 l 1,2,-1 - 1770 0 l 1,3,-1 - 1576 0 l 1,0,-1 -929 0 m 1,4,-1 - 929 219 l 1,5,-1 - 1121 219 l 1,6,-1 - 1121 0 l 1,7,-1 - 929 0 l 1,4,-1 -278 0 m 1,8,-1 - 278 219 l 1,9,-1 - 473 219 l 1,10,-1 - 473 0 l 1,11,-1 - 278 0 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: uni202A -Encoding: 8234 8234 2032 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 0 - 3 - 2 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -42 1154 m 1,0,-1 - 42 -273 l 1,1,-1 - -41 -273 l 1,2,-1 - -41 1233 l 1,3,-1 - 435 1233 l 1,4,-1 - 435 1154 l 1,5,-1 - 42 1154 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni202B -Encoding: 8235 8235 2033 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 4 - 0 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --435 1154 m 1,0,-1 - -435 1233 l 1,1,-1 - 41 1233 l 1,2,-1 - 41 -273 l 1,3,-1 - -42 -273 l 1,4,-1 - -42 1154 l 1,5,-1 - -435 1154 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni202C -Encoding: 8236 8236 2034 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 5 - 5 - 3 - 6 - 3 - 3 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -238 977 m 1,0,-1 - 42 977 l 1,1,-1 - 42 -273 l 1,2,-1 - -42 -273 l 1,3,-1 - -42 977 l 1,4,-1 - -238 977 l 1,5,-1 - -238 1411 l 1,6,-1 - 238 1411 l 1,7,-1 - 238 977 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni202D -Encoding: 8237 8237 2035 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 10 - 1 - 5 - 5 - 3 - 9 - 6 - 3 - 3 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -238 977 m 1,0,-1 - 42 977 l 1,1,-1 - 42 -273 l 1,2,-1 - -42 -273 l 1,3,-1 - -42 977 l 1,4,-1 - -238 977 l 1,5,-1 - -238 1411 l 1,6,-1 - 238 1411 l 1,7,-1 - 238 1332 l 1,8,-1 - -157 1332 l 1,9,-1 - -157 1055 l 1,10,-1 - 238 1055 l 1,11,-1 - 238 977 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni202E -Encoding: 8238 8238 2036 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 7 - 0 - 11 - 11 - 4 - 9 - 3 - 4 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --238 1055 m 1,0,-1 - 157 1055 l 1,1,-1 - 157 1332 l 1,2,-1 - -238 1332 l 1,3,-1 - -238 1411 l 1,4,-1 - 238 1411 l 1,5,-1 - 238 977 l 1,6,-1 - 42 977 l 1,7,-1 - 42 -273 l 1,8,-1 - -42 -273 l 1,9,-1 - -42 977 l 1,10,-1 - -238 977 l 1,11,-1 - -238 1055 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni202F -Encoding: 8239 8239 2037 -Width: 410 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2006 8201 N 1 0 0 1 0 0 2 -EndChar - -StartChar: perthousand -Encoding: 8240 8240 2038 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 46 - 37 - 31 - 37 - 181 - 91 - 0 - 1 - 2 - 3 - 1 - 3 - 31 - 31 - 40 - 40 - 13 - 70 - 61 - 55 - 61 - 181 - 91 - 64 - 55 - 16 - 7 - 13 - 7 - 181 - 91 - 22 - 13 - 55 - 13 - 77 - 76 - 52 - 67 - 182 - 89 - 58 - 52 - 183 - 91 - 58 - 73 - 182 - 89 - 58 - 19 - 28 - 43 - 182 - 89 - 34 - 28 - 183 - 91 - 34 - 49 - 182 - 89 - 34 - 19 - 10 - 25 - 182 - 89 - 4 - 10 - 183 - 91 - 4 - 19 - 182 - 89 - 4 - 4 - 2 - 3 - 0 - 18 - 121 - 77 - 1 - 105 - 77 - 1 - 93 - 77 - 1 - 73 - 77 - 1 - 57 - 77 - 1 - 43 - 77 - 1 - 22 - 77 - 1 - 249 - 77 - 1 - 237 - 77 - 1 - 201 - 77 - 1 - 187 - 77 - 1 - 153 - 77 - 1 - 123 - 77 - 1 - 102 - 77 - 1 - 73 - 77 - 1 - 54 - 77 - 1 - 25 - 77 - 1 - 9 - 77 - 1 - 105 - 249 - 77 - 1 - 235 - 77 - 1 - 221 - 77 - 1 - 169 - 77 - 1 - 150 - 77 - 1 - 121 - 77 - 1 - 107 - 77 - 1 - 73 - 77 - 1 - 59 - 77 - 1 - 25 - 77 - 1 - 11 - 77 - 1 - 253 - 77 - 1 - 217 - 77 - 1 - 203 - 77 - 1 - 169 - 77 - 1 - 155 - 77 - 1 - 141 - 77 - 1 - 121 - 77 - 1 - 107 - 77 - 1 - 91 - 77 - 1 - 57 - 77 - 1 - 43 - 77 - 1 - 27 - 77 - 1 - 249 - 77 - 1 - 235 - 77 - 1 - 201 - 77 - 1 - 169 - 77 - 1 - 150 - 77 - 1 - 121 - 77 - 1 - 107 - 77 - 1 - 57 - 77 - 1 - 38 - 77 - 1 - 9 - 77 - 1 - 56 - 249 - 77 - 1 - 230 - 77 - 1 - 201 - 77 - 1 - 182 - 77 - 1 - 153 - 77 - 1 - 139 - 77 -NPUSHB - 82 - 1 - 89 - 77 - 1 - 70 - 77 - 1 - 41 - 77 - 1 - 27 - 77 - 1 - 249 - 77 - 1 - 235 - 77 - 1 - 201 - 77 - 1 - 187 - 77 - 1 - 173 - 77 - 1 - 1 - 148 - 77 - 1 - 123 - 77 - 1 - 100 - 77 - 1 - 75 - 77 - 1 - 63 - 77 - 1 - 27 - 77 - 1 - 15 - 77 - 1 - 228 - 77 - 1 - 203 - 77 - 1 - 176 - 77 - 1 - 2 - 160 - 77 - 1 - 143 - 77 - 1 - 112 - 77 - 1 - 95 - 77 - 1 - 64 - 77 - 1 - 31 - 77 - 1 - 0 - 77 - 1 - 8 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SDS -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -304 0 m 1,0,-1 - 149 0 l 1,1,-1 - 1071 1409 l 1,2,-1 - 1228 1409 l 1,3,-1 - 304 0 l 1,0,-1 -356 1421 m 0,4,5 - 506 1421 506 1421 577.5 1329.5 c 128,-1,6 - 649 1238 649 1238 649 1060 c 0,7,8 - 649 880 649 880 573 787 c 128,-1,9 - 497 694 497 694 352 694 c 0,10,11 - 204 694 204 694 129.5 788 c 128,-1,12 - 55 882 55 882 55 1060 c 0,13,14 - 55 1241 55 1241 127.5 1331 c 128,-1,15 - 200 1421 200 1421 356 1421 c 0,4,5 -502 1060 m 0,16,17 - 502 1193 502 1193 468.5 1253 c 128,-1,18 - 435 1313 435 1313 356 1313 c 0,19,20 - 272 1313 272 1313 237 1253.5 c 128,-1,21 - 202 1194 202 1194 202 1060 c 0,22,23 - 202 928 202 928 238.5 867.5 c 128,-1,24 - 275 807 275 807 354 807 c 0,25,26 - 429 807 429 807 465.5 869 c 128,-1,27 - 502 931 502 931 502 1060 c 0,16,17 -1044 716 m 0,28,29 - 1194 716 1194 716 1265.5 624.5 c 128,-1,30 - 1337 533 1337 533 1337 355 c 0,31,32 - 1337 175 1337 175 1261 82 c 128,-1,33 - 1185 -11 1185 -11 1040 -11 c 0,34,35 - 892 -11 892 -11 817.5 83 c 128,-1,36 - 743 177 743 177 743 355 c 0,37,38 - 743 536 743 536 815.5 626 c 128,-1,39 - 888 716 888 716 1044 716 c 0,28,29 -1190 355 m 0,40,41 - 1190 488 1190 488 1156.5 548 c 128,-1,42 - 1123 608 1123 608 1044 608 c 0,43,44 - 960 608 960 608 925 548.5 c 128,-1,45 - 890 489 890 489 890 355 c 0,46,47 - 890 223 890 223 926.5 162.5 c 128,-1,48 - 963 102 963 102 1042 102 c 0,49,50 - 1117 102 1117 102 1153.5 164 c 128,-1,51 - 1190 226 1190 226 1190 355 c 0,40,41 -1699 716 m 0,52,53 - 1849 716 1849 716 1920.5 624.5 c 128,-1,54 - 1992 533 1992 533 1992 355 c 0,55,56 - 1992 175 1992 175 1916 82 c 128,-1,57 - 1840 -11 1840 -11 1695 -11 c 0,58,59 - 1547 -11 1547 -11 1472.5 83 c 128,-1,60 - 1398 177 1398 177 1398 355 c 0,61,62 - 1398 536 1398 536 1470.5 626 c 128,-1,63 - 1543 716 1543 716 1699 716 c 0,52,53 -1845 355 m 0,64,65 - 1845 488 1845 488 1811.5 548 c 128,-1,66 - 1778 608 1778 608 1699 608 c 0,67,68 - 1615 608 1615 608 1580 548.5 c 128,-1,69 - 1545 489 1545 489 1545 355 c 0,70,71 - 1545 223 1545 223 1581.5 162.5 c 128,-1,72 - 1618 102 1618 102 1697 102 c 0,73,74 - 1772 102 1772 102 1808.5 164 c 128,-1,75 - 1845 226 1845 226 1845 355 c 0,64,65 -EndSplineSet -EndChar - -StartChar: minute -Encoding: 8242 8242 2039 -Width: 384 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 1 - 2 - 3 - 0 - 2 - 0 - 5 - 4 - 0 - 1 - 3 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -85 890 m 1,0,-1 - 149 1409 l 1,1,-1 - 345 1409 l 1,2,-1 - 187 890 l 1,3,-1 - 85 890 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: second -Encoding: 8243 8243 2040 -Width: 725 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 4 - 96 - 4 - 1 -DELTAP1 -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 2039 8242 N 1 0 0 1 0 0 2 -Refer: 2039 8242 N 1 0 0 1 342 0 2 -EndChar - -StartChar: uni2034 -Encoding: 8244 8244 2041 -Width: 725 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2039 8242 N 1 0 0 1 -177 0 2 -Refer: 2039 8242 N 1 0 0 1 100 0 2 -Refer: 2039 8242 N 1 0 0 1 378 0 2 -EndChar - -StartChar: guilsinglleft -Encoding: 8249 8249 2042 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 6 - 1 - 1 - 8 - 5 - 3 - 10 - 9 - 3 - 0 - 239 - 91 - 15 - 3 - 47 - 3 - 111 - 3 - 127 - 3 - 4 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -424 141 m 1,0,-1 - 88 506 l 1,1,-1 - 88 569 l 1,2,-1 - 424 940 l 1,3,-1 - 591 940 l 1,4,-1 - 591 909 l 1,5,-1 - 256 537 l 1,6,-1 - 593 170 l 1,7,-1 - 593 141 l 1,8,-1 - 424 141 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: guilsinglright -Encoding: 8250 8250 2043 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 3 - 8 - 1 - 4 - 8 - 3 - 10 - 9 - 6 - 0 - 239 - 91 - 15 - 6 - 47 - 6 - 111 - 6 - 127 - 6 - 4 - 6 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -257 141 m 1,0,-1 - 89 141 l 1,1,-1 - 89 170 l 1,2,-1 - 427 537 l 1,3,-1 - 91 909 l 1,4,-1 - 91 940 l 1,5,-1 - 257 940 l 1,6,-1 - 594 569 l 1,7,-1 - 594 506 l 1,8,-1 - 257 141 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: exclamdbl -Encoding: 8252 8252 2044 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 3 - 2 - 8 - 47 - 8 - 1 - 1 - 0 - 47 - 0 - 1 -DELTAP1 -SHC[rp1] -SHC[rp1] -DELTAP1 -SRP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 4 33 N 1 0 0 1 0 0 2 -Refer: 4 33 N 1 0 0 1 456 0 2 -EndChar - -StartChar: radicalex -Encoding: 8254 8254 2045 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 0 - 5 - 1 - 4 - 2 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -747 1503 m 1,0,-1 - -64 1503 l 1,1,-1 - -64 1620 l 1,2,-1 - 747 1620 l 1,3,-1 - 747 1503 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: fraction -Encoding: 8260 8260 2046 -Width: 342 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 5 - 1 - 4 - 2 - 3 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --268 0 m 1,0,-1 - -416 0 l 1,1,-1 - 465 1409 l 1,2,-1 - 610 1409 l 1,3,-1 - -268 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni205E -Encoding: 8286 8286 2047 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 12 - 8 - 4 - 0 - 0 - 15 - 11 - 7 - 3 - 3 - 16 - 17 - 13 - 12 - 155 - 89 - 9 - 8 - 155 - 89 - 13 - 9 - 13 - 9 - 0 - 5 - 5 - 4 - 155 - 89 - 5 - 0 - 0 - 1 - 155 - 89 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -187 0 m 1,0,-1 - 187 219 l 1,1,-1 - 382 219 l 1,2,-1 - 382 0 l 1,3,-1 - 187 0 l 1,0,-1 -187 1265 m 1,4,-1 - 187 1484 l 1,5,-1 - 382 1484 l 1,6,-1 - 382 1265 l 1,7,-1 - 187 1265 l 1,4,-1 -187 844 m 1,8,-1 - 187 1063 l 1,9,-1 - 382 1063 l 1,10,-1 - 382 844 l 1,11,-1 - 187 844 l 1,8,-1 -187 421 m 1,12,-1 - 187 640 l 1,13,-1 - 382 640 l 1,14,-1 - 382 421 l 1,15,-1 - 187 421 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: uni206A -Encoding: 8298 8298 2048 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 0 - 8 - 11 - 3 - 15 - 15 - 4 - 13 - 7 - 3 - 3 - 4 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -SLOOP -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --238 1055 m 1,0,-1 - -42 1055 l 1,1,-1 - -42 1332 l 1,2,-1 - -238 1332 l 1,3,-1 - -238 1411 l 1,4,-1 - 238 1411 l 1,5,-1 - 238 1332 l 1,6,-1 - 42 1332 l 1,7,-1 - 42 1055 l 1,8,-1 - 238 1055 l 1,9,-1 - 238 977 l 1,10,-1 - 42 977 l 1,11,-1 - 42 -273 l 1,12,-1 - -42 -273 l 1,13,-1 - -42 977 l 1,14,-1 - -238 977 l 1,15,-1 - -238 1055 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni206B -Encoding: 8299 8299 2049 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 8 - 0 - 4 - 4 - 5 - 10 - 3 - 5 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --157 1055 m 1,0,-1 - 157 1055 l 1,1,-1 - 157 1332 l 1,2,-1 - -157 1332 l 1,3,-1 - -157 1055 l 1,0,-1 --238 977 m 1,4,-1 - -238 1411 l 1,5,-1 - 238 1411 l 1,6,-1 - 238 977 l 1,7,-1 - 42 977 l 1,8,-1 - 42 -273 l 1,9,-1 - -42 -273 l 1,10,-1 - -42 977 l 1,11,-1 - -238 977 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni206C -Encoding: 8300 8300 2050 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 5 - 2 - 2 - 3 - 3 - 0 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -42 -273 m 1,0,-1 - -42 -273 l 1,1,-1 - -42 1045 l 1,2,-1 - -240 1411 l 1,3,-1 - 240 1411 l 1,4,-1 - 42 1045 l 1,5,-1 - 42 -273 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni206D -Encoding: 8301 8301 2051 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 4 - 4 - 2 - 5 - 3 - 2 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -42 977 m 1,0,-1 - 42 -273 l 1,1,-1 - -42 -273 l 1,2,-1 - -42 977 l 1,3,-1 - -240 977 l 1,4,-1 - 0 1418 l 1,5,-1 - 240 977 l 1,6,-1 - 42 977 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni206E -Encoding: 8302 8302 2052 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 6 - 2 - 10 - 5 - 7 - 3 - 9 - 9 - 7 - 10 - 3 - 1 - 8 - 4 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -42 -273 m 1,0,-1 - -42 -273 l 1,1,-1 - -42 1012 l 1,2,-1 - -239 1193 l 1,3,-1 - 0 1414 l 1,4,-1 - 239 1193 l 1,5,-1 - 42 1012 l 1,6,-1 - 42 -273 l 1,0,-1 -126 1193 m 1,7,-1 - 0 1306 l 1,8,-1 - -126 1193 l 1,9,-1 - 0 1081 l 1,10,-1 - 126 1193 l 1,7,-1 -EndSplineSet -EndChar - -StartChar: uni206F -Encoding: 8303 8303 2053 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 0 - 6 - 9 - 3 - 13 - 13 - 4 - 11 - 3 - 4 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -SLOOP -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --238 1055 m 1,0,-1 - -42 1055 l 1,1,-1 - -42 1332 l 1,2,-1 - -238 1332 l 1,3,-1 - -238 1411 l 1,4,-1 - 42 1411 l 1,5,-1 - 42 1055 l 1,6,-1 - 238 1055 l 1,7,-1 - 238 977 l 1,8,-1 - 42 977 l 1,9,-1 - 42 -273 l 1,10,-1 - -42 -273 l 1,11,-1 - -42 977 l 1,12,-1 - -238 977 l 1,13,-1 - -238 1055 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: foursuperior -Encoding: 8308 8308 2054 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 15 - 6 - 2 - 2 - 8 - 1 - 14 - 5 - 1 - 5 - 18 - 17 - 0 - 4 - 14 - 4 - 229 - 89 - 8 - 5 - 95 - 14 - 111 - 14 - 127 - 14 - 3 - 15 - 14 - 31 - 14 - 127 - 14 - 143 - 14 - 159 - 14 - 5 - 14 - 14 - 1 - 11 - 6 - 220 - 1 - 223 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -DELTAP1 -DELTAP2 -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -551 741 m 1,0,-1 - 551 563 l 1,1,-1 - 420 563 l 1,2,-1 - 420 741 l 1,3,-1 - 14 741 l 1,4,-1 - 14 852 l 1,5,-1 - 400 1409 l 1,6,-1 - 551 1409 l 1,7,-1 - 551 854 l 1,8,-1 - 662 854 l 1,9,-1 - 662 741 l 1,10,-1 - 551 741 l 1,0,-1 -422 1276 m 1,11,12 - 401 1236 401 1236 340 1141 c 1,13,-1 - 141 854 l 1,14,-1 - 420 854 l 1,15,-1 - 420 1214 l 1,16,-1 - 422 1276 l 1,11,12 -EndSplineSet -EndChar - -StartChar: fivesuperior -Encoding: 8309 8309 2055 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 67 - 19 - 27 - 1 - 3 - 0 - 27 - 1 - 9 - 4 - 22 - 13 - 0 - 23 - 20 - 20 - 19 - 24 - 18 - 18 - 6 - 19 - 0 - 19 - 31 - 30 - 27 - 16 - 228 - 89 - 68 - 7 - 84 - 7 - 100 - 7 - 3 - 53 - 7 - 1 - 3 - 0 - 7 - 16 - 7 - 32 - 7 - 3 - 9 - 5 - 7 - 18 - 27 - 27 - 3 - 20 - 20 - 23 - 229 - 89 - 20 - 220 - 3 - 10 - 228 - 89 - 3 - 221 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -IP -IP -SDS -SDB -DELTAP1 -SDS -DELTAP1 -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SVTCA[y-axis] -SDS -SDB -DELTAP1 -SDS -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -636 835 m 0,0,1 - 636 703 636 703 560.5 627.5 c 128,-1,2 - 485 552 485 552 347 552 c 0,3,4 - 228 552 228 552 150.5 609 c 128,-1,5 - 73 666 73 666 53 773 c 1,6,-1 - 186 788 l 1,7,8 - 197 728 197 728 238.5 692.5 c 128,-1,9 - 280 657 280 657 344 657 c 0,10,11 - 415 657 415 657 458 699.5 c 128,-1,12 - 501 742 501 742 501 835 c 0,13,14 - 501 916 501 916 460.5 958.5 c 128,-1,15 - 420 1001 420 1001 345 1001 c 0,16,17 - 254 1001 254 1001 194 941 c 1,18,-1 - 65 941 l 1,19,-1 - 98 1409 l 1,20,-1 - 604 1409 l 1,21,-1 - 604 1296 l 1,22,-1 - 206 1296 l 1,23,-1 - 187 1051 l 1,24,25 - 216 1077 216 1077 261.5 1093.5 c 128,-1,26 - 307 1110 307 1110 361 1110 c 0,27,28 - 491 1110 491 1110 563.5 1037.5 c 128,-1,29 - 636 965 636 965 636 835 c 0,0,1 -EndSplineSet -EndChar - -StartChar: sevensuperior -Encoding: 8311 8311 2056 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 8 - 4 - 5 - 5 - 0 - 9 - 0 - 9 - 13 - 12 - 0 - 9 - 10 - 9 - 229 - 89 - 10 - 220 - 4 - 223 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -632 1308 m 1,0,1 - 503 1112 503 1112 449 1001.5 c 128,-1,2 - 395 891 395 891 368.5 785 c 128,-1,3 - 342 679 342 679 342 564 c 1,4,-1 - 209 564 l 1,5,6 - 209 719 209 719 271 882.5 c 128,-1,7 - 333 1046 333 1046 503 1296 c 1,8,-1 - 43 1296 l 1,9,-1 - 43 1409 l 1,10,-1 - 632 1409 l 1,11,-1 - 632 1308 l 1,0,1 -EndSplineSet -EndChar - -StartChar: eightsuperior -Encoding: 8312 8312 2057 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 45 - 32 - 42 - 6 - 36 - 36 - 17 - 29 - 0 - 42 - 42 - 12 - 23 - 29 - 23 - 49 - 50 - 45 - 33 - 9 - 14 - 9 - 14 - 228 - 89 - 15 - 9 - 31 - 9 - 2 - 9 - 3 - 9 - 9 - 26 - 39 - 39 - 3 - 228 - 89 - 39 - 222 - 26 - 20 - 228 - 89 - 26 - 221 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -479 1193 m 0,0,1 - 479 1263 479 1263 445 1292.5 c 128,-1,2 - 411 1322 411 1322 342 1322 c 256,3,4 - 273 1322 273 1322 239.5 1291 c 128,-1,5 - 206 1260 206 1260 206 1193 c 0,6,7 - 206 1123 206 1123 241 1091 c 128,-1,8 - 276 1059 276 1059 343 1059 c 0,9,10 - 411 1059 411 1059 445 1088.5 c 128,-1,11 - 479 1118 479 1118 479 1193 c 0,0,1 -500 814 m 0,12,13 - 500 958 500 958 342 958 c 0,14,15 - 266 958 266 958 226.5 920 c 128,-1,16 - 187 882 187 882 187 812 c 0,17,18 - 187 729 187 729 226 691 c 128,-1,19 - 265 653 265 653 345 653 c 0,20,21 - 426 653 426 653 463 690.5 c 128,-1,22 - 500 728 500 728 500 814 c 0,12,13 -642 800 m 0,23,24 - 642 682 642 682 565 617 c 128,-1,25 - 488 552 488 552 344 552 c 0,26,27 - 202 552 202 552 123.5 617 c 128,-1,28 - 45 682 45 682 45 799 c 0,29,30 - 45 880 45 880 92.5 937 c 128,-1,31 - 140 994 140 994 214 1006 c 1,32,-1 - 214 1009 l 1,33,34 - 146 1024 146 1024 105.5 1078 c 128,-1,35 - 65 1132 65 1132 65 1205 c 0,36,37 - 65 1303 65 1303 140 1362.5 c 128,-1,38 - 215 1422 215 1422 342 1422 c 0,39,40 - 472 1422 472 1422 546.5 1363 c 128,-1,41 - 621 1304 621 1304 621 1204 c 0,42,43 - 621 1131 621 1131 580 1077 c 128,-1,44 - 539 1023 539 1023 471 1010 c 1,45,-1 - 471 1007 l 1,46,47 - 553 993 553 993 597.5 938.5 c 128,-1,48 - 642 884 642 884 642 800 c 0,23,24 -EndSplineSet -EndChar - -StartChar: nsuperior -Encoding: 8319 8319 2058 -Width: 747 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 13 - 8 - 8 - 9 - 0 - 21 - 9 - 21 - 22 - 23 - 13 - 4 - 17 - 4 - 228 - 89 - 9 - 139 - 0 - 251 - 0 - 2 - 0 -PUSHW_1 - -64 -NPUSHB - 35 - 9 - 13 - 72 - 0 - 17 - 11 - 11 - 75 - 17 - 91 - 17 - 2 - 17 - 64 - 21 - 25 - 72 - 17 - 64 - 16 - 19 - 72 - 47 - 17 - 63 - 17 - 2 - 27 - 17 - 1 - 15 - 17 - 1 - 2 - 17 -SVTCA[y-axis] -MDAP[rnd] -SDS -DELTAP1 -DELTAP1 -DELTAP1 -CALL -CALL -DELTAP1 -SHP[rp1] -MDAP[rnd] -SRP0 -MDRP[min,rnd,grey] -CALL -DELTAP1 -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -514 519 m 1,0,-1 - 514 917 l 2,1,2 - 514 1007 514 1007 487 1042 c 128,-1,3 - 460 1077 460 1077 390 1077 c 0,4,5 - 318 1077 318 1077 275.5 1027 c 128,-1,6 - 233 977 233 977 233 883 c 2,7,-1 - 233 519 l 1,8,-1 - 105 519 l 1,9,-1 - 105 1030 l 1,10,-1 - 101 1169 l 1,11,-1 - 220 1169 l 1,12,-1 - 226 1058 l 1,13,-1 - 228 1058 l 1,14,15 - 263 1123 263 1123 312.5 1152 c 128,-1,16 - 362 1181 362 1181 436 1181 c 0,17,18 - 546 1181 546 1181 594.5 1127 c 128,-1,19 - 643 1073 643 1073 643 952 c 2,20,-1 - 643 519 l 1,21,-1 - 514 519 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2090 -Encoding: 8336 8336 2059 -Width: 762 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1379 7491 N 1 0 0 1 2 -629 2 -EndChar - -StartChar: uni2091 -Encoding: 8337 8337 2060 -Width: 761 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1385 7497 N 1 0 0 1 -5 -626 2 -EndChar - -StartChar: uni2092 -Encoding: 8338 8338 2061 -Width: 773 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1394 7506 N 1 0 0 1 0 -627 2 -EndChar - -StartChar: uni2093 -Encoding: 8339 8339 2062 -Width: 672 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 817 879 N 1 0 0 1 334 -626 2 -EndChar - -StartChar: uni2094 -Encoding: 8340 8340 2063 -Width: 761 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1386 7498 N 1 0 0 1 -5 -627 2 -EndChar - -StartChar: uni20A0 -Encoding: 8352 8352 2064 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 62 - 5 - 24 - 13 - 17 - 17 - 8 - 20 - 0 - 30 - 11 - 18 - 18 - 19 - 15 - 30 - 20 - 24 - 6 - 31 - 32 - 9 - 12 - 96 - 89 - 16 - 21 - 8 - 21 - 96 - 89 - 13 - 8 - 15 - 8 - 79 - 8 - 207 - 8 - 255 - 8 - 4 - 11 - 3 - 9 - 8 - 9 - 8 - 27 - 20 - 27 - 2 - 96 - 89 - 0 - 27 - 4 - 20 - 17 - 96 - 89 - 20 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -720 1196 m 1,0,1 - 675 1351 675 1351 496 1351 c 0,2,3 - 339 1351 339 1351 270.5 1262.5 c 128,-1,4 - 202 1174 202 1174 202 986 c 0,5,6 - 202 790 202 790 272 698 c 128,-1,7 - 342 606 342 606 495 605 c 1,8,-1 - 495 1042 l 1,9,-1 - 1102 1042 l 1,10,-1 - 1102 903 l 1,11,-1 - 675 903 l 1,12,-1 - 675 604 l 1,13,-1 - 1063 604 l 1,14,-1 - 1063 466 l 1,15,-1 - 675 466 l 1,16,-1 - 675 139 l 1,17,-1 - 1127 139 l 1,18,-1 - 1127 0 l 1,19,-1 - 495 0 l 1,20,-1 - 495 463 l 1,21,22 - 253 465 253 465 133.5 593 c 128,-1,23 - 14 721 14 721 14 982 c 0,24,25 - 14 1231 14 1231 141 1361.5 c 128,-1,26 - 268 1492 268 1492 501 1492 c 0,27,28 - 657 1492 657 1492 761 1419.5 c 128,-1,29 - 865 1347 865 1347 901 1216 c 1,30,-1 - 720 1196 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni20A1 -Encoding: 8353 8353 2065 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 60 - 35 - 9 - 8 - 8 - 34 - 0 - 14 - 13 - 13 - 29 - 30 - 0 - 30 - 4 - 18 - 17 - 17 - 23 - 24 - 4 - 24 - 47 - 48 - 34 - 29 - 27 - 64 - 37 - 44 - 46 - 3 - 1 - 23 - 23 - 1 - 31 - 27 - 27 - 21 - 95 - 89 - 27 - 19 - 41 - 20 - 10 - 18 - 18 - 13 - 9 - 10 - 64 - 10 - 43 - 95 - 89 - 15 - 7 - 10 - 4 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp1] -MDAP[rnd] -SRP2 -IP -IP -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -SLOOP -IP -SMD -SRP0 -MDRP[min,rnd,white] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -304 -113 m 1,0,-1 - 365 105 l 1,1,2 - 234 202 234 202 169 358 c 128,-1,3 - 104 514 104 514 104 711 c 0,4,5 - 104 1033 104 1033 270 1222.5 c 128,-1,6 - 436 1412 436 1412 740 1428 c 1,7,-1 - 773 1544 l 1,8,-1 - 915 1544 l 1,9,-1 - 881 1426 l 1,10,11 - 966 1418 966 1418 1038 1396 c 1,12,-1 - 1080 1544 l 1,13,-1 - 1222 1544 l 1,14,-1 - 1165 1342 l 1,15,16 - 1317 1253 1317 1253 1388 1081 c 1,17,-1 - 1207 1021 l 1,18,19 - 1176 1099 1176 1099 1113 1160 c 1,20,-1 - 824 137 l 1,21,22 - 1099 148 1099 148 1245 430 c 1,23,-1 - 1401 352 l 1,24,25 - 1314 170 1314 170 1156.5 75 c 128,-1,26 - 999 -20 999 -20 791 -20 c 2,27,-1 - 779 -20 l 1,28,-1 - 753 -113 l 1,29,-1 - 611 -113 l 1,30,-1 - 641 -7 l 1,31,32 - 558 6 558 6 488 36 c 1,33,-1 - 446 -113 l 1,34,-1 - 304 -113 l 1,0,-1 -298 711 m 0,35,36 - 298 462 298 462 423 308 c 1,37,-1 - 694 1266 l 1,38,39 - 505 1237 505 1237 401.5 1091 c 128,-1,40 - 298 945 298 945 298 711 c 0,35,36 -993 1237 m 1,41,42 - 924 1266 924 1266 838 1272 c 1,43,-1 - 536 207 l 1,44,45 - 600 166 600 166 685 148 c 1,46,-1 - 993 1237 l 1,41,42 -EndSplineSet -EndChar - -StartChar: uni20A2 -Encoding: 8354 8354 2066 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 69 - 42 - 41 - 41 - 12 - 25 - 25 - 7 - 6 - 6 - 19 - 28 - 3 - 35 - 28 - 35 - 46 - 45 - 16 - 21 - 95 - 89 - 9 - 9 - 16 - 16 - 31 - 38 - 15 - 42 - 1 - 13 - 3 - 42 - 42 - 38 - 38 - 0 - 95 - 89 - 38 - 4 - 6 - 25 - 31 - 25 - 95 - 89 - 0 - 27 - 16 - 27 - 2 - 48 - 27 - 64 - 27 - 112 - 27 - 128 - 27 - 192 - 27 - 208 - 27 - 6 - 27 - 27 - 31 - 19 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -792 1274 m 0,0,1 - 558 1274 558 1274 428 1123.5 c 128,-1,2 - 298 973 298 973 298 711 c 0,3,4 - 298 500 298 500 391 352.5 c 128,-1,5 - 484 205 484 205 652 157 c 1,6,-1 - 652 589 l 2,7,8 - 652 703 652 703 646 841 c 1,9,-1 - 816 841 l 1,10,11 - 824 657 824 657 824 620 c 1,12,-1 - 828 620 l 1,13,14 - 871 759 871 759 927 810 c 128,-1,15 - 983 861 983 861 1085 861 c 0,16,17 - 1121 861 1121 861 1158 851 c 1,18,-1 - 1158 686 l 1,19,20 - 1122 696 1122 696 1062 696 c 0,21,22 - 950 696 950 696 891 599.5 c 128,-1,23 - 832 503 832 503 832 323 c 2,24,-1 - 832 138 l 1,25,26 - 1102 152 1102 152 1245 430 c 1,27,-1 - 1401 352 l 1,28,29 - 1314 170 1314 170 1156.5 75 c 128,-1,30 - 999 -20 999 -20 791 -20 c 0,31,32 - 578 -20 578 -20 422.5 68.5 c 128,-1,33 - 267 157 267 157 185.5 321.5 c 128,-1,34 - 104 486 104 486 104 711 c 0,35,36 - 104 1048 104 1048 286 1239 c 128,-1,37 - 468 1430 468 1430 790 1430 c 0,38,39 - 1015 1430 1015 1430 1166 1342 c 128,-1,40 - 1317 1254 1317 1254 1388 1081 c 1,41,-1 - 1207 1021 l 1,42,43 - 1158 1144 1158 1144 1049.5 1209 c 128,-1,44 - 941 1274 941 1274 792 1274 c 0,0,1 -EndSplineSet -EndChar - -StartChar: franc -Encoding: 8355 8355 2067 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 64 - 5 - 1 - 9 - 9 - 14 - 12 - 7 - 3 - 10 - 16 - 10 - 16 - 18 - 19 - 8 - 12 - 13 - 12 - 81 - 89 - 5 - 31 - 13 - 1 - 0 - 13 - 1 - 8 - 3 - 13 - 1 - 64 - 1 - 4 - 95 - 89 - 15 - 1 - 31 - 1 - 63 - 1 - 79 - 1 - 4 - 15 - 1 - 63 - 1 - 2 - 8 - 3 - 1 - 1 - 9 - 15 - 15 - 0 - 95 - 89 - 15 - 3 - 9 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -SDS -SDB -DELTAP1 -DELTAP2 -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -IP -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -359 1254 m 1,0,-1 - 359 778 l 1,1,-1 - 1046 778 l 1,2,-1 - 1046 621 l 1,3,-1 - 359 621 l 1,4,-1 - 359 408 l 1,5,-1 - 761 408 l 1,6,-1 - 761 279 l 1,7,-1 - 359 279 l 1,8,-1 - 359 0 l 1,9,-1 - 179 0 l 1,10,-1 - 179 279 l 1,11,-1 - 4 279 l 1,12,-1 - 4 408 l 1,13,-1 - 179 408 l 1,14,-1 - 179 1409 l 1,15,-1 - 1070 1409 l 1,16,-1 - 1070 1254 l 1,17,-1 - 359 1254 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: lira -Encoding: 8356 8356 2068 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 86 - 45 - 36 - 32 - 0 - 35 - 31 - 38 - 38 - 16 - 12 - 8 - 24 - 23 - 23 - 42 - 0 - 42 - 15 - 11 - 4 - 4 - 8 - 0 - 3 - 47 - 46 - 34 - 14 - 15 - 14 - 81 - 89 - 38 - 10 - 11 - 10 - 81 - 89 - 35 - 175 - 11 - 1 - 0 - 11 - 16 - 11 - 32 - 11 - 3 - 11 - 64 - 31 - 15 - 15 - 31 - 15 - 47 - 15 - 3 - 9 - 3 - 15 - 15 - 4 - 20 - 20 - 27 - 115 - 89 - 15 - 24 - 1 - 11 - 5 - 24 - 20 - 7 - 5 - 42 - 4 - 42 - 116 - 89 - 45 - 4 - 24 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -SMD -MDRP[min,rnd,white] -DELTAP1 -DELTAP1 -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1104 311 m 1,0,1 - 1087 161 1087 161 999 80.5 c 128,-1,2 - 911 0 911 0 767 0 c 2,3,-1 - 69 0 l 1,4,-1 - 69 154 l 1,5,6 - 158 200 158 200 201 280 c 128,-1,7 - 244 360 244 360 244 481 c 2,8,-1 - 244 506 l 1,9,-1 - 58 506 l 1,10,-1 - 58 635 l 1,11,-1 - 244 635 l 1,12,-1 - 244 775 l 1,13,-1 - 58 775 l 1,14,-1 - 58 904 l 1,15,-1 - 244 904 l 1,16,-1 - 244 1034 l 2,17,18 - 244 1229 244 1229 347 1329.5 c 128,-1,19 - 450 1430 450 1430 646 1430 c 0,20,21 - 793 1430 793 1430 893 1369.5 c 128,-1,22 - 993 1309 993 1309 1027 1200 c 1,23,-1 - 853 1143 l 1,24,25 - 832 1207 832 1207 776.5 1244.5 c 128,-1,26 - 721 1282 721 1282 650 1282 c 0,27,28 - 536 1282 536 1282 480 1224.5 c 128,-1,29 - 424 1167 424 1167 424 1042 c 2,30,-1 - 424 904 l 1,31,-1 - 832 904 l 1,32,-1 - 832 775 l 1,33,-1 - 424 775 l 1,34,-1 - 424 635 l 1,35,-1 - 832 635 l 1,36,-1 - 832 506 l 1,37,-1 - 424 506 l 1,38,-1 - 424 499 l 2,39,40 - 424 380 424 380 378 287 c 128,-1,41 - 332 194 332 194 255 153 c 1,42,-1 - 738 153 l 2,43,44 - 912 153 912 153 941 329 c 1,45,-1 - 1104 311 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni20A5 -Encoding: 8357 8357 2069 -Width: 1706 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 53 - 46 - 0 - 0 - 18 - 9 - 9 - 13 - 10 - 25 - 43 - 43 - 1 - 44 - 26 - 27 - 27 - 35 - 35 - 34 - 34 - 28 - 44 - 10 - 4 - 47 - 48 - 30 - 39 - 80 - 89 - 27 - 64 - 30 - 16 - 45 - 18 - 25 - 3 - 22 - 10 - 22 - 5 - 80 - 89 - 22 - 16 - 14 - 15 - 43 - 35 - 0 - 10 - 21 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,white] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,white] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -381 -200 m 1,0,-1 - 768 575 l 1,1,-1 - 768 686 l 2,2,3 - 768 843 768 843 725 903 c 128,-1,4 - 682 963 682 963 570 963 c 0,5,6 - 455 963 455 963 388 875 c 128,-1,7 - 321 787 321 787 321 627 c 2,8,-1 - 321 0 l 1,9,-1 - 142 0 l 1,10,-1 - 142 851 l 2,11,12 - 142 1040 142 1040 136 1082 c 1,13,-1 - 306 1082 l 1,14,15 - 307 1077 307 1077 308 1055 c 128,-1,16 - 309 1033 309 1033 310.5 1004.5 c 128,-1,17 - 312 976 312 976 314 897 c 1,18,-1 - 317 897 l 1,19,20 - 375 1012 375 1012 450 1057 c 128,-1,21 - 525 1102 525 1102 633 1102 c 0,22,23 - 756 1102 756 1102 828 1053 c 128,-1,24 - 900 1004 900 1004 929 897 c 1,25,-1 - 1152 1344 l 1,26,-1 - 1310 1344 l 1,27,-1 - 1187 1097 l 1,28,29 - 1229 1102 1229 1102 1258 1102 c 0,30,31 - 1422 1102 1422 1102 1496.5 1013 c 128,-1,32 - 1571 924 1571 924 1571 721 c 2,33,-1 - 1571 0 l 1,34,-1 - 1393 0 l 1,35,-1 - 1393 686 l 2,36,37 - 1393 843 1393 843 1350 903 c 128,-1,38 - 1307 963 1307 963 1195 963 c 0,39,40 - 1150 963 1150 963 1114 950 c 1,41,-1 - 946 611 l 1,42,-1 - 946 0 l 1,43,-1 - 768 0 l 1,44,-1 - 768 253 l 1,45,-1 - 543 -200 l 1,46,-1 - 381 -200 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni20A6 -Encoding: 8358 8358 2070 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 75 - 27 - 23 - 23 - 41 - 40 - 39 - 32 - 20 - 20 - 25 - 1 - 37 - 29 - 5 - 36 - 36 - 31 - 33 - 3 - 21 - 16 - 10 - 14 - 14 - 38 - 12 - 8 - 16 - 21 - 16 - 42 - 43 - 37 - 19 - 15 - 23 - 24 - 23 - 95 - 89 - 32 - 28 - 12 - 24 - 35 - 31 - 11 - 27 - 0 - 27 - 95 - 89 - 39 - 8 - 4 - 0 - 38 - 21 - 24 - 41 - 40 - 24 - 0 - 40 - 40 - 0 - 24 - 3 - 2 - 17 - 21 - 18 - 6 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -25 1010 m 1,0,-1 - 168 1010 l 1,1,-1 - 168 1409 l 1,2,-1 - 390 1409 l 1,3,-1 - 641 1010 l 1,4,-1 - 1140 1010 l 1,5,-1 - 1140 1409 l 1,6,-1 - 1312 1409 l 1,7,-1 - 1312 1010 l 1,8,-1 - 1454 1010 l 1,9,-1 - 1454 855 l 1,10,-1 - 1312 855 l 1,11,-1 - 1312 624 l 1,12,-1 - 1454 624 l 1,13,-1 - 1454 469 l 1,14,-1 - 1312 469 l 1,15,-1 - 1312 0 l 1,16,-1 - 1082 0 l 1,17,-1 - 787 469 l 1,18,-1 - 338 469 l 1,19,-1 - 338 0 l 1,20,-1 - 168 0 l 1,21,-1 - 168 469 l 1,22,-1 - 25 469 l 1,23,-1 - 25 624 l 1,24,-1 - 168 624 l 1,25,-1 - 168 855 l 1,26,-1 - 25 855 l 1,27,-1 - 25 1010 l 1,0,-1 -885 624 m 1,28,-1 - 1140 624 l 1,29,-1 - 1140 855 l 1,30,-1 - 739 855 l 1,31,-1 - 885 624 l 1,28,-1 -338 624 m 1,32,-1 - 690 624 l 1,33,-1 - 545 855 l 1,34,-1 - 338 855 l 1,35,-1 - 338 624 l 1,32,-1 -1140 469 m 1,36,-1 - 983 469 l 1,37,-1 - 1152 201 l 1,38,-1 - 1140 469 l 1,36,-1 -336 1010 m 1,39,-1 - 447 1010 l 1,40,-1 - 328 1200 l 1,41,-1 - 336 1010 l 1,39,-1 -EndSplineSet -EndChar - -StartChar: peseta -Encoding: 8359 8359 2071 -Width: 2240 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 15 - 5 - 5 - 6 - 67 - 66 - 66 - 40 - 0 - 11 - 32 - 18 - 60 - 30 - 34 - 34 - 27 - 25 - 23 - 47 - 46 - 46 - 72 - 60 - 60 - 23 - 11 - 3 - 6 - 52 - 52 - 40 - 40 - 6 - 6 - 80 - 79 - 72 -PUSHW_1 - -8 -NPUSHB - 215 - 19 - 22 - 72 - 52 - 8 - 19 - 22 - 72 - 72 - 52 - 63 - 43 - 43 - 50 - 80 - 89 - 47 - 43 - 22 - 20 - 37 - 80 - 89 - 20 - 22 - 15 - 4 - 95 - 89 - 63 - 70 - 80 - 89 - 57 - 67 - 1 - 3 - 15 - 67 - 31 - 67 - 47 - 67 - 3 - 13 - 6 - 67 - 63 - 63 - 26 - 33 - 25 - 26 - 25 - 80 - 89 - 30 - 26 - 28 - 28 - 26 - 63 - 15 - 1 - 15 - 64 - 9 - 17 - 72 - 15 - 26 - 31 - 26 - 2 - 16 - 3 - 15 - 26 - 15 - 26 - 6 - 7 - 7 - 14 - 95 - 89 - 7 - 3 - 6 - 18 - 64 - 80 - 1 - 48 - 80 - 1 - 32 - 80 - 1 - 16 - 80 - 1 - 0 - 80 - 1 - 208 - 80 - 1 - 192 - 80 - 1 - 176 - 80 - 1 - 160 - 80 - 1 - 144 - 80 - 1 - 128 - 80 - 1 - 112 - 80 - 1 - 96 - 80 - 1 - 80 - 80 - 1 - 240 - 80 - 1 - 224 - 80 - 1 - 208 - 80 - 1 - 192 - 80 - 1 - 176 - 80 - 1 - 48 - 80 - 1 - 32 - 80 - 1 - 16 - 80 - 1 - 0 - 80 - 1 - 59 - 224 - 80 - 1 - 208 - 80 - 1 - 192 - 80 - 1 - 176 - 80 - 1 - 160 - 80 - 1 - 144 - 80 - 1 - 128 - 80 - 1 - 112 - 80 - 1 - 96 - 80 - 1 - 80 - 80 - 1 - 64 - 80 - 1 - 143 - 80 - 1 - 127 - 80 - 1 - 111 - 80 - 1 - 48 - 80 - 1 - 32 - 80 - 1 - 16 - 80 - 1 - 0 - 80 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -DELTAP1 -SRP1 -SHP[rp1] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -RTG -MDAP[rnd] -SHP[rp1] -SDS -SDB -DELTAP1 -SDS -DELTAP1 -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -954 985 m 0,0,1 - 954 785 954 785 823.5 667 c 128,-1,2 - 693 549 693 549 469 549 c 2,3,-1 - 339 549 l 1,4,-1 - 339 0 l 1,5,-1 - 158 0 l 1,6,-1 - 158 1409 l 1,7,-1 - 457 1409 l 2,8,9 - 694 1409 694 1409 824 1298 c 128,-1,10 - 954 1187 954 1187 954 985 c 0,0,1 -772 983 m 0,11,12 - 772 1256 772 1256 444 1256 c 2,13,-1 - 339 1256 l 1,14,-1 - 339 700 l 1,15,-1 - 452 700 l 2,16,17 - 772 700 772 700 772 983 c 0,11,12 -1407 8 m 1,18,19 - 1331 -16 1331 -16 1250 -16 c 0,20,21 - 1145 -16 1145 -16 1098.5 45.5 c 128,-1,22 - 1052 107 1052 107 1052 229 c 2,23,-1 - 1052 682 l 1,24,-1 - 948 682 l 1,25,-1 - 948 813 l 1,26,-1 - 1059 813 l 1,27,-1 - 1112 1055 l 1,28,-1 - 1222 1055 l 1,29,-1 - 1222 813 l 1,30,-1 - 1379 813 l 1,31,-1 - 1379 682 l 1,32,-1 - 1222 682 l 1,33,-1 - 1222 268 l 2,34,35 - 1222 190 1222 190 1242.5 153.5 c 128,-1,36 - 1263 117 1263 117 1318 117 c 0,37,38 - 1346 117 1346 117 1407 131 c 1,39,-1 - 1407 8 l 1,18,19 -2151 229 m 0,40,41 - 2151 109 2151 109 2059.5 44.5 c 128,-1,42 - 1968 -20 1968 -20 1798 -20 c 0,43,44 - 1637 -20 1637 -20 1549.5 35 c 128,-1,45 - 1462 90 1462 90 1434 210 c 1,46,-1 - 1593 236 l 1,47,48 - 1610 175 1610 175 1659.5 146 c 128,-1,49 - 1709 117 1709 117 1797 117 c 0,50,51 - 1981 117 1981 117 1981 222 c 0,52,53 - 1981 253 1981 253 1963 274 c 128,-1,54 - 1945 295 1945 295 1909.5 310.5 c 128,-1,55 - 1874 326 1874 326 1746 358 c 0,56,57 - 1637 385 1637 385 1585 414.5 c 128,-1,58 - 1533 444 1533 444 1505 487.5 c 128,-1,59 - 1477 531 1477 531 1477 593 c 0,60,61 - 1477 705 1477 705 1561 764.5 c 128,-1,62 - 1645 824 1645 824 1806 824 c 0,63,64 - 1947 824 1947 824 2029.5 771.5 c 128,-1,65 - 2112 719 2112 719 2134 603 c 1,66,-1 - 1973 586 l 1,67,68 - 1963 634 1963 634 1920 660 c 128,-1,69 - 1877 686 1877 686 1807 686 c 0,70,71 - 1652 686 1652 686 1652 601 c 0,72,73 - 1652 563 1652 563 1695.5 535.5 c 128,-1,74 - 1739 508 1739 508 1869 479 c 0,75,76 - 1983 453 1983 453 2037 423 c 128,-1,77 - 2091 393 2091 393 2121 346.5 c 128,-1,78 - 2151 300 2151 300 2151 229 c 0,40,41 -EndSplineSet -EndChar - -StartChar: uni20A8 -Encoding: 8360 8360 2072 -Width: 2384 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 53 82 N 1 0 0 1 0 0 2 -Refer: 86 115 N 1 0 0 1 1361 0 2 -EndChar - -StartChar: uni20A9 -Encoding: 8361 8361 2073 -Width: 1933 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 65 - 46 - 50 - 49 - 3 - 22 - 30 - 31 - 31 - 1 - 6 - 23 - 22 - 22 - 20 - 16 - 6 - 16 - 54 - 53 - 43 - 39 - 35 - 3 - 19 - 20 - 19 - 95 - 89 - 52 - 29 - 24 - 1 - 20 - 48 - 44 - 10 - 7 - 15 - 16 - 15 - 95 - 89 - 40 - 36 - 32 - 5 - 16 - 50 - 23 - 20 - 49 - 46 - 16 - 20 - 16 - 20 - 16 - 13 - 30 - 27 - 23 - 3 - 9 - 13 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1801 1010 m 1,0,-1 - 1910 1010 l 1,1,-1 - 1910 855 l 1,2,-1 - 1756 855 l 1,3,-1 - 1690 625 l 1,4,-1 - 1910 625 l 1,5,-1 - 1910 470 l 1,6,-1 - 1646 470 l 1,7,-1 - 1511 0 l 1,8,-1 - 1283 0 l 1,9,-1 - 1155 470 l 1,10,-1 - 781 470 l 1,11,-1 - 652 0 l 1,12,-1 - 424 0 l 1,13,-1 - 289 470 l 1,14,-1 - 25 470 l 1,15,-1 - 25 625 l 1,16,-1 - 244 625 l 1,17,-1 - 178 855 l 1,18,-1 - 25 855 l 1,19,-1 - 25 1010 l 1,20,-1 - 134 1010 l 1,21,-1 - 19 1409 l 1,22,-1 - 218 1409 l 1,23,-1 - 326 1010 l 1,24,-1 - 765 1010 l 1,25,-1 - 877 1409 l 1,26,-1 - 1060 1409 l 1,27,-1 - 1171 1010 l 1,28,-1 - 1610 1010 l 1,29,-1 - 1717 1409 l 1,30,-1 - 1916 1409 l 1,31,-1 - 1801 1010 l 1,0,-1 -1279 625 m 1,32,-1 - 1507 625 l 1,33,-1 - 1569 855 l 1,34,-1 - 1215 855 l 1,35,-1 - 1279 625 l 1,32,-1 -431 625 m 1,36,-1 - 658 625 l 1,37,-1 - 722 855 l 1,38,-1 - 368 855 l 1,39,-1 - 431 625 l 1,36,-1 -823 625 m 1,40,-1 - 1112 625 l 1,41,-1 - 1050 855 l 1,42,-1 - 887 855 l 1,43,-1 - 823 625 l 1,40,-1 -1466 470 m 1,44,-1 - 1322 470 l 1,45,-1 - 1393 168 l 1,46,-1 - 1466 470 l 1,44,-1 -615 470 m 1,47,-1 - 473 470 l 1,48,-1 - 544 168 l 1,49,-1 - 615 470 l 1,47,-1 -969 1205 m 1,50,-1 - 922 1010 l 1,51,-1 - 1015 1010 l 1,52,-1 - 969 1205 l 1,50,-1 -EndSplineSet -EndChar - -StartChar: sheqel -Encoding: 8362 8362 2074 -Width: 1739 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 19 - 16 - 5 - 6 - 16 - 6 - 27 - 13 - 14 - 14 - 32 - 24 - 27 - 27 - 33 - 17 - 17 - 15 - 6 - 6 - 16 - 15 - 25 -NPUSHW - 15 - 313 - 14 - 314 - 15 - 12 - 320 - 89 - 15 - 313 - 16 - 19 - 320 - 89 - 16 - 314 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -SRP1 -IP -MDAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -705 1227 m 2,0,1 - 878 1227 878 1227 974 1174 c 128,-1,2 - 1070 1121 1070 1121 1114.5 1004.5 c 128,-1,3 - 1159 888 1159 888 1159 686 c 2,4,-1 - 1159 422 l 1,5,-1 - 975 422 l 1,6,-1 - 975 674 l 2,7,8 - 975 827 975 827 950.5 906.5 c 128,-1,9 - 926 986 926 986 869 1021.5 c 128,-1,10 - 812 1057 812 1057 700 1057 c 2,11,-1 - 365 1057 l 1,12,-1 - 365 0 l 1,13,-1 - 180 0 l 1,14,-1 - 180 1227 l 1,15,-1 - 705 1227 l 2,0,1 -578 0 m 1,16,-1 - 578 729 l 1,17,-1 - 762 729 l 1,18,-1 - 762 170 l 1,19,-1 - 1102 170 l 2,20,21 - 1213 170 1213 170 1269.5 205.5 c 128,-1,22 - 1326 241 1326 241 1350 322.5 c 128,-1,23 - 1374 404 1374 404 1374 553 c 2,24,-1 - 1374 1227 l 1,25,-1 - 1559 1227 l 1,26,-1 - 1559 541 l 2,27,28 - 1559 338 1559 338 1513.5 221 c 128,-1,29 - 1468 104 1468 104 1371.5 52 c 128,-1,30 - 1275 0 1275 0 1104 0 c 2,31,-1 - 578 0 l 1,16,-1 -EndSplineSet -EndChar - -StartChar: dong -Encoding: 8363 8363 2075 -Width: 1051 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 30 - 5 - 5 - 45 - 17 - 14 - 36 - 36 - 20 - 24 - 24 - 44 - 45 - 44 - 46 - 47 - 39 - 8 - 23 - 15 - 15 - 20 - 16 - 0 - 13 - 8 -PUSHW_1 - -64 -NPUSHB - 26 - 11 - 18 - 72 - 32 - 16 - 1 - 8 - 16 - 8 - 16 - 18 - 33 - 26 - 3 - 64 - 9 - 15 - 72 - 3 - 42 - 80 - 45 - 1 - 45 - 18 - 0 -SVTCA[y-axis] -MIAP[rnd] -MDAP[rnd] -DELTAP1 -SHP[rp1] -MDRP[min,rnd,grey] -CALL -SHP[rp2] -SHP[rp2] -SRP1 -IP -IP -MDAP[rnd] -MDAP[rnd] -DELTAP1 -CALL -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -676 567 m 1,0,1 - 641 494 641 494 587 462.5 c 128,-1,2 - 533 431 533 431 447 431 c 0,3,4 - 161 431 161 431 161 810 c 0,5,6 - 161 1003 161 1003 235.5 1100 c 128,-1,7 - 310 1197 310 1197 450 1197 c 0,8,9 - 536 1197 536 1197 588.5 1165.5 c 128,-1,10 - 641 1134 641 1134 676 1065 c 1,11,-1 - 677 1065 l 1,12,-1 - 676 1119 l 1,13,-1 - 676 1289 l 1,14,-1 - 556 1289 l 1,15,-1 - 556 1381 l 1,16,-1 - 676 1381 l 1,17,-1 - 676 1484 l 1,18,-1 - 802 1484 l 1,19,-1 - 802 1381 l 1,20,-1 - 894 1381 l 1,21,-1 - 894 1289 l 1,22,-1 - 802 1289 l 1,23,-1 - 802 601 l 2,24,25 - 802 501 802 501 806 445 c 1,26,-1 - 686 445 l 1,27,28 - 679 470 679 470 679 567 c 1,29,-1 - 676 567 l 1,0,1 -294 814 m 0,30,31 - 294 661 294 661 334 594.5 c 128,-1,32 - 374 528 374 528 472 528 c 0,33,34 - 583 528 583 528 629.5 600 c 128,-1,35 - 676 672 676 672 676 823 c 0,36,37 - 676 968 676 968 630 1035.5 c 128,-1,38 - 584 1103 584 1103 473 1103 c 0,39,40 - 375 1103 375 1103 334.5 1034.5 c 128,-1,41 - 294 966 294 966 294 814 c 0,30,31 -164 326 m 1,42,-1 - 882 326 l 1,43,-1 - 882 233 l 1,44,-1 - 164 233 l 1,45,-1 - 164 326 l 1,42,-1 -EndSplineSet -EndChar - -StartChar: Euro -Encoding: 8364 8364 2076 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 105 - 32 - 39 - 39 - 4 - 41 - 31 - 36 - 36 - 14 - 16 - 11 - 11 - 18 - 10 - 14 - 25 - 24 - 24 - 3 - 4 - 14 - 4 - 44 - 45 - 34 - 16 - 17 - 16 - 81 - 89 - 41 - 11 - 12 - 11 - 81 - 89 - 38 - 15 - 12 - 31 - 12 - 127 - 12 - 143 - 12 - 159 - 12 - 5 - 12 - 64 - 39 - 47 - 72 - 0 - 12 - 16 - 12 - 128 - 12 - 3 - 9 - 12 - 64 - 31 - 15 - 17 - 31 - 17 - 95 - 17 - 3 - 15 - 17 - 31 - 17 - 143 - 17 - 175 - 17 - 4 - 15 - 17 - 143 - 17 - 2 - 11 - 3 - 17 - 17 - 0 - 21 - 21 - 28 - 115 - 89 - 25 - 21 - 7 - 7 - 0 - 115 - 89 - 3 - 7 - 25 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -DELTAP3 -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SDB -DELTAP1 -CALL -DELTAP2 -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -691 126 m 0,0,1 - 791 126 791 126 851 176 c 128,-1,2 - 911 226 911 226 925 317 c 1,3,-1 - 1110 303 l 1,4,5 - 1080 148 1080 148 970.5 64 c 128,-1,6 - 861 -20 861 -20 687 -20 c 0,7,8 - 470 -20 470 -20 343.5 111 c 128,-1,9 - 217 242 217 242 187 502 c 1,10,-1 - 16 502 l 1,11,-1 - 56 631 l 1,12,-1 - 176 631 l 1,13,-1 - 173 709 l 1,14,-1 - 176 795 l 1,15,-1 - 16 795 l 1,16,-1 - 56 922 l 1,17,-1 - 185 922 l 1,18,19 - 217 1179 217 1179 341 1304.5 c 128,-1,20 - 465 1430 465 1430 684 1430 c 0,21,22 - 859 1430 859 1430 968.5 1345.5 c 128,-1,23 - 1078 1261 1078 1261 1107 1107 c 1,24,-1 - 922 1093 l 1,25,26 - 908 1184 908 1184 847.5 1234 c 128,-1,27 - 787 1284 787 1284 681 1284 c 0,28,29 - 539 1284 539 1284 463.5 1197 c 128,-1,30 - 388 1110 388 1110 367 922 c 1,31,-1 - 813 922 l 1,32,-1 - 773 795 l 1,33,-1 - 360 795 l 1,34,35 - 357 771 357 771 357 709 c 0,36,37 - 357 669 357 669 361 631 c 1,38,-1 - 813 631 l 1,39,-1 - 773 502 l 1,40,-1 - 369 502 l 1,41,42 - 391 307 391 307 472 216.5 c 128,-1,43 - 553 126 553 126 691 126 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni20AD -Encoding: 8365 8365 2077 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 14 - 8 - 11 - 3 - 3 - 6 - 7 - 7 - 13 - 9 - 12 - 3 - 2 - 2 - 17 - 0 - 18 - 12 - 18 - 22 - 21 - 15 - 11 - 20 - 0 - 20 - 95 - 89 - 8 - 4 - 16 - 18 - 0 - 0 - 2 - 13 - 18 - 18 - 6 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -31 813 m 1,0,-1 - 168 813 l 1,1,-1 - 168 1409 l 1,2,-1 - 359 1409 l 1,3,-1 - 359 813 l 1,4,-1 - 465 813 l 1,5,-1 - 1038 1409 l 1,6,-1 - 1263 1409 l 1,7,-1 - 678 813 l 1,8,-1 - 1334 813 l 1,9,-1 - 1334 653 l 1,10,-1 - 763 653 l 1,11,-1 - 1343 0 l 1,12,-1 - 1106 0 l 1,13,-1 - 542 653 l 1,14,-1 - 507 653 l 1,15,-1 - 359 540 l 1,16,-1 - 359 0 l 1,17,-1 - 168 0 l 1,18,-1 - 168 653 l 1,19,-1 - 31 653 l 1,20,-1 - 31 813 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni20AE -Encoding: 8366 8366 2078 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 0 - 19 - 19 - 10 - 5 - 14 - 14 - 10 - 17 - 13 - 13 - 10 - 3 - 7 - 7 - 9 - 9 - 10 - 21 - 10 - 22 - 3 - 25 - 24 - 0 - 19 - 21 - 19 - 95 - 89 - 12 - 16 - 6 - 2 - 4 - 9 - 21 - 3 - 9 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -720 1253 m 1,0,-1 - 720 898 l 1,1,-1 - 1047 1070 l 1,2,-1 - 1047 911 l 1,3,-1 - 720 741 l 1,4,-1 - 720 576 l 1,5,-1 - 1047 748 l 1,6,-1 - 1047 589 l 1,7,-1 - 720 419 l 1,8,-1 - 720 0 l 1,9,-1 - 530 0 l 1,10,-1 - 530 320 l 1,11,-1 - 203 151 l 1,12,-1 - 203 305 l 1,13,-1 - 530 476 l 1,14,-1 - 530 642 l 1,15,-1 - 203 473 l 1,16,-1 - 203 627 l 1,17,-1 - 530 798 l 1,18,-1 - 530 1253 l 1,19,-1 - 46 1253 l 1,20,-1 - 46 1409 l 1,21,-1 - 1204 1409 l 1,22,-1 - 1204 1253 l 1,23,-1 - 720 1253 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni20AF -Encoding: 8367 8367 2079 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 83 - 91 - 29 - 42 - 23 - 86 - 77 - 35 - 49 - 51 - 51 - 39 - 55 - 83 - 59 - 0 - 0 - 65 - 83 - 9 - 39 - 35 - 86 - 29 - 8 - 96 - 97 - 39 - 71 - 51 - 71 - 97 - 89 - 23 - 77 - 86 - 35 - 4 - 32 - 19 - 32 - 88 - 97 - 89 - 5 - 16 - 3 - 16 - 62 - 96 - 89 - 32 - 16 - 32 - 16 - 26 - 48 - 51 - 64 - 45 - 51 - 42 - 42 - 51 - 4 - 26 - 94 - 97 - 89 - 9 - 26 - 18 - 19 - 79 - 96 - 89 - 19 - 18 - 3 - 68 - 96 - 89 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MDRP[rnd,white] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SHP[rp1] -SMD -SRP0 -MDRP[min,rnd,black] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -2030 310 m 0,0,1 - 2030 168 2030 168 1942.5 82 c 128,-1,2 - 1855 -4 1855 -4 1713 -4 c 0,3,4 - 1605 -4 1605 -4 1519 73 c 1,5,-1 - 1463 -185 l 2,6,7 - 1425 -346 1425 -346 1395 -407 c 1,8,-1 - 1216 -407 l 1,9,10 - 1243 -350 1243 -350 1268 -271 c 128,-1,11 - 1293 -192 1293 -192 1302 -154 c 2,12,-1 - 1415 298 l 2,13,14 - 1451 447 1451 447 1528.5 516 c 128,-1,15 - 1606 585 1606 585 1732 585 c 0,16,17 - 1862 585 1862 585 1946 508 c 128,-1,18 - 2030 431 2030 431 2030 310 c 0,0,1 -802 0 m 0,19,20 - 734 0 734 0 684.5 14.5 c 128,-1,21 - 635 29 635 29 580 60.5 c 128,-1,22 - 525 92 525 92 463 147 c 1,23,24 - 425 78 425 78 360.5 39 c 128,-1,25 - 296 0 296 0 222 0 c 0,26,27 - 134 0 134 0 87.5 41.5 c 128,-1,28 - 41 83 41 83 41 164 c 0,29,30 - 41 234 41 234 91 278 c 128,-1,31 - 141 322 141 322 222 322 c 0,32,33 - 260 322 260 322 303 310 c 128,-1,34 - 346 298 346 298 375 280 c 1,35,-1 - 407 455 l 1,36,37 - 466 821 466 821 533 1036 c 128,-1,38 - 600 1251 600 1251 691 1367 c 1,39,40 - 565 1360 565 1360 447 1335 c 128,-1,41 - 329 1310 329 1310 263 1274 c 1,42,-1 - 263 1339 l 1,43,44 - 449 1431 449 1431 755 1433 c 1,45,-1 - 793 1474 l 2,46,47 - 872 1563 872 1563 999 1651 c 1,48,-1 - 1047 1624 l 1,49,50 - 971 1548 971 1548 893 1433 c 1,51,52 - 1047 1429 1047 1429 1161.5 1345 c 128,-1,53 - 1276 1261 1276 1261 1336.5 1116.5 c 128,-1,54 - 1397 972 1397 972 1397 788 c 0,55,56 - 1397 573 1397 573 1315.5 385.5 c 128,-1,57 - 1234 198 1234 198 1100 99 c 128,-1,58 - 966 0 966 0 802 0 c 0,19,20 -1881 286 m 0,59,60 - 1881 383 1881 383 1838.5 439.5 c 128,-1,61 - 1796 496 1796 496 1724 496 c 0,62,63 - 1648 496 1648 496 1602 438 c 128,-1,64 - 1556 380 1556 380 1556 286 c 0,65,66 - 1556 189 1556 189 1600 131 c 128,-1,67 - 1644 73 1644 73 1715 73 c 0,68,69 - 1788 73 1788 73 1834.5 133 c 128,-1,70 - 1881 193 1881 193 1881 286 c 0,59,60 -856 1367 m 1,71,72 - 812 1293 812 1293 776 1199 c 128,-1,73 - 740 1105 740 1105 709.5 1001 c 128,-1,74 - 679 897 679 897 627 661 c 0,75,76 - 557 329 557 329 507 208 c 1,77,78 - 643 87 643 87 782 87 c 0,79,80 - 901 87 901 87 1000.5 184 c 128,-1,81 - 1100 281 1100 281 1159 456.5 c 128,-1,82 - 1218 632 1218 632 1218 821 c 0,83,84 - 1218 1069 1218 1069 1121 1218 c 128,-1,85 - 1024 1367 1024 1367 856 1367 c 1,71,72 -359 210 m 1,86,87 - 295 252 295 252 222 252 c 0,88,89 - 179 252 179 252 148.5 231.5 c 128,-1,90 - 118 211 118 211 118 162 c 256,91,92 - 118 113 118 113 146.5 90.5 c 128,-1,93 - 175 68 175 68 220 68 c 0,94,95 - 332 68 332 68 359 210 c 1,86,87 -EndSplineSet -EndChar - -StartChar: uni20B0 -Encoding: 8368 8368 2080 -Width: 1067 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 34 - 16 - 5 - 26 - 19 - 43 - 2 - 4 - 0 - 40 - 28 - 23 - 24 - 25 - 28 - 5 - 0 - 6 - 47 - 46 - 19 - 43 - 21 - 24 - 43 - 24 - 31 - 22 - 31 - 37 - 96 - 89 - 31 - 5 - 20 - 22 - 18 - 8 - 13 - 96 - 89 - 8 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1032 1206 m 0,0,1 - 1032 1018 1032 1018 800 598 c 1,2,-1 - 979 -20 l 2,3,4 - 1002 -98 1002 -98 1002 -162 c 0,5,6 - 1002 -288 1002 -288 925 -356.5 c 128,-1,7 - 848 -425 848 -425 708 -425 c 0,8,9 - 636 -425 636 -425 556 -406 c 1,10,-1 - 556 -251 l 1,11,12 - 639 -285 639 -285 708 -285 c 0,13,14 - 770 -285 770 -285 802 -255 c 128,-1,15 - 834 -225 834 -225 834 -170 c 0,16,17 - 834 -119 834 -119 816 -53 c 2,18,-1 - 694 396 l 1,19,-1 - 469 -25 l 1,20,-1 - 300 250 l 1,21,-1 - 173 0 l 1,22,-1 - 5 0 l 1,23,-1 - 299 542 l 1,24,-1 - 462 244 l 1,25,-1 - 635 568 l 1,26,27 - 471 1060 471 1060 471 1204 c 0,28,29 - 471 1332 471 1332 549.5 1408 c 128,-1,30 - 628 1484 628 1484 756 1484 c 0,31,32 - 882 1484 882 1484 957 1409 c 128,-1,33 - 1032 1334 1032 1334 1032 1206 c 0,0,1 -866 1220 m 0,34,35 - 866 1273 866 1273 835 1308 c 128,-1,36 - 804 1343 804 1343 753 1343 c 0,37,38 - 705 1343 705 1343 673 1309.5 c 128,-1,39 - 641 1276 641 1276 641 1220 c 0,40,41 - 641 1142 641 1142 667.5 1015 c 128,-1,42 - 694 888 694 888 735 762 c 1,43,44 - 790 891 790 891 828 1007 c 128,-1,45 - 866 1123 866 1123 866 1220 c 0,34,35 -EndSplineSet -EndChar - -StartChar: uni20B1 -Encoding: 8369 8369 2081 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 102 - 26 - 1 - 1 - 27 - 27 - 0 - 25 - 3 - 3 - 0 - 39 - 35 - 35 - 28 - 31 - 31 - 10 - 0 - 16 - 12 - 12 - 10 - 38 - 37 - 30 - 9 - 9 - 18 - 14 - 10 - 0 - 10 - 44 - 43 - 37 - 8 - 96 - 89 - 36 - 4 - 239 - 12 - 1 - 12 - 13 - 30 - 1 - 13 - 29 - 26 - 239 - 16 - 1 - 16 - 17 - 64 - 38 - 23 - 17 - 48 - 37 - 64 - 37 - 80 - 37 - 3 - 48 - 13 - 64 - 13 - 80 - 13 - 3 - 47 - 13 - 1 - 0 - 17 - 16 - 17 - 32 - 17 - 3 - 9 - 3 - 37 - 13 - 17 - 17 - 13 - 37 - 3 - 10 - 19 - 19 - 42 - 95 - 89 - 19 - 3 - 10 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -SHP[rp1] -SMD -SRP0 -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -SRP0 -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SHP[rp2] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1258 985 m 1,0,-1 - 1255 929 l 1,1,-1 - 1345 929 l 1,2,-1 - 1345 796 l 1,3,-1 - 1220 796 l 1,4,5 - 1169 679 1169 679 1054 614 c 128,-1,6 - 939 549 939 549 773 549 c 2,7,-1 - 359 549 l 1,8,-1 - 359 0 l 1,9,-1 - 168 0 l 1,10,-1 - 168 796 l 1,11,-1 - 25 796 l 1,12,-1 - 25 929 l 1,13,-1 - 168 929 l 1,14,-1 - 168 1027 l 1,15,-1 - 25 1027 l 1,16,-1 - 25 1160 l 1,17,-1 - 168 1160 l 1,18,-1 - 168 1409 l 1,19,-1 - 761 1409 l 2,20,21 - 937 1409 937 1409 1057 1346 c 128,-1,22 - 1177 1283 1177 1283 1226 1160 c 1,23,-1 - 1345 1160 l 1,24,-1 - 1345 1027 l 1,25,-1 - 1256 1027 l 1,26,-1 - 1258 985 l 1,0,-1 -1066 983 m 2,27,-1 - 1063 1027 l 1,28,-1 - 359 1027 l 1,29,-1 - 359 929 l 1,30,-1 - 1062 929 l 1,31,32 - 1066 955 1066 955 1066 983 c 2,27,-1 -746 696 m 2,33,34 - 933 696 933 696 1011 796 c 1,35,-1 - 359 796 l 1,36,-1 - 359 696 l 1,37,-1 - 746 696 l 2,33,34 -359 1160 m 1,38,-1 - 1010 1160 l 1,39,40 - 928 1259 928 1259 738 1259 c 2,41,-1 - 359 1259 l 1,42,-1 - 359 1160 l 1,38,-1 -EndSplineSet -EndChar - -StartChar: uni20B2 -Encoding: 8370 8370 2082 -Width: 1593 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 56 - 10 - 9 - 9 - 17 - 22 - 14 - 6 - 26 - 26 - 34 - 3 - 27 - 31 - 0 - 0 - 27 - 19 - 22 - 4 - 39 - 38 - 14 - 34 - 28 - 34 - 95 - 89 - 20 - 19 - 95 - 89 - 22 - 28 - 20 - 20 - 3 - 27 - 64 - 25 - 28 - 19 - 6 - 13 - 95 - 89 - 10 - 10 - 6 - 4 - 3 - 35 - 95 - 89 - 4 - 3 - 4 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -103 711 m 0,0,1 - 103 1039 103 1039 271.5 1226 c 128,-1,2 - 440 1413 440 1413 750 1428 c 1,3,-1 - 750 1571 l 1,4,-1 - 874 1571 l 1,5,-1 - 874 1428 l 1,6,7 - 1073 1417 1073 1417 1203.5 1338.5 c 128,-1,8 - 1334 1260 1334 1260 1409 1098 c 1,9,-1 - 1227 1044 l 1,10,11 - 1174 1150 1174 1150 1087.5 1204 c 128,-1,12 - 1001 1258 1001 1258 874 1271 c 1,13,-1 - 874 137 l 1,14,15 - 986 145 986 145 1088.5 184 c 128,-1,16 - 1191 223 1191 223 1264 291 c 1,17,-1 - 1264 545 l 1,18,-1 - 1023 545 l 1,19,-1 - 1023 705 l 1,20,-1 - 1440 705 l 1,21,-1 - 1440 219 l 1,22,23 - 1340 117 1340 117 1194.5 55 c 128,-1,24 - 1049 -7 1049 -7 874 -18 c 1,25,-1 - 874 -212 l 1,26,-1 - 750 -212 l 1,27,-1 - 750 -18 l 1,28,29 - 442 1 442 1 272.5 195 c 128,-1,30 - 103 389 103 389 103 711 c 0,0,1 -297 711 m 0,31,32 - 297 462 297 462 417 309.5 c 128,-1,33 - 537 157 537 157 750 138 c 1,34,-1 - 750 1272 l 1,35,36 - 530 1257 530 1257 413.5 1112 c 128,-1,37 - 297 967 297 967 297 711 c 0,31,32 -EndSplineSet -EndChar - -StartChar: uni20B3 -Encoding: 8371 8371 2083 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 59 - 3 - 2 - 32 - 11 - 8 - 4 - 32 - 1 - 21 - 18 - 7 - 0 - 5 - 0 - 20 - 20 - 16 - 17 - 5 - 9 - 9 - 13 - 12 - 17 - 12 - 35 - 36 - 16 - 18 - 25 - 7 - 23 - 0 - 23 - 95 - 89 - 28 - 4 - 0 - 15 - 11 - 19 - 20 - 19 - 95 - 89 - 26 - 8 - 20 - 32 - 0 - 20 - 0 - 20 - 3 - 13 - 18 - 3 - 3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -IP -SRP1 -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -0 935 m 1,0,-1 - 385 935 l 1,1,-1 - 579 1409 l 1,2,-1 - 796 1409 l 1,3,-1 - 986 935 l 1,4,-1 - 1367 935 l 1,5,-1 - 1367 786 l 1,6,-1 - 1046 786 l 1,7,-1 - 1137 561 l 1,8,-1 - 1367 561 l 1,9,-1 - 1367 412 l 1,10,-1 - 1197 412 l 1,11,-1 - 1362 0 l 1,12,-1 - 1167 0 l 1,13,-1 - 1006 412 l 1,14,-1 - 364 412 l 1,15,-1 - 202 0 l 1,16,-1 - 4 0 l 1,17,-1 - 172 412 l 1,18,-1 - 0 412 l 1,19,-1 - 0 561 l 1,20,-1 - 233 561 l 1,21,-1 - 325 786 l 1,22,-1 - 0 786 l 1,23,-1 - 0 935 l 1,0,-1 -861 786 m 1,24,-1 - 509 786 l 1,25,-1 - 422 561 l 1,26,-1 - 949 561 l 1,27,-1 - 861 786 l 1,24,-1 -567 935 m 1,28,-1 - 803 935 l 1,29,30 - 734 1114 734 1114 712 1182 c 2,31,-1 - 685 1265 l 1,32,-1 - 676 1237 l 2,33,34 - 643 1127 643 1127 567 935 c 1,28,-1 -EndSplineSet -EndChar - -StartChar: uni20B4 -Encoding: 8372 8372 2084 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 67 - 46 - 53 - 53 - 9 - 10 - 29 - 20 - 52 - 24 - 47 - 4 - 42 - 35 - 36 - 25 - 19 - 19 - 3 - 15 - 15 - 36 - 42 - 10 - 4 - 55 - 54 - 35 - 35 - 44 - 39 - 44 - 26 - 47 - 25 - 26 - 25 - 95 - 89 - 9 - 9 - 1 - 12 - 1 - 18 - 19 - 18 - 95 - 89 - 52 - 19 - 26 - 19 - 26 - 19 - 39 - 12 - 39 - 32 - 96 - 89 - 39 - 12 - 6 - 96 - 89 - 12 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -RTG -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1113 484 m 1,0,-1 - 269 484 l 1,1,2 - 255 444 255 444 255 376 c 0,3,4 - 255 255 255 255 336.5 185.5 c 128,-1,5 - 418 116 418 116 552 116 c 0,6,7 - 685 116 685 116 766 182.5 c 128,-1,8 - 847 249 847 249 870 375 c 1,9,-1 - 1041 338 l 1,10,11 - 973 -20 973 -20 550 -20 c 0,12,13 - 328 -20 328 -20 200 91.5 c 128,-1,14 - 72 203 72 203 72 396 c 0,15,16 - 72 443 72 443 78 484 c 1,17,-1 - 15 484 l 1,18,-1 - 15 633 l 1,19,-1 - 132 633 l 1,20,21 - 171 696 171 696 246 742 c 128,-1,22 - 321 788 321 788 485 837 c 2,23,-1 - 554 858 l 1,24,-1 - 15 858 l 1,25,-1 - 15 1007 l 1,26,-1 - 793 1007 l 1,27,28 - 811 1050 811 1050 811 1115 c 0,29,30 - 811 1227 811 1227 742.5 1290 c 128,-1,31 - 674 1353 674 1353 552 1353 c 0,32,33 - 441 1353 441 1353 373.5 1293 c 128,-1,34 - 306 1233 306 1233 287 1124 c 1,35,-1 - 105 1157 l 1,36,37 - 145 1336 145 1336 249.5 1415 c 128,-1,38 - 354 1494 354 1494 547 1494 c 0,39,40 - 758 1494 758 1494 877.5 1391.5 c 128,-1,41 - 997 1289 997 1289 997 1097 c 0,42,43 - 997 1052 997 1052 988 1007 c 1,44,-1 - 1125 1007 l 1,45,-1 - 1125 858 l 1,46,-1 - 919 858 l 1,47,48 - 879 811 879 811 813 775.5 c 128,-1,49 - 747 740 747 740 594 698 c 0,50,51 - 482 667 482 667 411 633 c 1,52,-1 - 1113 633 l 1,53,-1 - 1113 484 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni20B5 -Encoding: 8373 8373 2085 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 48 - 11 - 19 - 16 - 9 - 23 - 23 - 28 - 6 - 24 - 25 - 3 - 3 - 24 - 19 - 3 - 33 - 32 - 15 - 29 - 6 - 29 - 95 - 89 - 12 - 12 - 9 - 7 - 64 - 6 - 4 - 0 - 28 - 95 - 89 - 24 - 0 - 64 - 22 - 0 - 18 - 18 - 0 - 0 - 16 - 95 - 89 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SHP[rp1] -SMD -SRP0 -MDRP[min,rnd,black] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -718 -17 m 1,0,1 - 427 6 427 6 265.5 199 c 128,-1,2 - 104 392 104 392 104 711 c 0,3,4 - 104 1029 104 1029 267 1217.5 c 128,-1,5 - 430 1406 430 1406 718 1427 c 1,6,-1 - 718 1568 l 1,7,-1 - 842 1568 l 1,8,-1 - 842 1428 l 1,9,10 - 1253 1408 1253 1408 1388 1081 c 1,11,-1 - 1207 1021 l 1,12,13 - 1164 1131 1164 1131 1069 1196.5 c 128,-1,14 - 974 1262 974 1262 842 1272 c 1,15,-1 - 842 138 l 1,16,17 - 1105 160 1105 160 1245 430 c 1,18,-1 - 1401 352 l 1,19,20 - 1319 181 1319 181 1176 87 c 128,-1,21 - 1033 -7 1033 -7 842 -18 c 1,22,-1 - 842 -212 l 1,23,-1 - 718 -212 l 1,24,-1 - 718 -17 l 1,0,1 -298 711 m 0,25,26 - 298 476 298 476 411.5 323 c 128,-1,27 - 525 170 525 170 718 143 c 1,28,-1 - 718 1270 l 1,29,30 - 519 1247 519 1247 408.5 1100.5 c 128,-1,31 - 298 954 298 954 298 711 c 0,25,26 -EndSplineSet -EndChar - -StartChar: uni20F0 -Encoding: 8432 8432 2086 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 13 42 N 1 0 0 1 -390 287 2 -EndChar - -StartChar: uni2105 -Encoding: 8453 8453 2087 -Width: 1813 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 72 - 14 - 15 - 12 - 13 - 47 - 46 - 46 - 33 - 34 - 40 - 34 - 178 - 91 - 28 - 40 - 22 - 6 - 0 - 6 - 178 - 91 - 16 - 0 - 0 - 15 - 13 - 34 - 6 - 40 - 6 - 54 - 53 - 0 - 33 - 1 - 11 - 5 - 33 - 37 - 37 - 30 - 182 - 89 - 43 - 37 - 184 - 91 - 43 - 50 - 182 - 89 - 47 - 43 - 4 - 15 - 3 - 12 - 18 - 9 - 19 - 182 - 89 - 3 - 9 - 184 - 91 - 3 - 25 - 182 - 89 - 3 - 19 -SVTCA[y-axis] -MIAP[rnd] -CALL -CALL -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -CALL -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1744 434 m 0,0,1 - 1744 219 1744 219 1663 103.5 c 128,-1,2 - 1582 -12 1582 -12 1424 -12 c 0,3,4 - 1268 -12 1268 -12 1188.5 100.5 c 128,-1,5 - 1109 213 1109 213 1109 434 c 0,6,7 - 1109 662 1109 662 1185.5 773.5 c 128,-1,8 - 1262 885 1262 885 1428 885 c 0,9,10 - 1592 885 1592 885 1668 770.5 c 128,-1,11 - 1744 656 1744 656 1744 434 c 0,0,1 -523 0 m 1,12,-1 - 368 0 l 1,13,-1 - 1290 1409 l 1,14,-1 - 1447 1409 l 1,15,-1 - 523 0 l 1,12,-1 -1596 434 m 0,16,17 - 1596 613 1596 613 1557.5 693.5 c 128,-1,18 - 1519 774 1519 774 1428 774 c 256,19,20 - 1337 774 1337 774 1296.5 695 c 128,-1,21 - 1256 616 1256 616 1256 434 c 0,22,23 - 1256 263 1256 263 1295.5 180.5 c 128,-1,24 - 1335 98 1335 98 1426 98 c 0,25,26 - 1514 98 1514 98 1555 181.5 c 128,-1,27 - 1596 265 1596 265 1596 434 c 0,16,17 -215 975 m 0,28,29 - 215 636 215 636 411 636 c 0,30,31 - 480 636 480 636 527 677 c 128,-1,32 - 574 718 574 718 585 805 c 1,33,-1 - 726 796 l 1,34,35 - 712 674 712 674 629 598 c 128,-1,36 - 546 522 546 522 415 522 c 0,37,38 - 246 522 246 522 157.5 638 c 128,-1,39 - 69 754 69 754 69 972 c 0,40,41 - 69 1187 69 1187 157 1303.5 c 128,-1,42 - 245 1420 245 1420 414 1420 c 0,43,44 - 540 1420 540 1420 621 1349.5 c 128,-1,45 - 702 1279 702 1279 721 1161 c 1,46,-1 - 578 1150 l 1,47,48 - 568 1222 568 1222 526.5 1264.5 c 128,-1,49 - 485 1307 485 1307 410 1307 c 0,50,51 - 302 1307 302 1307 258.5 1225 c 128,-1,52 - 215 1143 215 1143 215 975 c 0,28,29 -EndSplineSet -EndChar - -StartChar: uni2113 -Encoding: 8467 8467 2088 -Width: 662 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 36 - 26 - 26 - 15 - 12 - 9 - 29 - 22 - 22 - 2 - 3 - 9 - 3 - 39 - 40 - 79 - 40 - 1 - 10 - 25 - 36 - 15 - 36 - 15 - 36 - 31 - 36 - 2 - 2 - 36 - 2 - 36 - 6 - 32 - 19 - 7 - 0 - 6 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -MIAP[rnd] -MDRP[min,rnd,black] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -DELTAP1 -SRP1 -SHP[rp1] -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -SVTCA[x-axis] -DELTAP1 -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -433 78 m 0,0,1 - 536 78 536 78 569 291 c 1,2,-1 - 638 291 l 1,3,4 - 618 137 618 137 558 58.5 c 128,-1,5 - 498 -20 498 -20 389 -20 c 0,6,7 - 278 -20 278 -20 214.5 59.5 c 128,-1,8 - 151 139 151 139 151 294 c 2,9,-1 - 151 469 l 1,10,11 - 100 442 100 442 19 411 c 1,12,-1 - 19 484 l 1,13,14 - 98 515 98 515 151 543 c 1,15,-1 - 151 1130 l 2,16,17 - 151 1276 151 1276 216.5 1352.5 c 128,-1,18 - 282 1429 282 1429 405 1429 c 0,19,20 - 506 1429 506 1429 561 1351 c 128,-1,21 - 616 1273 616 1273 616 1129 c 0,22,23 - 616 939 616 939 535.5 780 c 128,-1,24 - 455 621 455 621 317 542 c 1,25,-1 - 317 298 l 2,26,27 - 317 196 317 196 349 137 c 128,-1,28 - 381 78 381 78 433 78 c 0,0,1 -525 1122 m 0,29,30 - 525 1228 525 1228 497 1290.5 c 128,-1,31 - 469 1353 469 1353 418 1353 c 256,32,33 - 367 1353 367 1353 342 1300.5 c 128,-1,34 - 317 1248 317 1248 317 1129 c 2,35,-1 - 317 622 l 1,36,37 - 412 686 412 686 468.5 821.5 c 128,-1,38 - 525 957 525 957 525 1122 c 0,29,30 -EndSplineSet -EndChar - -StartChar: uni2116 -Encoding: 8470 8470 2089 -Width: 2197 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 46 - 38 - 24 - 13 - 37 - 30 - 19 - 12 - 0 - 9 - 6 - 1 - 3 - 3 - 4 - 4 - 9 - 19 - 13 - 4 - 41 - 40 - 47 - 41 - 1 - 27 - 22 - 15 - 10 - 1 - 5 - 3 - 33 - 15 - 16 - 31 - 16 - 2 - 16 - 16 - 37 - 36 - 36 - 7 - 0 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -DELTAP1 -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SVTCA[x-axis] -DELTAP1 -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1062 0 m 1,0,-1 - 342 1190 l 1,1,-1 - 348 936 l 1,2,-1 - 348 0 l 1,3,-1 - 188 0 l 1,4,-1 - 188 1409 l 1,5,-1 - 390 1409 l 1,6,-1 - 1118 211 l 1,7,8 - 1110 371 1110 371 1110 485 c 2,9,-1 - 1110 1409 l 1,10,-1 - 1272 1409 l 1,11,-1 - 1272 0 l 1,12,-1 - 1062 0 l 1,0,-1 -2094 690 m 0,13,14 - 2094 502 2094 502 2006 400.5 c 128,-1,15 - 1918 299 1918 299 1743 299 c 0,16,17 - 1575 299 1575 299 1486.5 399.5 c 128,-1,18 - 1398 500 1398 500 1398 690 c 0,19,20 - 1398 879 1398 879 1487 979.5 c 128,-1,21 - 1576 1080 1576 1080 1747 1080 c 0,22,23 - 2094 1080 2094 1080 2094 690 c 0,13,14 -1935 690 m 0,24,25 - 1935 837 1935 837 1893 902.5 c 128,-1,26 - 1851 968 1851 968 1750 968 c 0,27,28 - 1648 968 1648 968 1604 901.5 c 128,-1,29 - 1560 835 1560 835 1560 690 c 256,30,31 - 1560 545 1560 545 1603.5 478 c 128,-1,32 - 1647 411 1647 411 1742 411 c 0,33,34 - 1845 411 1845 411 1890 474.5 c 128,-1,35 - 1935 538 1935 538 1935 690 c 0,24,25 -1439 0 m 1,36,-1 - 1439 146 l 1,37,-1 - 2074 146 l 1,38,-1 - 2074 0 l 1,39,-1 - 1439 0 l 1,36,-1 -EndSplineSet -EndChar - -StartChar: uni2117 -Encoding: 8471 8471 2090 -Width: 1509 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 36 - 12 - 0 - 0 - 1 - 6 - 16 - 1 - 16 - 20 - 44 - 28 - 20 - 28 - 53 - 52 - 32 - 40 - 200 - 89 - 32 - 4 - 12 - 10 - 201 - 89 - 1 - 12 - 1 - 12 - 24 - 2 - 24 - 48 - 200 - 89 - 24 - 19 - 2 - 11 - 201 - 89 - 2 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -RTG -MDAP[rnd] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -623 295 m 1,0,-1 - 488 295 l 1,1,-1 - 488 1106 l 1,2,-1 - 834 1106 l 2,3,4 - 966 1106 966 1106 1050.5 1040 c 128,-1,5 - 1135 974 1135 974 1135 861 c 0,6,7 - 1135 744 1135 744 1054 676.5 c 128,-1,8 - 973 609 973 609 834 609 c 2,9,-1 - 623 609 l 1,10,-1 - 623 295 l 1,0,-1 -623 1003 m 1,11,-1 - 623 711 l 1,12,-1 - 825 711 l 2,13,14 - 905 711 905 711 949 749 c 128,-1,15 - 993 787 993 787 993 859 c 0,16,17 - 993 929 993 929 949.5 966 c 128,-1,18 - 906 1003 906 1003 825 1003 c 2,19,-1 - 623 1003 l 1,11,-1 -1477 707 m 0,20,21 - 1477 514 1477 514 1380.5 345.5 c 128,-1,22 - 1284 177 1284 177 1115.5 80.5 c 128,-1,23 - 947 -16 947 -16 754 -16 c 0,24,25 - 557 -16 557 -16 387.5 84.5 c 128,-1,26 - 218 185 218 185 124.5 351.5 c 128,-1,27 - 31 518 31 518 31 707 c 0,28,29 - 31 900 31 900 128 1068 c 128,-1,30 - 225 1236 225 1236 393 1333 c 128,-1,31 - 561 1430 561 1430 754 1430 c 0,32,33 - 948 1430 948 1430 1116.5 1332.5 c 128,-1,34 - 1285 1235 1285 1235 1381 1068 c 128,-1,35 - 1477 901 1477 901 1477 707 c 0,20,21 -1385 707 m 256,36,37 - 1385 876 1385 876 1301 1020.5 c 128,-1,38 - 1217 1165 1217 1165 1070.5 1250 c 128,-1,39 - 924 1335 924 1335 754 1335 c 0,40,41 - 586 1335 586 1335 440 1250.5 c 128,-1,42 - 294 1166 294 1166 210 1020 c 128,-1,43 - 126 874 126 874 126 707 c 0,44,45 - 126 538 126 538 210.5 392 c 128,-1,46 - 295 246 295 246 440 162 c 128,-1,47 - 585 78 585 78 754 78 c 256,48,49 - 923 78 923 78 1070 162 c 128,-1,50 - 1217 246 1217 246 1301 392 c 128,-1,51 - 1385 538 1385 538 1385 707 c 256,36,37 -EndSplineSet -EndChar - -StartChar: trademark -Encoding: 8482 8482 2091 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 21 - 22 - 13 - 10 - 10 - 11 - 17 - 0 - 0 - 19 - 19 - 11 - 22 - 3 - 28 - 29 - 20 - 24 - 25 - 24 - 202 - 89 - 15 - 11 - 5 - 0 - 0 - 22 - 32 - 22 - 80 - 22 - 128 - 22 - 4 - 22 - 1 - 7 - 7 - 17 - 12 - 25 - 3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -SHP[rp2] -SHP[rp2] -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1691 634 m 1,0,-1 - 1691 1253 l 1,1,-1 - 1682 1231 l 1,2,-1 - 1671 1199 l 1,3,-1 - 1441 634 l 1,4,-1 - 1333 634 l 1,5,-1 - 1170 1047 l 1,6,-1 - 1093 1253 l 1,7,-1 - 1092 1233 l 1,8,-1 - 1091 1216 l 1,9,-1 - 1091 634 l 1,10,-1 - 963 634 l 1,11,-1 - 963 1409 l 1,12,-1 - 1153 1409 l 1,13,-1 - 1376 846 l 1,14,-1 - 1391 804 l 1,15,-1 - 1465 996 l 1,16,-1 - 1633 1409 l 1,17,-1 - 1817 1409 l 1,18,-1 - 1817 634 l 1,19,-1 - 1691 634 l 1,0,-1 -577 1298 m 1,20,-1 - 577 634 l 1,21,-1 - 443 634 l 1,22,-1 - 443 1298 l 1,23,-1 - 188 1298 l 1,24,-1 - 188 1409 l 1,25,-1 - 838 1409 l 1,26,-1 - 838 1298 l 1,27,-1 - 577 1298 l 1,20,-1 -EndSplineSet -EndChar - -StartChar: Ohm -Encoding: 8486 8486 2092 -Width: 1573 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 30 - 25 - 6 - 11 - 25 - 11 - 21 - 15 - 15 - 10 - 3 - 21 - 26 - 33 - 3 - 33 - 37 - 36 - 30 - 24 - 12 - 8 - 6 - 27 - 26 - 27 - 95 - 89 - 11 - 26 - 18 - 0 - 18 - 95 - 89 - 0 - 4 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -786 1430 m 256,0,1 - 1089 1430 1089 1430 1262.5 1262.5 c 128,-1,2 - 1436 1095 1436 1095 1436 801 c 0,3,4 - 1436 600 1436 600 1328.5 430 c 128,-1,5 - 1221 260 1221 260 1012 145 c 1,6,-1 - 1093 150 l 1,7,-1 - 1220 156 l 1,8,-1 - 1464 156 l 1,9,-1 - 1464 0 l 1,10,-1 - 875 0 l 1,11,-1 - 875 224 l 1,12,13 - 1054 319 1054 319 1147.5 461.5 c 128,-1,14 - 1241 604 1241 604 1241 788 c 0,15,16 - 1241 1020 1241 1020 1122 1147 c 128,-1,17 - 1003 1274 1003 1274 787 1274 c 0,18,19 - 569 1274 569 1274 450 1147 c 128,-1,20 - 331 1020 331 1020 331 788 c 0,21,22 - 331 605 331 605 424 462.5 c 128,-1,23 - 517 320 517 320 697 224 c 1,24,-1 - 697 0 l 1,25,-1 - 108 0 l 1,26,-1 - 108 156 l 1,27,-1 - 352 156 l 1,28,-1 - 479 150 l 1,29,-1 - 560 145 l 1,30,31 - 352 258 352 258 244 428.5 c 128,-1,32 - 136 599 136 599 136 801 c 0,33,34 - 136 1095 136 1095 309.5 1262.5 c 128,-1,35 - 483 1430 483 1430 786 1430 c 256,0,1 -EndSplineSet -EndChar - -StartChar: estimated -Encoding: 8494 8494 2093 -Width: 1229 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 31 - 14 - 14 - 4 - 24 - 21 - 12 - 32 - 33 - 1 - 12 - 4 - 33 - 32 - 13 - 47 - 31 - 1 - 31 - 31 - 0 - 28 - 8 - 16 - 17 - 6 - 20 - 1 - 21 - 20 - 1 - 20 - 0 - 22 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -DELTAP1 -DELTAP1 -MDRP[min,rnd,black] -MIAP[rnd] -MDRP[min,rnd,black] -SRP2 -IP -MDAP[rnd] -DELTAP1 -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -DELTAP1 -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -619 -34 m 0,0,1 - 461 -34 461 -34 341 38.5 c 128,-1,2 - 221 111 221 111 154.5 242.5 c 128,-1,3 - 88 374 88 374 88 531 c 0,4,5 - 88 702 88 702 158 830 c 128,-1,6 - 228 958 228 958 350 1027 c 128,-1,7 - 472 1096 472 1096 619 1096 c 0,8,9 - 770 1096 770 1096 892 1025.5 c 128,-1,10 - 1014 955 1014 955 1081 826 c 128,-1,11 - 1148 697 1148 697 1148 531 c 1,12,-1 - 321 531 l 1,13,-1 - 321 175 l 1,14,15 - 371 121 371 121 452.5 86 c 128,-1,16 - 534 51 534 51 619 51 c 0,17,18 - 751 51 751 51 841.5 103 c 128,-1,19 - 932 155 932 155 1014 285 c 1,20,-1 - 1086 243 l 1,21,22 - 990 90 990 90 880.5 28 c 128,-1,23 - 771 -34 771 -34 619 -34 c 0,0,1 -917 616 m 1,24,-1 - 917 893 l 1,25,26 - 866 946 866 946 784.5 978.5 c 128,-1,27 - 703 1011 703 1011 617 1011 c 0,28,29 - 438 1011 438 1011 321 894 c 1,30,-1 - 321 616 l 1,31,-1 - 917 616 l 1,24,-1 -EndSplineSet -EndChar - -StartChar: uni214D -Encoding: 8525 8525 2094 -Width: 1931 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 67 - 40 - 27 - 15 - 3 - 0 - 22 - 21 - 21 - 46 - 34 - 4 - 11 - 1 - 2 - 7 - 8 - 8 - 6 - 12 - 2 - 5 - 11 - 34 - 0 - 15 - 9 - 55 - 54 - 46 - 27 - 37 - 18 - 37 - 43 - 182 - 89 - 41 - 37 - 13 - 6 - 182 - 89 - 12 - 9 - 13 - 13 - 4 - 9 - 4 - 8 - 37 - 8 - 37 - 8 - 3 - 2 - 18 - 18 - 24 - 182 - 89 - 22 - 18 - 19 - 3 - 9 - 0 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,white] -MIAP[rnd] -SHP[rp1] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -SRP1 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -MDAP[rnd] -SRP2 -IP -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1651 1513 m 1,0,-1 - 550 -57 l 1,1,-1 - 408 -57 l 1,2,-1 - 1509 1513 l 1,3,-1 - 1651 1513 l 1,0,-1 -652 606 m 1,4,-1 - 563 861 l 1,5,-1 - 242 861 l 1,6,-1 - 149 606 l 1,7,-1 - 8 606 l 1,8,-1 - 334 1484 l 1,9,-1 - 472 1484 l 1,10,-1 - 793 606 l 1,11,-1 - 652 606 l 1,4,-1 -402 1348 m 1,12,-1 - 279 972 l 1,13,-1 - 527 972 l 1,14,-1 - 402 1348 l 1,12,-1 -1890 233 m 0,15,16 - 1890 112 1890 112 1799 46 c 128,-1,17 - 1708 -20 1708 -20 1542 -20 c 0,18,19 - 1393 -20 1393 -20 1304 35 c 128,-1,20 - 1215 90 1215 90 1186 211 c 1,21,-1 - 1312 236 l 1,22,23 - 1352 92 1352 92 1542 92 c 0,24,25 - 1651 92 1651 92 1701 124 c 128,-1,26 - 1751 156 1751 156 1751 222 c 0,27,28 - 1751 274 1751 274 1716 304.5 c 128,-1,29 - 1681 335 1681 335 1604 354 c 0,30,31 - 1399 405 1399 405 1339.5 436 c 128,-1,32 - 1280 467 1280 467 1248 513 c 128,-1,33 - 1216 559 1216 559 1216 625 c 0,34,35 - 1216 742 1216 742 1299.5 804.5 c 128,-1,36 - 1383 867 1383 867 1544 867 c 0,37,38 - 1687 867 1687 867 1770 816 c 128,-1,39 - 1853 765 1853 765 1875 654 c 1,40,-1 - 1747 638 l 1,41,42 - 1722 756 1722 756 1544 756 c 0,43,44 - 1447 756 1447 756 1401 728.5 c 128,-1,45 - 1355 701 1355 701 1355 641 c 0,46,47 - 1355 607 1355 607 1373 585 c 128,-1,48 - 1391 563 1391 563 1424.5 547.5 c 128,-1,49 - 1458 532 1458 532 1587 499 c 0,50,51 - 1713 467 1713 467 1769.5 434.5 c 128,-1,52 - 1826 402 1826 402 1858 353.5 c 128,-1,53 - 1890 305 1890 305 1890 233 c 0,15,16 -EndSplineSet -EndChar - -StartChar: uni214E -Encoding: 8526 8526 2095 -Width: 1003 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 7 - 3 - 2 - 9 - 5 - 5 - 2 - 3 - 2 - 10 - 11 - 8 - 7 - 80 - 89 - 8 - 8 - 3 - 0 - 3 - 4 - 80 - 89 - 3 - 21 - 0 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 671 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1003 1540 basechar 0 -AnchorPoint: "Anchor-20" 1003 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1200 basechar 0 -AnchorPoint: "Anchor-15" 900 1260 basechar 0 -AnchorPoint: "Anchor-14" 480 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -683 1082 m 1,0,-1 - 863 1082 l 1,1,-1 - 863 0 l 1,2,-1 - 96 0 l 1,3,-1 - 96 139 l 1,4,-1 - 683 139 l 1,5,-1 - 683 458 l 1,6,-1 - 135 458 l 1,7,-1 - 135 596 l 1,8,-1 - 683 596 l 1,9,-1 - 683 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: onethird -Encoding: 8531 8531 2096 -Width: 1708 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 18 - 25 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 123 185 N 1 0 0 1 0 0 2 -Refer: 2046 8260 N 1 0 0 1 761 0 2 -Refer: 117 179 N 1 0 0 1 1017 -563 2 -EndChar - -StartChar: twothirds -Encoding: 8532 8532 2097 -Width: 1708 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 2 - 35 - 25 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 116 178 N 1 0 0 1 -7 0 2 -Refer: 2046 8260 N 1 0 0 1 771 0 2 -Refer: 117 179 N 1 0 0 1 1027 -563 2 -EndChar - -StartChar: oneeighth -Encoding: 8539 8539 2098 -Width: 1708 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 4 - 3 - 2 - 15 - 47 - 15 - 111 - 15 - 2 - 1 - 12 - 191 - 12 - 1 - 16 - 12 - 64 - 12 - 96 - 12 - 112 - 12 - 128 - 12 - 5 - 47 - 65 - 1 - 4 - 3 - 2 - 41 - 24 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -DELTAP1 -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 123 185 N 1 0 0 1 0 0 2 -Refer: 2046 8260 N 1 0 0 1 761 0 2 -Refer: 2057 8312 N 1 0 0 1 972 -562 2 -EndChar - -StartChar: threeeighths -Encoding: 8540 8540 2099 -Width: 1708 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 1 - 3 - 2 - 30 - 47 - 30 - 111 - 30 - 2 - 0 - 1 - 191 - 1 - 1 - 16 - 1 - 64 - 1 - 96 - 1 - 112 - 1 - 128 - 1 - 5 - 47 - 92 - 1 - 1 - 3 - 2 - 30 - 24 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -DELTAP1 -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 2046 8260 N 1 0 0 1 761 0 2 -Refer: 2057 8312 N 1 0 0 1 972 -562 2 -Refer: 117 179 N 1 0 0 1 34 0 2 -EndChar - -StartChar: fiveeighths -Encoding: 8541 8541 2100 -Width: 1708 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 1 - 3 - 2 - 30 - 47 - 30 - 111 - 30 - 2 - 0 - 1 - 191 - 1 - 1 - 16 - 1 - 64 - 1 - 96 - 1 - 112 - 1 - 128 - 1 - 5 - 47 - 84 - 1 - 1 - 3 - 2 - 30 - 24 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -DELTAP1 -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 2046 8260 N 1 0 0 1 761 0 2 -Refer: 2057 8312 N 1 0 0 1 972 -562 2 -Refer: 2055 8309 N 1 0 0 1 40 0 2 -EndChar - -StartChar: seveneighths -Encoding: 8542 8542 2101 -Width: 1708 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 1 - 3 - 2 - 30 - 47 - 30 - 111 - 30 - 2 - 0 - 1 - 191 - 1 - 1 - 128 - 1 - 1 - 47 - 66 - 1 - 1 - 3 - 2 - 30 - 24 -SVTCA[y-axis] -MIAP[rnd] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[x-axis] -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -DELTAP1 -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 2046 8260 N 1 0 0 1 701 0 2 -Refer: 2057 8312 N 1 0 0 1 972 -562 2 -Refer: 2056 8311 N 1 0 0 1 102 0 2 -EndChar - -StartChar: uni2184 -Encoding: 8580 8580 2102 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 65 - 6 - 7 - 7 - 19 - 0 - 13 - 19 - 13 - 26 - 27 - 16 - 23 - 80 - 89 - 32 - 20 - 112 - 20 - 128 - 20 - 208 - 20 - 224 - 20 - 5 - 0 - 20 - 16 - 20 - 96 - 20 - 112 - 20 - 128 - 20 - 192 - 20 - 208 - 20 - 7 - 9 - 20 - 20 - 16 - 22 - 15 - 6 - 111 - 6 - 127 - 6 - 207 - 6 - 4 - 10 - 3 - 6 - 6 - 10 - 10 - 3 - 80 - 89 - 10 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SDB -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -754 546 m 0,0,1 - 754 772 754 772 689.5 866.5 c 128,-1,2 - 625 961 625 961 483 961 c 0,3,4 - 378 961 378 961 321 908 c 128,-1,5 - 264 855 264 855 250 765 c 1,6,-1 - 65 779 l 1,7,8 - 94 930 94 930 202.5 1016 c 128,-1,9 - 311 1102 311 1102 478 1102 c 0,10,11 - 702 1102 702 1102 822 958.5 c 128,-1,12 - 942 815 942 815 942 542 c 0,13,14 - 942 267 942 267 822.5 123.5 c 128,-1,15 - 703 -20 703 -20 476 -20 c 0,16,17 - 305 -20 305 -20 192.5 73 c 128,-1,18 - 80 166 80 166 59 322 c 1,19,-1 - 241 334 l 1,20,21 - 256 226 256 226 320.5 174 c 128,-1,22 - 385 122 385 122 481 122 c 0,23,24 - 619 122 619 122 686.5 226.5 c 128,-1,25 - 754 331 754 331 754 546 c 0,0,1 -EndSplineSet -EndChar - -StartChar: arrowleft -Encoding: 8592 8592 2103 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 0 - 11 - 5 - 9 - 2 - 2 - 5 - 5 - 12 - 14 - 15 - 2 - 13 - 8 - 12 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -641 297 m 1,0,1 - 698 230 698 230 760 100 c 1,2,-1 - 688 100 l 1,3,4 - 561 249 561 249 418 322 c 1,5,-1 - 418 358 l 1,6,7 - 561 431 561 431 688 580 c 1,8,-1 - 760 580 l 1,9,10 - 698 450 698 450 641 383 c 1,11,-1 - 1630 383 l 1,12,-1 - 1630 297 l 1,13,-1 - 641 297 l 1,0,1 -EndSplineSet -EndChar - -StartChar: arrowup -Encoding: 8593 8593 2104 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 8 - 11 - 11 - 3 - 0 - 0 - 14 - 15 - 12 - 11 - 0 - 9 - 2 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IP -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -469 928 m 1,0,1 - 402 871 402 871 272 809 c 1,2,-1 - 272 881 l 1,3,4 - 421 1008 421 1008 494 1151 c 1,5,-1 - 530 1151 l 1,6,7 - 603 1008 603 1008 752 881 c 1,8,-1 - 752 809 l 1,9,10 - 622 871 622 871 555 928 c 1,11,-1 - 555 -61 l 1,12,-1 - 469 -61 l 1,13,-1 - 469 928 l 1,0,1 -EndSplineSet -EndChar - -StartChar: arrowright -Encoding: 8594 8594 2105 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 11 - 0 - 5 - 9 - 2 - 2 - 5 - 13 - 5 - 14 - 15 - 8 - 12 - 3 - 13 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1407 383 m 1,0,1 - 1350 450 1350 450 1288 580 c 1,2,-1 - 1360 580 l 1,3,4 - 1487 431 1487 431 1630 358 c 1,5,-1 - 1630 322 l 1,6,7 - 1487 249 1487 249 1360 100 c 1,8,-1 - 1288 100 l 1,9,10 - 1350 230 1350 230 1407 297 c 1,11,-1 - 418 297 l 1,12,-1 - 418 383 l 1,13,-1 - 1407 383 l 1,0,1 -EndSplineSet -EndChar - -StartChar: arrowdown -Encoding: 8595 8595 2106 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 3 - 13 - 13 - 8 - 12 - 12 - 14 - 15 - 0 - 11 - 2 - 9 - 128 - 6 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -555 162 m 1,0,1 - 622 219 622 219 752 281 c 1,2,-1 - 752 209 l 1,3,4 - 603 82 603 82 530 -61 c 1,5,-1 - 494 -61 l 1,6,7 - 421 82 421 82 272 209 c 1,8,-1 - 272 281 l 1,9,10 - 402 219 402 219 469 162 c 1,11,-1 - 469 1151 l 1,12,-1 - 555 1151 l 1,13,-1 - 555 162 l 1,0,1 -EndSplineSet -EndChar - -StartChar: arrowboth -Encoding: 8596 8596 2107 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 0 - 11 - 6 - 2 - 9 - 9 - 6 - 23 - 12 - 17 - 21 - 14 - 14 - 17 - 6 - 17 - 24 - 25 - 14 - 9 - 9 - 11 - 21 - 3 - 3 - 0 - 11 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -641 297 m 1,0,1 - 698 230 698 230 760 100 c 1,2,-1 - 688 100 l 1,3,4 - 561 249 561 249 418 322 c 1,5,-1 - 418 358 l 1,6,7 - 561 431 561 431 688 580 c 1,8,-1 - 760 580 l 1,9,10 - 698 450 698 450 641 383 c 1,11,-1 - 1407 383 l 1,12,13 - 1350 450 1350 450 1288 580 c 1,14,-1 - 1360 580 l 1,15,16 - 1487 431 1487 431 1630 358 c 1,17,-1 - 1630 322 l 1,18,19 - 1487 249 1487 249 1360 100 c 1,20,-1 - 1288 100 l 1,21,22 - 1350 230 1350 230 1407 297 c 1,23,-1 - 641 297 l 1,0,1 -EndSplineSet -EndChar - -StartChar: arrowupdn -Encoding: 8597 8597 2108 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 15 - 8 - 8 - 11 - 11 - 0 - 21 - 3 - 3 - 0 - 0 - 24 - 25 - 12 - 23 - 14 - 21 - 18 - 11 - 0 - 9 - 2 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -IP -IP -MDAP[rnd] -MDRP[min,rnd,grey] -SHP[rp2] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -469 928 m 1,0,1 - 402 871 402 871 272 809 c 1,2,-1 - 272 881 l 1,3,4 - 421 1008 421 1008 494 1151 c 1,5,-1 - 530 1151 l 1,6,7 - 603 1008 603 1008 752 881 c 1,8,-1 - 752 809 l 1,9,10 - 622 871 622 871 555 928 c 1,11,-1 - 555 162 l 1,12,13 - 622 219 622 219 752 281 c 1,14,-1 - 752 209 l 1,15,16 - 603 82 603 82 530 -61 c 1,17,-1 - 494 -61 l 1,18,19 - 421 82 421 82 272 209 c 1,20,-1 - 272 281 l 1,21,22 - 402 219 402 219 469 162 c 1,23,-1 - 469 928 l 1,0,1 -EndSplineSet -EndChar - -StartChar: arrowupdnbse -Encoding: 8616 8616 2109 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 19 - 12 - 12 - 1 - 15 - 15 - 4 - 25 - 7 - 7 - 0 - 4 - 4 - 29 - 28 - 16 - 27 - 18 - 25 - 22 - 3 - 0 - 22 - 15 - 4 - 13 - 6 - 9 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -SHP[rp2] -IP -IP -MDAP[rnd] -MDRP[rp0,min,rnd,white] -MDRP[min,rnd,black] -SRP0 -MDRP[min,rnd,grey] -SHP[rp2] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -272 -104 m 1,0,-1 - 752 -104 l 1,1,-1 - 752 -184 l 1,2,-1 - 272 -184 l 1,3,-1 - 272 -104 l 1,0,-1 -469 928 m 1,4,5 - 402 871 402 871 272 809 c 1,6,-1 - 272 881 l 1,7,8 - 421 1008 421 1008 494 1151 c 1,9,-1 - 530 1151 l 1,10,11 - 603 1008 603 1008 752 881 c 1,12,-1 - 752 809 l 1,13,14 - 622 871 622 871 555 928 c 1,15,-1 - 555 162 l 1,16,17 - 622 219 622 219 752 281 c 1,18,-1 - 752 209 l 1,19,20 - 603 82 603 82 530 -61 c 1,21,-1 - 494 -61 l 1,22,23 - 421 82 421 82 272 209 c 1,24,-1 - 272 281 l 1,25,26 - 402 219 402 219 469 162 c 1,27,-1 - 469 928 l 1,4,5 -EndSplineSet -EndChar - -StartChar: partialdiff -Encoding: 8706 8706 2110 -Width: 1012 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 51 - 23 - 8 - 29 - 16 - 17 - 17 - 0 - 36 - 8 - 0 - 8 - 44 - 43 - 23 - 20 - 26 - 20 - 80 - 89 - 12 - 32 - 81 - 89 - 15 - 12 - 12 - 5 - 47 - 26 - 111 - 26 - 223 - 26 - 3 - 15 - 26 - 191 - 26 - 2 - 9 - 3 - 26 - 5 - 39 - 80 - 89 - 5 - 22 - 47 - 44 - 1 -DELTAP1 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -954 938 m 0,0,1 - 954 780 954 780 918 591.5 c 128,-1,2 - 882 403 882 403 808.5 261.5 c 128,-1,3 - 735 120 735 120 628 46.5 c 128,-1,4 - 521 -27 521 -27 389 -27 c 0,5,6 - 228 -27 228 -27 142 74.5 c 128,-1,7 - 56 176 56 176 56 356 c 0,8,9 - 56 522 56 522 119.5 681 c 128,-1,10 - 183 840 183 840 286 922 c 128,-1,11 - 389 1004 389 1004 515 1004 c 0,12,13 - 599 1004 599 1004 665.5 954.5 c 128,-1,14 - 732 905 732 905 764 821 c 1,15,-1 - 768 821 l 1,16,-1 - 772 938 l 1,17,18 - 772 1134 772 1134 707 1238.5 c 128,-1,19 - 642 1343 642 1343 513 1343 c 0,20,21 - 460 1343 460 1343 398.5 1323 c 128,-1,22 - 337 1303 337 1303 291 1268 c 1,23,-1 - 327 1415 l 1,24,25 - 440 1477 440 1477 552 1477 c 0,26,27 - 747 1477 747 1477 850.5 1337 c 128,-1,28 - 954 1197 954 1197 954 938 c 0,0,1 -743 680 m 1,29,30 - 726 768 726 768 671.5 825.5 c 128,-1,31 - 617 883 617 883 548 883 c 0,32,33 - 467 883 467 883 400 817 c 128,-1,34 - 333 751 333 751 289.5 620.5 c 128,-1,35 - 246 490 246 490 246 358 c 0,36,37 - 246 243 246 243 291 176 c 128,-1,38 - 336 109 336 109 418 109 c 0,39,40 - 496 109 496 109 563.5 184.5 c 128,-1,41 - 631 260 631 260 678.5 393.5 c 128,-1,42 - 726 527 726 527 743 680 c 1,29,30 -EndSplineSet -EndChar - -StartChar: uni2206 -Encoding: 8710 8710 2111 -Width: 1253 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 124 - 1 - 0 - 10 - 10 - 2 - 14 - 5 - 2 - 5 - 16 - 15 - 6 - 5 - 2 - 14 - 4 - 14 - 95 - 89 - 4 - 18 - 10 - 32 - 19 - 22 - 72 - 9 - 10 - 1 - 18 - 10 - 0 - 3 - 127 - 16 - 1 - 47 - 16 - 1 - 15 - 16 - 1 - 255 - 16 - 1 - 223 - 16 - 1 - 191 - 16 - 1 - 175 - 16 - 1 - 144 - 16 - 1 - 112 - 16 - 1 - 32 - 16 - 1 - 143 - 16 - 1 - 63 - 16 - 1 - 15 - 16 - 1 - 58 - 255 - 16 - 1 - 223 - 16 - 1 - 207 - 16 - 1 - 175 - 16 - 1 - 144 - 16 - 1 - 96 - 16 - 1 - 64 - 16 - 1 - 95 - 16 - 1 - 15 - 16 - 1 - 223 - 16 - 1 - 191 - 16 - 1 - 159 - 16 - 1 - 143 - 16 - 1 - 112 - 16 - 1 - 80 - 16 - 1 - 32 - 16 - 1 - 0 - 16 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -SDB -DELTAP1 -CALL -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -522 1409 m 1,0,-1 - 739 1409 l 1,1,-1 - 1249 141 l 1,2,-1 - 1249 0 l 1,3,-1 - 4 0 l 1,4,-1 - 5 141 l 1,5,-1 - 522 1409 l 1,0,-1 -1049 156 m 1,6,-1 - 711 1018 l 2,7,8 - 681 1092 681 1092 655.5 1172.5 c 128,-1,9 - 630 1253 630 1253 628 1265 c 1,10,-1 - 619 1233 l 2,11,12 - 588 1122 588 1122 545 1016 c 2,13,-1 - 206 156 l 1,14,-1 - 1049 156 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: product -Encoding: 8719 8719 2112 -Width: 1686 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 3 - 4 - 0 - 7 - 4 - 7 - 8 - 9 - 5 - 2 - 95 - 89 - 5 - 3 - 4 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1268 -434 m 1,0,-1 - 1268 1247 l 1,1,-1 - 426 1247 l 1,2,-1 - 426 -434 l 1,3,-1 - 235 -434 l 1,4,-1 - 235 1409 l 1,5,-1 - 1452 1409 l 1,6,-1 - 1452 -434 l 1,7,-1 - 1268 -434 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: summation -Encoding: 8721 8721 2113 -Width: 1460 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 7 - 3 - 3 - 9 - 0 - 8 - 2 - 10 - 6 - 2 - 0 - 4 - 12 - 13 - 3 - 4 - 7 - 4 - 7 - 95 - 89 - 2 - 8 - 4 - 3 - 1 - 0 - 9 - 0 - 9 - 95 - 89 - 0 - 32 - 13 - 1 -DELTAP1 -SVTCA[y-axis] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MIAP[rnd] -IP -IP -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -154 -434 m 1,0,-1 - 154 -325 l 1,1,-1 - 789 491 l 1,2,-1 - 170 1303 l 1,3,-1 - 170 1409 l 1,4,-1 - 1260 1409 l 1,5,-1 - 1260 1257 l 1,6,-1 - 414 1257 l 1,7,-1 - 998 493 l 1,8,-1 - 398 -282 l 1,9,-1 - 1328 -282 l 1,10,-1 - 1328 -434 l 1,11,-1 - 154 -434 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: minus -Encoding: 8722 8722 2114 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 0 - 2 - 4 - 5 - 1 - 0 - 173 - 89 - 1 - 179 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -101 608 m 1,0,-1 - 101 754 l 1,1,-1 - 1096 754 l 1,2,-1 - 1096 608 l 1,3,-1 - 101 608 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2215 -Encoding: 8725 8725 2115 -Width: 342 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2046 8260 N 1 0 0 1 0 0 2 -EndChar - -StartChar: periodcentered -Encoding: 8729 8729 2116 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 3 - 0 - 0 - 4 - 5 - 1 - 0 - 155 - 89 - 15 - 1 - 31 - 1 - 2 - 1 - 64 - 15 - 38 - 72 - 1 -SVTCA[y-axis] -MDAP[rnd] -CALL -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -187 446 m 1,0,-1 - 187 666 l 1,1,-1 - 382 666 l 1,2,-1 - 382 446 l 1,3,-1 - 187 446 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: radical -Encoding: 8730 8730 2117 -Width: 1124 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 108 - 7 - 1 - 0 - 6 - 6 - 8 - 5 - 2 - 2 - 3 - 3 - 8 - 9 - 10 - 5 - 2 - 175 - 89 - 15 - 5 - 1 - 10 - 5 - 5 - 1 - 7 - 179 - 6 - 1 - 175 - 10 - 1 - 144 - 10 - 1 - 112 - 10 - 1 - 80 - 10 - 1 - 48 - 10 - 1 - 143 - 10 - 1 - 111 - 10 - 1 - 48 - 10 - 1 - 16 - 10 - 1 - 240 - 10 - 1 - 79 - 10 - 1 - 47 - 10 - 1 - 15 - 10 - 1 - 57 - 239 - 10 - 1 - 208 - 10 - 1 - 176 - 10 - 1 - 239 - 10 - 1 - 207 - 10 - 1 - 175 - 10 - 1 - 143 - 10 - 1 - 112 - 10 - 1 - 175 - 10 - 1 - 143 - 10 - 1 - 111 - 10 - 1 - 79 - 10 - 1 - 47 - 10 - 1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -622 -14 m 1,0,-1 - 516 -14 l 1,1,-1 - 233 778 l 1,2,-1 - 51 778 l 1,3,-1 - 51 895 l 1,4,-1 - 321 895 l 1,5,-1 - 563 205 l 1,6,-1 - 993 1620 l 1,7,-1 - 1122 1620 l 1,8,-1 - 622 -14 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: infinity -Encoding: 8734 8734 2118 -Width: 1460 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 49 - 31 - 25 - 16 - 5 - 34 - 4 - 0 - 40 - 11 - 0 - 11 - 47 - 46 - 22 - 224 - 37 - 1 - 37 - 14 - 28 - 239 - 43 - 1 - 43 - 5 - 25 - 34 - 16 - 4 - 3 - 63 - 8 - 1 - 8 - 64 - 18 - 21 - 72 - 0 - 8 - 80 - 8 - 2 - 8 - 19 - 15 - 14 - 1 - 14 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -MDRP[rp0,min,rnd,grey] -DELTAP1 -CALL -DELTAP2 -SHP[rp2] -SLOOP -IP -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP0 -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1373 590 m 0,0,1 - 1373 424 1373 424 1284 313.5 c 128,-1,2 - 1195 203 1195 203 1062 203 c 0,3,4 - 859 203 859 203 727 485 c 1,5,6 - 659 352 659 352 573.5 280.5 c 128,-1,7 - 488 209 488 209 400 209 c 0,8,9 - 261 209 261 209 174 314.5 c 128,-1,10 - 87 420 87 420 87 596 c 0,11,12 - 87 767 87 767 175.5 875 c 128,-1,13 - 264 983 264 983 400 983 c 0,14,15 - 601 983 601 983 729 700 c 1,16,17 - 794 830 794 830 880.5 903.5 c 128,-1,18 - 967 977 967 977 1064 977 c 0,19,20 - 1204 977 1204 977 1288.5 870 c 128,-1,21 - 1373 763 1373 763 1373 590 c 0,0,1 -1040 846 m 0,22,23 - 970 846 970 846 910.5 783 c 128,-1,24 - 851 720 851 720 795 590 c 1,25,26 - 846 462 846 462 905.5 398 c 128,-1,27 - 965 334 965 334 1042 334 c 0,28,29 - 1125 334 1125 334 1179.5 406.5 c 128,-1,30 - 1234 479 1234 479 1234 592 c 0,31,32 - 1234 699 1234 699 1179.5 772.5 c 128,-1,33 - 1125 846 1125 846 1040 846 c 0,22,23 -664 596 m 1,34,35 - 613 724 613 724 553.5 788 c 128,-1,36 - 494 852 494 852 416 852 c 0,37,38 - 332 852 332 852 279.5 778.5 c 128,-1,39 - 227 705 227 705 227 594 c 0,40,41 - 227 482 227 482 279 411 c 128,-1,42 - 331 340 331 340 418 340 c 0,43,44 - 488 340 488 340 548 403 c 128,-1,45 - 608 466 608 466 664 596 c 1,34,35 -EndSplineSet -EndChar - -StartChar: orthogonal -Encoding: 8735 8735 2119 -Width: 2005 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 5 - 5 - 3 - 6 - 7 - 2 - 5 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -408 1223 m 1,0,-1 - 502 1223 l 1,1,-1 - 502 94 l 1,2,-1 - 1632 94 l 1,3,-1 - 1632 0 l 1,4,-1 - 408 0 l 1,5,-1 - 408 1223 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: intersection -Encoding: 8745 8745 2120 -Width: 1472 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 19 - 0 - 11 - 10 - 0 - 10 - 20 - 21 - 15 - 5 - 11 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -278 -2 m 1,0,-1 - 278 510 l 2,1,2 - 278 660 278 660 336 779.5 c 128,-1,3 - 394 899 394 899 498.5 965.5 c 128,-1,4 - 603 1032 603 1032 733 1032 c 0,5,6 - 864 1032 864 1032 969.5 966 c 128,-1,7 - 1075 900 1075 900 1134.5 779 c 128,-1,8 - 1194 658 1194 658 1194 510 c 2,9,-1 - 1194 -2 l 1,10,-1 - 1091 -2 l 1,11,-1 - 1091 512 l 2,12,13 - 1091 702 1091 702 993 816 c 128,-1,14 - 895 930 895 930 735 930 c 0,15,16 - 573 930 573 930 477 817 c 128,-1,17 - 381 704 381 704 381 510 c 2,18,-1 - 381 -2 l 1,19,-1 - 278 -2 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: integral -Encoding: 8747 8747 2121 -Width: 561 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 255 - 14 - 20 - 20 - 3 - 7 - 7 - 24 - 23 - 11 - 16 - 80 - 89 - 0 - 11 - 64 - 11 - 2 - 13 - 3 - 11 - 0 - 5 - 80 - 89 - 0 - 116 - 24 - 1 - 102 - 24 - 1 - 84 - 24 - 1 - 68 - 24 - 1 - 54 - 24 - 1 - 38 - 24 - 1 - 22 - 24 - 1 - 6 - 24 - 1 - 150 - 24 - 1 - 73 - 24 - 1 - 57 - 24 - 1 - 41 - 24 - 1 - 25 - 24 - 1 - 9 - 24 - 1 - 103 - 249 - 24 - 1 - 233 - 24 - 1 - 219 - 24 - 1 - 166 - 24 - 1 - 118 - 24 - 1 - 41 - 24 - 1 - 25 - 24 - 1 - 9 - 24 - 1 - 233 - 24 - 1 - 185 - 24 - 1 - 169 - 24 - 1 - 153 - 24 - 1 - 137 - 24 - 1 - 123 - 24 - 1 - 107 - 24 - 1 - 91 - 24 - 1 - 75 - 24 - 1 - 59 - 24 - 1 - 41 - 24 - 1 - 25 - 24 - 1 - 11 - 24 - 1 - 251 - 24 - 1 - 233 - 24 - 1 - 217 - 24 - 1 - 203 - 24 - 1 - 187 - 24 - 1 - 171 - 24 - 1 - 153 - 24 - 1 - 139 - 24 - 1 - 123 - 24 - 1 - 107 - 24 - 1 - 91 - 24 - 1 - 73 - 24 - 1 - 57 - 24 - 1 - 41 - 24 - 1 - 27 - 24 - 1 - 11 - 24 - 1 - 55 - 249 - 24 - 1 - 233 - 24 - 1 - 219 - 24 - 1 - 203 - 24 - 1 - 187 - 24 - 1 - 173 - 24 - 1 - 157 - 24 - 1 - 141 - 24 - 1 - 123 - 24 - 1 - 109 - 24 - 1 - 1 - 95 - 24 - 1 - 64 - 24 - 1 - 48 - 24 - 1 - 32 - 24 - 1 - 16 - 24 - 1 - 0 - 24 - 1 - 244 - 24 - 1 - 228 - 24 - 1 - 212 - 24 - 1 - 196 - 24 - 1 - 180 - 24 - 1 - 160 - 24 - 1 - 144 - 24 - 1 - 2 - 128 - 24 - 1 - 112 -NPUSHB - 39 - 24 - 1 - 96 - 24 - 1 - 80 - 24 - 1 - 16 - 24 - 1 - 223 - 24 - 1 - 192 - 24 - 1 - 176 - 24 - 1 - 160 - 24 - 1 - 112 - 24 - 1 - 96 - 24 - 1 - 47 - 24 - 1 - 31 - 24 - 1 - 15 - 24 - 1 - 7 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SDS -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDS -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -DELTAP3 -SDB -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -36 -434 m 0,0,1 - -43 -434 -43 -434 -98 -415 c 1,2,-1 - -98 -268 l 1,3,4 - -38 -292 -38 -292 19 -292 c 0,5,6 - 191 -292 191 -292 191 -59 c 2,7,-1 - 189 1153 l 2,8,9 - 189 1325 189 1325 276 1416 c 128,-1,10 - 363 1507 363 1507 529 1507 c 0,11,12 - 616 1507 616 1507 660 1489 c 1,13,-1 - 660 1341 l 1,14,15 - 611 1368 611 1368 545 1368 c 0,16,17 - 462 1368 462 1368 417.5 1308.5 c 128,-1,18 - 373 1249 373 1249 373 1135 c 2,19,-1 - 373 -79 l 2,20,21 - 373 -251 373 -251 286 -342.5 c 128,-1,22 - 199 -434 199 -434 36 -434 c 0,0,1 -EndSplineSet -EndChar - -StartChar: approxequal -Encoding: 8776 8776 2122 -Width: 1124 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 30 - 8 - 42 - 18 - 8 - 18 - 45 - 46 - 22 - 39 - 173 - 89 - 30 -PUSHW_1 - -64 -PUSHB_5 - 35 - 60 - 72 - 30 - 22 -PUSHW_1 - -64 -PUSHB_4 - 23 - 28 - 72 - 22 -PUSHW_1 - -64 -PUSHB_4 - 16 - 20 - 72 - 22 -PUSHW_1 - -64 -NPUSHB - 34 - 9 - 12 - 72 - 22 - 64 - 41 - 64 - 41 - 60 - 72 - 41 - 33 - 33 - 27 - 173 - 89 - 111 - 33 - 1 - 0 - 33 - 16 - 33 - 2 - 11 - 3 - 33 - 11 - 64 - 0 - 16 - 173 - 89 - 8 -PUSHW_1 - -64 -PUSHB_5 - 39 - 60 - 72 - 8 - 0 -PUSHW_1 - -64 -PUSHB_4 - 23 - 28 - 72 - 0 -PUSHW_1 - -64 -PUSHB_4 - 16 - 20 - 72 - 0 -PUSHW_1 - -64 -NPUSHB - 35 - 9 - 12 - 72 - 0 - 64 - 18 - 64 - 41 - 60 - 72 - 18 - 11 - 11 - 5 - 173 - 89 - 15 - 11 - 207 - 11 - 2 - 11 - 64 - 23 - 28 - 72 - 11 - 64 - 11 - 19 - 72 - 11 - 47 - 46 - 1 -DELTAP1 -SVTCA[y-axis] -MDAP[rnd] -CALL -CALL -DELTAP1 -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SMD -MDRP[rp0,min,rnd,black] -CALL -CALL -CALL -MDRP[rnd,grey] -CALL -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,grey] -CALL -SMD -MDRP[rp0,min,rnd,black] -CALL -CALL -CALL -MDRP[rnd,grey] -CALL -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -808 758 m 0,0,1 - 739 758 739 758 666.5 779.5 c 128,-1,2 - 594 801 594 801 521 827 c 0,3,4 - 388 872 388 872 304 872 c 0,5,6 - 241 872 241 872 184 853.5 c 128,-1,7 - 127 835 127 835 56 784 c 1,8,-1 - 56 928 l 1,9,10 - 170 1012 170 1012 319 1012 c 0,11,12 - 422 1012 422 1012 554 965 c 0,13,14 - 664 925 664 925 721.5 909 c 128,-1,15 - 779 893 779 893 824 893 c 0,16,17 - 954 893 954 893 1068 987 c 1,18,-1 - 1068 838 l 1,19,20 - 1010 796 1010 796 951.5 777 c 128,-1,21 - 893 758 893 758 808 758 c 0,0,1 -808 336 m 0,22,23 - 739 336 739 336 666.5 358 c 128,-1,24 - 594 380 594 380 521 406 c 0,25,26 - 388 453 388 453 304 453 c 0,27,28 - 237 453 237 453 179 432.5 c 128,-1,29 - 121 412 121 412 56 365 c 1,30,-1 - 56 506 l 1,31,32 - 167 590 167 590 319 590 c 0,33,34 - 371 590 371 590 434.5 577 c 128,-1,35 - 498 564 498 564 628 518 c 0,36,37 - 659 506 659 506 719 489.5 c 128,-1,38 - 779 473 779 473 824 473 c 0,39,40 - 954 473 954 473 1068 565 c 1,41,-1 - 1068 418 l 1,42,43 - 1002 371 1002 371 945.5 353.5 c 128,-1,44 - 889 336 889 336 808 336 c 0,22,23 -EndSplineSet -EndChar - -StartChar: notequal -Encoding: 8800 8800 2123 -Width: 1124 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 65 - 12 - 11 - 13 - 10 - 16 - 7 - 17 - 6 - 0 - 3 - 1 - 2 - 12 - 9 - 18 - 14 - 5 - 9 - 14 - 9 - 21 - 20 - 16 - 7 - 8 - 9 - 8 - 173 - 89 - 3 - 2 - 1 - 0 - 4 - 5 - 4 - 173 - 89 - 17 - 6 - 31 - 5 - 47 - 5 - 95 - 5 - 111 - 5 - 223 - 5 - 5 - 5 - 13 - 12 - 11 - 10 - 15 - 9 - 1 - 80 - 9 - 208 - 9 - 2 - 9 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -MDRP[min,rnd,white] -DELTAP1 -SHP[rp2] -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -448 344 m 1,0,-1 - 296 55 l 1,1,-1 - 151 55 l 1,2,-1 - 302 344 l 1,3,-1 - 65 344 l 1,4,-1 - 65 492 l 1,5,-1 - 376 492 l 1,6,-1 - 566 856 l 1,7,-1 - 65 856 l 1,8,-1 - 65 1004 l 1,9,-1 - 638 1004 l 1,10,-1 - 792 1296 l 1,11,-1 - 935 1296 l 1,12,-1 - 783 1004 l 1,13,-1 - 1060 1004 l 1,14,-1 - 1060 856 l 1,15,-1 - 710 856 l 1,16,-1 - 519 492 l 1,17,-1 - 1060 492 l 1,18,-1 - 1060 344 l 1,19,-1 - 448 344 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: equivalence -Encoding: 8801 8801 2124 -Width: 1195 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 52 - 11 - 7 - 2 - 8 - 4 - 0 - 2 - 0 - 13 - 12 - 9 - 8 - 173 - 89 - 9 - 9 - 4 - 1 - 4 - 5 - 173 - 89 - 176 - 4 - 1 - 15 - 4 - 63 - 4 - 111 - 4 - 127 - 4 - 4 - 12 - 3 - 4 - 1 - 0 - 173 - 89 - 80 - 1 - 1 - 15 - 1 - 31 - 1 - 63 - 1 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 956 m 1,0,-1 - 100 1104 l 1,1,-1 - 1095 1104 l 1,2,-1 - 1095 956 l 1,3,-1 - 100 956 l 1,0,-1 -100 244 m 1,4,-1 - 100 392 l 1,5,-1 - 1095 392 l 1,6,-1 - 1095 244 l 1,7,-1 - 100 244 l 1,4,-1 -100 600 m 1,8,-1 - 100 748 l 1,9,-1 - 1095 748 l 1,10,-1 - 1095 600 l 1,11,-1 - 100 600 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: lessequal -Encoding: 8804 8804 2125 -Width: 1124 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 5 - 2 - 4 - 7 - 0 - 10 - 2 - 0 - 2 - 11 - 12 - 7 - 8 - 173 - 89 - 7 - 5 - 79 - 6 - 95 - 6 - 143 - 6 - 3 - 6 - 3 - 64 - 2 - 80 - 2 - 128 - 2 - 3 - 2 - 1 - 0 - 80 - 4 - 128 - 4 - 2 - 4 -SVTCA[y-axis] -RTHG -MDAP[rnd] -DELTAP1 -SHP[rp1] -SHP[rp1] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -65 631 m 1,0,-1 - 65 836 l 1,1,-1 - 1060 1231 l 1,2,-1 - 1060 1077 l 1,3,-1 - 202 733 l 1,4,-1 - 1060 389 l 1,5,-1 - 1060 236 l 1,6,-1 - 65 631 l 1,0,-1 -63 0 m 1,7,-1 - 63 145 l 1,8,-1 - 1058 145 l 1,9,-1 - 1058 0 l 1,10,-1 - 63 0 l 1,7,-1 -EndSplineSet -EndChar - -StartChar: greaterequal -Encoding: 8805 8805 2126 -Width: 1124 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 2 - 6 - 3 - 7 - 0 - 9 - 6 - 0 - 6 - 11 - 12 - 7 - 8 - 173 - 89 - 7 - 3 - 64 - 4 - 80 - 4 - 128 - 4 - 3 - 4 - 1 - 79 - 0 - 95 - 0 - 143 - 0 - 3 - 0 - 6 - 5 - 80 - 2 - 128 - 2 - 2 - 2 -SVTCA[y-axis] -RTHG -MDAP[rnd] -DELTAP1 -SHP[rp1] -SHP[rp1] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -RTG -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -65 236 m 1,0,-1 - 65 389 l 1,1,-1 - 923 733 l 1,2,-1 - 65 1077 l 1,3,-1 - 65 1231 l 1,4,-1 - 1060 836 l 1,5,-1 - 1060 631 l 1,6,-1 - 65 236 l 1,0,-1 -65 0 m 1,7,-1 - 65 145 l 1,8,-1 - 1060 145 l 1,9,-1 - 1060 0 l 1,10,-1 - 65 0 l 1,7,-1 -EndSplineSet -EndChar - -StartChar: house -Encoding: 8962 8962 2127 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 2 - 8 - 5 - 0 - 6 - 4 - 0 - 8 - 4 - 3 - 11 - 10 - 3 - 1 - 1 - 0 - 8 - 2 - 5 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -MDAP[rnd] -SHP[rp1] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -157 0 m 1,0,-1 - 157 635 l 1,1,-1 - 618 1153 l 1,2,-1 - 1079 635 l 1,3,-1 - 1079 0 l 1,4,-1 - 157 0 l 1,0,-1 -237 82 m 1,5,-1 - 999 82 l 1,6,-1 - 999 600 l 1,7,-1 - 618 1026 l 1,8,-1 - 237 600 l 1,9,-1 - 237 82 l 1,5,-1 -EndSplineSet -EndChar - -StartChar: revlogicalnot -Encoding: 8976 8976 2128 -Width: 1196 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 5 - 0 - 0 - 2 - 6 - 7 - 1 - 4 - 173 - 89 - 1 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 180 m 1,0,-1 - 100 754 l 1,1,-1 - 1095 754 l 1,2,-1 - 1095 608 l 1,3,-1 - 245 608 l 1,4,-1 - 245 180 l 1,5,-1 - 100 180 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: integraltp -Encoding: 8992 8992 2129 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 0 - 1 - 8 - 1 - 23 - 22 - 17 - 11 - 5 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -MDRP[min,rnd,black] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -693 -614 m 1,0,-1 - 546 -614 l 1,1,-1 - 546 1264 l 2,2,3 - 546 1460 546 1460 630 1583 c 128,-1,4 - 714 1706 714 1706 840 1706 c 0,5,6 - 903 1706 903 1706 940.5 1674.5 c 128,-1,7 - 978 1643 978 1643 978 1595 c 0,8,9 - 978 1555 978 1555 952.5 1529 c 128,-1,10 - 927 1503 927 1503 890 1503 c 0,11,12 - 860 1503 860 1503 847 1513 c 0,13,14 - 831 1521 831 1521 793 1563 c 0,15,16 - 760 1602 760 1602 744 1602 c 0,17,18 - 708 1602 708 1602 699 1563 c 0,19,20 - 693 1528 693 1528 693 1423 c 2,21,-1 - 693 -614 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: integralbt -Encoding: 8993 8993 2130 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 2 - 20 - 8 - 20 - 21 - 22 - 17 - 11 - 5 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -MDRP[min,rnd,black] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -546 1706 m 1,0,-1 - 693 1706 l 1,1,-1 - 693 -174 l 2,2,3 - 693 -369 693 -369 611.5 -491.5 c 128,-1,4 - 530 -614 530 -614 398 -614 c 0,5,6 - 339 -614 339 -614 300 -583.5 c 128,-1,7 - 261 -553 261 -553 261 -506 c 0,8,9 - 261 -467 261 -467 286 -440.5 c 128,-1,10 - 311 -414 311 -414 347 -414 c 0,11,12 - 380 -414 380 -414 406 -430 c 0,13,14 - 416 -434 416 -434 447 -475 c 0,15,16 - 478 -512 478 -512 494 -512 c 0,17,18 - 523 -512 523 -512 534.5 -486.5 c 128,-1,19 - 546 -461 546 -461 546 -334 c 2,20,-1 - 546 1706 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2500 -Encoding: 9472 9472 2131 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 3 - 5 - 0 - 4 - 1 - 0 -PUSHW_1 - 258 -PUSHB_3 - 89 - 1 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 1461 694 l 1,2,-1 - 1461 549 l 1,3,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2502 -Encoding: 9474 9474 2132 -Width: 1280 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 3 - 4 - 3 -PUSHW_1 - 262 -PUSHB_5 - 91 - 3 - 254 - 0 - 250 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -472 1864 m 1,0,-1 - 617 1864 l 1,1,-1 - 617 -621 l 1,2,-1 - 472 -621 l 1,3,-1 - 472 1864 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni250C -Encoding: 9484 9484 2133 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 0 - 6 - 0 -PUSHW_1 - 262 -PUSHB_7 - 91 - 2 - 7 - 5 - 254 - 0 - 3 -PUSHW_1 - 258 -PUSHB_3 - 89 - 0 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -653 694 m 1,0,-1 - 1461 694 l 1,1,-1 - 1461 549 l 1,2,-1 - 798 549 l 1,3,-1 - 798 -621 l 1,4,-1 - 653 -621 l 1,5,-1 - 653 694 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2510 -Encoding: 9488 9488 2134 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 5 - 6 - 5 -PUSHW_1 - 262 -PUSHB_7 - 91 - 0 - 6 - 4 - 254 - 2 - 5 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 798 694 l 1,2,-1 - 798 -621 l 1,3,-1 - 653 -621 l 1,4,-1 - 653 549 l 1,5,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2514 -Encoding: 9492 9492 2135 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 5 - 6 - 5 -PUSHW_1 - 262 -PUSHB_5 - 91 - 4 - 7 - 2 - 5 -PUSHW_1 - 258 -PUSHB_5 - 89 - 2 - 252 - 0 - 250 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -653 1864 m 1,0,-1 - 798 1864 l 1,1,-1 - 798 694 l 1,2,-1 - 1461 694 l 1,3,-1 - 1461 549 l 1,4,-1 - 653 549 l 1,5,-1 - 653 1864 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2518 -Encoding: 9496 9496 2136 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 5 - 2 - 6 - 2 -PUSHW_1 - 262 -PUSHB_7 - 91 - 0 - 6 - 3 - 250 - 2 - 5 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 653 694 l 1,2,-1 - 653 1864 l 1,3,-1 - 798 1864 l 1,4,-1 - 798 549 l 1,5,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni251C -Encoding: 9500 9500 2137 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 5 - 1 - 1 - 0 - 8 - 0 -PUSHW_1 - 262 -PUSHB_7 - 91 - 4 - 9 - 7 - 254 - 2 - 5 -PUSHW_1 - 258 -PUSHB_5 - 89 - 2 - 252 - 0 - 250 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -653 1864 m 1,0,-1 - 798 1864 l 1,1,-1 - 798 694 l 1,2,-1 - 1461 694 l 1,3,-1 - 1461 549 l 1,4,-1 - 798 549 l 1,5,-1 - 798 -621 l 1,6,-1 - 653 -621 l 1,7,-1 - 653 1864 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2524 -Encoding: 9508 9508 2138 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 7 - 4 - 2 - 8 - 2 -PUSHW_1 - 262 -NPUSHB - 9 - 91 - 0 - 8 - 6 - 254 - 3 - 250 - 2 - 7 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 653 694 l 1,2,-1 - 653 1864 l 1,3,-1 - 798 1864 l 1,4,-1 - 798 -621 l 1,5,-1 - 653 -621 l 1,6,-1 - 653 549 l 1,7,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni252C -Encoding: 9516 9516 2139 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 3 - 9 - 4 - 7 - 8 - 7 -PUSHW_1 - 262 -NPUSHB - 9 - 91 - 0 - 8 - 6 - 254 - 4 - 0 - 1 - 0 -PUSHW_1 - 258 -PUSHB_3 - 89 - 1 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 1461 694 l 1,2,-1 - 1461 549 l 1,3,-1 - 798 549 l 1,4,-1 - 798 -621 l 1,5,-1 - 653 -621 l 1,6,-1 - 653 549 l 1,7,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2534 -Encoding: 9524 9524 2140 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 7 - 9 - 5 - 2 - 8 - 2 -PUSHW_1 - 262 -NPUSHB - 9 - 91 - 0 - 8 - 3 - 250 - 5 - 1 - 1 - 0 -PUSHW_1 - 258 -PUSHB_3 - 89 - 1 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 653 694 l 1,2,-1 - 653 1864 l 1,3,-1 - 798 1864 l 1,4,-1 - 798 694 l 1,5,-1 - 1461 694 l 1,6,-1 - 1461 549 l 1,7,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni253C -Encoding: 9532 9532 2141 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 7 - 13 - 5 - 8 - 8 - 2 - 11 - 12 - 11 -PUSHW_1 - 262 -NPUSHB - 11 - 91 - 0 - 12 - 10 - 254 - 3 - 250 - 8 - 11 - 2 - 11 -PUSHW_1 - 258 -PUSHB_4 - 89 - 5 - 2 - 252 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 653 694 l 1,2,-1 - 653 1864 l 1,3,-1 - 798 1864 l 1,4,-1 - 798 694 l 1,5,-1 - 1461 694 l 1,6,-1 - 1461 549 l 1,7,-1 - 798 549 l 1,8,-1 - 798 -621 l 1,9,-1 - 653 -621 l 1,10,-1 - 653 549 l 1,11,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2550 -Encoding: 9552 9552 2142 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 3 - 7 - 7 - 9 - 0 - 4 - 4 - 8 - 5 - 4 -PUSHW_1 - 258 -PUSHB_5 - 89 - 5 - 253 - 1 - 0 -PUSHW_1 - 258 -PUSHB_3 - 89 - 1 - 251 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 729 m 1,0,-1 - -10 874 l 1,1,-1 - 1461 874 l 1,2,-1 - 1461 729 l 1,3,-1 - -10 729 l 1,0,-1 --10 369 m 1,4,-1 - -10 514 l 1,5,-1 - 1461 514 l 1,6,-1 - 1461 369 l 1,7,-1 - -10 369 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni2551 -Encoding: 9553 9553 2143 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 5 - 4 - 8 - 4 -PUSHW_1 - 263 -PUSHB_5 - 91 - 1 - 0 - 8 - 0 -PUSHW_1 - 260 -PUSHB_7 - 91 - 7 - 3 - 254 - 4 - 0 - 250 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -473 1864 m 1,0,-1 - 618 1864 l 1,1,-1 - 618 -621 l 1,2,-1 - 473 -621 l 1,3,-1 - 473 1864 l 1,0,-1 -833 1864 m 1,4,-1 - 978 1864 l 1,5,-1 - 978 -621 l 1,6,-1 - 833 -621 l 1,7,-1 - 833 1864 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni2552 -Encoding: 9554 9554 2144 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 7 - 3 - 3 - 0 - 10 - 0 -PUSHW_1 - 262 -NPUSHB - 9 - 91 - 2 - 6 - 6 - 11 - 9 - 254 - 4 - 7 -PUSHW_1 - 258 -PUSHB_5 - 89 - 4 - 253 - 0 - 3 -PUSHW_1 - 258 -PUSHB_3 - 89 - 0 - 251 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -653 874 m 1,0,-1 - 1461 874 l 1,1,-1 - 1461 729 l 1,2,-1 - 798 729 l 1,3,-1 - 798 514 l 1,4,-1 - 1461 514 l 1,5,-1 - 1461 369 l 1,6,-1 - 798 369 l 1,7,-1 - 798 -621 l 1,8,-1 - 653 -621 l 1,9,-1 - 653 874 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2553 -Encoding: 9555 9555 2145 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 6 - 9 - 10 - 9 -PUSHW_1 - 260 -PUSHB_5 - 91 - 2 - 5 - 10 - 5 -PUSHW_1 - 263 -PUSHB_7 - 91 - 1 - 11 - 2 - 6 - 9 - 6 -PUSHW_1 - 258 -PUSHB_6 - 89 - 9 - 252 - 4 - 8 - 254 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1461 694 m 1,0,-1 - 1461 549 l 1,1,-1 - 978 549 l 1,2,-1 - 978 -621 l 1,3,-1 - 833 -621 l 1,4,-1 - 833 549 l 1,5,-1 - 618 549 l 1,6,-1 - 618 -621 l 1,7,-1 - 473 -621 l 1,8,-1 - 473 694 l 1,9,-1 - 1461 694 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2554 -Encoding: 9556 9556 2146 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 9 - 6 - 12 - 6 -PUSHW_1 - 263 -PUSHB_5 - 91 - 3 - 0 - 12 - 0 -PUSHW_1 - 260 -PUSHB_7 - 91 - 2 - 8 - 8 - 13 - 6 - 9 -PUSHW_1 - 258 -PUSHB_8 - 89 - 6 - 253 - 11 - 5 - 254 - 0 - 3 -PUSHW_1 - 258 -PUSHB_3 - 89 - 0 - 251 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -473 874 m 1,0,-1 - 1461 874 l 1,1,-1 - 1461 729 l 1,2,-1 - 618 729 l 1,3,-1 - 618 -621 l 1,4,-1 - 473 -621 l 1,5,-1 - 473 874 l 1,0,-1 -833 514 m 1,6,-1 - 1461 514 l 1,7,-1 - 1461 369 l 1,8,-1 - 978 369 l 1,9,-1 - 978 -621 l 1,10,-1 - 833 -621 l 1,11,-1 - 833 514 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni2555 -Encoding: 9557 9557 2147 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 9 - 6 - 3 - 10 - 3 -PUSHW_1 - 262 -NPUSHB - 9 - 91 - 4 - 0 - 0 - 10 - 8 - 254 - 6 - 3 -PUSHW_1 - 258 -PUSHB_5 - 89 - 6 - 251 - 2 - 9 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 253 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 369 m 1,0,-1 - -10 514 l 1,1,-1 - 653 514 l 1,2,-1 - 653 729 l 1,3,-1 - -10 729 l 1,4,-1 - -10 874 l 1,5,-1 - 798 874 l 1,6,-1 - 798 -621 l 1,7,-1 - 653 -621 l 1,8,-1 - 653 369 l 1,9,-1 - -10 369 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2556 -Encoding: 9558 9558 2148 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 6 - 9 - 10 - 9 -PUSHW_1 - 260 -PUSHB_5 - 91 - 2 - 5 - 10 - 5 -PUSHW_1 - 263 -NPUSHB - 10 - 91 - 0 - 10 - 4 - 8 - 254 - 6 - 0 - 1 - 0 -PUSHW_1 - 258 -PUSHB_3 - 89 - 1 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 978 694 l 1,2,-1 - 978 -621 l 1,3,-1 - 833 -621 l 1,4,-1 - 833 549 l 1,5,-1 - 618 549 l 1,6,-1 - 618 -621 l 1,7,-1 - 473 -621 l 1,8,-1 - 473 549 l 1,9,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2557 -Encoding: 9559 9559 2149 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 11 - 8 - 12 - 8 -PUSHW_1 - 260 -PUSHB_5 - 91 - 0 - 3 - 12 - 3 -PUSHW_1 - 263 -PUSHB_7 - 91 - 4 - 9 - 9 - 12 - 10 - 9 -PUSHW_1 - 258 -PUSHB_8 - 89 - 10 - 253 - 2 - 7 - 254 - 5 - 4 -PUSHW_1 - 258 -PUSHB_3 - 89 - 5 - 251 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -978 874 m 1,0,-1 - 978 -621 l 1,1,-1 - 833 -621 l 1,2,-1 - 833 729 l 1,3,-1 - -10 729 l 1,4,-1 - -10 874 l 1,5,-1 - 978 874 l 1,0,-1 -618 -621 m 1,6,-1 - 473 -621 l 1,7,-1 - 473 369 l 1,8,-1 - -10 369 l 1,9,-1 - -10 514 l 1,10,-1 - 618 514 l 1,11,-1 - 618 -621 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni2558 -Encoding: 9560 9560 2150 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 2 - 6 - 6 - 9 - 10 - 9 -PUSHW_1 - 262 -PUSHB_7 - 91 - 4 - 8 - 8 - 11 - 6 - 9 -PUSHW_1 - 258 -PUSHB_5 - 89 - 6 - 253 - 2 - 5 -PUSHW_1 - 258 -PUSHB_5 - 89 - 2 - 251 - 0 - 250 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -653 1864 m 1,0,-1 - 798 1864 l 1,1,-1 - 798 874 l 1,2,-1 - 1461 874 l 1,3,-1 - 1461 729 l 1,4,-1 - 798 729 l 1,5,-1 - 798 514 l 1,6,-1 - 1461 514 l 1,7,-1 - 1461 369 l 1,8,-1 - 653 369 l 1,9,-1 - 653 1864 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2559 -Encoding: 9561 9561 2151 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 2 - 9 - 10 - 9 -PUSHW_1 - 263 -PUSHB_5 - 91 - 8 - 5 - 10 - 5 -PUSHW_1 - 260 -PUSHB_5 - 91 - 4 - 11 - 8 - 5 -PUSHW_1 - 258 -PUSHB_7 - 89 - 2 - 8 - 252 - 0 - 6 - 250 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -833 1864 m 1,0,-1 - 978 1864 l 1,1,-1 - 978 694 l 1,2,-1 - 1461 694 l 1,3,-1 - 1461 549 l 1,4,-1 - 473 549 l 1,5,-1 - 473 1864 l 1,6,-1 - 618 1864 l 1,7,-1 - 618 694 l 1,8,-1 - 833 694 l 1,9,-1 - 833 1864 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni255A -Encoding: 9562 9562 2152 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 8 - 11 - 12 - 11 -PUSHW_1 - 263 -PUSHB_5 - 91 - 2 - 5 - 12 - 5 -PUSHW_1 - 260 -PUSHB_7 - 91 - 10 - 4 - 4 - 13 - 8 - 11 -PUSHW_1 - 258 -PUSHB_5 - 89 - 8 - 251 - 2 - 5 -PUSHW_1 - 258 -PUSHB_6 - 89 - 2 - 253 - 6 - 0 - 250 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -473 1864 m 1,0,-1 - 618 1864 l 1,1,-1 - 618 514 l 1,2,-1 - 1461 514 l 1,3,-1 - 1461 369 l 1,4,-1 - 473 369 l 1,5,-1 - 473 1864 l 1,0,-1 -833 1864 m 1,6,-1 - 978 1864 l 1,7,-1 - 978 874 l 1,8,-1 - 1461 874 l 1,9,-1 - 1461 729 l 1,10,-1 - 833 729 l 1,11,-1 - 833 1864 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni255B -Encoding: 9563 9563 2153 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 9 - 6 - 2 - 10 - 2 -PUSHW_1 - 262 -NPUSHB - 9 - 91 - 4 - 0 - 0 - 10 - 7 - 250 - 6 - 3 -PUSHW_1 - 258 -PUSHB_5 - 89 - 6 - 251 - 2 - 9 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 253 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 369 m 1,0,-1 - -10 514 l 1,1,-1 - 653 514 l 1,2,-1 - 653 729 l 1,3,-1 - -10 729 l 1,4,-1 - -10 874 l 1,5,-1 - 653 874 l 1,6,-1 - 653 1864 l 1,7,-1 - 798 1864 l 1,8,-1 - 798 369 l 1,9,-1 - -10 369 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni255C -Encoding: 9564 9564 2154 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 0 - 7 - 10 - 7 -PUSHW_1 - 263 -PUSHB_5 - 91 - 6 - 3 - 10 - 3 -PUSHW_1 - 260 -NPUSHB - 10 - 91 - 1 - 10 - 8 - 4 - 250 - 6 - 2 - 2 - 1 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -978 549 m 1,0,-1 - -10 549 l 1,1,-1 - -10 694 l 1,2,-1 - 473 694 l 1,3,-1 - 473 1864 l 1,4,-1 - 618 1864 l 1,5,-1 - 618 694 l 1,6,-1 - 833 694 l 1,7,-1 - 833 1864 l 1,8,-1 - 978 1864 l 1,9,-1 - 978 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni255D -Encoding: 9565 9565 2155 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 8 - 11 - 12 - 11 -PUSHW_1 - 260 -PUSHB_5 - 91 - 0 - 3 - 12 - 3 -PUSHW_1 - 263 -PUSHB_7 - 91 - 9 - 1 - 1 - 12 - 10 - 9 -PUSHW_1 - 258 -PUSHB_8 - 89 - 10 - 251 - 4 - 6 - 250 - 2 - 1 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 253 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -978 369 m 1,0,-1 - -10 369 l 1,1,-1 - -10 514 l 1,2,-1 - 833 514 l 1,3,-1 - 833 1864 l 1,4,-1 - 978 1864 l 1,5,-1 - 978 369 l 1,0,-1 -473 1864 m 1,6,-1 - 618 1864 l 1,7,-1 - 618 729 l 1,8,-1 - -10 729 l 1,9,-1 - -10 874 l 1,10,-1 - 473 874 l 1,11,-1 - 473 1864 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni255E -Encoding: 9566 9566 2156 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 6 - 2 - 10 - 10 - 11 - 12 - 11 -PUSHW_1 - 262 -NPUSHB - 9 - 91 - 4 - 8 - 8 - 13 - 11 - 254 - 6 - 9 -PUSHW_1 - 258 -PUSHB_5 - 89 - 6 - 253 - 2 - 5 -PUSHW_1 - 258 -PUSHB_5 - 89 - 2 - 251 - 0 - 250 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -653 1864 m 1,0,-1 - 798 1864 l 1,1,-1 - 798 874 l 1,2,-1 - 1461 874 l 1,3,-1 - 1461 729 l 1,4,-1 - 798 729 l 1,5,-1 - 798 514 l 1,6,-1 - 1461 514 l 1,7,-1 - 1461 369 l 1,8,-1 - 798 369 l 1,9,-1 - 798 -621 l 1,10,-1 - 653 -621 l 1,11,-1 - 653 1864 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni255F -Encoding: 9567 9567 2157 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 10 - 11 - 12 - 11 -PUSHW_1 - 260 -PUSHB_7 - 91 - 2 - 6 - 6 - 7 - 12 - 7 -PUSHW_1 - 263 -NPUSHB - 11 - 91 - 4 - 13 - 7 - 11 - 254 - 0 - 8 - 250 - 2 - 5 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -833 1864 m 1,0,-1 - 978 1864 l 1,1,-1 - 978 694 l 1,2,-1 - 1461 694 l 1,3,-1 - 1461 549 l 1,4,-1 - 978 549 l 1,5,-1 - 978 -621 l 1,6,-1 - 833 -621 l 1,7,-1 - 833 1864 l 1,0,-1 -473 1864 m 1,8,-1 - 618 1864 l 1,9,-1 - 618 -621 l 1,10,-1 - 473 -621 l 1,11,-1 - 473 1864 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: uni2560 -Encoding: 9568 9568 2158 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 12 - 8 - 8 - 15 - 9 - 16 - 9 -PUSHW_1 - 263 -PUSHB_5 - 91 - 0 - 1 - 16 - 1 -PUSHW_1 - 260 -PUSHB_7 - 91 - 14 - 6 - 6 - 17 - 12 - 15 -PUSHW_1 - 258 -PUSHB_5 - 89 - 12 - 251 - 4 - 7 -PUSHW_1 - 258 -NPUSHB - 9 - 89 - 4 - 253 - 10 - 2 - 250 - 9 - 1 - 254 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -618 -621 m 1,0,-1 - 473 -621 l 1,1,-1 - 473 1864 l 1,2,-1 - 618 1864 l 1,3,-1 - 618 -621 l 1,0,-1 -833 514 m 1,4,-1 - 1461 514 l 1,5,-1 - 1461 369 l 1,6,-1 - 978 369 l 1,7,-1 - 978 -621 l 1,8,-1 - 833 -621 l 1,9,-1 - 833 514 l 1,4,-1 -833 1864 m 1,10,-1 - 978 1864 l 1,11,-1 - 978 874 l 1,12,-1 - 1461 874 l 1,13,-1 - 1461 729 l 1,14,-1 - 833 729 l 1,15,-1 - 833 1864 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni2561 -Encoding: 9569 9569 2159 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 9 - 6 - 2 - 10 - 12 - 10 -PUSHW_1 - 262 -NPUSHB - 11 - 91 - 4 - 0 - 0 - 12 - 10 - 254 - 7 - 250 - 6 - 3 -PUSHW_1 - 258 -PUSHB_5 - 89 - 6 - 251 - 2 - 11 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 253 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 369 m 1,0,-1 - -10 514 l 1,1,-1 - 653 514 l 1,2,-1 - 653 729 l 1,3,-1 - -10 729 l 1,4,-1 - -10 874 l 1,5,-1 - 653 874 l 1,6,-1 - 653 1864 l 1,7,-1 - 798 1864 l 1,8,-1 - 798 -621 l 1,9,-1 - 653 -621 l 1,10,-1 - 653 369 l 1,11,-1 - -10 369 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2562 -Encoding: 9570 9570 2160 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 10 - 11 - 12 - 11 -PUSHW_1 - 263 -PUSHB_6 - 91 - 5 - 2 - 6 - 12 - 6 -PUSHW_1 - 260 -NPUSHB - 11 - 91 - 0 - 12 - 11 - 6 - 254 - 8 - 3 - 250 - 2 - 7 -PUSHW_1 - 258 -PUSHB_3 - 89 - 2 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 473 694 l 1,2,-1 - 473 1864 l 1,3,-1 - 618 1864 l 1,4,-1 - 618 -621 l 1,5,-1 - 473 -621 l 1,6,-1 - 473 549 l 1,7,-1 - -10 549 l 1,0,-1 -833 1864 m 1,8,-1 - 978 1864 l 1,9,-1 - 978 -621 l 1,10,-1 - 833 -621 l 1,11,-1 - 833 1864 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: uni2563 -Encoding: 9571 9571 2161 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 6 - 10 - 10 - 9 - 11 - 16 - 11 -PUSHW_1 - 260 -PUSHB_5 - 91 - 2 - 3 - 16 - 3 -PUSHW_1 - 263 -PUSHB_7 - 91 - 7 - 13 - 13 - 16 - 15 - 12 -PUSHW_1 - 258 -PUSHB_8 - 89 - 15 - 253 - 3 - 11 - 254 - 9 - 6 -PUSHW_1 - 258 -PUSHB_6 - 89 - 9 - 251 - 0 - 4 - 250 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -833 1864 m 1,0,-1 - 978 1864 l 1,1,-1 - 978 -621 l 1,2,-1 - 833 -621 l 1,3,-1 - 833 1864 l 1,0,-1 -473 1864 m 1,4,-1 - 618 1864 l 1,5,-1 - 618 729 l 1,6,-1 - -10 729 l 1,7,-1 - -10 874 l 1,8,-1 - 473 874 l 1,9,-1 - 473 1864 l 1,4,-1 -618 -621 m 1,10,-1 - 473 -621 l 1,11,-1 - 473 369 l 1,12,-1 - -10 369 l 1,13,-1 - -10 514 l 1,14,-1 - 618 514 l 1,15,-1 - 618 -621 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni2564 -Encoding: 9572 9572 2162 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 11 - 3 - 3 - 13 - 4 - 7 - 12 - 7 -PUSHW_1 - 262 -PUSHB_7 - 91 - 8 - 0 - 0 - 12 - 9 - 8 -PUSHW_1 - 258 -NPUSHB - 9 - 89 - 9 - 251 - 6 - 254 - 4 - 0 - 1 - 0 -PUSHW_1 - 258 -PUSHB_3 - 89 - 1 - 253 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 369 m 1,0,-1 - -10 514 l 1,1,-1 - 1461 514 l 1,2,-1 - 1461 369 l 1,3,-1 - 798 369 l 1,4,-1 - 798 -621 l 1,5,-1 - 653 -621 l 1,6,-1 - 653 369 l 1,7,-1 - -10 369 l 1,0,-1 --10 729 m 1,8,-1 - -10 874 l 1,9,-1 - 1461 874 l 1,10,-1 - 1461 729 l 1,11,-1 - -10 729 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: uni2565 -Encoding: 9573 9573 2163 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 3 - 13 - 8 - 11 - 12 - 11 -PUSHW_1 - 260 -PUSHB_5 - 91 - 4 - 7 - 12 - 7 -PUSHW_1 - 263 -NPUSHB - 11 - 91 - 0 - 12 - 6 - 10 - 254 - 8 - 4 - 0 - 1 - 0 -PUSHW_1 - 258 -PUSHB_3 - 89 - 1 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 1461 694 l 1,2,-1 - 1461 549 l 1,3,-1 - 978 549 l 1,4,-1 - 978 -621 l 1,5,-1 - 833 -621 l 1,6,-1 - 833 549 l 1,7,-1 - 618 549 l 1,8,-1 - 618 -621 l 1,9,-1 - 473 -621 l 1,10,-1 - 473 549 l 1,11,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2566 -Encoding: 9574 9574 2164 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 9 - 6 - 16 - 6 -PUSHW_1 - 263 -NPUSHB - 9 - 91 - 14 - 3 - 3 - 16 - 5 - 2 - 16 - 2 -PUSHW_1 - 260 -PUSHB_7 - 91 - 13 - 8 - 8 - 17 - 15 - 14 -PUSHW_1 - 258 -PUSHB_7 - 89 - 15 - 251 - 9 - 3 - 4 - 3 -PUSHW_1 - 258 -PUSHB_7 - 89 - 6 - 4 - 253 - 11 - 1 - 254 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -618 -621 m 1,0,-1 - 473 -621 l 1,1,-1 - 473 369 l 1,2,-1 - -10 369 l 1,3,-1 - -10 514 l 1,4,-1 - 618 514 l 1,5,-1 - 618 -621 l 1,0,-1 -833 514 m 1,6,-1 - 1461 514 l 1,7,-1 - 1461 369 l 1,8,-1 - 978 369 l 1,9,-1 - 978 -621 l 1,10,-1 - 833 -621 l 1,11,-1 - 833 514 l 1,6,-1 -1461 874 m 1,12,-1 - 1461 729 l 1,13,-1 - -10 729 l 1,14,-1 - -10 874 l 1,15,-1 - 1461 874 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: uni2567 -Encoding: 9575 9575 2165 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 0 - 8 - 8 - 12 - 5 - 2 - 12 - 2 -PUSHW_1 - 262 -PUSHB_7 - 91 - 7 - 11 - 11 - 13 - 9 - 8 -PUSHW_1 - 258 -NPUSHB - 9 - 89 - 9 - 253 - 3 - 250 - 5 - 1 - 1 - 0 -PUSHW_1 - 258 -PUSHB_3 - 89 - 1 - 251 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 729 m 1,0,-1 - -10 874 l 1,1,-1 - 653 874 l 1,2,-1 - 653 1864 l 1,3,-1 - 798 1864 l 1,4,-1 - 798 874 l 1,5,-1 - 1461 874 l 1,6,-1 - 1461 729 l 1,7,-1 - -10 729 l 1,0,-1 --10 369 m 1,8,-1 - -10 514 l 1,9,-1 - 1461 514 l 1,10,-1 - 1461 369 l 1,11,-1 - -10 369 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: uni2568 -Encoding: 9576 9576 2166 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 11 - 13 - 9 - 6 - 12 - 6 -PUSHW_1 - 263 -PUSHB_5 - 91 - 5 - 2 - 12 - 2 -PUSHW_1 - 260 -NPUSHB - 11 - 91 - 0 - 12 - 7 - 3 - 250 - 9 - 5 - 1 - 1 - 0 -PUSHW_1 - 258 -PUSHB_3 - 89 - 1 - 252 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 549 m 1,0,-1 - -10 694 l 1,1,-1 - 473 694 l 1,2,-1 - 473 1864 l 1,3,-1 - 618 1864 l 1,4,-1 - 618 694 l 1,5,-1 - 833 694 l 1,6,-1 - 833 1864 l 1,7,-1 - 978 1864 l 1,8,-1 - 978 694 l 1,9,-1 - 1461 694 l 1,10,-1 - 1461 549 l 1,11,-1 - -10 549 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2569 -Encoding: 9577 9577 2167 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 9 - 12 - 12 - 16 - 8 - 11 - 16 - 11 -PUSHW_1 - 260 -PUSHB_5 - 91 - 2 - 5 - 16 - 5 -PUSHW_1 - 263 -PUSHB_7 - 91 - 4 - 15 - 15 - 17 - 13 - 12 -PUSHW_1 - 258 -PUSHB_7 - 89 - 13 - 253 - 5 - 9 - 10 - 9 -PUSHW_1 - 258 -PUSHB_7 - 89 - 2 - 10 - 251 - 0 - 6 - 250 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -833 1864 m 1,0,-1 - 978 1864 l 1,1,-1 - 978 874 l 1,2,-1 - 1461 874 l 1,3,-1 - 1461 729 l 1,4,-1 - 833 729 l 1,5,-1 - 833 1864 l 1,0,-1 -473 1864 m 1,6,-1 - 618 1864 l 1,7,-1 - 618 729 l 1,8,-1 - -10 729 l 1,9,-1 - -10 874 l 1,10,-1 - 473 874 l 1,11,-1 - 473 1864 l 1,6,-1 --10 369 m 1,12,-1 - -10 514 l 1,13,-1 - 1461 514 l 1,14,-1 - 1461 369 l 1,15,-1 - -10 369 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: uni256A -Encoding: 9578 9578 2168 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 11 - 15 - 15 - 21 - 13 - 9 - 16 - 16 - 6 - 2 - 19 - 20 - 19 -PUSHW_1 - 262 -NPUSHB - 13 - 91 - 4 - 0 - 0 - 20 - 18 - 254 - 7 - 250 - 12 - 4 - 5 - 4 -PUSHW_1 - 258 -PUSHB_8 - 89 - 9 - 5 - 251 - 16 - 0 - 1 - 0 -PUSHW_1 - 258 -PUSHB_4 - 89 - 13 - 1 - 253 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --10 369 m 1,0,-1 - -10 514 l 1,1,-1 - 653 514 l 1,2,-1 - 653 729 l 1,3,-1 - -10 729 l 1,4,-1 - -10 874 l 1,5,-1 - 653 874 l 1,6,-1 - 653 1864 l 1,7,-1 - 798 1864 l 1,8,-1 - 798 874 l 1,9,-1 - 1461 874 l 1,10,-1 - 1461 729 l 1,11,-1 - 798 729 l 1,12,-1 - 798 514 l 1,13,-1 - 1461 514 l 1,14,-1 - 1461 369 l 1,15,-1 - 798 369 l 1,16,-1 - 798 -621 l 1,17,-1 - 653 -621 l 1,18,-1 - 653 369 l 1,19,-1 - -10 369 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni256B -Encoding: 9579 9579 2169 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 4 - 21 - 18 - 9 - 9 - 15 - 12 - 20 - 12 -PUSHW_1 - 260 -PUSHB_8 - 91 - 2 - 5 - 5 - 19 - 8 - 20 - 8 -PUSHW_1 - 263 -NPUSHB - 11 - 91 - 13 - 20 - 0 - 16 - 250 - 9 - 5 - 13 - 14 - 13 -PUSHW_1 - 258 -PUSHB_8 - 89 - 18 - 2 - 14 - 252 - 7 - 11 - 254 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -833 1864 m 1,0,-1 - 978 1864 l 1,1,-1 - 978 694 l 1,2,-1 - 1461 694 l 1,3,-1 - 1461 549 l 1,4,-1 - 978 549 l 1,5,-1 - 978 -621 l 1,6,-1 - 833 -621 l 1,7,-1 - 833 549 l 1,8,-1 - 618 549 l 1,9,-1 - 618 -621 l 1,10,-1 - 473 -621 l 1,11,-1 - 473 549 l 1,12,-1 - -10 549 l 1,13,-1 - -10 694 l 1,14,-1 - 473 694 l 1,15,-1 - 473 1864 l 1,16,-1 - 618 1864 l 1,17,-1 - 618 694 l 1,18,-1 - 833 694 l 1,19,-1 - 833 1864 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni256C -Encoding: 9580 9580 2170 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 2 - 15 - 15 - 5 - 12 - 24 - 12 -PUSHW_1 - 263 -NPUSHB - 12 - 91 - 21 - 9 - 9 - 24 - 20 - 11 - 11 - 23 - 8 - 24 - 8 -PUSHW_1 - 260 -NPUSHB - 9 - 91 - 4 - 14 - 14 - 25 - 5 - 21 - 22 - 21 -PUSHW_1 - 258 -NPUSHB - 11 - 89 - 2 - 22 - 251 - 0 - 18 - 250 - 15 - 9 - 10 - 9 -PUSHW_1 - 258 -PUSHB_7 - 89 - 12 - 10 - 253 - 17 - 7 - 254 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -833 1864 m 1,0,-1 - 978 1864 l 1,1,-1 - 978 874 l 1,2,-1 - 1461 874 l 1,3,-1 - 1461 729 l 1,4,-1 - 833 729 l 1,5,-1 - 833 1864 l 1,0,-1 -618 -621 m 1,6,-1 - 473 -621 l 1,7,-1 - 473 369 l 1,8,-1 - -10 369 l 1,9,-1 - -10 514 l 1,10,-1 - 618 514 l 1,11,-1 - 618 -621 l 1,6,-1 -833 514 m 1,12,-1 - 1461 514 l 1,13,-1 - 1461 369 l 1,14,-1 - 978 369 l 1,15,-1 - 978 -621 l 1,16,-1 - 833 -621 l 1,17,-1 - 833 514 l 1,12,-1 -473 1864 m 1,18,-1 - 618 1864 l 1,19,-1 - 618 729 l 1,20,-1 - -10 729 l 1,21,-1 - -10 874 l 1,22,-1 - 473 874 l 1,23,-1 - 473 1864 l 1,18,-1 -EndSplineSet -EndChar - -StartChar: upblock -Encoding: 9600 9600 2171 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 5 - 1 - 4 - 2 - 250 - 1 -SVTCA[y-axis] -MDAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1451 621 m 1,0,-1 - 0 621 l 1,1,-1 - 0 1864 l 1,2,-1 - 1451 1864 l 1,3,-1 - 1451 621 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: dnblock -Encoding: 9604 9604 2172 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 5 - 1 - 4 - 2 - 1 - 254 -SVTCA[y-axis] -MIAP[rnd] -MDAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1451 -621 m 1,0,-1 - 0 -621 l 1,1,-1 - 0 621 l 1,2,-1 - 1451 621 l 1,3,-1 - 1451 -621 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: block -Encoding: 9608 9608 2173 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 0 - 5 - 1 - 4 - 2 - 250 - 1 - 254 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1451 -621 m 1,0,-1 - 0 -621 l 1,1,-1 - 0 1864 l 1,2,-1 - 1451 1864 l 1,3,-1 - 1451 -621 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: lfblock -Encoding: 9612 9612 2174 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 0 - 5 - 1 - 4 - 2 - 250 - 1 - 254 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -726 -621 m 1,0,-1 - 0 -621 l 1,1,-1 - 0 1864 l 1,2,-1 - 726 1864 l 1,3,-1 - 726 -621 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: rtblock -Encoding: 9616 9616 2175 -Width: 1451 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 4 - 0 - 5 - 2 - 250 - 1 - 254 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1451 -621 m 1,0,-1 - 725 -621 l 1,1,-1 - 725 1864 l 1,2,-1 - 1451 1864 l 1,3,-1 - 1451 -621 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: ltshade -Encoding: 9617 9617 2176 -Width: 1451 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -103 1314 m 1,0,-1 - 207 1314 l 1,1,-1 - 207 1216 l 1,2,-1 - 103 1216 l 1,3,-1 - 103 1314 l 1,0,-1 -517 1314 m 1,4,-1 - 621 1314 l 1,5,-1 - 621 1216 l 1,6,-1 - 517 1216 l 1,7,-1 - 517 1314 l 1,4,-1 -933 1314 m 1,8,-1 - 1036 1314 l 1,9,-1 - 1036 1216 l 1,10,-1 - 933 1216 l 1,11,-1 - 933 1314 l 1,8,-1 -310 1119 m 1,12,-1 - 414 1119 l 1,13,-1 - 414 1023 l 1,14,-1 - 310 1023 l 1,15,-1 - 310 1119 l 1,12,-1 -725 1119 m 1,16,-1 - 829 1119 l 1,17,-1 - 829 1023 l 1,18,-1 - 725 1023 l 1,19,-1 - 725 1119 l 1,16,-1 -1140 1119 m 1,20,-1 - 1244 1119 l 1,21,-1 - 1244 1023 l 1,22,-1 - 1140 1023 l 1,23,-1 - 1140 1119 l 1,20,-1 -933 927 m 1,24,-1 - 1036 927 l 1,25,-1 - 1036 831 l 1,26,-1 - 933 831 l 1,27,-1 - 933 927 l 1,24,-1 -517 927 m 1,28,-1 - 621 927 l 1,29,-1 - 621 831 l 1,30,-1 - 517 831 l 1,31,-1 - 517 927 l 1,28,-1 -103 927 m 1,32,-1 - 207 927 l 1,33,-1 - 207 831 l 1,34,-1 - 103 831 l 1,35,-1 - 103 927 l 1,32,-1 -1140 732 m 1,36,-1 - 1244 732 l 1,37,-1 - 1244 636 l 1,38,-1 - 1140 636 l 1,39,-1 - 1140 732 l 1,36,-1 -725 732 m 1,40,-1 - 829 732 l 1,41,-1 - 829 636 l 1,42,-1 - 725 636 l 1,43,-1 - 725 732 l 1,40,-1 -310 732 m 1,44,-1 - 414 732 l 1,45,-1 - 414 636 l 1,46,-1 - 310 636 l 1,47,-1 - 310 732 l 1,44,-1 -103 540 m 1,48,-1 - 207 540 l 1,49,-1 - 207 444 l 1,50,-1 - 103 444 l 1,51,-1 - 103 540 l 1,48,-1 -517 540 m 1,52,-1 - 621 540 l 1,53,-1 - 621 444 l 1,54,-1 - 517 444 l 1,55,-1 - 517 540 l 1,52,-1 -933 540 m 1,56,-1 - 1036 540 l 1,57,-1 - 1036 444 l 1,58,-1 - 933 444 l 1,59,-1 - 933 540 l 1,56,-1 -1140 345 m 1,60,-1 - 1244 345 l 1,61,-1 - 1244 249 l 1,62,-1 - 1140 249 l 1,63,-1 - 1140 345 l 1,60,-1 -725 345 m 1,64,-1 - 829 345 l 1,65,-1 - 829 249 l 1,66,-1 - 725 249 l 1,67,-1 - 725 345 l 1,64,-1 -310 345 m 1,68,-1 - 414 345 l 1,69,-1 - 414 249 l 1,70,-1 - 310 249 l 1,71,-1 - 310 345 l 1,68,-1 -103 153 m 1,72,-1 - 207 153 l 1,73,-1 - 207 56 l 1,74,-1 - 103 56 l 1,75,-1 - 103 153 l 1,72,-1 -517 153 m 1,76,-1 - 621 153 l 1,77,-1 - 621 56 l 1,78,-1 - 517 56 l 1,79,-1 - 517 153 l 1,76,-1 -933 153 m 1,80,-1 - 1036 153 l 1,81,-1 - 1036 56 l 1,82,-1 - 933 56 l 1,83,-1 - 933 153 l 1,80,-1 -310 -42 m 1,84,-1 - 414 -42 l 1,85,-1 - 414 -136 l 1,86,-1 - 310 -136 l 1,87,-1 - 310 -42 l 1,84,-1 -725 -42 m 1,88,-1 - 829 -42 l 1,89,-1 - 829 -136 l 1,90,-1 - 725 -136 l 1,91,-1 - 725 -42 l 1,88,-1 -1140 -42 m 1,92,-1 - 1244 -42 l 1,93,-1 - 1244 -136 l 1,94,-1 - 1140 -136 l 1,95,-1 - 1140 -42 l 1,92,-1 -933 -234 m 1,96,-1 - 1036 -234 l 1,97,-1 - 1036 -331 l 1,98,-1 - 933 -331 l 1,99,-1 - 933 -234 l 1,96,-1 -517 -234 m 1,100,-1 - 621 -234 l 1,101,-1 - 621 -331 l 1,102,-1 - 517 -331 l 1,103,-1 - 517 -234 l 1,100,-1 -103 -234 m 1,104,-1 - 207 -234 l 1,105,-1 - 207 -331 l 1,106,-1 - 103 -331 l 1,107,-1 - 103 -234 l 1,104,-1 -310 -427 m 1,108,-1 - 414 -427 l 1,109,-1 - 414 -523 l 1,110,-1 - 310 -523 l 1,111,-1 - 310 -427 l 1,108,-1 -725 -427 m 1,112,-1 - 829 -427 l 1,113,-1 - 829 -523 l 1,114,-1 - 725 -523 l 1,115,-1 - 725 -427 l 1,112,-1 -1140 -427 m 1,116,-1 - 1244 -427 l 1,117,-1 - 1244 -523 l 1,118,-1 - 1140 -523 l 1,119,-1 - 1140 -427 l 1,116,-1 -310 1506 m 1,120,-1 - 414 1506 l 1,121,-1 - 414 1408 l 1,122,-1 - 310 1408 l 1,123,-1 - 310 1506 l 1,120,-1 -725 1506 m 1,124,-1 - 829 1506 l 1,125,-1 - 829 1408 l 1,126,-1 - 725 1408 l 1,127,-1 - 725 1506 l 1,124,-1 -1140 1506 m 1,128,-1 - 1244 1506 l 1,129,-1 - 1244 1408 l 1,130,-1 - 1140 1408 l 1,131,-1 - 1140 1506 l 1,128,-1 -103 1699 m 1,132,-1 - 207 1699 l 1,133,-1 - 207 1603 l 1,134,-1 - 103 1603 l 1,135,-1 - 103 1699 l 1,132,-1 -517 1699 m 1,136,-1 - 621 1699 l 1,137,-1 - 621 1603 l 1,138,-1 - 517 1603 l 1,139,-1 - 517 1699 l 1,136,-1 -933 1699 m 1,140,-1 - 1036 1699 l 1,141,-1 - 1036 1603 l 1,142,-1 - 933 1603 l 1,143,-1 - 933 1699 l 1,140,-1 -1347 1314 m 1,144,-1 - 1451 1314 l 1,145,-1 - 1451 1216 l 1,146,-1 - 1347 1216 l 1,147,-1 - 1347 1314 l 1,144,-1 -1347 927 m 1,148,-1 - 1451 927 l 1,149,-1 - 1451 831 l 1,150,-1 - 1347 831 l 1,151,-1 - 1347 927 l 1,148,-1 -1347 540 m 1,152,-1 - 1451 540 l 1,153,-1 - 1451 444 l 1,154,-1 - 1347 444 l 1,155,-1 - 1347 540 l 1,152,-1 -1347 153 m 1,156,-1 - 1451 153 l 1,157,-1 - 1451 56 l 1,158,-1 - 1347 56 l 1,159,-1 - 1347 153 l 1,156,-1 -1347 -234 m 1,160,-1 - 1451 -234 l 1,161,-1 - 1451 -331 l 1,162,-1 - 1347 -331 l 1,163,-1 - 1347 -234 l 1,160,-1 -1347 1699 m 1,164,-1 - 1451 1699 l 1,165,-1 - 1451 1603 l 1,166,-1 - 1347 1603 l 1,167,-1 - 1347 1699 l 1,164,-1 -EndSplineSet -EndChar - -StartChar: shade -Encoding: 9618 9618 2177 -Width: 1451 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -103 1314 m 1,0,-1 - 207 1314 l 1,1,-1 - 207 1216 l 1,2,-1 - 103 1216 l 1,3,-1 - 103 1314 l 1,0,-1 -310 1314 m 1,4,-1 - 414 1314 l 1,5,-1 - 414 1216 l 1,6,-1 - 310 1216 l 1,7,-1 - 310 1314 l 1,4,-1 -517 1314 m 1,8,-1 - 621 1314 l 1,9,-1 - 621 1216 l 1,10,-1 - 517 1216 l 1,11,-1 - 517 1314 l 1,8,-1 -725 1314 m 1,12,-1 - 829 1314 l 1,13,-1 - 829 1216 l 1,14,-1 - 725 1216 l 1,15,-1 - 725 1314 l 1,12,-1 -933 1314 m 1,16,-1 - 1037 1314 l 1,17,-1 - 1037 1216 l 1,18,-1 - 933 1216 l 1,19,-1 - 933 1314 l 1,16,-1 -1140 1314 m 1,20,-1 - 1244 1314 l 1,21,-1 - 1244 1216 l 1,22,-1 - 1140 1216 l 1,23,-1 - 1140 1314 l 1,20,-1 -0 1119 m 1,24,-1 - 103 1119 l 1,25,-1 - 103 1023 l 1,26,-1 - 0 1023 l 1,27,-1 - 0 1119 l 1,24,-1 -207 1119 m 1,28,-1 - 310 1119 l 1,29,-1 - 310 1023 l 1,30,-1 - 207 1023 l 1,31,-1 - 207 1119 l 1,28,-1 -414 1119 m 1,32,-1 - 517 1119 l 1,33,-1 - 517 1023 l 1,34,-1 - 414 1023 l 1,35,-1 - 414 1119 l 1,32,-1 -621 1119 m 1,36,-1 - 725 1119 l 1,37,-1 - 725 1023 l 1,38,-1 - 621 1023 l 1,39,-1 - 621 1119 l 1,36,-1 -829 1119 m 1,40,-1 - 933 1119 l 1,41,-1 - 933 1023 l 1,42,-1 - 829 1023 l 1,43,-1 - 829 1119 l 1,40,-1 -1037 1119 m 1,44,-1 - 1140 1119 l 1,45,-1 - 1140 1023 l 1,46,-1 - 1037 1023 l 1,47,-1 - 1037 1119 l 1,44,-1 -103 927 m 1,48,-1 - 207 927 l 1,49,-1 - 207 831 l 1,50,-1 - 103 831 l 1,51,-1 - 103 927 l 1,48,-1 -310 927 m 1,52,-1 - 414 927 l 1,53,-1 - 414 831 l 1,54,-1 - 310 831 l 1,55,-1 - 310 927 l 1,52,-1 -517 927 m 1,56,-1 - 621 927 l 1,57,-1 - 621 831 l 1,58,-1 - 517 831 l 1,59,-1 - 517 927 l 1,56,-1 -725 927 m 1,60,-1 - 829 927 l 1,61,-1 - 829 831 l 1,62,-1 - 725 831 l 1,63,-1 - 725 927 l 1,60,-1 -933 927 m 1,64,-1 - 1037 927 l 1,65,-1 - 1037 831 l 1,66,-1 - 933 831 l 1,67,-1 - 933 927 l 1,64,-1 -1140 927 m 1,68,-1 - 1244 927 l 1,69,-1 - 1244 831 l 1,70,-1 - 1140 831 l 1,71,-1 - 1140 927 l 1,68,-1 -0 732 m 1,72,-1 - 103 732 l 1,73,-1 - 103 636 l 1,74,-1 - 0 636 l 1,75,-1 - 0 732 l 1,72,-1 -207 732 m 1,76,-1 - 310 732 l 1,77,-1 - 310 636 l 1,78,-1 - 207 636 l 1,79,-1 - 207 732 l 1,76,-1 -414 732 m 1,80,-1 - 517 732 l 1,81,-1 - 517 636 l 1,82,-1 - 414 636 l 1,83,-1 - 414 732 l 1,80,-1 -621 732 m 1,84,-1 - 725 732 l 1,85,-1 - 725 636 l 1,86,-1 - 621 636 l 1,87,-1 - 621 732 l 1,84,-1 -829 732 m 1,88,-1 - 933 732 l 1,89,-1 - 933 636 l 1,90,-1 - 829 636 l 1,91,-1 - 829 732 l 1,88,-1 -1037 732 m 1,92,-1 - 1140 732 l 1,93,-1 - 1140 636 l 1,94,-1 - 1037 636 l 1,95,-1 - 1037 732 l 1,92,-1 -103 540 m 1,96,-1 - 207 540 l 1,97,-1 - 207 444 l 1,98,-1 - 103 444 l 1,99,-1 - 103 540 l 1,96,-1 -310 540 m 1,100,-1 - 414 540 l 1,101,-1 - 414 444 l 1,102,-1 - 310 444 l 1,103,-1 - 310 540 l 1,100,-1 -517 540 m 1,104,-1 - 621 540 l 1,105,-1 - 621 444 l 1,106,-1 - 517 444 l 1,107,-1 - 517 540 l 1,104,-1 -725 540 m 1,108,-1 - 829 540 l 1,109,-1 - 829 444 l 1,110,-1 - 725 444 l 1,111,-1 - 725 540 l 1,108,-1 -933 540 m 1,112,-1 - 1037 540 l 1,113,-1 - 1037 444 l 1,114,-1 - 933 444 l 1,115,-1 - 933 540 l 1,112,-1 -1140 540 m 1,116,-1 - 1244 540 l 1,117,-1 - 1244 444 l 1,118,-1 - 1140 444 l 1,119,-1 - 1140 540 l 1,116,-1 -0 345 m 1,120,-1 - 103 345 l 1,121,-1 - 103 249 l 1,122,-1 - 0 249 l 1,123,-1 - 0 345 l 1,120,-1 -414 345 m 1,124,-1 - 517 345 l 1,125,-1 - 517 249 l 1,126,-1 - 414 249 l 1,127,-1 - 414 345 l 1,124,-1 -621 345 m 1,128,-1 - 725 345 l 1,129,-1 - 725 249 l 1,130,-1 - 621 249 l 1,131,-1 - 621 345 l 1,128,-1 -829 345 m 1,132,-1 - 933 345 l 1,133,-1 - 933 249 l 1,134,-1 - 829 249 l 1,135,-1 - 829 345 l 1,132,-1 -1037 345 m 1,136,-1 - 1140 345 l 1,137,-1 - 1140 249 l 1,138,-1 - 1037 249 l 1,139,-1 - 1037 345 l 1,136,-1 -207 345 m 1,140,-1 - 310 345 l 1,141,-1 - 310 249 l 1,142,-1 - 207 249 l 1,143,-1 - 207 345 l 1,140,-1 -1140 153 m 1,144,-1 - 1244 153 l 1,145,-1 - 1244 56 l 1,146,-1 - 1140 56 l 1,147,-1 - 1140 153 l 1,144,-1 -933 153 m 1,148,-1 - 1037 153 l 1,149,-1 - 1037 56 l 1,150,-1 - 933 56 l 1,151,-1 - 933 153 l 1,148,-1 -725 153 m 1,152,-1 - 829 153 l 1,153,-1 - 829 56 l 1,154,-1 - 725 56 l 1,155,-1 - 725 153 l 1,152,-1 -517 153 m 1,156,-1 - 621 153 l 1,157,-1 - 621 56 l 1,158,-1 - 517 56 l 1,159,-1 - 517 153 l 1,156,-1 -310 153 m 1,160,-1 - 414 153 l 1,161,-1 - 414 56 l 1,162,-1 - 310 56 l 1,163,-1 - 310 153 l 1,160,-1 -103 153 m 1,164,-1 - 207 153 l 1,165,-1 - 207 56 l 1,166,-1 - 103 56 l 1,167,-1 - 103 153 l 1,164,-1 -0 -42 m 1,168,-1 - 103 -42 l 1,169,-1 - 103 -136 l 1,170,-1 - 0 -136 l 1,171,-1 - 0 -42 l 1,168,-1 -207 -42 m 1,172,-1 - 310 -42 l 1,173,-1 - 310 -136 l 1,174,-1 - 207 -136 l 1,175,-1 - 207 -42 l 1,172,-1 -414 -42 m 1,176,-1 - 517 -42 l 1,177,-1 - 517 -136 l 1,178,-1 - 414 -136 l 1,179,-1 - 414 -42 l 1,176,-1 -621 -42 m 1,180,-1 - 725 -42 l 1,181,-1 - 725 -136 l 1,182,-1 - 621 -136 l 1,183,-1 - 621 -42 l 1,180,-1 -829 -42 m 1,184,-1 - 933 -42 l 1,185,-1 - 933 -136 l 1,186,-1 - 829 -136 l 1,187,-1 - 829 -42 l 1,184,-1 -1037 -42 m 1,188,-1 - 1140 -42 l 1,189,-1 - 1140 -136 l 1,190,-1 - 1037 -136 l 1,191,-1 - 1037 -42 l 1,188,-1 -1140 -234 m 1,192,-1 - 1244 -234 l 1,193,-1 - 1244 -331 l 1,194,-1 - 1140 -331 l 1,195,-1 - 1140 -234 l 1,192,-1 -933 -234 m 1,196,-1 - 1037 -234 l 1,197,-1 - 1037 -331 l 1,198,-1 - 933 -331 l 1,199,-1 - 933 -234 l 1,196,-1 -725 -234 m 1,200,-1 - 829 -234 l 1,201,-1 - 829 -331 l 1,202,-1 - 725 -331 l 1,203,-1 - 725 -234 l 1,200,-1 -517 -234 m 1,204,-1 - 621 -234 l 1,205,-1 - 621 -331 l 1,206,-1 - 517 -331 l 1,207,-1 - 517 -234 l 1,204,-1 -310 -234 m 1,208,-1 - 414 -234 l 1,209,-1 - 414 -331 l 1,210,-1 - 310 -331 l 1,211,-1 - 310 -234 l 1,208,-1 -103 -234 m 1,212,-1 - 207 -234 l 1,213,-1 - 207 -331 l 1,214,-1 - 103 -331 l 1,215,-1 - 103 -234 l 1,212,-1 -0 -427 m 1,216,-1 - 103 -427 l 1,217,-1 - 103 -523 l 1,218,-1 - 0 -523 l 1,219,-1 - 0 -427 l 1,216,-1 -207 -427 m 1,220,-1 - 310 -427 l 1,221,-1 - 310 -523 l 1,222,-1 - 207 -523 l 1,223,-1 - 207 -427 l 1,220,-1 -414 -427 m 1,224,-1 - 517 -427 l 1,225,-1 - 517 -523 l 1,226,-1 - 414 -523 l 1,227,-1 - 414 -427 l 1,224,-1 -621 -427 m 1,228,-1 - 725 -427 l 1,229,-1 - 725 -523 l 1,230,-1 - 621 -523 l 1,231,-1 - 621 -427 l 1,228,-1 -829 -427 m 1,232,-1 - 933 -427 l 1,233,-1 - 933 -523 l 1,234,-1 - 829 -523 l 1,235,-1 - 829 -427 l 1,232,-1 -1037 -427 m 1,236,-1 - 1140 -427 l 1,237,-1 - 1140 -523 l 1,238,-1 - 1037 -523 l 1,239,-1 - 1037 -427 l 1,236,-1 -0 1506 m 1,240,-1 - 103 1506 l 1,241,-1 - 103 1408 l 1,242,-1 - 0 1408 l 1,243,-1 - 0 1506 l 1,240,-1 -207 1506 m 1,244,-1 - 310 1506 l 1,245,-1 - 310 1408 l 1,246,-1 - 207 1408 l 1,247,-1 - 207 1506 l 1,244,-1 -414 1506 m 1,248,-1 - 517 1506 l 1,249,-1 - 517 1408 l 1,250,-1 - 414 1408 l 1,251,-1 - 414 1506 l 1,248,-1 -621 1506 m 1,252,-1 - 725 1506 l 1,253,-1 - 725 1408 l 1,254,-1 - 621 1408 l 1,255,-1 - 621 1506 l 1,252,-1 -829 1506 m 1,256,-1 - 933 1506 l 1,257,-1 - 933 1408 l 1,258,-1 - 829 1408 l 1,259,-1 - 829 1506 l 1,256,-1 -1037 1506 m 1,260,-1 - 1140 1506 l 1,261,-1 - 1140 1408 l 1,262,-1 - 1037 1408 l 1,263,-1 - 1037 1506 l 1,260,-1 -103 1699 m 1,264,-1 - 207 1699 l 1,265,-1 - 207 1603 l 1,266,-1 - 103 1603 l 1,267,-1 - 103 1699 l 1,264,-1 -310 1699 m 1,268,-1 - 414 1699 l 1,269,-1 - 414 1603 l 1,270,-1 - 310 1603 l 1,271,-1 - 310 1699 l 1,268,-1 -517 1699 m 1,272,-1 - 621 1699 l 1,273,-1 - 621 1603 l 1,274,-1 - 517 1603 l 1,275,-1 - 517 1699 l 1,272,-1 -725 1699 m 1,276,-1 - 829 1699 l 1,277,-1 - 829 1603 l 1,278,-1 - 725 1603 l 1,279,-1 - 725 1699 l 1,276,-1 -933 1699 m 1,280,-1 - 1037 1699 l 1,281,-1 - 1037 1603 l 1,282,-1 - 933 1603 l 1,283,-1 - 933 1699 l 1,280,-1 -1140 1699 m 1,284,-1 - 1244 1699 l 1,285,-1 - 1244 1603 l 1,286,-1 - 1140 1603 l 1,287,-1 - 1140 1699 l 1,284,-1 -1347 1314 m 1,288,-1 - 1451 1314 l 1,289,-1 - 1451 1216 l 1,290,-1 - 1347 1216 l 1,291,-1 - 1347 1314 l 1,288,-1 -1244 1119 m 1,292,-1 - 1347 1119 l 1,293,-1 - 1347 1023 l 1,294,-1 - 1244 1023 l 1,295,-1 - 1244 1119 l 1,292,-1 -1347 927 m 1,296,-1 - 1451 927 l 1,297,-1 - 1451 831 l 1,298,-1 - 1347 831 l 1,299,-1 - 1347 927 l 1,296,-1 -1244 732 m 1,300,-1 - 1347 732 l 1,301,-1 - 1347 636 l 1,302,-1 - 1244 636 l 1,303,-1 - 1244 732 l 1,300,-1 -1347 540 m 1,304,-1 - 1451 540 l 1,305,-1 - 1451 444 l 1,306,-1 - 1347 444 l 1,307,-1 - 1347 540 l 1,304,-1 -1244 345 m 1,308,-1 - 1347 345 l 1,309,-1 - 1347 249 l 1,310,-1 - 1244 249 l 1,311,-1 - 1244 345 l 1,308,-1 -1347 153 m 1,312,-1 - 1451 153 l 1,313,-1 - 1451 56 l 1,314,-1 - 1347 56 l 1,315,-1 - 1347 153 l 1,312,-1 -1244 -42 m 1,316,-1 - 1347 -42 l 1,317,-1 - 1347 -136 l 1,318,-1 - 1244 -136 l 1,319,-1 - 1244 -42 l 1,316,-1 -1347 -234 m 1,320,-1 - 1451 -234 l 1,321,-1 - 1451 -331 l 1,322,-1 - 1347 -331 l 1,323,-1 - 1347 -234 l 1,320,-1 -1244 -427 m 1,324,-1 - 1347 -427 l 1,325,-1 - 1347 -523 l 1,326,-1 - 1244 -523 l 1,327,-1 - 1244 -427 l 1,324,-1 -1244 1506 m 1,328,-1 - 1347 1506 l 1,329,-1 - 1347 1408 l 1,330,-1 - 1244 1408 l 1,331,-1 - 1244 1506 l 1,328,-1 -1347 1699 m 1,332,-1 - 1451 1699 l 1,333,-1 - 1451 1603 l 1,334,-1 - 1347 1603 l 1,335,-1 - 1347 1699 l 1,332,-1 -EndSplineSet -EndChar - -StartChar: dkshade -Encoding: 9619 9619 2178 -Width: 1493 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -1493 -621 m 1,0,-1 - 0 -621 l 1,1,-1 - 0 -331 l 1,2,-1 - 106 -331 l 1,3,-1 - 106 -234 l 1,4,-1 - 0 -234 l 1,5,-1 - 0 56 l 1,6,-1 - 106 56 l 1,7,-1 - 106 153 l 1,8,-1 - 0 153 l 1,9,-1 - 0 444 l 1,10,-1 - 106 444 l 1,11,-1 - 106 540 l 1,12,-1 - 0 540 l 1,13,-1 - 0 829 l 1,14,-1 - 106 829 l 1,15,-1 - 106 927 l 1,16,-1 - 0 927 l 1,17,-1 - 0 1216 l 1,18,-1 - 106 1216 l 1,19,-1 - 106 1314 l 1,20,-1 - 0 1314 l 1,21,-1 - 0 1603 l 1,22,-1 - 106 1603 l 1,23,-1 - 106 1699 l 1,24,-1 - 213 1699 l 1,25,-1 - 213 1603 l 1,26,-1 - 319 1603 l 1,27,-1 - 319 1699 l 1,28,-1 - 426 1699 l 1,29,-1 - 426 1603 l 1,30,-1 - 532 1603 l 1,31,-1 - 532 1699 l 1,32,-1 - 639 1699 l 1,33,-1 - 639 1603 l 1,34,-1 - 746 1603 l 1,35,-1 - 746 1699 l 1,36,-1 - 853 1699 l 1,37,-1 - 853 1603 l 1,38,-1 - 960 1603 l 1,39,-1 - 960 1699 l 1,40,-1 - 1067 1699 l 1,41,-1 - 1067 1603 l 1,42,-1 - 1173 1603 l 1,43,-1 - 1173 1699 l 1,44,-1 - 1280 1699 l 1,45,-1 - 1280 1603 l 1,46,-1 - 1386 1603 l 1,47,-1 - 1386 1699 l 1,48,-1 - 1493 1699 l 1,49,-1 - 1493 1506 l 1,50,-1 - 1386 1506 l 1,51,-1 - 1386 1408 l 1,52,-1 - 1493 1408 l 1,53,-1 - 1493 1119 l 1,54,-1 - 1386 1119 l 1,55,-1 - 1386 1023 l 1,56,-1 - 1493 1023 l 1,57,-1 - 1493 732 l 1,58,-1 - 1386 732 l 1,59,-1 - 1386 636 l 1,60,-1 - 1493 636 l 1,61,-1 - 1493 345 l 1,62,-1 - 1386 345 l 1,63,-1 - 1386 249 l 1,64,-1 - 1493 249 l 1,65,-1 - 1493 -42 l 1,66,-1 - 1386 -42 l 1,67,-1 - 1386 -136 l 1,68,-1 - 1493 -136 l 1,69,-1 - 1493 -427 l 1,70,-1 - 1386 -427 l 1,71,-1 - 1386 -523 l 1,72,-1 - 1493 -523 l 1,73,-1 - 1493 -621 l 1,0,-1 -106 1119 m 1,74,-1 - 106 1023 l 1,75,-1 - 213 1023 l 1,76,-1 - 213 1119 l 1,77,-1 - 106 1119 l 1,74,-1 -319 1119 m 1,78,-1 - 319 1023 l 1,79,-1 - 426 1023 l 1,80,-1 - 426 1119 l 1,81,-1 - 319 1119 l 1,78,-1 -532 1119 m 1,82,-1 - 532 1023 l 1,83,-1 - 639 1023 l 1,84,-1 - 639 1119 l 1,85,-1 - 532 1119 l 1,82,-1 -746 1119 m 1,86,-1 - 746 1023 l 1,87,-1 - 853 1023 l 1,88,-1 - 853 1119 l 1,89,-1 - 746 1119 l 1,86,-1 -960 927 m 1,90,-1 - 853 927 l 1,91,-1 - 853 829 l 1,92,-1 - 960 829 l 1,93,-1 - 960 927 l 1,90,-1 -746 927 m 1,94,-1 - 639 927 l 1,95,-1 - 639 829 l 1,96,-1 - 746 829 l 1,97,-1 - 746 927 l 1,94,-1 -532 927 m 1,98,-1 - 426 927 l 1,99,-1 - 426 829 l 1,100,-1 - 532 829 l 1,101,-1 - 532 927 l 1,98,-1 -319 927 m 1,102,-1 - 213 927 l 1,103,-1 - 213 829 l 1,104,-1 - 319 829 l 1,105,-1 - 319 927 l 1,102,-1 -106 732 m 1,106,-1 - 106 636 l 1,107,-1 - 213 636 l 1,108,-1 - 213 732 l 1,109,-1 - 106 732 l 1,106,-1 -319 732 m 1,110,-1 - 319 636 l 1,111,-1 - 426 636 l 1,112,-1 - 426 732 l 1,113,-1 - 319 732 l 1,110,-1 -532 732 m 1,114,-1 - 532 636 l 1,115,-1 - 639 636 l 1,116,-1 - 639 732 l 1,117,-1 - 532 732 l 1,114,-1 -746 732 m 1,118,-1 - 746 636 l 1,119,-1 - 853 636 l 1,120,-1 - 853 732 l 1,121,-1 - 746 732 l 1,118,-1 -319 540 m 1,122,-1 - 213 540 l 1,123,-1 - 213 444 l 1,124,-1 - 319 444 l 1,125,-1 - 319 540 l 1,122,-1 -426 540 m 1,126,-1 - 426 444 l 1,127,-1 - 532 444 l 1,128,-1 - 532 540 l 1,129,-1 - 426 540 l 1,126,-1 -639 540 m 1,130,-1 - 639 444 l 1,131,-1 - 746 444 l 1,132,-1 - 746 540 l 1,133,-1 - 639 540 l 1,130,-1 -853 540 m 1,134,-1 - 853 444 l 1,135,-1 - 960 444 l 1,136,-1 - 960 540 l 1,137,-1 - 853 540 l 1,134,-1 -106 345 m 1,138,-1 - 106 249 l 1,139,-1 - 213 249 l 1,140,-1 - 213 345 l 1,141,-1 - 106 345 l 1,138,-1 -532 345 m 1,142,-1 - 532 249 l 1,143,-1 - 639 249 l 1,144,-1 - 639 345 l 1,145,-1 - 532 345 l 1,142,-1 -426 249 m 1,146,-1 - 426 345 l 1,147,-1 - 319 345 l 1,148,-1 - 319 249 l 1,149,-1 - 426 249 l 1,146,-1 -746 345 m 1,150,-1 - 746 249 l 1,151,-1 - 853 249 l 1,152,-1 - 853 345 l 1,153,-1 - 746 345 l 1,150,-1 -960 56 m 1,154,-1 - 960 153 l 1,155,-1 - 853 153 l 1,156,-1 - 853 56 l 1,157,-1 - 960 56 l 1,154,-1 -746 56 m 1,158,-1 - 746 153 l 1,159,-1 - 639 153 l 1,160,-1 - 639 56 l 1,161,-1 - 746 56 l 1,158,-1 -532 56 m 1,162,-1 - 532 153 l 1,163,-1 - 426 153 l 1,164,-1 - 426 56 l 1,165,-1 - 532 56 l 1,162,-1 -319 56 m 1,166,-1 - 319 153 l 1,167,-1 - 213 153 l 1,168,-1 - 213 56 l 1,169,-1 - 319 56 l 1,166,-1 -106 -42 m 1,170,-1 - 106 -136 l 1,171,-1 - 213 -136 l 1,172,-1 - 213 -42 l 1,173,-1 - 106 -42 l 1,170,-1 -319 -42 m 1,174,-1 - 319 -136 l 1,175,-1 - 426 -136 l 1,176,-1 - 426 -42 l 1,177,-1 - 319 -42 l 1,174,-1 -532 -42 m 1,178,-1 - 532 -136 l 1,179,-1 - 639 -136 l 1,180,-1 - 639 -42 l 1,181,-1 - 532 -42 l 1,178,-1 -746 -42 m 1,182,-1 - 746 -136 l 1,183,-1 - 853 -136 l 1,184,-1 - 853 -42 l 1,185,-1 - 746 -42 l 1,182,-1 -960 -331 m 1,186,-1 - 960 -234 l 1,187,-1 - 853 -234 l 1,188,-1 - 853 -331 l 1,189,-1 - 960 -331 l 1,186,-1 -746 -331 m 1,190,-1 - 746 -234 l 1,191,-1 - 639 -234 l 1,192,-1 - 639 -331 l 1,193,-1 - 746 -331 l 1,190,-1 -532 -331 m 1,194,-1 - 532 -234 l 1,195,-1 - 426 -234 l 1,196,-1 - 426 -331 l 1,197,-1 - 532 -331 l 1,194,-1 -319 -331 m 1,198,-1 - 319 -234 l 1,199,-1 - 213 -234 l 1,200,-1 - 213 -331 l 1,201,-1 - 319 -331 l 1,198,-1 -106 -427 m 1,202,-1 - 106 -523 l 1,203,-1 - 213 -523 l 1,204,-1 - 213 -427 l 1,205,-1 - 106 -427 l 1,202,-1 -319 -427 m 1,206,-1 - 319 -523 l 1,207,-1 - 426 -523 l 1,208,-1 - 426 -427 l 1,209,-1 - 319 -427 l 1,206,-1 -532 -427 m 1,210,-1 - 532 -523 l 1,211,-1 - 639 -523 l 1,212,-1 - 639 -427 l 1,213,-1 - 532 -427 l 1,210,-1 -746 -427 m 1,214,-1 - 746 -523 l 1,215,-1 - 853 -523 l 1,216,-1 - 853 -427 l 1,217,-1 - 746 -427 l 1,214,-1 -960 1314 m 1,218,-1 - 853 1314 l 1,219,-1 - 853 1216 l 1,220,-1 - 960 1216 l 1,221,-1 - 960 1314 l 1,218,-1 -746 1314 m 1,222,-1 - 639 1314 l 1,223,-1 - 639 1216 l 1,224,-1 - 746 1216 l 1,225,-1 - 746 1314 l 1,222,-1 -532 1314 m 1,226,-1 - 426 1314 l 1,227,-1 - 426 1216 l 1,228,-1 - 532 1216 l 1,229,-1 - 532 1314 l 1,226,-1 -319 1314 m 1,230,-1 - 213 1314 l 1,231,-1 - 213 1216 l 1,232,-1 - 319 1216 l 1,233,-1 - 319 1314 l 1,230,-1 -853 1506 m 1,234,-1 - 746 1506 l 1,235,-1 - 746 1408 l 1,236,-1 - 853 1408 l 1,237,-1 - 853 1506 l 1,234,-1 -639 1506 m 1,238,-1 - 532 1506 l 1,239,-1 - 532 1408 l 1,240,-1 - 639 1408 l 1,241,-1 - 639 1506 l 1,238,-1 -426 1506 m 1,242,-1 - 319 1506 l 1,243,-1 - 319 1408 l 1,244,-1 - 426 1408 l 1,245,-1 - 426 1506 l 1,242,-1 -213 1506 m 1,246,-1 - 106 1506 l 1,247,-1 - 106 1408 l 1,248,-1 - 213 1408 l 1,249,-1 - 213 1506 l 1,246,-1 -960 1119 m 1,250,-1 - 960 1023 l 1,251,-1 - 1067 1023 l 1,252,-1 - 1067 1119 l 1,253,-1 - 960 1119 l 1,250,-1 -1173 1119 m 1,254,-1 - 1173 1023 l 1,255,-1 - 1280 1023 l 1,256,-1 - 1280 1119 l 1,257,-1 - 1173 1119 l 1,254,-1 -1386 927 m 1,258,-1 - 1280 927 l 1,259,-1 - 1280 829 l 1,260,-1 - 1386 829 l 1,261,-1 - 1386 927 l 1,258,-1 -1173 927 m 1,262,-1 - 1067 927 l 1,263,-1 - 1067 829 l 1,264,-1 - 1173 829 l 1,265,-1 - 1173 927 l 1,262,-1 -960 732 m 1,266,-1 - 960 636 l 1,267,-1 - 1067 636 l 1,268,-1 - 1067 732 l 1,269,-1 - 960 732 l 1,266,-1 -1173 732 m 1,270,-1 - 1173 636 l 1,271,-1 - 1280 636 l 1,272,-1 - 1280 732 l 1,273,-1 - 1173 732 l 1,270,-1 -1173 540 m 1,274,-1 - 1067 540 l 1,275,-1 - 1067 444 l 1,276,-1 - 1173 444 l 1,277,-1 - 1173 540 l 1,274,-1 -1280 540 m 1,278,-1 - 1280 444 l 1,279,-1 - 1386 444 l 1,280,-1 - 1386 540 l 1,281,-1 - 1280 540 l 1,278,-1 -960 345 m 1,282,-1 - 960 249 l 1,283,-1 - 1067 249 l 1,284,-1 - 1067 345 l 1,285,-1 - 960 345 l 1,282,-1 -1280 249 m 1,286,-1 - 1280 345 l 1,287,-1 - 1173 345 l 1,288,-1 - 1173 249 l 1,289,-1 - 1280 249 l 1,286,-1 -1386 56 m 1,290,-1 - 1386 153 l 1,291,-1 - 1280 153 l 1,292,-1 - 1280 56 l 1,293,-1 - 1386 56 l 1,290,-1 -1173 56 m 1,294,-1 - 1173 153 l 1,295,-1 - 1067 153 l 1,296,-1 - 1067 56 l 1,297,-1 - 1173 56 l 1,294,-1 -960 -42 m 1,298,-1 - 960 -136 l 1,299,-1 - 1067 -136 l 1,300,-1 - 1067 -42 l 1,301,-1 - 960 -42 l 1,298,-1 -1173 -42 m 1,302,-1 - 1173 -136 l 1,303,-1 - 1280 -136 l 1,304,-1 - 1280 -42 l 1,305,-1 - 1173 -42 l 1,302,-1 -1386 -331 m 1,306,-1 - 1386 -234 l 1,307,-1 - 1280 -234 l 1,308,-1 - 1280 -331 l 1,309,-1 - 1386 -331 l 1,306,-1 -1173 -331 m 1,310,-1 - 1173 -234 l 1,311,-1 - 1067 -234 l 1,312,-1 - 1067 -331 l 1,313,-1 - 1173 -331 l 1,310,-1 -960 -427 m 1,314,-1 - 960 -523 l 1,315,-1 - 1067 -523 l 1,316,-1 - 1067 -427 l 1,317,-1 - 960 -427 l 1,314,-1 -1173 -427 m 1,318,-1 - 1173 -523 l 1,319,-1 - 1280 -523 l 1,320,-1 - 1280 -427 l 1,321,-1 - 1173 -427 l 1,318,-1 -1386 1314 m 1,322,-1 - 1280 1314 l 1,323,-1 - 1280 1216 l 1,324,-1 - 1386 1216 l 1,325,-1 - 1386 1314 l 1,322,-1 -1173 1314 m 1,326,-1 - 1067 1314 l 1,327,-1 - 1067 1216 l 1,328,-1 - 1173 1216 l 1,329,-1 - 1173 1314 l 1,326,-1 -1280 1506 m 1,330,-1 - 1173 1506 l 1,331,-1 - 1173 1408 l 1,332,-1 - 1280 1408 l 1,333,-1 - 1280 1506 l 1,330,-1 -1067 1506 m 1,334,-1 - 960 1506 l 1,335,-1 - 960 1408 l 1,336,-1 - 1067 1408 l 1,337,-1 - 1067 1506 l 1,334,-1 -EndSplineSet -EndChar - -StartChar: filledbox -Encoding: 9632 9632 2179 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 1 - 0 - 5 - 4 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -123 1108 m 1,0,-1 - 1114 1108 l 1,1,-1 - 1114 117 l 1,2,-1 - 123 117 l 1,3,-1 - 123 1108 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni25A1 -Encoding: 9633 9633 2180 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 4 - 0 - 7 - 1 - 0 - 1 - 8 - 9 - 5 - 3 - 4 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -6 1225 m 1,0,-1 - 1231 1225 l 1,1,-1 - 1231 0 l 1,2,-1 - 6 0 l 1,3,-1 - 6 1225 l 1,0,-1 -82 1149 m 1,4,-1 - 82 76 l 1,5,-1 - 1155 76 l 1,6,-1 - 1155 1149 l 1,7,-1 - 82 1149 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni25AA -Encoding: 9642 9642 2181 -Width: 726 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 2 - 5 - 4 - 2 - 80 - 1 - 1 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -617 383 m 1,0,-1 - 109 383 l 1,1,-1 - 109 891 l 1,2,-1 - 617 891 l 1,3,-1 - 617 383 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni25AB -Encoding: 9643 9643 2182 -Width: 726 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 5 - 3 - 6 - 2 - 3 - 2 - 9 - 8 - 255 - 6 - 1 - 6 - 2 - 7 - 0 - 1 - 16 - 1 - 80 - 1 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -MDRP[min,rnd,black] -MDAP[rnd] -MDRP[min,rnd,black] -DELTAP2 -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -617 383 m 1,0,-1 - 109 383 l 1,1,-1 - 109 891 l 1,2,-1 - 617 891 l 1,3,-1 - 617 383 l 1,0,-1 -541 459 m 1,4,-1 - 541 813 l 1,5,-1 - 185 813 l 1,6,-1 - 185 459 l 1,7,-1 - 541 459 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: filledrect -Encoding: 9644 9644 2183 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 0 - 5 - 4 - 0 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -0 616 m 1,0,-1 - 2048 616 l 1,1,-1 - 2048 0 l 1,2,-1 - 0 0 l 1,3,-1 - 0 616 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: triagup -Encoding: 9650 9650 2184 -Width: 2027 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 0 - 3 - 3 - 4 - 1 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -414 0 m 1,0,-1 - 1014 1198 l 1,1,-1 - 1612 0 l 1,2,-1 - 414 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: triagrt -Encoding: 9658 9658 2185 -Width: 2027 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 1 - 0 - 4 - 3 - 0 - 2 - 19 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -401 1196 m 1,0,-1 - 1626 586 l 1,1,-1 - 401 -27 l 1,2,-1 - 401 1196 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: triagdn -Encoding: 9660 9660 2186 -Width: 2027 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 2 - 1 - 0 - 3 - 4 - 3 - 2 - 1 - 19 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1612 1171 m 1,0,-1 - 1014 -27 l 1,1,-1 - 414 1171 l 1,2,-1 - 1612 1171 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: triaglf -Encoding: 9668 9668 2187 -Width: 2027 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 2 - 4 - 3 - 0 - 1 - 19 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1626 1196 m 1,0,-1 - 1626 -27 l 1,1,-1 - 401 586 l 1,2,-1 - 1626 1196 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: lozenge -Encoding: 9674 9674 2188 -Width: 1012 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 0 - 1 - 8 - 3 - 4 - 8 - 3 - 6 - 6 - 5 - 7 - 2 - 9 - 5 - 2 - 5 - 10 - 11 - 6 - 3 - 4 - 8 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -SRP1 -SLOOP -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -547 0 m 1,0,-1 - 465 0 l 1,1,-1 - 8 719 l 1,2,-1 - 465 1440 l 1,3,-1 - 547 1440 l 1,4,-1 - 1006 721 l 1,5,-1 - 547 0 l 1,0,-1 -508 1286 m 1,6,-1 - 154 721 l 1,7,-1 - 508 147 l 1,8,-1 - 860 721 l 1,9,-1 - 508 1286 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: circle -Encoding: 9675 9675 2189 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 16 - 0 - 24 - 8 - 0 - 8 - 32 - 33 - 20 - 12 - 28 - 4 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -MDRP[rp0,min,rnd,grey] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -167 612 m 256,0,1 - 167 734 167 734 227 839 c 128,-1,2 - 287 944 287 944 391.5 1004.5 c 128,-1,3 - 496 1065 496 1065 617 1065 c 0,4,5 - 739 1065 739 1065 844 1004.5 c 128,-1,6 - 949 944 949 944 1009.5 838.5 c 128,-1,7 - 1070 733 1070 733 1070 612 c 256,8,9 - 1070 491 1070 491 1009.5 386.5 c 128,-1,10 - 949 282 949 282 844.5 222 c 128,-1,11 - 740 162 740 162 617 162 c 0,12,13 - 495 162 495 162 391 222 c 128,-1,14 - 287 282 287 282 227 386 c 128,-1,15 - 167 490 167 490 167 612 c 256,0,1 -253 612 m 0,16,17 - 253 514 253 514 302 429.5 c 128,-1,18 - 351 345 351 345 434.5 296.5 c 128,-1,19 - 518 248 518 248 617 248 c 0,20,21 - 715 248 715 248 799.5 296 c 128,-1,22 - 884 344 884 344 934 429 c 128,-1,23 - 984 514 984 514 984 612 c 256,24,25 - 984 710 984 710 935 795.5 c 128,-1,26 - 886 881 886 881 800.5 930 c 128,-1,27 - 715 979 715 979 617 979 c 0,28,29 - 520 979 520 979 435.5 930 c 128,-1,30 - 351 881 351 881 302 796.5 c 128,-1,31 - 253 712 253 712 253 612 c 0,16,17 -EndSplineSet -EndChar - -StartChar: uni25CC -Encoding: 9676 9676 2190 -Width: 1217 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-25" 960 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1200 1540 basechar 0 -AnchorPoint: "Anchor-20" 1200 -380 basechar 0 -AnchorPoint: "Anchor-16" 800 1540 basechar 0 -AnchorPoint: "Anchor-15" 1340 1540 basechar 0 -AnchorPoint: "Anchor-14" 600 -130 basechar 0 -AnchorPoint: "Anchor-13" 600 0 basechar 0 -AnchorPoint: "Anchor-12" 600 1350 basechar 0 -AnchorPoint: "Anchor-11" 600 0 basechar 0 -AnchorPoint: "Anchor-10" 1000 1430 basechar 0 -AnchorPoint: "Anchor-9" 1000 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 600 0 basechar 0 -AnchorPoint: "Anchor-5" 600 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-2" 600 600 basechar 0 -AnchorPoint: "Anchor-1" 600 1430 basechar 0 -AnchorPoint: "Anchor-0" 100 1441 basechar 0 -LayerCount: 2 -Fore -SplineSet -984 918 m 256,0,1 - 984 864 984 864 932 864 c 0,2,3 - 876 864 876 864 876 918 c 256,4,5 - 876 972 876 972 932 972 c 0,6,7 - 984 972 984 972 984 918 c 256,0,1 -836 1016 m 0,8,9 - 836 963 836 963 784 963 c 0,10,11 - 728 963 728 963 728 1016 c 0,12,13 - 728 1071 728 1071 784 1071 c 0,14,15 - 836 1071 836 1071 836 1016 c 0,8,9 -1083 770 m 0,16,17 - 1083 715 1083 715 1028 715 c 0,18,19 - 975 715 975 715 975 770 c 0,20,21 - 975 823 975 823 1030 823 c 0,22,23 - 1083 823 1083 823 1083 770 c 0,16,17 -1119 596 m 256,24,25 - 1119 542 1119 542 1067 542 c 0,26,27 - 1011 542 1011 542 1011 596 c 256,28,29 - 1011 650 1011 650 1067 650 c 0,30,31 - 1119 650 1119 650 1119 596 c 256,24,25 -662 1053 m 0,32,33 - 662 998 662 998 608 998 c 256,34,35 - 554 998 554 998 554 1053 c 0,36,37 - 554 1106 554 1106 608 1106 c 256,38,39 - 662 1106 662 1106 662 1053 c 0,32,33 -489 1016 m 0,40,41 - 489 963 489 963 434 963 c 0,42,43 - 381 963 381 963 381 1016 c 0,44,45 - 381 1071 381 1071 434 1071 c 0,46,47 - 489 1071 489 1071 489 1016 c 0,40,41 -1083 422 m 0,48,49 - 1083 369 1083 369 1028 369 c 0,50,51 - 975 369 975 369 975 422 c 0,52,53 - 975 477 975 477 1028 477 c 0,54,55 - 1083 477 1083 477 1083 422 c 0,48,49 -341 918 m 256,56,57 - 341 864 341 864 287 864 c 256,58,59 - 233 864 233 864 233 915 c 0,60,61 - 233 972 233 972 287 972 c 256,62,63 - 341 972 341 972 341 918 c 256,56,57 -984 272 m 0,64,65 - 984 219 984 219 932 219 c 0,66,67 - 876 219 876 219 876 272 c 0,68,69 - 876 327 876 327 932 327 c 0,70,71 - 984 327 984 327 984 272 c 0,64,65 -836 174 m 0,72,73 - 836 122 836 122 784 122 c 0,74,75 - 728 122 728 122 728 174 c 0,76,77 - 728 230 728 230 784 230 c 0,78,79 - 836 230 836 230 836 174 c 0,72,73 -242 770 m 0,80,81 - 242 715 242 715 190 715 c 0,82,83 - 134 715 134 715 134 770 c 0,84,85 - 134 823 134 823 188 823 c 256,86,87 - 242 823 242 823 242 770 c 0,80,81 -206 596 m 256,88,89 - 206 542 206 542 154 542 c 0,90,91 - 98 542 98 542 98 596 c 256,92,93 - 98 650 98 650 154 650 c 0,94,95 - 206 650 206 650 206 596 c 256,88,89 -662 141 m 0,96,97 - 662 86 662 86 608 86 c 256,98,99 - 554 86 554 86 554 141 c 0,100,101 - 554 194 554 194 608 194 c 256,102,103 - 662 194 662 194 662 141 c 0,96,97 -242 422 m 0,104,105 - 242 369 242 369 188 369 c 256,106,107 - 134 369 134 369 134 422 c 0,108,109 - 134 477 134 477 188 477 c 256,110,111 - 242 477 242 477 242 422 c 0,104,105 -489 178 m 0,112,113 - 489 122 489 122 434 122 c 0,114,115 - 381 122 381 122 381 174 c 0,116,117 - 381 230 381 230 434 230 c 0,118,119 - 489 230 489 230 489 178 c 0,112,113 -341 272 m 0,120,121 - 341 219 341 219 287 219 c 256,122,123 - 233 219 233 219 233 272 c 0,124,125 - 233 327 233 327 287 327 c 256,126,127 - 341 327 341 327 341 272 c 0,120,121 -EndSplineSet -EndChar - -StartChar: uni25CF -Encoding: 9679 9679 2191 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 4 - 10 - 15 - 14 - 7 - 15 - 0 - 1 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -618 1018 m 0,0,1 - 728 1018 728 1018 836.5 960 c 128,-1,2 - 945 902 945 902 1002 793 c 128,-1,3 - 1059 684 1059 684 1059 578 c 0,4,5 - 1059 395 1059 395 930 266 c 128,-1,6 - 801 137 801 137 618 137 c 0,7,8 - 436 137 436 137 307 266.5 c 128,-1,9 - 178 396 178 396 178 578 c 0,10,11 - 178 686 178 686 233.5 792.5 c 128,-1,12 - 289 899 289 899 396.5 958.5 c 128,-1,13 - 504 1018 504 1018 618 1018 c 0,0,1 -EndSplineSet -EndChar - -StartChar: invbullet -Encoding: 9688 9688 2192 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 12 - 2 - 4 - 1 - 2 - 1 - 21 - 20 - 16 - 1 - 8 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -41 0 m 1,0,-1 - 41 1155 l 1,1,-1 - 1196 1155 l 1,2,-1 - 1196 0 l 1,3,-1 - 41 0 l 1,0,-1 -176 577 m 256,4,5 - 176 459 176 459 235 357 c 128,-1,6 - 294 255 294 255 395.5 196 c 128,-1,7 - 497 137 497 137 616 137 c 0,8,9 - 734 137 734 137 836.5 196 c 128,-1,10 - 939 255 939 255 998 357.5 c 128,-1,11 - 1057 460 1057 460 1057 577 c 0,12,13 - 1057 695 1057 695 998 797.5 c 128,-1,14 - 939 900 939 900 837 959 c 128,-1,15 - 735 1018 735 1018 616 1018 c 0,16,17 - 498 1018 498 1018 395.5 958.5 c 128,-1,18 - 293 899 293 899 234.5 797 c 128,-1,19 - 176 695 176 695 176 577 c 256,4,5 -EndSplineSet -EndChar - -StartChar: invcircle -Encoding: 9689 9689 2193 -Width: 1237 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 12 - 28 - 28 - 2 - 4 - 20 - 20 - 1 - 2 - 1 - 37 - 36 - 8 - 32 - 1 - 16 - 24 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[rp0,min,rnd,black] -MDRP[min,rnd,white] -MDAP[rnd] -MDRP[rp0,min,rnd,black] -MDRP[min,rnd,white] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -41 0 m 1,0,-1 - 41 1155 l 1,1,-1 - 1196 1155 l 1,2,-1 - 1196 0 l 1,3,-1 - 41 0 l 1,0,-1 -253 577 m 256,4,5 - 253 674 253 674 302 759 c 128,-1,6 - 351 844 351 844 436 893 c 128,-1,7 - 521 942 521 942 618 942 c 256,8,9 - 715 942 715 942 800 893 c 128,-1,10 - 885 844 885 844 934 759 c 128,-1,11 - 983 674 983 674 983 577 c 256,12,13 - 983 480 983 480 934 395 c 128,-1,14 - 885 310 885 310 800 261 c 128,-1,15 - 715 212 715 212 618 212 c 256,16,17 - 521 212 521 212 436 261 c 128,-1,18 - 351 310 351 310 302 395 c 128,-1,19 - 253 480 253 480 253 577 c 256,4,5 -176 577 m 256,20,21 - 176 459 176 459 235 357 c 128,-1,22 - 294 255 294 255 395.5 196 c 128,-1,23 - 497 137 497 137 616 137 c 0,24,25 - 734 137 734 137 836.5 196 c 128,-1,26 - 939 255 939 255 998 357.5 c 128,-1,27 - 1057 460 1057 460 1057 577 c 0,28,29 - 1057 695 1057 695 998 797.5 c 128,-1,30 - 939 900 939 900 837 959 c 128,-1,31 - 735 1018 735 1018 616 1018 c 0,32,33 - 498 1018 498 1018 395.5 958.5 c 128,-1,34 - 293 899 293 899 234.5 797 c 128,-1,35 - 176 695 176 695 176 577 c 256,20,21 -EndSplineSet -EndChar - -StartChar: openbullet -Encoding: 9702 9702 2194 -Width: 726 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 14 - 0 - 20 - 7 - 0 - 7 - 27 - 26 - 17 - 64 - 10 - 144 - 10 - 2 - 31 - 10 - 1 - 10 - 23 - 3 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -MDAP[rnd] -DELTAP1 -DELTAP1 -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -611 637 m 0,0,1 - 611 530 611 530 535.5 459.5 c 128,-1,2 - 460 389 460 389 363 389 c 0,3,4 - 295 389 295 389 239 421.5 c 128,-1,5 - 183 454 183 454 149 511 c 128,-1,6 - 115 568 115 568 115 637 c 0,7,8 - 115 740 115 740 188.5 812.5 c 128,-1,9 - 262 885 262 885 363 885 c 0,10,11 - 466 885 466 885 537 811 c 1,12,13 - 611 740 611 740 611 637 c 0,0,1 -535 637 m 0,14,15 - 535 707 535 707 484 758 c 128,-1,16 - 433 809 433 809 363 809 c 256,17,18 - 293 809 293 809 242 758 c 128,-1,19 - 191 707 191 707 191 637 c 0,20,21 - 191 566 191 566 240 515.5 c 128,-1,22 - 289 465 289 465 363 465 c 0,23,24 - 440 465 440 465 487.5 517.5 c 128,-1,25 - 535 570 535 570 535 637 c 0,14,15 -EndSplineSet -EndChar - -StartChar: smileface -Encoding: 9786 9786 2195 -Width: 2091 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 63 - 12 - 58 - 25 - 31 - 54 - 43 - 37 - 31 - 37 - 0 - 19 - 6 - 0 - 6 - 60 - 59 - 40 - 28 - 34 - 46 - 34 - 53 - 49 - 104 - 49 - 1 - 89 - 49 - 1 - 71 - 49 - 1 - 25 - 49 - 1 - 49 - 51 - 56 - 15 - 34 - 95 - 34 - 111 - 34 - 3 - 8 - 56 - 64 - 9 - 14 - 72 - 34 - 56 - 34 - 56 - 3 - 15 - 15 - 9 - 1 - 9 - 22 - 3 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -MDRP[rp0,min,rnd,grey] -DELTAP1 -MDRP[min,rnd,black] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -CALL -SDB -DELTAP1 -SRP0 -MDRP[min,rnd,black] -SHP[rp1] -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1657 584 m 0,0,1 - 1657 330 1657 330 1477 152 c 128,-1,2 - 1297 -26 1297 -26 1045 -27 c 0,3,4 - 792 -27 792 -27 613 152 c 128,-1,5 - 434 331 434 331 433 584 c 0,6,7 - 433 834 433 834 610 1015 c 128,-1,8 - 787 1196 787 1196 1045 1196 c 256,9,10 - 1303 1196 1303 1196 1480 1014.5 c 128,-1,11 - 1657 833 1657 833 1657 584 c 0,0,1 -1567 584 m 0,12,13 - 1567 801 1567 801 1414 954 c 128,-1,14 - 1261 1107 1261 1107 1045 1108 c 0,15,16 - 827 1108 827 1108 676 954 c 0,17,18 - 523 801 523 801 523 584 c 0,19,20 - 523 368 523 368 676 215 c 128,-1,21 - 829 62 829 62 1045 61 c 0,22,23 - 1262 61 1262 61 1414 215 c 128,-1,24 - 1566 369 1566 369 1567 584 c 0,12,13 -889 711 m 256,25,26 - 889 679 889 679 866 656 c 128,-1,27 - 843 633 843 633 811 633 c 256,28,29 - 779 633 779 633 756.5 656 c 128,-1,30 - 734 679 734 679 734 711 c 256,31,32 - 734 743 734 743 756.5 765.5 c 128,-1,33 - 779 788 779 788 811 788 c 256,34,35 - 843 788 843 788 866 765.5 c 128,-1,36 - 889 743 889 743 889 711 c 256,25,26 -1356 711 m 256,37,38 - 1356 679 1356 679 1334 656 c 128,-1,39 - 1312 633 1312 633 1280 633 c 256,40,41 - 1248 633 1248 633 1224.5 656 c 128,-1,42 - 1201 679 1201 679 1201 711 c 256,43,44 - 1201 743 1201 743 1224.5 765.5 c 128,-1,45 - 1248 788 1248 788 1280 788 c 256,46,47 - 1312 788 1312 788 1334 765.5 c 128,-1,48 - 1356 743 1356 743 1356 711 c 256,37,38 -822 422 m 1,49,50 - 898 285 898 285 1045 285 c 0,51,52 - 1190 285 1190 285 1266 422 c 1,53,-1 - 1328 387 l 1,54,55 - 1230 201 1230 201 1045 201 c 256,56,57 - 860 201 860 201 762 387 c 1,58,-1 - 822 422 l 1,49,50 -EndSplineSet -EndChar - -StartChar: invsmileface -Encoding: 9787 9787 2196 -Width: 2155 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 57 - 36 - 12 - 18 - 40 - 30 - 24 - 18 - 24 - 6 - 0 - 6 - 0 - 46 - 47 - 33 - 21 - 15 - 27 - 15 - 41 - 45 - 104 - 45 - 1 - 89 - 45 - 1 - 75 - 45 - 1 - 61 - 45 - 1 - 45 - 43 - 38 - 15 - 15 - 31 - 15 - 95 - 15 - 111 - 15 - 4 - 8 - 79 - 38 - 95 - 38 - 2 - 15 - 38 - 15 - 38 - 9 - 3 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -IP -IP -MDAP[rnd] -MDAP[rnd] -DELTAP1 -SDB -DELTAP1 -SRP0 -MDRP[min,rnd,white] -SHP[rp1] -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP0 -MDRP[min,rnd,white] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1689 584 m 0,0,1 - 1689 330 1689 330 1509 152 c 128,-1,2 - 1329 -26 1329 -26 1077 -27 c 0,3,4 - 824 -27 824 -27 645 152 c 128,-1,5 - 466 331 466 331 465 584 c 0,6,7 - 465 834 465 834 642 1015 c 128,-1,8 - 819 1196 819 1196 1077 1196 c 256,9,10 - 1335 1196 1335 1196 1512 1014.5 c 128,-1,11 - 1689 833 1689 833 1689 584 c 0,0,1 -921 711 m 256,12,13 - 921 743 921 743 898 765.5 c 128,-1,14 - 875 788 875 788 843 788 c 256,15,16 - 811 788 811 788 788.5 765.5 c 128,-1,17 - 766 743 766 743 766 711 c 256,18,19 - 766 679 766 679 788.5 656 c 128,-1,20 - 811 633 811 633 843 633 c 256,21,22 - 875 633 875 633 898 656 c 128,-1,23 - 921 679 921 679 921 711 c 256,12,13 -1388 711 m 256,24,25 - 1388 743 1388 743 1366 765.5 c 128,-1,26 - 1344 788 1344 788 1312 788 c 256,27,28 - 1280 788 1280 788 1256.5 765.5 c 128,-1,29 - 1233 743 1233 743 1233 711 c 256,30,31 - 1233 679 1233 679 1256.5 656 c 128,-1,32 - 1280 633 1280 633 1312 633 c 256,33,34 - 1344 633 1344 633 1366 656 c 128,-1,35 - 1388 679 1388 679 1388 711 c 256,24,25 -794 387 m 1,36,37 - 892 201 892 201 1077 201 c 256,38,39 - 1262 201 1262 201 1360 387 c 1,40,-1 - 1298 422 l 1,41,42 - 1222 285 1222 285 1077 285 c 0,43,44 - 930 285 930 285 854 422 c 1,45,-1 - 794 387 l 1,36,37 -EndSplineSet -EndChar - -StartChar: sun -Encoding: 9788 9788 2197 -Width: 1877 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 67 - 53 - 16 - 11 - 7 - 10 - 2 - 42 - 42 - 22 - 25 - 46 - 38 - 34 - 29 - 35 - 35 - 25 - 10 - 3 - 57 - 56 - 43 - 42 - 2 - 42 - 12 - 11 - 11 - 33 - 34 - 49 - 25 - 22 - 25 - 8 - 37 - 42 - 15 - 30 - 34 - 25 - 42 - 34 - 25 - 25 - 34 - 42 - 3 - 1 - 28 - 17 - 223 - 23 - 239 - 23 - 2 - 23 - 39 - 6 - 111 - 1 - 127 - 1 - 143 - 1 - 3 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -SHP[rp1] -MDAP[rnd] -DELTAP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -IP -SRP1 -IP -IP -SRP1 -SHP[rp1] -SRP0 -MDRP[min,rnd,black] -SRP0 -MDRP[min,rnd,black] -SHP[rp1] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -SHP[rp1] -SRP0 -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -905 1083 m 1,0,-1 - 971 1083 l 1,1,-1 - 971 866 l 1,2,3 - 1037 860 1037 860 1086.5 840.5 c 128,-1,4 - 1136 821 1136 821 1196 776 c 1,5,-1 - 1382 958 l 1,6,-1 - 1427 913 l 1,7,-1 - 1243 729 l 1,8,9 - 1329 616 1329 616 1335 500 c 1,10,-1 - 1550 500 l 1,11,-1 - 1550 438 l 1,12,-1 - 1335 438 l 1,13,14 - 1318 313 1318 313 1243 217 c 1,15,-1 - 1427 29 l 1,16,-1 - 1378 -14 l 1,17,-1 - 1196 168 l 1,18,19 - 1160 142 1160 142 1123 121 c 128,-1,20 - 1086 100 1086 100 1055 92 c 128,-1,21 - 1024 84 1024 84 971 76 c 1,22,-1 - 971 -141 l 1,23,-1 - 905 -141 l 1,24,-1 - 905 76 l 1,25,26 - 784 93 784 93 684 166 c 1,27,-1 - 496 -14 l 1,28,-1 - 453 31 l 1,29,-1 - 635 215 l 1,30,31 - 557 315 557 315 541 440 c 1,32,-1 - 326 440 l 1,33,-1 - 326 502 l 1,34,-1 - 541 502 l 1,35,36 - 553 630 553 630 633 725 c 1,37,-1 - 453 909 l 1,38,-1 - 493 958 l 1,39,-1 - 682 776 l 1,40,41 - 792 853 792 853 905 866 c 1,42,-1 - 905 1083 l 1,0,-1 -936 805 m 0,43,44 - 797 805 797 805 700.5 706 c 128,-1,45 - 604 607 604 607 604 471 c 256,46,47 - 604 335 604 335 701.5 237 c 128,-1,48 - 799 139 799 139 936 139 c 0,49,50 - 1075 139 1075 139 1171 236 c 0,51,52 - 1270 333 1270 333 1270 471 c 0,53,54 - 1270 607 1270 607 1172 706 c 128,-1,55 - 1074 805 1074 805 936 805 c 0,43,44 -EndSplineSet -EndChar - -StartChar: female -Encoding: 9792 9792 2198 -Width: 1536 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 51 - 36 - 16 - 11 - 18 - 14 - 14 - 21 - 0 - 29 - 23 - 4 - 4 - 0 - 11 - 3 - 41 - 40 - 18 - 21 - 24 - 15 - 24 - 14 - 239 - 0 - 255 - 0 - 2 - 0 - 32 - 31 - 32 - 47 - 32 - 2 - 24 - 32 - 24 - 32 - 7 - 64 - 19 - 1 - 19 - 25 - 64 - 37 - 40 - 72 - 25 - 7 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -CALL -MDAP[rnd] -DELTAP1 -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -DELTAP1 -SRP0 -MDRP[min,rnd,black] -DELTAP2 -SHP[rp2] -SRP1 -SHP[rp1] -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -732 578 m 1,0,1 - 656 589 656 589 602.5 627 c 128,-1,2 - 549 665 549 665 515 726 c 128,-1,3 - 481 787 481 787 481 862 c 0,4,5 - 481 988 481 988 568 1070.5 c 128,-1,6 - 655 1153 655 1153 769 1153 c 0,7,8 - 887 1153 887 1153 970 1067 c 1,9,10 - 1056 984 1056 984 1056 862 c 0,11,12 - 1056 753 1056 753 984 672 c 128,-1,13 - 912 591 912 591 806 578 c 1,14,-1 - 806 412 l 1,15,-1 - 1062 412 l 1,16,-1 - 1062 342 l 1,17,-1 - 806 342 l 1,18,-1 - 806 80 l 1,19,-1 - 732 80 l 1,20,-1 - 732 342 l 1,21,-1 - 474 342 l 1,22,-1 - 474 412 l 1,23,-1 - 732 412 l 1,24,-1 - 732 578 l 1,0,1 -767 1069 m 0,25,26 - 711 1069 711 1069 665 1042.5 c 128,-1,27 - 619 1016 619 1016 590.5 968.5 c 128,-1,28 - 562 921 562 921 562 864 c 0,29,30 - 562 778 562 778 623.5 717.5 c 128,-1,31 - 685 657 685 657 767 657 c 0,32,33 - 854 657 854 657 913 719 c 0,34,35 - 974 780 974 780 974 864 c 0,36,37 - 974 922 974 922 945.5 969.5 c 128,-1,38 - 917 1017 917 1017 870.5 1043 c 128,-1,39 - 824 1069 824 1069 767 1069 c 0,25,26 -EndSplineSet -EndChar - -StartChar: male -Encoding: 9794 9794 2199 -Width: 1536 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 33 - 48 - 44 - 4 - 31 - 3 - 39 - 54 - 20 - 33 - 39 - 33 - 57 - 58 - 44 - 31 - 42 - 51 - 0 - 36 - 128 - 36 - 2 - 36 - 45 - 144 - 11 - 1 - 11 - 15 - 42 - 1 - 8 - 42 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -MDRP[min,rnd,grey] -DELTAP1 -MDRP[min,rnd,black] -MDRP[rp0,min,rnd,grey] -DELTAP1 -MDRP[min,rnd,black] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1023 1024 m 1,0,1 - 876 1067 876 1067 833 1110 c 0,2,3 - 825 1115 825 1115 825 1128 c 0,4,5 - 825 1136 825 1136 831 1145 c 0,6,7 - 837 1149 837 1149 845 1149 c 2,8,-1 - 878 1145 l 1,9,10 - 946 1128 946 1128 1005 1128 c 0,11,12 - 1093 1128 1093 1128 1134 1141 c 0,13,14 - 1170 1153 1170 1153 1183 1153 c 0,15,16 - 1199 1153 1199 1153 1199 1139 c 2,17,-1 - 1193 1112 l 2,18,19 - 1177 1052 1177 1052 1177 954 c 0,20,21 - 1177 876 1177 876 1189 825 c 1,22,-1 - 1193 793 l 2,23,24 - 1193 784 1193 784 1189 778 c 2,25,-1 - 1175 772 l 1,26,27 - 1156 772 1156 772 1137.5 804.5 c 128,-1,28 - 1119 837 1119 837 1101 882 c 128,-1,29 - 1083 927 1083 927 1070 977 c 1,30,-1 - 833 739 l 1,31,32 - 917 658 917 658 917 549 c 0,33,34 - 917 424 917 424 829.5 337 c 128,-1,35 - 742 250 742 250 626 250 c 256,36,37 - 510 250 510 250 423.5 331.5 c 128,-1,38 - 337 413 337 413 337 535 c 0,39,40 - 337 655 337 655 421.5 740 c 128,-1,41 - 506 825 506 825 628 825 c 0,42,43 - 699 825 699 825 782 782 c 1,44,-1 - 1023 1024 l 1,0,1 -628 750 m 0,45,46 - 539 750 539 750 477 689 c 128,-1,47 - 415 628 415 628 415 539 c 0,48,49 - 415 444 415 444 478 385 c 128,-1,50 - 541 326 541 326 628 326 c 0,51,52 - 717 326 717 326 778 388.5 c 128,-1,53 - 839 451 839 451 839 539 c 0,54,55 - 839 626 839 626 777 688 c 128,-1,56 - 715 750 715 750 628 750 c 0,45,46 -EndSplineSet -EndChar - -StartChar: spade -Encoding: 9824 9824 2200 -Width: 1088 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 18 - 28 - 11 - 23 - 15 - 6 - 6 - 23 - 28 - 3 - 34 - 35 - 9 - 15 - 25 - 31 - 25 - 47 - 25 - 3 - 8 - 25 - 25 - 17 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -IP -MDAP[rnd] -SDB -DELTAP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -544 1231 m 1,0,1 - 569 1135 569 1135 617 1050.5 c 128,-1,2 - 665 966 665 966 816 827 c 0,3,4 - 957 701 957 701 992 635 c 128,-1,5 - 1027 569 1027 569 1029 498 c 0,6,7 - 1029 402 1029 402 964 338 c 128,-1,8 - 899 274 899 274 812 274 c 0,9,10 - 655 274 655 274 556 465 c 1,11,12 - 559 306 559 306 598.5 223 c 128,-1,13 - 638 140 638 140 719.5 93 c 128,-1,14 - 801 46 801 46 933 37 c 1,15,-1 - 941 0 l 1,16,-1 - 149 0 l 1,17,-1 - 155 37 l 1,18,19 - 279 37 279 37 365 85.5 c 128,-1,20 - 451 134 451 134 494.5 220 c 128,-1,21 - 538 306 538 306 538 451 c 2,22,-1 - 538 465 l 1,23,24 - 448 274 448 274 278 274 c 0,25,26 - 189 274 189 274 124 338 c 128,-1,27 - 59 402 59 402 59 494 c 0,28,29 - 59 583 59 583 103.5 651 c 128,-1,30 - 148 719 148 719 247 801 c 0,31,32 - 386 920 386 920 452 1013 c 128,-1,33 - 518 1106 518 1106 544 1231 c 1,0,1 -EndSplineSet -EndChar - -StartChar: club -Encoding: 9827 9827 2201 -Width: 1344 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 2 - 15 - 52 - 40 - 40 - 30 - 24 - 15 - 4 - 53 - 54 - 36 - 43 - 8 - 47 - 20 - 32 - 4 - 11 - 31 - 11 - 1 - 18 - 11 - 18 - 11 - 1 - 27 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -DELTAP1 -SRP2 -SLOOP -IP -SHP[rp2] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1094 0 m 1,0,-1 - 252 0 l 1,1,-1 - 260 35 l 1,2,3 - 395 62 395 62 454.5 89 c 128,-1,4 - 514 116 514 116 561.5 176 c 128,-1,5 - 609 236 609 236 635.5 310.5 c 128,-1,6 - 662 385 662 385 662 461 c 2,7,-1 - 660 508 l 1,8,9 - 603 388 603 388 514 329 c 128,-1,10 - 425 270 425 270 336 270 c 0,11,12 - 259 270 259 270 194.5 308 c 128,-1,13 - 130 346 130 346 95 409 c 128,-1,14 - 60 472 60 472 60 549 c 0,15,16 - 60 664 60 664 133 743 c 128,-1,17 - 206 822 206 822 299 823 c 0,18,19 - 361 823 361 823 461 772 c 1,20,21 - 423 837 423 837 406 877 c 1,22,23 - 395 914 395 914 395 952 c 0,24,25 - 395 1073 395 1073 476 1148 c 128,-1,26 - 557 1223 557 1223 670 1223 c 0,27,28 - 786 1223 786 1223 866 1143 c 128,-1,29 - 946 1063 946 1063 946 956 c 0,30,31 - 946 870 946 870 877 772 c 1,32,33 - 961 812 961 812 977 815 c 0,34,35 - 999 823 999 823 1038 823 c 0,36,37 - 1143 823 1143 823 1211 745 c 1,38,39 - 1284 669 1284 669 1284 553 c 256,40,41 - 1284 437 1284 437 1206 354.5 c 128,-1,42 - 1128 272 1128 272 1012 272 c 0,43,44 - 956 272 956 272 897 296.5 c 128,-1,45 - 838 321 838 321 790.5 362 c 128,-1,46 - 743 403 743 403 682 508 c 1,47,48 - 687 382 687 382 711.5 305.5 c 128,-1,49 - 736 229 736 229 790.5 169 c 128,-1,50 - 845 109 845 109 908.5 82.5 c 128,-1,51 - 972 56 972 56 1086 35 c 1,52,-1 - 1094 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: heart -Encoding: 9829 9829 2202 -Width: 1216 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 0 - 13 - 19 - 13 - 7 - 3 - 25 - 26 - 13 - 16 - 10 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -610 -23 m 1,0,1 - 588 63 588 63 542.5 154 c 128,-1,2 - 497 245 497 245 321 481 c 2,3,-1 - 231 604 l 2,4,5 - 156 704 156 704 129 768.5 c 128,-1,6 - 102 833 102 833 102 899 c 0,7,8 - 102 1006 102 1006 171.5 1074.5 c 128,-1,9 - 241 1143 241 1143 342 1143 c 0,10,11 - 429 1143 429 1143 500.5 1086 c 128,-1,12 - 572 1029 572 1029 610 909 c 1,13,14 - 644 1028 644 1028 715 1086.5 c 128,-1,15 - 786 1145 786 1145 874 1145 c 0,16,17 - 971 1145 971 1145 1042.5 1077 c 128,-1,18 - 1114 1009 1114 1009 1114 911 c 0,19,20 - 1114 825 1114 825 1070 730 c 128,-1,21 - 1026 635 1026 635 915 498 c 0,22,23 - 775 319 775 319 710.5 212.5 c 128,-1,24 - 646 106 646 106 610 -23 c 1,0,1 -EndSplineSet -EndChar - -StartChar: diamond -Encoding: 9830 9830 2203 -Width: 1045 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 10 - 6 - 3 - 0 - 0 - 13 - 14 - 3 - 10 - 10 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -IP -RTHG -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -519 1223 m 1,0,1 - 591 1098 591 1098 723.5 917.5 c 128,-1,2 - 856 737 856 737 978 600 c 1,3,4 - 910 530 910 530 757 326.5 c 128,-1,5 - 604 123 604 123 521 -25 c 1,6,7 - 484 46 484 46 391.5 176.5 c 128,-1,8 - 299 307 299 307 225 402.5 c 128,-1,9 - 151 498 151 498 66 600 c 1,10,11 - 182 737 182 737 311.5 909.5 c 128,-1,12 - 441 1082 441 1082 519 1223 c 1,0,1 -EndSplineSet -EndChar - -StartChar: musicalnote -Encoding: 9834 9834 2204 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 10 - 5 - 2 - 14 - 14 - 25 - 20 - 25 - 5 - 3 - 27 - 26 - 13 - 2 - 2 - 8 - 8 - 0 - 23 - 17 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -MDRP[min,rnd,black] -SRP2 -IP -MDAP[rnd] -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -489 1153 m 1,0,-1 - 565 1153 l 1,1,-1 - 565 1053 l 1,2,-1 - 718 860 l 1,3,4 - 827 713 827 713 827 543 c 0,5,6 - 827 393 827 393 733 272 c 1,7,-1 - 686 272 l 1,8,9 - 743 400 743 400 743 520 c 256,10,11 - 743 640 743 640 686 719 c 128,-1,12 - 629 798 629 798 565 809 c 1,13,-1 - 565 303 l 2,14,15 - 565 180 565 180 491.5 104.5 c 128,-1,16 - 418 29 418 29 311 29 c 0,17,18 - 254 29 254 29 225 56 c 128,-1,19 - 196 83 196 83 196 129 c 0,20,21 - 196 206 196 206 258.5 264 c 128,-1,22 - 321 322 321 322 399 322 c 0,23,24 - 443 322 443 322 489 303 c 1,25,-1 - 489 1153 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: musicalnotedbl -Encoding: 9835 9835 2205 -Width: 1536 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 30 - 12 - 12 - 0 - 29 - 15 - 15 - 26 - 21 - 26 - 7 - 0 - 4 - 34 - 33 - 14 - 29 - 29 - 13 - 30 -PUSHW_1 - -32 -PUSHB_4 - 16 - 20 - 72 - 30 -PUSHW_1 - -64 -NPUSHB - 20 - 8 - 11 - 72 - 30 - 30 - 28 - 18 - 32 - 27 - 27 - 31 - 28 - 10 - 32 - 4 - 1 - 4 - 4 - 24 - 18 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SHP[rp1] -MDAP[rnd] -DELTAP1 -MDRP[min,rnd,black] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -CALL -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1263 324 m 2,0,1 - 1263 246 1263 246 1236 189.5 c 128,-1,2 - 1209 133 1209 133 1147.5 91 c 128,-1,3 - 1086 49 1086 49 1013 49 c 0,4,5 - 956 49 956 49 927.5 76 c 128,-1,6 - 899 103 899 103 899 150 c 0,7,8 - 899 231 899 231 960 286.5 c 128,-1,9 - 1021 342 1021 342 1099 342 c 0,10,11 - 1147 342 1147 342 1189 324 c 1,12,-1 - 1189 772 l 1,13,-1 - 639 623 l 1,14,-1 - 639 229 l 2,15,16 - 639 112 639 112 570.5 34.5 c 128,-1,17 - 502 -43 502 -43 387 -43 c 0,18,19 - 330 -43 330 -43 301 -16.5 c 128,-1,20 - 272 10 272 10 272 55 c 0,21,22 - 272 131 272 131 334 191 c 128,-1,23 - 396 251 396 251 475 248 c 0,24,25 - 520 248 520 248 565 229 c 1,26,-1 - 565 981 l 1,27,-1 - 1263 1159 l 1,28,-1 - 1263 324 l 2,0,1 -639 750 m 1,29,-1 - 1189 899 l 1,30,-1 - 1189 1016 l 1,31,-1 - 639 864 l 1,32,-1 - 639 750 l 1,29,-1 -EndSplineSet -EndChar - -StartChar: uni266F -Encoding: 9839 9839 2206 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 24 - 31 - 18 - 6 - 6 - 15 - 11 - 7 - 26 - 22 - 2 - 2 - 28 - 19 - 3 - 7 - 3 - 0 - 13 - 9 - 0 - 9 - 33 - 32 - 23 - 16 - 22 - 29 - 18 - 12 - 13 - 27 - 26 - 4 - 31 - 8 - 9 - 9 - 8 - 31 - 4 - 26 - 27 - 13 - 12 - 18 - 29 - 22 - 16 - 12 - 3 - 20 - 7 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,grey] -MDAP[rnd] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -974 445 m 1,0,-1 - 774 356 l 1,1,-1 - 774 0 l 1,2,-1 - 678 0 l 1,3,-1 - 678 317 l 1,4,-1 - 346 157 l 1,5,-1 - 346 -200 l 1,6,-1 - 250 -200 l 1,7,-1 - 250 118 l 1,8,-1 - 50 29 l 1,9,-1 - 50 188 l 1,10,-1 - 250 277 l 1,11,-1 - 250 778 l 1,12,-1 - 50 689 l 1,13,-1 - 50 848 l 1,14,-1 - 250 937 l 1,15,-1 - 250 1264 l 1,16,-1 - 346 1264 l 1,17,-1 - 346 976 l 1,18,-1 - 678 1136 l 1,19,-1 - 678 1484 l 1,20,-1 - 774 1484 l 1,21,-1 - 774 1175 l 1,22,-1 - 974 1264 l 1,23,-1 - 974 1105 l 1,24,-1 - 774 1016 l 1,25,-1 - 774 515 l 1,26,-1 - 974 604 l 1,27,-1 - 974 445 l 1,0,-1 -678 476 m 1,28,-1 - 678 977 l 1,29,-1 - 346 817 l 1,30,-1 - 346 316 l 1,31,-1 - 678 476 l 1,28,-1 -EndSplineSet -EndChar - -StartChar: uni2C60 -Encoding: 11360 11360 2207 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 71 - 13 - 17 - 15 - 11 - 19 - 19 - 0 - 6 - 2 - 2 - 8 - 4 - 0 - 0 - 17 - 20 - 3 - 23 - 22 - 14 - 6 - 7 - 6 - 96 - 89 - 18 - 2 - 3 - 2 - 96 - 89 - 15 - 3 - 64 - 19 - 22 - 72 - 0 - 3 - 16 - 3 - 2 - 3 - 64 - 11 - 15 - 7 - 31 - 7 - 47 - 7 - 79 - 7 - 95 - 7 - 239 - 7 - 6 - 9 - 3 - 7 - 7 - 0 - 9 - 3 - 0 - 19 - 95 - 89 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -SMD -MDRP[min,rnd,white] -DELTAP1 -CALL -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -168 0 m 1,0,-1 - 168 484 l 1,1,-1 - 25 484 l 1,2,-1 - 25 617 l 1,3,-1 - 168 617 l 1,4,-1 - 168 765 l 1,5,-1 - 25 765 l 1,6,-1 - 25 898 l 1,7,-1 - 168 898 l 1,8,-1 - 168 1409 l 1,9,-1 - 359 1409 l 1,10,-1 - 359 898 l 1,11,-1 - 747 898 l 1,12,-1 - 747 765 l 1,13,-1 - 359 765 l 1,14,-1 - 359 617 l 1,15,-1 - 747 617 l 1,16,-1 - 747 484 l 1,17,-1 - 359 484 l 1,18,-1 - 359 156 l 1,19,-1 - 1071 156 l 1,20,-1 - 1071 0 l 1,21,-1 - 168 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C61 -Encoding: 11361 11361 2208 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 55 - 13 - 17 - 17 - 19 - 6 - 2 - 2 - 8 - 4 - 0 - 0 - 15 - 11 - 19 - 19 - 21 - 20 - 14 - 6 - 7 - 6 - 80 - 89 - 18 - 2 - 3 - 2 - 80 - 89 - 15 - 3 - 64 - 19 - 22 - 72 - 0 - 3 - 16 - 3 - 2 - 3 - 11 - 15 - 7 - 31 - 7 - 47 - 7 - 3 - 7 - 7 - 9 - 0 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -IP -MDAP[rnd] -DELTAP1 -SHP[rp1] -MDRP[rnd,white] -DELTAP1 -CALL -SHP[rp2] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -138 0 m 1,0,-1 - 138 524 l 1,1,-1 - 28 524 l 1,2,-1 - 28 657 l 1,3,-1 - 138 657 l 1,4,-1 - 138 805 l 1,5,-1 - 28 805 l 1,6,-1 - 28 938 l 1,7,-1 - 138 938 l 1,8,-1 - 138 1484 l 1,9,-1 - 318 1484 l 1,10,-1 - 318 938 l 1,11,-1 - 428 938 l 1,12,-1 - 428 805 l 1,13,-1 - 318 805 l 1,14,-1 - 318 657 l 1,15,-1 - 428 657 l 1,16,-1 - 428 524 l 1,17,-1 - 318 524 l 1,18,-1 - 318 0 l 1,19,-1 - 138 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C62 -Encoding: 11362 11362 2209 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 13 - 25 - 25 - 10 - 6 - 0 - 0 - 19 - 26 - 3 - 29 - 28 - 2 - 9 - 9 - 18 - 15 - 22 - 22 - 5 - 128 - 18 - 64 - 9 - 12 - 72 - 18 - 18 - 0 - 11 - 3 - 0 - 25 - 95 - 89 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 900 1540 basechar 0 -AnchorPoint: "Anchor-14" 580 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -218 0 m 1,0,-1 - 218 697 l 1,1,-1 - 183 701 l 1,2,3 - 144 701 144 701 130.5 677 c 128,-1,4 - 117 653 117 653 117 606 c 1,5,-1 - -13 606 l 1,6,7 - -11 710 -11 710 42.5 772 c 128,-1,8 - 96 834 96 834 180 834 c 1,9,-1 - 218 831 l 1,10,-1 - 218 1409 l 1,11,-1 - 409 1409 l 1,12,-1 - 409 759 l 1,13,14 - 437 754 437 754 463 754 c 0,15,16 - 494 754 494 754 507 777.5 c 128,-1,17 - 520 801 520 801 526 849 c 1,18,-1 - 656 849 l 1,19,20 - 656 735 656 735 611 678 c 128,-1,21 - 566 621 566 621 470 621 c 0,22,23 - 437 621 437 621 409 626 c 1,24,-1 - 409 156 l 1,25,-1 - 1088 156 l 1,26,-1 - 1088 0 l 1,27,-1 - 218 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C63 -Encoding: 11363 11363 2210 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 15 - 6 - 23 - 19 - 11 - 11 - 14 - 1 - 12 - 12 - 21 - 6 - 3 - 27 - 26 - 23 - 10 - 95 - 89 - 22 - 14 - 0 - 14 - 96 - 89 - 19 - 0 - 23 - 0 - 23 - 0 - 2 - 12 - 18 - 2 - 18 - 95 - 89 - 2 - 3 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1366 1540 basechar 0 -AnchorPoint: "Anchor-20" 1366 -380 basechar 0 -AnchorPoint: "Anchor-16" 620 1540 basechar 0 -AnchorPoint: "Anchor-15" 1180 1540 basechar 0 -AnchorPoint: "Anchor-14" 620 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -26 1039 m 1,0,-1 - 168 1039 l 1,1,-1 - 168 1409 l 1,2,-1 - 761 1409 l 2,3,4 - 998 1409 998 1409 1128 1298 c 128,-1,5 - 1258 1187 1258 1187 1258 985 c 0,6,7 - 1258 785 1258 785 1127.5 667 c 128,-1,8 - 997 549 997 549 773 549 c 2,9,-1 - 359 549 l 1,10,-1 - 359 0 l 1,11,-1 - 168 0 l 1,12,-1 - 168 906 l 1,13,-1 - 26 906 l 1,14,-1 - 26 1039 l 1,0,-1 -1066 983 m 0,15,16 - 1066 1256 1066 1256 738 1256 c 2,17,-1 - 359 1256 l 1,18,-1 - 359 1039 l 1,19,-1 - 707 1039 l 1,20,-1 - 707 906 l 1,21,-1 - 359 906 l 1,22,-1 - 359 700 l 1,23,-1 - 746 700 l 2,24,25 - 1066 700 1066 700 1066 983 c 0,15,16 -EndSplineSet -EndChar - -StartChar: uni2C64 -Encoding: 11364 11364 2211 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 0 - 23 - 23 - 24 - 22 - 1 - 19 - 29 - 29 - 3 - 3 - 14 - 14 - 9 - 19 - 3 - 34 - 33 - 22 - 2 - 29 - 2 - 95 - 89 - 29 - 29 - 0 - 15 - 15 - 28 - 95 - 89 - 15 - 3 - 11 - 6 - 95 - 89 - 11 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 1180 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1479 1540 basechar 0 -AnchorPoint: "Anchor-20" 1479 -380 basechar 0 -AnchorPoint: "Anchor-16" 720 1540 basechar 0 -AnchorPoint: "Anchor-15" 1300 1540 basechar 0 -AnchorPoint: "Anchor-14" 730 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -1164 0 m 1,0,-1 - 798 585 l 1,1,-1 - 359 585 l 1,2,-1 - 359 -109 l 2,3,4 - 359 -190 359 -190 382.5 -228 c 128,-1,5 - 406 -266 406 -266 458 -266 c 0,6,7 - 518 -266 518 -266 568 -250 c 1,8,-1 - 568 -408 l 1,9,10 - 498 -425 498 -425 436 -425 c 0,11,12 - 307 -425 307 -425 237.5 -351 c 128,-1,13 - 168 -277 168 -277 168 -141 c 2,14,-1 - 168 1409 l 1,15,-1 - 831 1409 l 2,16,17 - 1069 1409 1069 1409 1198.5 1302.5 c 128,-1,18 - 1328 1196 1328 1196 1328 1006 c 0,19,20 - 1328 849 1328 849 1236.5 742 c 128,-1,21 - 1145 635 1145 635 984 607 c 1,22,-1 - 1384 0 l 1,23,-1 - 1164 0 l 1,0,-1 -1136 1004 m 0,24,25 - 1136 1127 1136 1127 1052.5 1191.5 c 128,-1,26 - 969 1256 969 1256 812 1256 c 2,27,-1 - 359 1256 l 1,28,-1 - 359 736 l 1,29,-1 - 820 736 l 2,30,31 - 971 736 971 736 1053.5 806.5 c 128,-1,32 - 1136 877 1136 877 1136 1004 c 0,24,25 -EndSplineSet -EndChar - -StartChar: uni2C65 -Encoding: 11365 11365 2212 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 80 - 55 - 35 - 46 - 46 - 24 - 21 - 18 - 52 - 51 - 1 - 5 - 0 - 19 - 20 - 20 - 29 - 24 - 13 - 14 - 14 - 3 - 41 - 0 - 0 - 49 - 3 - 24 - 3 - 61 - 60 - 51 - 42 - 39 - 42 - 80 - 89 - 52 - 48 - 58 - 48 - 81 - 89 - 7 - 35 - 39 - 58 - 58 - 16 - 41 - 64 - 1 - 39 - 22 - 32 - 27 - 81 - 89 - 32 - 22 - 57 - 10 - 16 - 10 - 80 - 89 - 21 - 19 - 16 - 95 - 13 - 1 - 47 - 13 - 143 - 13 - 2 - 13 - 13 - 16 - 16 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -SRP0 -MDRP[min,rnd,white] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,white] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 940 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1139 1540 basechar 0 -AnchorPoint: "Anchor-20" 1139 -380 basechar 0 -AnchorPoint: "Anchor-16" 500 1540 basechar 0 -AnchorPoint: "Anchor-15" 1260 1540 basechar 0 -AnchorPoint: "Anchor-14" 530 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet -80 -424 m 1,0,-1 - 270 2 l 1,1,2 - 87 68 87 68 87 302 c 0,3,4 - 87 470 87 470 197.5 560 c 128,-1,5 - 308 650 308 650 554 656 c 1,6,-1 - 562 656 l 1,7,-1 - 690 943 l 1,8,9 - 642 965 642 965 565 965 c 0,10,11 - 444 965 444 965 389 924 c 128,-1,12 - 334 883 334 883 323 793 c 1,13,-1 - 135 810 l 1,14,15 - 181 1102 181 1102 569 1102 c 0,16,17 - 669 1102 669 1102 750 1077 c 1,18,-1 - 932 1484 l 1,19,-1 - 1074 1484 l 1,20,-1 - 865 1016 l 1,21,22 - 979 922 979 922 979 738 c 2,23,-1 - 979 272 l 2,24,25 - 979 192 979 192 1000 151.5 c 128,-1,26 - 1021 111 1021 111 1080 111 c 0,27,28 - 1106 111 1106 111 1139 118 c 1,29,-1 - 1139 6 l 1,30,31 - 1071 -10 1071 -10 1000 -10 c 0,32,33 - 900 -10 900 -10 854.5 42.5 c 128,-1,34 - 809 95 809 95 803 207 c 1,35,-1 - 797 207 l 1,36,37 - 728 83 728 83 636.5 31.5 c 128,-1,38 - 545 -20 545 -20 414 -20 c 2,39,-1 - 403 -20 l 1,40,-1 - 223 -424 l 1,41,-1 - 80 -424 l 1,0,-1 -463 115 m 1,42,43 - 560 116 560 116 636 163.5 c 128,-1,44 - 712 211 712 211 754.5 287.5 c 128,-1,45 - 797 364 797 364 797 445 c 2,46,-1 - 797 534 l 1,47,-1 - 649 531 l 1,48,-1 - 463 115 l 1,42,43 -272 299 m 0,49,50 - 272 196 272 196 336 149 c 1,51,-1 - 503 524 l 1,52,53 - 380 509 380 509 326 454 c 128,-1,54 - 272 399 272 399 272 299 c 0,49,50 -797 719 m 2,55,56 - 797 792 797 792 783 832 c 1,57,-1 - 706 658 l 1,58,-1 - 797 660 l 1,59,-1 - 797 719 l 2,55,56 -EndSplineSet -EndChar - -StartChar: uni2C66 -Encoding: 11366 11366 2213 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 50 - 13 - 8 - 25 - 25 - 1 - 24 - 0 - 0 - 23 - 5 - 3 - 1 - 10 - 11 - 11 - 18 - 1 - 18 - 28 - 29 - 24 - 27 - 25 - 12 - 1 - 23 - 4 - 21 - 5 - 21 - 16 - 80 - 89 - 21 - 22 - 8 - 27 - 81 - 89 - 11 - 7 - 64 - 8 - 15 - 5 - 2 - 81 - 89 - 5 - 15 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SMD -MDRP[min,rnd,black] -MDRP[min,rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -SLOOP -IP -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 396 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 569 1540 basechar 0 -AnchorPoint: "Anchor-20" 569 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1540 basechar 0 -AnchorPoint: "Anchor-15" 720 1540 basechar 0 -AnchorPoint: "Anchor-14" 360 -540 basechar 0 -LayerCount: 2 -Fore -SplineSet --134 -424 m 1,0,-1 - 156 231 l 1,1,-1 - 156 951 l 1,2,-1 - 31 951 l 1,3,-1 - 31 1082 l 1,4,-1 - 163 1082 l 1,5,-1 - 216 1324 l 1,6,-1 - 336 1324 l 1,7,-1 - 336 1082 l 1,8,-1 - 532 1082 l 1,9,-1 - 710 1484 l 1,10,-1 - 852 1484 l 1,11,-1 - 336 316 l 1,12,-1 - 336 268 l 2,13,14 - 336 190 336 190 361.5 158.5 c 128,-1,15 - 387 127 387 127 450 127 c 0,16,17 - 486 127 486 127 554 141 c 1,18,-1 - 554 8 l 1,19,20 - 465 -16 465 -16 372 -16 c 0,21,22 - 268 -16 268 -16 214 40 c 1,23,-1 - 9 -424 l 1,24,-1 - -134 -424 l 1,0,-1 -336 623 m 1,25,-1 - 474 951 l 1,26,-1 - 336 951 l 1,27,-1 - 336 623 l 1,25,-1 -EndSplineSet -EndChar - -StartChar: uni2C67 -Encoding: 11367 11367 2214 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 8 - 4 - 4 - 5 - 9 - 1 - 1 - 12 - 12 - 15 - 15 - 14 - 5 - 14 - 16 - 17 - 8 - 3 - 95 - 89 - 8 - 8 - 1 - 10 - 6 - 3 - 5 - 18 - 15 - 1 - 1 - 12 - 95 - 89 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1274 0 m 1,0,-1 - 1121 0 l 1,1,-1 - 1121 653 l 1,2,-1 - 359 653 l 1,3,-1 - 359 0 l 1,4,-1 - 168 0 l 1,5,-1 - 168 1409 l 1,6,-1 - 359 1409 l 1,7,-1 - 359 813 l 1,8,-1 - 1121 813 l 1,9,-1 - 1121 1409 l 1,10,-1 - 1312 1409 l 1,11,-1 - 1312 160 l 1,12,-1 - 1451 160 l 1,13,-1 - 1451 -408 l 1,14,-1 - 1274 -408 l 1,15,-1 - 1274 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C68 -Encoding: 11368 11368 2215 -Width: 1139 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 28 - 25 - 21 - 21 - 22 - 12 - 7 - 7 - 10 - 9 - 22 - 9 - 29 - 30 - 23 - 0 - 22 - 21 - 0 - 28 - 28 - 3 - 10 - 12 - 12 - 7 - 81 - 89 - 12 - 21 - 3 - 17 - 80 - 89 - 3 - 16 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -SRP2 -IP -SRP1 -SHP[rp1] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -317 897 m 1,0,1 - 375 1003 375 1003 456.5 1052.5 c 128,-1,2 - 538 1102 538 1102 663 1102 c 0,3,4 - 839 1102 839 1102 922.5 1014.5 c 128,-1,5 - 1006 927 1006 927 1006 721 c 2,6,-1 - 1006 131 l 1,7,-1 - 1123 131 l 1,8,-1 - 1123 -408 l 1,9,-1 - 960 -408 l 1,10,-1 - 960 0 l 1,11,-1 - 825 0 l 1,12,-1 - 825 686 l 2,13,14 - 825 800 825 800 804 855.5 c 128,-1,15 - 783 911 783 911 735 937 c 128,-1,16 - 687 963 687 963 602 963 c 0,17,18 - 475 963 475 963 398.5 875 c 128,-1,19 - 322 787 322 787 322 638 c 2,20,-1 - 322 0 l 1,21,-1 - 142 0 l 1,22,-1 - 142 1484 l 1,23,-1 - 322 1484 l 1,24,-1 - 322 1098 l 2,25,26 - 322 1037 322 1037 318.5 972 c 128,-1,27 - 315 907 315 907 314 897 c 1,28,-1 - 317 897 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uni2C69 -Encoding: 11369 11369 2216 -Width: 1366 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 0 - 7 - 15 - 13 - 13 - 9 - 9 - 10 - 14 - 15 - 15 - 3 - 6 - 4 - 4 - 1 - 3 - 10 - 3 - 16 - 17 - 8 - 0 - 13 - 7 - 13 - 6 - 14 - 11 - 3 - 10 - 18 - 4 - 6 - 6 - 1 - 95 - 89 - 6 - 18 -SVTCA[y-axis] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -663 797 m 1,0,-1 - 1206 160 l 1,1,-1 - 1345 160 l 1,2,-1 - 1345 -408 l 1,3,-1 - 1168 -408 l 1,4,-1 - 1168 0 l 1,5,-1 - 1106 0 l 1,6,-1 - 543 680 l 1,7,-1 - 359 540 l 1,8,-1 - 359 0 l 1,9,-1 - 168 0 l 1,10,-1 - 168 1409 l 1,11,-1 - 359 1409 l 1,12,-1 - 359 703 l 1,13,-1 - 1038 1409 l 1,14,-1 - 1263 1409 l 1,15,-1 - 663 797 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C6A -Encoding: 11370 11370 2217 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 15 - 10 - 10 - 12 - 9 - 0 - 6 - 7 - 8 - 8 - 13 - 12 - 6 - 2 - 2 - 3 - 12 - 3 - 17 - 16 - 9 - 1 - 6 - 0 - 6 - 7 - 13 - 15 - 15 - 10 - 81 - 89 - 15 - 21 - 7 - 15 - 4 - 0 - 3 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -SRP0 -MDRP[rnd,white] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -450 494 m 1,0,-1 - 318 385 l 1,1,-1 - 318 0 l 1,2,-1 - 138 0 l 1,3,-1 - 138 1484 l 1,4,-1 - 318 1484 l 1,5,-1 - 318 557 l 1,6,-1 - 793 1082 l 1,7,-1 - 1004 1082 l 1,8,-1 - 565 617 l 1,9,-1 - 924 131 l 1,10,-1 - 1021 131 l 1,11,-1 - 1021 -408 l 1,12,-1 - 858 -408 l 1,13,-1 - 858 0 l 1,14,-1 - 811 0 l 1,15,-1 - 450 494 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C6B -Encoding: 11371 11371 2218 -Width: 1251 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 1 - 0 - 5 - 9 - 10 - 3 - 3 - 6 - 9 - 0 - 4 - 13 - 12 - 9 - 6 - 7 - 6 - 95 - 89 - 7 - 3 - 4 - 10 - 3 - 10 - 95 - 89 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,white] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1187 -408 m 1,0,-1 - 1010 -408 l 1,1,-1 - 1010 0 l 1,2,-1 - 65 0 l 1,3,-1 - 65 143 l 1,4,-1 - 923 1253 l 1,5,-1 - 138 1253 l 1,6,-1 - 138 1409 l 1,7,-1 - 1140 1409 l 1,8,-1 - 1140 1270 l 1,9,-1 - 282 156 l 1,10,-1 - 1187 156 l 1,11,-1 - 1187 -408 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C6C -Encoding: 11372 11372 2219 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 2 - 6 - 6 - 10 - 9 - 7 - 3 - 0 - 9 - 0 - 13 - 12 - 6 - 3 - 4 - 3 - 80 - 89 - 4 - 15 - 1 - 7 - 0 - 7 - 80 - 89 - 10 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,white] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -49 0 m 1,0,-1 - 49 137 l 1,1,-1 - 710 943 l 1,2,-1 - 89 943 l 1,3,-1 - 89 1082 l 1,4,-1 - 913 1082 l 1,5,-1 - 913 945 l 1,6,-1 - 251 139 l 1,7,-1 - 950 139 l 1,8,-1 - 950 -408 l 1,9,-1 - 787 -408 l 1,10,-1 - 787 0 l 1,11,-1 - 49 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C6D -Encoding: 11373 11373 2220 -Width: 1500 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 23 - 6 - 17 - 0 - 0 - 14 - 6 - 14 - 26 - 27 - 1 - 11 - 0 - 12 - 3 - 9 - 20 - 95 - 89 - 9 - 4 - 3 - 15 - 95 - 89 - 3 - 19 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1142 0 m 1,0,-1 - 1142 71 l 1,1,2 - 960 -20 960 -20 790 -20 c 0,3,4 - 463 -20 463 -20 280 175 c 128,-1,5 - 97 370 97 370 97 711 c 0,6,7 - 97 1049 97 1049 282 1239.5 c 128,-1,8 - 467 1430 467 1430 797 1430 c 0,9,10 - 992 1430 992 1430 1152 1353 c 1,11,-1 - 1302 1409 l 1,12,-1 - 1333 1409 l 1,13,-1 - 1333 0 l 1,14,-1 - 1142 0 l 1,0,-1 -790 133 m 0,15,16 - 1024 133 1024 133 1142 236 c 1,17,-1 - 1142 1177 l 1,18,19 - 1027 1277 1027 1277 797 1277 c 0,20,21 - 556 1277 556 1277 423.5 1128.5 c 128,-1,22 - 291 980 291 980 291 711 c 0,23,24 - 291 440 291 440 424.5 286.5 c 128,-1,25 - 558 133 558 133 790 133 c 0,15,16 -EndSplineSet -EndChar - -StartChar: uni2C71 -Encoding: 11377 11377 2221 -Width: 1222 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 3 - 2 - 1 - 0 - 6 - 2 - 6 - 22 - 14 - 23 - 12 - 18 - 83 - 89 - 15 - 15 - 12 - 16 - 6 - 1 - 2 - 15 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -613 0 m 1,0,-1 - 400 0 l 1,1,-1 - 7 1082 l 1,2,-1 - 199 1082 l 1,3,-1 - 437 378 l 2,4,5 - 450 338 450 338 506 141 c 1,6,-1 - 522 194 l 1,7,-1 - 580 376 l 1,8,-1 - 722 840 l 2,9,10 - 764 977 764 977 825 1039.5 c 128,-1,11 - 886 1102 886 1102 990 1102 c 0,12,13 - 1155 1102 1155 1102 1251 947 c 1,14,-1 - 1145 847 l 1,15,16 - 1104 907 1104 907 1074.5 926.5 c 128,-1,17 - 1045 946 1045 946 1009 946 c 0,18,19 - 967 946 967 946 942 917 c 128,-1,20 - 917 888 917 888 894 820 c 2,21,-1 - 613 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C72 -Encoding: 11378 11378 2222 -Width: 2124 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 20 - 19 - 30 - 14 - 23 - 19 - 4 - 37 - 2 - 38 - 27 - 3 - 14 - 30 - 23 - 3 - 18 - 19 - 3 - 18 - 18 - 9 - 18 - 0 - 5 - 95 - 89 - 3 - 0 - 4 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1969 1430 m 0,0,1 - 2127 1430 2127 1430 2225 1283 c 1,2,-1 - 2112 1176 l 1,3,4 - 2046 1275 2046 1275 1973 1275 c 0,5,6 - 1923 1275 1923 1275 1893 1246.5 c 128,-1,7 - 1863 1218 1863 1218 1843 1149 c 2,8,-1 - 1511 0 l 1,9,-1 - 1283 0 l 1,10,-1 - 1039 895 l 2,11,12 - 1023 948 1023 948 1000.5 1046.5 c 128,-1,13 - 978 1145 978 1145 969 1195 c 1,14,15 - 951 1084 951 1084 898 895 c 2,16,-1 - 652 0 l 1,17,-1 - 424 0 l 1,18,-1 - 9 1409 l 1,19,-1 - 208 1409 l 1,20,-1 - 461 514 l 2,21,22 - 506 346 506 346 544 168 c 1,23,24 - 568 278 568 278 599.5 408 c 128,-1,25 - 631 538 631 538 877 1409 c 1,26,-1 - 1060 1409 l 1,27,-1 - 1305 532 l 2,28,29 - 1361 317 1361 317 1393 168 c 1,30,-1 - 1402 203 l 1,31,32 - 1459 447 1459 447 1478 514 c 2,33,-1 - 1664 1179 l 2,34,35 - 1699 1308 1699 1308 1770 1369 c 128,-1,36 - 1841 1430 1841 1430 1969 1430 c 0,0,1 -EndSplineSet -EndChar - -StartChar: uni2C73 -Encoding: 11379 11379 2223 -Width: 1722 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 12 - 3 - 17 - 3 - 35 - 27 - 36 - 9 - 8 - 8 - 35 - 24 - 31 - 83 - 89 - 28 - 24 - 16 - 17 - 12 - 3 - 3 - 7 - 14 - 16 - 8 - 15 - 7 - 21 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1174 0 m 1,0,-1 - 965 0 l 1,1,-1 - 792 698 l 1,2,-1 - 740 933 l 1,3,-1 - 733 898 l 1,4,-1 - 686 694 l 1,5,-1 - 508 0 l 1,6,-1 - 300 0 l 1,7,-1 - -3 1082 l 1,8,-1 - 175 1082 l 1,9,-1 - 358 353 l 2,10,11 - 367 320 367 320 401 150 c 1,12,-1 - 436 294 l 1,13,-1 - 644 1082 l 1,14,-1 - 837 1082 l 1,15,-1 - 1026 345 l 1,16,-1 - 1072 149 l 1,17,18 - 1097 287 1097 287 1117 353 c 2,19,-1 - 1251 864 l 2,20,21 - 1274 952 1274 952 1307.5 1004 c 128,-1,22 - 1341 1056 1341 1056 1387 1079 c 128,-1,23 - 1433 1102 1433 1102 1517 1102 c 0,24,25 - 1591 1102 1591 1102 1652 1067 c 128,-1,26 - 1713 1032 1713 1032 1766 947 c 1,27,-1 - 1660 847 l 1,28,29 - 1630 892 1630 892 1598.5 919 c 128,-1,30 - 1567 946 1567 946 1524 946 c 0,31,32 - 1480 946 1480 946 1453 915 c 128,-1,33 - 1426 884 1426 884 1409 820 c 2,34,-1 - 1174 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C74 -Encoding: 11380 11380 2224 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 43 - 26 - 9 - 28 - 7 - 15 - 30 - 30 - 7 - 9 - 3 - 5 - 0 - 18 - 3 - 3 - 5 - 5 - 22 - 0 - 3 - 37 - 36 - 3 - 18 - 28 - 18 - 81 - 89 - 7 - 22 - 28 - 28 - 2 - 25 - 15 - 12 - 33 - 80 - 89 - 12 - 16 - 2 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 440 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1024 1540 basechar 0 -AnchorPoint: "Anchor-20" 1024 -380 basechar 0 -AnchorPoint: "Anchor-16" 580 1200 basechar 0 -AnchorPoint: "Anchor-15" 1030 1260 basechar 0 -AnchorPoint: "Anchor-14" 514 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1017 1082 m 1,0,-1 - 613 0 l 1,1,-1 - 400 0 l 1,2,-1 - 202 547 l 1,3,-1 - 96 511 l 1,4,-1 - 45 639 l 1,5,6 - 115 659 115 659 156 675 c 1,7,8 - 118 789 118 789 118 861 c 0,9,10 - 118 963 118 963 183 1028 c 128,-1,11 - 248 1093 248 1093 356 1093 c 0,12,13 - 448 1093 448 1093 504.5 1033 c 128,-1,14 - 561 973 561 973 561 874 c 0,15,16 - 561 785 561 785 511.5 721 c 128,-1,17 - 462 657 462 657 352 605 c 1,18,-1 - 437 378 l 2,19,20 - 456 329 456 329 492 194 c 2,21,-1 - 506 141 l 1,22,-1 - 522 194 l 1,23,-1 - 580 376 l 1,24,-1 - 826 1082 l 1,25,-1 - 1017 1082 l 1,0,-1 -273 860 m 0,26,27 - 273 815 273 815 307 730 c 1,28,29 - 412 789 412 789 412 866 c 0,30,31 - 412 900 412 900 395 921.5 c 128,-1,32 - 378 943 378 943 349 943 c 256,33,34 - 320 943 320 943 296.5 923.5 c 128,-1,35 - 273 904 273 904 273 860 c 0,26,27 -EndSplineSet -EndChar - -StartChar: uni2C75 -Encoding: 11381 11381 2225 -Width: 1182 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 6 - 2 - 2 - 3 - 0 - 3 - 9 - 8 - 6 - 1 - 95 - 89 - 6 - 6 - 3 - 4 - 3 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1121 653 m 1,0,-1 - 359 653 l 1,1,-1 - 359 0 l 1,2,-1 - 168 0 l 1,3,-1 - 168 1409 l 1,4,-1 - 359 1409 l 1,5,-1 - 359 813 l 1,6,-1 - 1121 813 l 1,7,-1 - 1121 653 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C76 -Encoding: 11382 11382 2226 -Width: 871 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 1 - 5 - 5 - 6 - 2 - 6 - 9 - 8 - 1 - 4 - 81 - 89 - 1 - 1 - 6 - 7 - 15 - 6 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -322 1082 m 1,0,-1 - 322 624 l 1,1,-1 - 809 624 l 1,2,-1 - 809 493 l 1,3,-1 - 322 493 l 1,4,-1 - 322 0 l 1,5,-1 - 142 0 l 1,6,-1 - 142 1082 l 1,7,-1 - 322 1082 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni2C77 -Encoding: 11383 11383 2227 -Width: 1328 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 22 - 0 - 28 - 9 - 15 - 12 - 5 - 5 - 15 - 0 - 3 - 32 - 31 - 19 - 25 - 80 - 89 - 19 - 16 - 9 - 8 - 16 - 28 - 15 - 2 - 15 - 80 - 89 - 2 - 22 -SVTCA[y-axis] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 737 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 1328 1540 basechar 0 -AnchorPoint: "Anchor-20" 1328 -380 basechar 0 -AnchorPoint: "Anchor-16" 680 1200 basechar 0 -AnchorPoint: "Anchor-15" 1109 1260 basechar 0 -AnchorPoint: "Anchor-14" 635 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -1242 565 m 0,0,1 - 1242 -20 1242 -20 658 -20 c 0,2,3 - 366 -20 366 -20 225.5 122 c 128,-1,4 - 85 264 85 264 85 545 c 0,5,6 - 85 776 85 776 196.5 925 c 128,-1,7 - 308 1074 308 1074 505 1106 c 1,8,-1 - 526 970 l 1,9,10 - 402 943 402 943 338 834 c 128,-1,11 - 274 725 274 725 274 541 c 0,12,13 - 274 335 274 335 345.5 233 c 128,-1,14 - 417 131 417 131 572 122 c 1,15,-1 - 572 699 l 2,16,17 - 572 892 572 892 649 998 c 128,-1,18 - 726 1104 726 1104 884 1104 c 0,19,20 - 1051 1104 1051 1104 1146.5 958 c 128,-1,21 - 1242 812 1242 812 1242 565 c 0,0,1 -1053 567 m 0,22,23 - 1053 760 1053 760 1009.5 865.5 c 128,-1,24 - 966 971 966 971 886 971 c 0,25,26 - 742 971 742 971 742 702 c 2,27,-1 - 742 122 l 1,28,29 - 903 129 903 129 978 237 c 128,-1,30 - 1053 345 1053 345 1053 567 c 0,22,23 -EndSplineSet -EndChar - -StartChar: uni2E17 -Encoding: 11799 11799 2228 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 5 - 1 - 4 - 0 - 1 - 0 - 8 - 9 - 1 - 7 - 1 - 7 - 3 - 5 - 3 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -618 741 m 1,0,-1 - 65 501 l 1,1,-1 - 65 663 l 1,2,-1 - 618 903 l 1,3,-1 - 618 741 l 1,0,-1 -618 379 m 1,4,-1 - 65 139 l 1,5,-1 - 65 301 l 1,6,-1 - 618 541 l 1,7,-1 - 618 379 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uniA717 -Encoding: 42775 42775 2229 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 64 - 1 - 1 - 6 - 128 - 4 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -IP -MDAP[rnd] -SMD -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --182 1139 m 1,0,-1 - -182 1286 l 1,1,-1 - -28 1286 l 1,2,-1 - -28 1139 l 1,3,-1 - -182 1139 l 1,0,-1 -57 950 m 1,4,-1 - 57 1484 l 1,5,-1 - 180 1484 l 1,6,-1 - 180 950 l 1,7,-1 - 57 950 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uniA718 -Encoding: 42776 42776 2230 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 7 - 7 - 1 - 6 - 6 - 3 - 128 - 1 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -391 1380 m 1,0,-1 - 26 1015 l 1,1,-1 - -61 1101 l 1,2,-1 - 304 1466 l 1,3,-1 - 391 1380 l 1,0,-1 --77 1337 m 1,4,-1 - -77 1484 l 1,5,-1 - 77 1484 l 1,6,-1 - 77 1337 l 1,7,-1 - -77 1337 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uniA719 -Encoding: 42777 42777 2231 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 7 - 7 - 6 - 128 - 2 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -274 1119 m 1,0,-1 - -274 1119 l 1,1,-1 - -274 1240 l 1,2,-1 - 274 1240 l 1,3,-1 - 274 1119 l 1,0,-1 --77 1337 m 1,4,-1 - -77 1484 l 1,5,-1 - 77 1484 l 1,6,-1 - 77 1337 l 1,7,-1 - -77 1337 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uniA71A -Encoding: 42778 42778 2232 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 128 - 0 - 5 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --274 1240 m 1,0,-1 - 149 1240 l 1,1,-1 - 149 1484 l 1,2,-1 - 274 1484 l 1,3,-1 - 274 1119 l 1,4,-1 - -274 1119 l 1,5,-1 - -274 1240 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniA71B -Encoding: 42779 42779 2233 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 2 - 3 - 0 - 3 - 5 - 3 - 10 - 11 - 1 - 5 - 5 - 3 - 8 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -872 1546 m 1,0,-1 - 586 1546 l 1,1,-1 - 586 1031 l 1,2,-1 - 439 1031 l 1,3,-1 - 439 1546 l 1,4,-1 - 153 1546 l 1,5,-1 - 153 1569 l 1,6,-1 - 500 1910 l 1,7,-1 - 517 1910 l 1,8,-1 - 872 1568 l 1,9,-1 - 872 1546 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniA71C -Encoding: 42780 42780 2234 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 8 - 5 - 0 - 5 - 3 - 3 - 10 - 11 - 8 - 4 - 4 - 1 - 7 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -872 1373 m 1,0,-1 - 517 1031 l 1,1,-1 - 500 1031 l 1,2,-1 - 153 1372 l 1,3,-1 - 153 1395 l 1,4,-1 - 439 1395 l 1,5,-1 - 439 1910 l 1,6,-1 - 586 1910 l 1,7,-1 - 586 1395 l 1,8,-1 - 872 1395 l 1,9,-1 - 872 1373 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniA71D -Encoding: 42781 42781 2235 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 7 - 3 - 2 - 4 - 3 - 4 - 9 - 8 - 1 - 1 - 3 - 5 - 4 - 3 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -339 1234 m 1,0,-1 - 234 1234 l 1,1,-1 - 178 1997 l 1,2,-1 - 396 1997 l 1,3,-1 - 339 1234 l 1,0,-1 -176 934 m 1,4,-1 - 176 1086 l 1,5,-1 - 391 1086 l 1,6,-1 - 391 934 l 1,7,-1 - 176 934 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uniA71E -Encoding: 42782 42782 2236 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 6 - 1 - 1 - 5 - 0 - 0 - 8 - 9 - 2 - 2 - 1 - 6 - 6 - 7 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -396 934 m 1,0,-1 - 178 934 l 1,1,-1 - 234 1697 l 1,2,-1 - 339 1697 l 1,3,-1 - 396 934 l 1,0,-1 -391 1997 m 1,4,-1 - 391 1845 l 1,5,-1 - 176 1845 l 1,6,-1 - 176 1997 l 1,7,-1 - 391 1997 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uniA71F -Encoding: 42783 42783 2237 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 6 - 1 - 1 - 5 - 0 - 0 - 8 - 9 - 2 - 1 - 6 - 7 - 1 -SVTCA[y-axis] -MDAP[rnd] -MDAP[rnd] -MDRP[min,rnd,black] -SRP1 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -396 421 m 1,0,-1 - 178 421 l 1,1,-1 - 234 1184 l 1,2,-1 - 339 1184 l 1,3,-1 - 396 421 l 1,0,-1 -391 1484 m 1,4,-1 - 391 1332 l 1,5,-1 - 176 1332 l 1,6,-1 - 176 1484 l 1,7,-1 - 391 1484 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uniA720 -Encoding: 42784 42784 2238 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 5 - 0 - 9 - 128 - 7 - 3 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -312 1359 m 1,0,-1 - 73 1359 l 1,1,-1 - 73 1129 l 1,2,-1 - -52 1129 l 1,3,-1 - -52 1359 l 1,4,-1 - -227 1359 l 1,5,-1 - -227 1129 l 1,6,-1 - -352 1129 l 1,7,-1 - -352 1484 l 1,8,-1 - 312 1484 l 1,9,-1 - 312 1359 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniA721 -Encoding: 42785 42785 2239 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 8 - 4 - 4 - 6 - 3 - 128 - 1 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -312 0 m 1,0,-1 - -352 0 l 1,1,-1 - -352 355 l 1,2,-1 - -227 355 l 1,3,-1 - -227 125 l 1,4,-1 - -52 125 l 1,5,-1 - -52 355 l 1,6,-1 - 73 355 l 1,7,-1 - 73 125 l 1,8,-1 - 312 125 l 1,9,-1 - 312 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniA788 -Encoding: 42888 42888 2240 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 3 - 5 - 0 - 3 - 7 - 8 - 4 - 128 - 15 - 2 - 1 - 8 - 2 -SVTCA[y-axis] -MDAP[rnd] -SDB -DELTAP1 -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -28 -425 m 1,0,-1 - 263 -140 l 1,1,-1 - 435 -140 l 1,2,-1 - 661 -425 l 1,3,-1 - 491 -425 l 1,4,-1 - 342 -235 l 1,5,-1 - 196 -425 l 1,6,-1 - 28 -425 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniA789 -Encoding: 42889 42889 2241 -Width: 569 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 0 - 4 - 4 - 3 - 7 - 7 - 8 - 9 - 5 - 4 - 0 - 2 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -187 875 m 1,0,-1 - 187 1082 l 1,1,-1 - 382 1082 l 1,2,-1 - 382 875 l 1,3,-1 - 187 875 l 1,0,-1 -187 201 m 1,4,-1 - 187 408 l 1,5,-1 - 382 408 l 1,6,-1 - 382 201 l 1,7,-1 - 187 201 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uniA78A -Encoding: 42890 42890 2242 -Width: 896 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 4 - 0 - 7 - 2 - 0 - 2 - 8 - 9 - 5 - 4 - 0 - 1 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -100 726 m 1,0,-1 - 100 874 l 1,1,-1 - 796 874 l 1,2,-1 - 796 726 l 1,3,-1 - 100 726 l 1,0,-1 -100 244 m 1,4,-1 - 100 392 l 1,5,-1 - 796 392 l 1,6,-1 - 796 244 l 1,7,-1 - 100 244 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uniA78B -Encoding: 42891 42891 2243 -Width: 391 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 0 - 0 - 6 - 7 - 1 - 5 - 0 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -285 1259 m 1,0,-1 - 232 601 l 1,1,-1 - 151 601 l 1,2,-1 - 100 1259 l 1,3,-1 - 100 1484 l 1,4,-1 - 285 1484 l 1,5,-1 - 285 1259 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniA78C -Encoding: 42892 42892 2244 -Width: 391 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 3 - 0 - 0 - 6 - 7 - 2 - 4 - 0 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -285 1259 m 1,0,-1 - 232 848 l 1,1,-1 - 151 848 l 1,2,-1 - 100 1259 l 1,3,-1 - 100 1484 l 1,4,-1 - 285 1484 l 1,5,-1 - 285 1259 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniFB01 -Encoding: 64257 64257 2245 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 44 - 6 - 4 - 2 - 21 - 19 - 13 - 1 - 1 - 2 - 22 - 26 - 26 - 25 - 29 - 2 - 29 - 30 - 31 - 28 - 15 - 24 - 25 - 83 - 89 - 24 - 0 - 10 - 15 - 80 - 89 - 10 - 0 - 0 - 4 - 5 - 4 - 80 - 89 - 19 - 5 - 15 - 26 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -361 951 m 1,0,-1 - 361 0 l 1,1,-1 - 181 0 l 1,2,-1 - 181 951 l 1,3,-1 - 29 951 l 1,4,-1 - 29 1082 l 1,5,-1 - 181 1082 l 1,6,-1 - 181 1204 l 2,7,8 - 181 1352 181 1352 246 1417 c 128,-1,9 - 311 1482 311 1482 445 1482 c 0,10,11 - 520 1482 520 1482 572 1470 c 1,12,-1 - 572 1333 l 1,13,14 - 527 1341 527 1341 492 1341 c 0,15,16 - 423 1341 423 1341 392 1306 c 128,-1,17 - 361 1271 361 1271 361 1179 c 2,18,-1 - 361 1082 l 1,19,-1 - 572 1082 l 1,20,-1 - 572 951 l 1,21,-1 - 361 951 l 1,0,-1 -706 1312 m 1,22,-1 - 706 1484 l 1,23,-1 - 886 1484 l 1,24,-1 - 886 1312 l 1,25,-1 - 706 1312 l 1,22,-1 -706 0 m 1,26,-1 - 706 1082 l 1,27,-1 - 886 1082 l 1,28,-1 - 886 0 l 1,29,-1 - 706 0 l 1,26,-1 -EndSplineSet -EndChar - -StartChar: uniFB02 -Encoding: 64258 64258 2246 -Width: 1024 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 21 - 19 - 1 - 6 - 4 - 2 - 13 - 1 - 1 - 2 - 22 - 25 - 2 - 25 - 26 - 27 - 24 - 0 - 10 - 15 - 80 - 89 - 10 - 0 - 0 - 4 - 5 - 4 - 80 - 89 - 19 - 5 - 15 - 22 - 1 - 21 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MIAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -361 951 m 1,0,-1 - 361 0 l 1,1,-1 - 181 0 l 1,2,-1 - 181 951 l 1,3,-1 - 29 951 l 1,4,-1 - 29 1082 l 1,5,-1 - 181 1082 l 1,6,-1 - 181 1204 l 2,7,8 - 181 1352 181 1352 246 1417 c 128,-1,9 - 311 1482 311 1482 445 1482 c 0,10,11 - 520 1482 520 1482 572 1470 c 1,12,-1 - 572 1333 l 1,13,14 - 527 1341 527 1341 492 1341 c 0,15,16 - 423 1341 423 1341 392 1306 c 128,-1,17 - 361 1271 361 1271 361 1179 c 2,18,-1 - 361 1082 l 1,19,-1 - 572 1082 l 1,20,-1 - 572 951 l 1,21,-1 - 361 951 l 1,0,-1 -707 0 m 1,22,-1 - 707 1484 l 1,23,-1 - 887 1484 l 1,24,-1 - 887 0 l 1,25,-1 - 707 0 l 1,22,-1 -EndSplineSet -EndChar - -StartChar: uniFB1D -Encoding: 64285 64285 2247 -Width: 532 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1289 1497 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 266 -331 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" yod hiriq -EndChar - -StartChar: uniFB1E -Encoding: 64286 64286 2248 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -PUSHB_7 - 6 - 15 - 0 - 1 - 0 - 10 - 3 -PUSHW_1 - 319 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-10" 0 1430 mark 0 -AnchorPoint: "Anchor-3" 0 1430 mark 0 -LayerCount: 2 -Fore -SplineSet -330 1763 m 1,0,1 - 330 1618 330 1618 240 1532 c 128,-1,2 - 150 1446 150 1446 0 1446 c 256,3,4 - -150 1446 -150 1446 -240 1533.5 c 128,-1,5 - -330 1621 -330 1621 -330 1763 c 1,6,-1 - -168 1763 l 1,7,8 - -168 1686 -168 1686 -123 1639.5 c 128,-1,9 - -78 1593 -78 1593 0 1593 c 0,10,11 - 77 1593 77 1593 122.5 1641 c 128,-1,12 - 168 1689 168 1689 168 1763 c 1,13,-1 - 330 1763 l 1,0,1 -EndSplineSet -EndChar - -StartChar: yodyod_patah -Encoding: 64287 64287 2249 -Width: 1042 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 520 0 basechar 0 -AnchorPoint: "Anchor-12" 520 1350 basechar 0 -AnchorPoint: "Anchor-11" 360 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 700 0 basechar 0 -AnchorPoint: "Anchor-8" 780 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 520 0 basechar 0 -AnchorPoint: "Anchor-5" 520 0 basechar 0 -AnchorPoint: "Anchor-4" 520 1700 basechar 0 -AnchorPoint: "Anchor-3" 520 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1289 1497 N 1 0 0 1 0 0 2 -Refer: 1289 1497 N 1 0 0 1 510 0 2 -Refer: 1263 1463 N 1 0 0 1 522 547 2 -Ligature2: "Ligature Substitution lookup 5 subtable" yodyod patah -EndChar - -StartChar: alternativeayin -Encoding: 64288 64288 2250 -Width: 1192 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1298 1506 N 1 0 0 1 0 0 3 -EndChar - -StartChar: alefwide -Encoding: 64289 64289 2251 -Width: 1286 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1120 1430 basechar 0 -AnchorPoint: "Anchor-9" 1060 0 basechar 0 -AnchorPoint: "Anchor-8" 1080 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 660 1350 basechar 0 -AnchorPoint: "Anchor-2" 550 260 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1280 1488 N 1 0 0 1 0 0 3 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: daletwide -Encoding: 64290 64290 2252 -Width: 1135 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 730 0 basechar 0 -AnchorPoint: "Anchor-12" 560 1350 basechar 0 -AnchorPoint: "Anchor-11" 560 0 basechar 0 -AnchorPoint: "Anchor-10" 960 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 900 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 560 0 basechar 0 -AnchorPoint: "Anchor-5" 830 0 basechar 0 -AnchorPoint: "Anchor-4" 540 1700 basechar 0 -AnchorPoint: "Anchor-3" 540 1350 basechar 0 -AnchorPoint: "Anchor-2" 380 700 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1283 1491 N 1 0 0 1 0 0 3 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: hewide -Encoding: 64291 64291 2253 -Width: 1298 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1000 1430 basechar 0 -AnchorPoint: "Anchor-9" 960 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-2" 630 700 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1284 1492 N 1 0 0 1 0 0 3 -EndChar - -StartChar: kafwide -Encoding: 64292 64292 2254 -Width: 1075 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 460 0 basechar 0 -AnchorPoint: "Anchor-12" 460 1350 basechar 0 -AnchorPoint: "Anchor-11" 460 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 460 0 basechar 0 -AnchorPoint: "Anchor-5" 460 0 basechar 0 -AnchorPoint: "Anchor-4" 400 1700 basechar 0 -AnchorPoint: "Anchor-3" 400 1350 basechar 0 -AnchorPoint: "Anchor-2" 440 660 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1291 1499 N 1 0 0 1 0 0 3 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: lamedwide -Encoding: 64293 64293 2255 -Width: 1085 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 420 0 basechar 0 -AnchorPoint: "Anchor-12" 680 1350 basechar 0 -AnchorPoint: "Anchor-11" 420 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 700 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 0 1350 basechar 0 -AnchorPoint: "Anchor-6" 420 0 basechar 0 -AnchorPoint: "Anchor-5" 420 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-2" 430 720 basechar 0 -AnchorPoint: "Anchor-0" -130 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1292 1500 N 1 0 0 1 0 0 3 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: finalmemwide -Encoding: 64294 64294 2256 -Width: 1389 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 680 1350 basechar 0 -AnchorPoint: "Anchor-11" 680 0 basechar 0 -AnchorPoint: "Anchor-10" 1200 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 680 0 basechar 0 -AnchorPoint: "Anchor-5" 680 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 660 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1293 1501 N 1 0 0 1 0 0 3 -EndChar - -StartChar: reshwide -Encoding: 64295 64295 2257 -Width: 1094 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 420 1350 basechar 0 -AnchorPoint: "Anchor-11" 700 0 basechar 0 -AnchorPoint: "Anchor-10" 860 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 860 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 500 0 basechar 0 -AnchorPoint: "Anchor-5" 820 0 basechar 0 -AnchorPoint: "Anchor-4" 420 1700 basechar 0 -AnchorPoint: "Anchor-3" 420 1350 basechar 0 -AnchorPoint: "Anchor-2" 410 700 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1304 1512 N 1 0 0 1 0 0 3 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: tavwide -Encoding: 64296 64296 2258 -Width: 1415 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1200 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1100 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 700 1700 basechar 0 -AnchorPoint: "Anchor-3" 700 1350 basechar 0 -AnchorPoint: "Anchor-2" 740 700 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1306 1514 N 1 0 0 1 0 0 3 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: alt_plussign -Encoding: 64297 64297 2259 -Width: 1151 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 6 - 3 - 3 - 1 - 0 - 0 - 1 - 9 - 8 - 6 - 2 - 1 - 2 -PUSHW_1 - 321 -PUSHB_3 - 89 - 1 - 4 -PUSHW_1 - 311 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,grey] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1063 514 m 1,0,-1 - 90 514 l 1,1,-1 - 90 700 l 1,2,-1 - 481 700 l 1,3,-1 - 481 1128 l 1,4,-1 - 668 1128 l 1,5,-1 - 668 700 l 1,6,-1 - 1063 700 l 1,7,-1 - 1063 514 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: shinshindot -Encoding: 64298 64298 2260 -Width: 1495 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 30 - 15 - 30 - 36 - 15 - 16 - 37 -CALL -SRP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 700 0 basechar 0 -AnchorPoint: "Anchor-12" 700 1350 basechar 0 -AnchorPoint: "Anchor-11" 720 0 basechar 0 -AnchorPoint: "Anchor-10" 1700 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1460 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 720 0 basechar 0 -AnchorPoint: "Anchor-5" 720 0 basechar 0 -AnchorPoint: "Anchor-4" 760 1700 basechar 0 -AnchorPoint: "Anchor-3" 760 1350 basechar 0 -AnchorPoint: "Anchor-2" 950 620 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1305 1513 N 1 0 0 1 0 0 3 -Refer: 1265 1465 N 1 0 0 1 1325 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin shindot -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: shinsindot -Encoding: 64299 64299 2261 -Width: 1495 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 700 0 basechar 0 -AnchorPoint: "Anchor-12" 800 1350 basechar 0 -AnchorPoint: "Anchor-11" 720 0 basechar 0 -AnchorPoint: "Anchor-10" 1360 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1300 1350 basechar 0 -AnchorPoint: "Anchor-7" 0 1350 basechar 0 -AnchorPoint: "Anchor-6" 720 0 basechar 0 -AnchorPoint: "Anchor-5" 720 0 basechar 0 -AnchorPoint: "Anchor-4" 760 1700 basechar 0 -AnchorPoint: "Anchor-3" 760 1350 basechar 0 -AnchorPoint: "Anchor-2" 950 620 basechar 0 -AnchorPoint: "Anchor-0" -80 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1305 1513 N 1 0 0 1 0 0 3 -Refer: 1265 1465 N 1 0 0 1 152 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin sindot -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: shindageshshindot -Encoding: 64300 64300 2262 -Width: 1495 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 2 - 95 - 42 - 1 - 42 - 2 - 155 - 42 - 1 - 132 - 42 - 1 - 123 - 42 - 1 - 84 - 42 - 1 - 42 - 1 - 30 - 15 - 30 - 36 - 15 - 16 - 37 -CALL -SRP1 -SHC[rp1] -SRP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SHC[rp1] -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 700 0 basechar 0 -AnchorPoint: "Anchor-12" 700 1350 basechar 0 -AnchorPoint: "Anchor-11" 720 0 basechar 0 -AnchorPoint: "Anchor-10" 1700 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1460 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 720 0 basechar 0 -AnchorPoint: "Anchor-5" 720 0 basechar 0 -AnchorPoint: "Anchor-4" 760 1700 basechar 0 -AnchorPoint: "Anchor-3" 760 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1305 1513 N 1 0 0 1 0 0 3 -Refer: 1265 1465 N 1 0 0 1 1360 0 2 -Refer: 1268 1468 N 1 0 0 1 958 -79 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin dagesh shindot -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin shindot dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: shindageshsindot -Encoding: 64301 64301 2263 -Width: 1495 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 1 - 95 - 30 - 1 - 30 - 1 - 155 - 30 - 1 - 132 - 30 - 1 - 123 - 30 - 1 - 84 - 30 - 1 - 30 -SRP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SHC[rp1] -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 700 0 basechar 0 -AnchorPoint: "Anchor-12" 800 1350 basechar 0 -AnchorPoint: "Anchor-11" 720 0 basechar 0 -AnchorPoint: "Anchor-10" 1360 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1300 1350 basechar 0 -AnchorPoint: "Anchor-7" 0 1350 basechar 0 -AnchorPoint: "Anchor-6" 720 0 basechar 0 -AnchorPoint: "Anchor-5" 720 0 basechar 0 -AnchorPoint: "Anchor-4" 760 1700 basechar 0 -AnchorPoint: "Anchor-3" 760 1350 basechar 0 -AnchorPoint: "Anchor-0" -80 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1305 1513 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 958 -79 2 -Refer: 1265 1465 N 1 0 0 1 145 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin dagesh sindot -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin sindot dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: alefpatah -Encoding: 64302 64302 2264 -Width: 1286 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 460 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 960 0 basechar 0 -AnchorPoint: "Anchor-10" 1120 1430 basechar 0 -AnchorPoint: "Anchor-9" 1060 0 basechar 0 -AnchorPoint: "Anchor-8" 1080 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 360 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 660 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1280 1488 N 1 0 0 1 0 0 3 -Refer: 1263 1463 N 1 0 0 1 643 0 2 -Ligature2: "Ligature Substitution lookup 5 subtable" alef patah -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: alefqamats -Encoding: 64303 64303 2265 -Width: 1286 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 460 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 960 0 basechar 0 -AnchorPoint: "Anchor-10" 1120 1430 basechar 0 -AnchorPoint: "Anchor-9" 1060 0 basechar 0 -AnchorPoint: "Anchor-8" 1080 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 360 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 660 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1280 1488 N 1 0 0 1 0 0 3 -Refer: 1264 1464 N 1 0 0 1 643 0 2 -Ligature2: "Ligature Substitution lookup 5 subtable" alef qamats -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: alefmapiq -Encoding: 64304 64304 2266 -Width: 1286 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 96 - 35 - 1 - 48 - 35 - 1 - 35 -SVTCA[y-axis] -SRP1 -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1120 1430 basechar 0 -AnchorPoint: "Anchor-9" 1060 0 basechar 0 -AnchorPoint: "Anchor-8" 1080 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 660 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1280 1488 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 569 -585 2 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: betdagesh -Encoding: 64305 64305 2267 -Width: 1225 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 16 - 1 - 16 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 560 0 basechar 0 -AnchorPoint: "Anchor-12" 500 1350 basechar 0 -AnchorPoint: "Anchor-11" 560 0 basechar 0 -AnchorPoint: "Anchor-10" 940 1430 basechar 0 -AnchorPoint: "Anchor-9" 840 0 basechar 0 -AnchorPoint: "Anchor-8" 900 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 560 0 basechar 0 -AnchorPoint: "Anchor-5" 560 0 basechar 0 -AnchorPoint: "Anchor-4" 500 1700 basechar 0 -AnchorPoint: "Anchor-3" 500 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1281 1489 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 467 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" bet dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: gimeldagesh -Encoding: 64306 64306 2268 -Width: 866 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 79 - 36 - 1 - 47 - 36 - 1 - 36 -SVTCA[y-axis] -SRP1 -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 450 0 basechar 0 -AnchorPoint: "Anchor-12" 360 1350 basechar 0 -AnchorPoint: "Anchor-11" 450 0 basechar 0 -AnchorPoint: "Anchor-10" 640 1430 basechar 0 -AnchorPoint: "Anchor-9" 580 0 basechar 0 -AnchorPoint: "Anchor-8" 500 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 450 0 basechar 0 -AnchorPoint: "Anchor-5" 450 0 basechar 0 -AnchorPoint: "Anchor-4" 360 1700 basechar 0 -AnchorPoint: "Anchor-3" 360 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1282 1490 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 201 76 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" gimel dagesh -EndChar - -StartChar: daletdagesh -Encoding: 64307 64307 2269 -Width: 1135 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 16 - 1 - 16 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 730 0 basechar 0 -AnchorPoint: "Anchor-12" 540 1350 basechar 0 -AnchorPoint: "Anchor-11" 560 0 basechar 0 -AnchorPoint: "Anchor-10" 960 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 900 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 560 0 basechar 0 -AnchorPoint: "Anchor-5" 830 0 basechar 0 -AnchorPoint: "Anchor-4" 540 1700 basechar 0 -AnchorPoint: "Anchor-3" 540 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1283 1491 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 383 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" dalet dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: hedagesh -Encoding: 64308 64308 2270 -Width: 1298 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 2 - 0 - 16 - 1 - 16 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 600 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1000 1430 basechar 0 -AnchorPoint: "Anchor-9" 960 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1284 1492 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 641 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" he dagesh -EndChar - -StartChar: vavdagesh -Encoding: 64309 64309 2271 -Width: 532 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 4 - 1 - 4 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 360 0 basechar 0 -AnchorPoint: "Anchor-12" 270 1350 basechar 0 -AnchorPoint: "Anchor-11" 270 0 basechar 0 -AnchorPoint: "Anchor-10" 500 1430 basechar 0 -AnchorPoint: "Anchor-9" 180 0 basechar 0 -AnchorPoint: "Anchor-8" 360 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 270 0 basechar 0 -AnchorPoint: "Anchor-5" 270 0 basechar 0 -AnchorPoint: "Anchor-4" 270 1700 basechar 0 -AnchorPoint: "Anchor-3" 270 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1285 1493 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 10 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" vav dagesh -EndChar - -StartChar: zayindagesh -Encoding: 64310 64310 2272 -Width: 662 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 16 - 1 - 16 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 300 0 basechar 0 -AnchorPoint: "Anchor-12" 420 1350 basechar 0 -AnchorPoint: "Anchor-11" 300 0 basechar 0 -AnchorPoint: "Anchor-10" 540 1430 basechar 0 -AnchorPoint: "Anchor-9" 240 0 basechar 0 -AnchorPoint: "Anchor-8" 460 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 300 0 basechar 0 -AnchorPoint: "Anchor-5" 300 0 basechar 0 -AnchorPoint: "Anchor-4" 420 1700 basechar 0 -AnchorPoint: "Anchor-3" 420 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1286 1494 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 27 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" zayin dagesh -EndChar - -StartChar: tetdagesh -Encoding: 64312 64312 2273 -Width: 1337 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 36 - 1 - 36 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 680 0 basechar 0 -AnchorPoint: "Anchor-10" 1180 1430 basechar 0 -AnchorPoint: "Anchor-9" 1020 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 680 0 basechar 0 -AnchorPoint: "Anchor-5" 680 0 basechar 0 -AnchorPoint: "Anchor-4" 660 1700 basechar 0 -AnchorPoint: "Anchor-3" 660 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1288 1496 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 694 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" tet dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: yoddagesh -Encoding: 64313 64313 2274 -Width: 532 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 1 - 203 - 4 - 1 - 143 - 4 - 1 - 127 - 4 - 1 - 47 - 4 - 1 - 0 - 4 - 1 - 4 -SVTCA[y-axis] -SRP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 380 0 basechar 0 -AnchorPoint: "Anchor-12" 270 1350 basechar 0 -AnchorPoint: "Anchor-11" 270 0 basechar 0 -AnchorPoint: "Anchor-10" 500 1430 basechar 0 -AnchorPoint: "Anchor-9" 180 0 basechar 0 -AnchorPoint: "Anchor-8" 360 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 280 0 basechar 0 -AnchorPoint: "Anchor-5" 280 0 basechar 0 -AnchorPoint: "Anchor-4" 270 1700 basechar 0 -AnchorPoint: "Anchor-3" 270 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1289 1497 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 10 172 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" yod dagesh -EndChar - -StartChar: finalkafdagesh -Encoding: 64314 64314 2275 -Width: 1094 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 12 - 1 - 12 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 540 0 basechar 0 -AnchorPoint: "Anchor-12" 400 1350 basechar 0 -AnchorPoint: "Anchor-11" 340 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 1040 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 340 0 basechar 0 -AnchorPoint: "Anchor-5" 420 0 basechar 0 -AnchorPoint: "Anchor-4" 400 1700 basechar 0 -AnchorPoint: "Anchor-3" 400 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1290 1498 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 408 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" finalkaf dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: kafdagesh -Encoding: 64315 64315 2276 -Width: 1075 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 18 - 1 - 18 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 460 0 basechar 0 -AnchorPoint: "Anchor-12" 400 1350 basechar 0 -AnchorPoint: "Anchor-11" 460 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 460 0 basechar 0 -AnchorPoint: "Anchor-5" 460 0 basechar 0 -AnchorPoint: "Anchor-4" 400 1700 basechar 0 -AnchorPoint: "Anchor-3" 400 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1291 1499 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 465 -69 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" kaf dagesh -EndChar - -StartChar: lameddagesh -Encoding: 64316 64316 2277 -Width: 1085 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 1 - 2 - 26 - 1 - 26 - 1 - 4 - 26 - 1 - 26 -SRP1 -DELTAP1 -SHC[rp1] -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 420 0 basechar 0 -AnchorPoint: "Anchor-12" 680 1350 basechar 0 -AnchorPoint: "Anchor-11" 420 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 700 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 0 1350 basechar 0 -AnchorPoint: "Anchor-6" 420 0 basechar 0 -AnchorPoint: "Anchor-5" 420 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" -130 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1292 1500 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 428 16 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" lamed dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: memdagesh -Encoding: 64318 64318 2278 -Width: 1407 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 48 - 34 - 1 - 0 - 34 - 1 - 34 - 1 - 100 - 34 - 1 - 34 -SRP1 -DELTAP1 -SHC[rp1] -SVTCA[y-axis] -SRP1 -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 780 1350 basechar 0 -AnchorPoint: "Anchor-11" 680 0 basechar 0 -AnchorPoint: "Anchor-10" 1200 1430 basechar 0 -AnchorPoint: "Anchor-9" 1060 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 680 0 basechar 0 -AnchorPoint: "Anchor-5" 680 0 basechar 0 -AnchorPoint: "Anchor-4" 780 1700 basechar 0 -AnchorPoint: "Anchor-3" 780 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1294 1502 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 760 16 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" mem dagesh -EndChar - -StartChar: nundagesh -Encoding: 64320 64320 2279 -Width: 797 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 16 - 1 - 16 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 360 0 basechar 0 -AnchorPoint: "Anchor-12" 320 1350 basechar 0 -AnchorPoint: "Anchor-11" 360 0 basechar 0 -AnchorPoint: "Anchor-10" 650 1430 basechar 0 -AnchorPoint: "Anchor-9" 460 0 basechar 0 -AnchorPoint: "Anchor-8" 500 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 360 0 basechar 0 -AnchorPoint: "Anchor-5" 360 0 basechar 0 -AnchorPoint: "Anchor-4" 320 1700 basechar 0 -AnchorPoint: "Anchor-3" 320 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1296 1504 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 201 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" nun dagesh -EndChar - -StartChar: samekhdagesh -Encoding: 64321 64321 2280 -Width: 1343 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 2 - 0 - 34 - 1 - 34 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 640 1350 basechar 0 -AnchorPoint: "Anchor-11" 680 0 basechar 0 -AnchorPoint: "Anchor-10" 1200 1430 basechar 0 -AnchorPoint: "Anchor-9" 1000 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 680 0 basechar 0 -AnchorPoint: "Anchor-5" 680 0 basechar 0 -AnchorPoint: "Anchor-4" 640 1700 basechar 0 -AnchorPoint: "Anchor-3" 640 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1297 1505 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 678 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" samekh dagesh -EndChar - -StartChar: finalpedagesh -Encoding: 64323 64323 2281 -Width: 1276 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 600 0 basechar 0 -AnchorPoint: "Anchor-12" 600 1350 basechar 0 -AnchorPoint: "Anchor-11" 430 0 basechar 0 -AnchorPoint: "Anchor-10" 1100 1430 basechar 0 -AnchorPoint: "Anchor-9" 1200 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 500 0 basechar 0 -AnchorPoint: "Anchor-5" 500 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1299 1507 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 565 186 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" finalpe dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: pedagesh -Encoding: 64324 64324 2282 -Width: 1249 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 600 0 basechar 0 -AnchorPoint: "Anchor-12" 600 1350 basechar 0 -AnchorPoint: "Anchor-11" 600 0 basechar 0 -AnchorPoint: "Anchor-10" 1100 1430 basechar 0 -AnchorPoint: "Anchor-9" 900 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 600 0 basechar 0 -AnchorPoint: "Anchor-5" 600 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1300 1508 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 557 180 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" pe dagesh -EndChar - -StartChar: tsadidagesh -Encoding: 64326 64326 2283 -Width: 1116 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 13 - 1 - 47 - 18 - 1 - 18 - 1 - 36 - 18 - 1 - 16 - 18 - 1 - 18 -SRP1 -DELTAP1 -DELTAP1 -SHC[rp1] -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 600 0 basechar 0 -AnchorPoint: "Anchor-12" 520 1350 basechar 0 -AnchorPoint: "Anchor-11" 600 0 basechar 0 -AnchorPoint: "Anchor-10" 980 1430 basechar 0 -AnchorPoint: "Anchor-9" 800 0 basechar 0 -AnchorPoint: "Anchor-8" 900 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 600 0 basechar 0 -AnchorPoint: "Anchor-5" 600 0 basechar 0 -AnchorPoint: "Anchor-4" 520 1700 basechar 0 -AnchorPoint: "Anchor-3" 520 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1302 1510 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 328 -300 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" tsadi dagesh -EndChar - -StartChar: qofdagesh -Encoding: 64327 64327 2284 -Width: 1208 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 2 - 160 - 29 - 1 - 48 - 29 - 1 - 29 -SVTCA[y-axis] -SRP1 -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 160 0 basechar 0 -AnchorPoint: "Anchor-12" 560 1350 basechar 0 -AnchorPoint: "Anchor-11" 620 0 basechar 0 -AnchorPoint: "Anchor-10" 1080 1430 basechar 0 -AnchorPoint: "Anchor-9" 600 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 620 0 basechar 0 -AnchorPoint: "Anchor-5" 860 0 basechar 0 -AnchorPoint: "Anchor-4" 560 1700 basechar 0 -AnchorPoint: "Anchor-3" 560 1350 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1303 1511 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 596 100 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" qof dagesh -EndChar - -StartChar: reshdagesh -Encoding: 64328 64328 2285 -Width: 1094 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 16 - 1 - 16 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 680 0 basechar 0 -AnchorPoint: "Anchor-12" 420 1350 basechar 0 -AnchorPoint: "Anchor-11" 700 0 basechar 0 -AnchorPoint: "Anchor-10" 860 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 860 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 500 0 basechar 0 -AnchorPoint: "Anchor-5" 820 0 basechar 0 -AnchorPoint: "Anchor-4" 420 1700 basechar 0 -AnchorPoint: "Anchor-3" 420 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1304 1512 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 408 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" resh dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: shindagesh -Encoding: 64329 64329 2286 -Width: 1495 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 1 - 95 - 30 - 1 - 30 - 1 - 155 - 30 - 1 - 132 - 30 - 1 - 123 - 30 - 1 - 84 - 30 - 1 - 30 -SRP1 -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP1 -SHC[rp1] -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 700 0 basechar 0 -AnchorPoint: "Anchor-12" 700 1350 basechar 0 -AnchorPoint: "Anchor-11" 720 0 basechar 0 -AnchorPoint: "Anchor-10" 1360 1430 basechar 0 -AnchorPoint: "Anchor-9" 1080 0 basechar 0 -AnchorPoint: "Anchor-8" 1300 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 720 0 basechar 0 -AnchorPoint: "Anchor-5" 720 0 basechar 0 -AnchorPoint: "Anchor-4" 760 1700 basechar 0 -AnchorPoint: "Anchor-3" 760 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1305 1513 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 952 -79 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" shin dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: tavdagesh -Encoding: 64330 64330 2287 -Width: 1415 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_5 - 1 - 0 - 26 - 1 - 26 -SVTCA[y-axis] -SRP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -AnchorPoint: "Anchor-13" 660 0 basechar 0 -AnchorPoint: "Anchor-12" 660 1350 basechar 0 -AnchorPoint: "Anchor-11" 660 0 basechar 0 -AnchorPoint: "Anchor-10" 1200 1430 basechar 0 -AnchorPoint: "Anchor-9" 1060 0 basechar 0 -AnchorPoint: "Anchor-8" 1100 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 660 0 basechar 0 -AnchorPoint: "Anchor-5" 660 0 basechar 0 -AnchorPoint: "Anchor-4" 700 1700 basechar 0 -AnchorPoint: "Anchor-3" 700 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1306 1514 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 737 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" tav dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: vavholam -Encoding: 64331 64331 2288 -Width: 532 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 360 0 basechar 0 -AnchorPoint: "Anchor-12" 180 1350 basechar 0 -AnchorPoint: "Anchor-11" 270 0 basechar 0 -AnchorPoint: "Anchor-10" 660 1430 basechar 0 -AnchorPoint: "Anchor-9" 180 0 basechar 0 -AnchorPoint: "Anchor-8" 420 1350 basechar 0 -AnchorPoint: "Anchor-7" 100 1350 basechar 0 -AnchorPoint: "Anchor-6" 270 0 basechar 0 -AnchorPoint: "Anchor-5" 270 0 basechar 0 -AnchorPoint: "Anchor-4" 270 1700 basechar 0 -AnchorPoint: "Anchor-3" 270 1700 basechar 0 -AnchorPoint: "Anchor-0" -80 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1285 1493 N 1 0 0 1 0 0 3 -Refer: 1265 1465 N 1 0 0 1 266 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" vav holam -EndChar - -StartChar: betrafe -Encoding: 64332 64332 2289 -Width: 1225 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 560 0 basechar 0 -AnchorPoint: "Anchor-12" 360 1350 basechar 0 -AnchorPoint: "Anchor-11" 560 0 basechar 0 -AnchorPoint: "Anchor-10" 1020 1430 basechar 0 -AnchorPoint: "Anchor-9" 840 0 basechar 0 -AnchorPoint: "Anchor-8" 900 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 560 0 basechar 0 -AnchorPoint: "Anchor-5" 560 0 basechar 0 -AnchorPoint: "Anchor-4" 500 1700 basechar 0 -AnchorPoint: "Anchor-3" 500 1700 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1281 1489 N 1 0 0 1 0 0 3 -Refer: 1271 1471 N 1 0 0 1 516 0 2 -Ligature2: "Ligature Substitution lookup 5 subtable" bet rafe -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: kafrafe -Encoding: 64333 64333 2290 -Width: 1075 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 460 0 basechar 0 -AnchorPoint: "Anchor-12" 300 1350 basechar 0 -AnchorPoint: "Anchor-11" 460 0 basechar 0 -AnchorPoint: "Anchor-10" 980 1430 basechar 0 -AnchorPoint: "Anchor-9" 760 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 200 1350 basechar 0 -AnchorPoint: "Anchor-6" 460 0 basechar 0 -AnchorPoint: "Anchor-5" 460 0 basechar 0 -AnchorPoint: "Anchor-4" 460 1700 basechar 0 -AnchorPoint: "Anchor-3" 460 1700 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1291 1499 N 1 0 0 1 0 0 3 -Refer: 1271 1471 N 1 0 0 1 469 0 2 -Ligature2: "Ligature Substitution lookup 5 subtable" kaf rafe -EndChar - -StartChar: perafe -Encoding: 64334 64334 2291 -Width: 1249 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 600 0 basechar 0 -AnchorPoint: "Anchor-12" 400 1350 basechar 0 -AnchorPoint: "Anchor-11" 600 0 basechar 0 -AnchorPoint: "Anchor-10" 1100 1430 basechar 0 -AnchorPoint: "Anchor-9" 900 0 basechar 0 -AnchorPoint: "Anchor-8" 1000 1350 basechar 0 -AnchorPoint: "Anchor-7" 240 1350 basechar 0 -AnchorPoint: "Anchor-6" 600 0 basechar 0 -AnchorPoint: "Anchor-5" 600 0 basechar 0 -AnchorPoint: "Anchor-4" 560 1700 basechar 0 -AnchorPoint: "Anchor-3" 560 1700 basechar 0 -AnchorPoint: "Anchor-0" 60 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1300 1508 N 1 0 0 1 0 0 3 -Refer: 1271 1471 N 1 0 0 1 578 0 2 -Ligature2: "Ligature Substitution lookup 5 subtable" pe rafe -EndChar - -StartChar: aleflamed -Encoding: 64335 64335 2292 -Width: 1286 -GlyphClass: 3 -Flags: W -TtInstrs: -NPUSHB - 23 - 0 - 5 - 9 - 10 - 10 - 15 - 6 - 5 - 4 - 1 - 17 - 16 - 16 - 19 - 4 - 1 - 1 - 18 - 15 - 6 - 6 - 4 - 17 -NPUSHW - 9 - 314 - 16 - 9 - 313 - 1 - 4 - 313 - 2 - 310 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -238 1071 m 1,0,-1 - 80 1071 l 1,1,-1 - 80 1665 l 1,2,-1 - 266 1665 l 1,3,-1 - 266 1227 l 1,4,-1 - 352 1227 l 1,5,-1 - 803 606 l 1,6,7 - 953 746 953 746 981 1004 c 2,8,-1 - 1004 1227 l 1,9,-1 - 1194 1227 l 1,10,-1 - 1171 1008 l 2,11,12 - 1161 901 1161 901 1131 815 c 128,-1,13 - 1101 729 1101 729 1051.5 654 c 128,-1,14 - 1002 579 1002 579 899 477 c 1,15,-1 - 1260 0 l 1,16,-1 - 1026 0 l 1,17,-1 - 238 1071 l 1,0,-1 -EndSplineSet -Ligature2: "'dlig' Discretionary Ligatures in Hebrew lookup 1 subtable" alef lamed -EndChar - -StartChar: uniFE20 -Encoding: 65056 65056 2293 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 9 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-23" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -4 1463 m 1,0,-1 - 0 1463 l 2,1,2 - -235 1463 -235 1463 -399.5 1404 c 128,-1,3 - -564 1345 -564 1345 -658 1215 c 1,4,-1 - -791 1215 l 1,5,6 - -671 1405 -671 1405 -480 1495.5 c 128,-1,7 - -289 1586 -289 1586 -20 1586 c 2,8,-1 - 4 1586 l 1,9,-1 - 4 1463 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniFE21 -Encoding: 65057 65057 2294 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_3 - 1 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-22" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet --3 1586 m 1,0,-1 - 21 1586 l 2,1,2 - 289 1586 289 1586 480.5 1495.5 c 128,-1,3 - 672 1405 672 1405 792 1215 c 1,4,-1 - 659 1215 l 1,5,6 - 565 1345 565 1345 400.5 1404 c 128,-1,7 - 236 1463 236 1463 1 1463 c 2,8,-1 - -3 1463 l 1,9,-1 - -3 1586 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uniFE22 -Encoding: 65058 65058 2295 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 0 - 0 - 3 - 11 - 128 - 8 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-23" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -0 1275 m 1,0,1 - -96 1298 -96 1298 -184 1318.5 c 128,-1,2 - -272 1339 -272 1339 -342 1339 c 0,3,4 - -433 1339 -433 1339 -489.5 1327.5 c 128,-1,5 - -546 1316 -546 1316 -577 1293 c 128,-1,6 - -608 1270 -608 1270 -626 1220 c 1,7,-1 - -772 1220 l 1,8,9 - -740 1363 -740 1363 -630 1425.5 c 128,-1,10 - -520 1488 -520 1488 -334 1488 c 0,11,12 - -215 1488 -215 1488 0 1435 c 1,13,-1 - 0 1275 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uniFE23 -Encoding: 65059 65059 2296 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 7 - 128 - 3 - 11 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-22" 0 1200 mark 0 -LayerCount: 2 -Fore -SplineSet -0 1435 m 1,0,1 - 97 1411 97 1411 185.5 1390 c 128,-1,2 - 274 1369 274 1369 343 1369 c 0,3,4 - 475 1369 475 1369 540 1395 c 128,-1,5 - 605 1421 605 1421 625 1488 c 1,6,-1 - 773 1488 l 1,7,8 - 748 1386 748 1386 693.5 1329.5 c 128,-1,9 - 639 1273 639 1273 550 1246.5 c 128,-1,10 - 461 1220 461 1220 339 1220 c 0,11,12 - 261 1220 261 1220 174.5 1237 c 128,-1,13 - 88 1254 88 1254 0 1275 c 1,14,-1 - 0 1435 l 1,0,1 -EndSplineSet -EndChar - -StartChar: uniFFFC -Encoding: 65532 65532 2297 -Width: 2048 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 130 - 7 - 31 - 31 - 18 - 6 - 30 - 30 - 18 - 11 - 1 - 21 - 21 - 18 - 113 - 101 - 24 - 42 - 96 - 107 - 85 - 93 - 93 - 70 - 77 - 74 - 80 - 66 - 88 - 63 - 58 - 3 - 19 - 19 - 58 - 60 - 51 - 88 - 80 - 70 - 107 - 42 - 101 - 10 - 43 - 10 - 0 - 18 - 18 - 120 - 34 - 26 - 46 - 46 - 43 - 15 - 39 - 39 - 43 - 14 - 38 - 38 - 35 - 27 - 43 - 43 - 119 - 40 - 32 - 20 - 46 - 46 - 43 - 110 - 104 - 104 - 71 - 60 - 84 - 84 - 61 - 71 - 1 - 27 - 12 - 36 - 92 - 85 - 11 - 35 - 70 - 48 - 98 - 98 - 93 - 55 - 116 - 22 - 44 - 71 - 27 - 36 - 85 - 35 - 52 - 116 - 44 - 44 - 116 - 52 - 35 - 85 - 36 - 27 - 71 - 8 - 43 - 15 - 7 - 3 - 25 - 25 - 16 - 8 - 4 - 28 - 39 - 31 - 19 - 43 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SHP[rp1] -MDRP[rnd,white] -SHP[rp2] -SHP[rp2] -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -2048 1150 m 1,0,-1 - 1948 1150 l 1,1,-1 - 1948 1373 l 1,2,-1 - 1725 1373 l 1,3,-1 - 1725 1473 l 1,4,-1 - 2048 1473 l 1,5,-1 - 2048 1150 l 1,0,-1 -1473 1373 m 1,6,-1 - 1150 1373 l 1,7,-1 - 1150 1473 l 1,8,-1 - 1473 1473 l 1,9,-1 - 1473 1373 l 1,6,-1 -2048 575 m 1,10,-1 - 1948 575 l 1,11,-1 - 1948 898 l 1,12,-1 - 2048 898 l 1,13,-1 - 2048 575 l 1,10,-1 -898 1373 m 1,14,-1 - 575 1373 l 1,15,-1 - 575 1473 l 1,16,-1 - 898 1473 l 1,17,-1 - 898 1373 l 1,14,-1 -2048 0 m 1,18,-1 - 1725 0 l 1,19,-1 - 1725 100 l 1,20,-1 - 1948 100 l 1,21,-1 - 1948 323 l 1,22,-1 - 2048 323 l 1,23,-1 - 2048 0 l 1,18,-1 -323 1373 m 1,24,-1 - 100 1373 l 1,25,-1 - 100 1150 l 1,26,-1 - 0 1150 l 1,27,-1 - 0 1473 l 1,28,-1 - 323 1473 l 1,29,-1 - 323 1373 l 1,24,-1 -1473 0 m 1,30,-1 - 1150 0 l 1,31,-1 - 1150 100 l 1,32,-1 - 1473 100 l 1,33,-1 - 1473 0 l 1,30,-1 -100 575 m 1,34,-1 - 0 575 l 1,35,-1 - 0 898 l 1,36,-1 - 100 898 l 1,37,-1 - 100 575 l 1,34,-1 -898 0 m 1,38,-1 - 575 0 l 1,39,-1 - 575 100 l 1,40,-1 - 898 100 l 1,41,-1 - 898 0 l 1,38,-1 -323 0 m 1,42,-1 - 0 0 l 1,43,-1 - 0 323 l 1,44,-1 - 100 323 l 1,45,-1 - 100 100 l 1,46,-1 - 323 100 l 1,47,-1 - 323 0 l 1,42,-1 -1603 327 m 0,48,49 - 1510 327 1510 327 1462.5 374.5 c 128,-1,50 - 1415 422 1415 422 1394 541 c 1,51,-1 - 1501 559 l 1,52,53 - 1513 484 1513 484 1534 450 c 128,-1,54 - 1555 416 1555 416 1603 416 c 0,55,56 - 1653 416 1653 416 1675 449.5 c 128,-1,57 - 1697 483 1697 483 1697 578 c 2,58,-1 - 1697 1060 l 1,59,-1 - 1603 1060 l 1,60,-1 - 1603 1150 l 1,61,-1 - 1805 1150 l 1,62,-1 - 1805 581 l 2,63,64 - 1805 451 1805 451 1755 389 c 128,-1,65 - 1705 327 1705 327 1603 327 c 0,48,49 -1336 568 m 0,66,67 - 1336 460 1336 460 1258.5 399.5 c 128,-1,68 - 1181 339 1181 339 1038 339 c 2,69,-1 - 862 339 l 1,70,-1 - 862 1150 l 1,71,-1 - 1004 1150 l 2,72,73 - 1290 1150 1290 1150 1290 954 c 0,74,75 - 1290 886 1290 886 1251.5 835 c 128,-1,76 - 1213 784 1213 784 1135 767 c 1,77,78 - 1234 756 1234 756 1285 702.5 c 128,-1,79 - 1336 649 1336 649 1336 568 c 0,66,67 -1179 940 m 0,80,81 - 1179 1006 1179 1006 1134.5 1034.5 c 128,-1,82 - 1090 1063 1090 1063 1004 1063 c 2,83,-1 - 972 1063 l 1,84,-1 - 972 805 l 1,85,-1 - 1004 805 l 2,86,87 - 1179 805 1179 805 1179 940 c 0,80,81 -1226 577 m 0,88,89 - 1226 646 1226 646 1175.5 683 c 128,-1,90 - 1125 720 1125 720 1024 720 c 2,91,-1 - 972 720 l 1,92,-1 - 972 426 l 1,93,-1 - 1033 426 l 2,94,95 - 1226 426 1226 426 1226 577 c 0,88,89 -778 749 m 0,96,97 - 778 327 778 327 483 327 c 0,98,99 - 334 327 334 327 261 429.5 c 128,-1,100 - 188 532 188 532 188 749 c 0,101,102 - 188 962 188 962 261 1062.5 c 128,-1,103 - 334 1163 334 1163 484 1163 c 0,104,105 - 632 1163 632 1163 705 1062.5 c 128,-1,106 - 778 962 778 962 778 749 c 0,96,97 -665 749 m 0,107,108 - 665 920 665 920 620.5 996.5 c 128,-1,109 - 576 1073 576 1073 484 1073 c 0,110,111 - 388 1073 388 1073 344.5 996 c 128,-1,112 - 301 919 301 919 301 749 c 0,113,114 - 301 575 301 575 346 495.5 c 128,-1,115 - 391 416 391 416 483 416 c 0,116,117 - 576 416 576 416 620.5 491.5 c 128,-1,118 - 665 567 665 567 665 749 c 0,107,108 -EndSplineSet -EndChar - -StartChar: commaaccent -Encoding: 65539 -1 2298 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 7 - 0 - 4 - 9 - 0 - 9 - 12 - 11 - 8 - 8 - 3 - 0 - 9 - 16 - 9 - 2 - 9 - 0 - 3 - 16 - 3 - 32 - 3 - 3 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -MDAP[rnd] -DELTAP1 -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -328 -193 m 2,0,1 - 328 -280 328 -280 306 -333.5 c 128,-1,2 - 284 -387 284 -387 244 -434 c 1,3,-1 - 127 -434 l 1,4,5 - 172 -386 172 -386 196.5 -343 c 128,-1,6 - 221 -300 221 -300 221 -254 c 1,7,-1 - 133 -254 l 1,8,-1 - 133 -98 l 1,9,-1 - 328 -98 l 1,10,-1 - 328 -193 l 2,0,1 -EndSplineSet -EndChar - -StartChar: breve.cyr -Encoding: 65540 -1 2299 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 7 - 8 - 8 - 11 - 3 - 2 - 10 - 7 - 2 - 0 - 128 - 0 - 5 - 142 - 89 - 0 -SVTCA[y-axis] -MDAP[rnd] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,grey] -SHP[rp2] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -340 1200 m 256,0,1 - -16 1200 -16 1200 -27 1520 c 1,2,-1 - 137 1520 l 1,3,4 - 149 1321 149 1321 340 1321 c 256,5,6 - 531 1321 531 1321 543 1520 c 1,7,-1 - 707 1520 l 1,8,9 - 696 1200 696 1200 340 1200 c 256,0,1 -EndSplineSet -EndChar - -StartChar: caroncommaaccent -Encoding: 65541 -1 2300 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 6 - 0 - 4 - 8 - 0 - 8 - 11 - 10 - 8 - 7 - 146 - 89 - 80 - 3 - 96 - 3 - 2 - 160 - 3 - 176 - 3 - 2 - 3 - 8 - 3 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,grey] -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -325 1303 m 2,0,1 - 325 1216 325 1216 303 1157.5 c 128,-1,2 - 281 1099 281 1099 241 1052 c 1,3,-1 - 124 1052 l 1,4,5 - 218 1152 218 1152 218 1242 c 1,6,-1 - 130 1242 l 1,7,-1 - 130 1409 l 1,8,-1 - 325 1409 l 1,9,-1 - 325 1303 l 2,0,1 -EndSplineSet -EndChar - -StartChar: commaaccentrotate -Encoding: 65542 -1 2301 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 34 - 6 - 9 - 4 - 8 - 9 - 8 - 10 - 11 - 9 - 6 - 146 - 89 - 95 - 3 - 111 - 3 - 2 - 175 - 3 - 191 - 3 - 2 - 3 - 80 - 9 - 1 - 15 - 9 - 63 - 9 - 127 - 9 - 3 - 9 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -MDRP[min,rnd,black] -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -130 1317 m 2,0,1 - 130 1404 130 1404 152 1462.5 c 128,-1,2 - 174 1521 174 1521 214 1568 c 1,3,-1 - 331 1568 l 1,4,5 - 237 1468 237 1468 237 1378 c 1,6,-1 - 325 1378 l 1,7,-1 - 325 1211 l 1,8,-1 - 130 1211 l 1,9,-1 - 130 1317 l 2,0,1 -EndSplineSet -EndChar - -StartChar: grave.uc -Encoding: 65543 -1 2302 -Width: 602 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 1 - 4 - 6 - 7 - 159 - 2 - 175 - 2 - 191 - 2 - 3 - 2 - 128 - 31 - 0 - 47 - 0 - 63 - 0 - 95 - 0 - 4 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SMD -MDRP[min,rnd,black] -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -416 1530 m 1,0,-1 - 106 1747 l 1,1,-1 - 106 1776 l 1,2,-1 - 313 1776 l 1,3,-1 - 530 1550 l 1,4,-1 - 530 1530 l 1,5,-1 - 416 1530 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: acute.uc -Encoding: 65544 -1 2303 -Width: 602 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 1 - 4 - 6 - 7 - 159 - 2 - 175 - 2 - 191 - 2 - 3 - 2 - 128 - 31 - 0 - 47 - 0 - 63 - 0 - 95 - 0 - 4 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SMD -MDRP[min,rnd,black] -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -72 1530 m 1,0,-1 - 72 1550 l 1,1,-1 - 289 1776 l 1,2,-1 - 496 1776 l 1,3,-1 - 496 1747 l 1,4,-1 - 186 1530 l 1,5,-1 - 72 1530 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: circumflex.uc -Encoding: 65545 -1 2304 -Width: 664 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 9 - 8 - 3 - 3 - 1 - 6 - 0 - 6 - 11 - 10 - 3 - 159 - 8 - 175 - 8 - 2 - 8 - 128 - 5 - 31 - 1 - 47 - 1 - 63 - 1 - 95 - 1 - 4 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp1] -SMD -MDRP[min,rnd,black] -DELTAP1 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -662 1550 m 1,0,-1 - 662 1530 l 1,1,-1 - 557 1530 l 1,2,-1 - 338 1669 l 1,3,-1 - 336 1669 l 1,4,-1 - 104 1530 l 1,5,-1 - 0 1530 l 1,6,-1 - 0 1550 l 1,7,-1 - 234 1790 l 1,8,-1 - 438 1790 l 1,9,-1 - 662 1550 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: caron.uc -Encoding: 65546 -1 2305 -Width: 664 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 0 - 1 - 5 - 5 - 8 - 3 - 3 - 8 - 10 - 11 - 159 - 3 - 175 - 3 - 2 - 3 - 128 - 31 - 1 - 47 - 1 - 63 - 1 - 95 - 1 - 4 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SMD -MDRP[min,rnd,black] -DELTAP1 -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -438 1530 m 1,0,-1 - 234 1530 l 1,1,-1 - 0 1769 l 1,2,-1 - 0 1790 l 1,3,-1 - 104 1790 l 1,4,-1 - 336 1651 l 1,5,-1 - 338 1651 l 1,6,-1 - 557 1790 l 1,7,-1 - 662 1790 l 1,8,-1 - 662 1769 l 1,9,-1 - 438 1530 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: dieresis.uc -Encoding: 65547 -1 2306 -Width: 647 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 7 - 4 - 0 - 3 - 4 - 3 - 8 - 9 - 1 - 5 - 4 - 5 - 145 - 89 - 0 - 4 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -439 1530 m 1,0,-1 - 439 1714 l 1,1,-1 - 602 1714 l 1,2,-1 - 602 1530 l 1,3,-1 - 439 1530 l 1,0,-1 -45 1530 m 1,4,-1 - 45 1714 l 1,5,-1 - 210 1714 l 1,6,-1 - 210 1530 l 1,7,-1 - 45 1530 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: tilde.uc -Encoding: 65548 -1 2307 -Width: 672 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 20 - 21 - 21 - 25 - 8 - 9 - 9 - 24 - 20 - 13 - 13 - 5 - 143 - 89 - 31 - 13 - 1 - 176 - 13 - 192 - 13 - 208 - 13 - 3 - 15 - 13 - 31 - 13 - 47 - 13 - 3 - 9 - 3 - 13 - 0 - 64 - 0 - 18 - 143 - 89 - 8 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -CALL -SVTCA[y-axis] -SMD -RTG -SRP0 -MDRP[min,rnd,black] -SDS -SDB -DELTAP1 -DELTAP1 -DELTAP2 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -492 1530 m 0,0,1 - 450 1530 450 1530 408 1548.5 c 128,-1,2 - 366 1567 366 1567 327 1589.5 c 128,-1,3 - 288 1612 288 1612 252.5 1630.5 c 128,-1,4 - 217 1649 217 1649 186 1649 c 0,5,6 - 131 1649 131 1649 104 1618 c 128,-1,7 - 77 1587 77 1587 68 1530 c 1,8,-1 - -23 1530 l 1,9,10 - -12 1632 -12 1632 12 1684.5 c 128,-1,11 - 36 1737 36 1737 76.5 1767.5 c 128,-1,12 - 117 1798 117 1798 180 1798 c 0,13,14 - 224 1798 224 1798 266 1779.5 c 128,-1,15 - 308 1761 308 1761 347 1738.5 c 128,-1,16 - 386 1716 386 1716 420.5 1697.5 c 128,-1,17 - 455 1679 455 1679 485 1679 c 0,18,19 - 585 1679 585 1679 602 1798 c 1,20,-1 - 694 1798 l 1,21,22 - 677 1650 677 1650 627 1590 c 128,-1,23 - 577 1530 577 1530 492 1530 c 0,0,1 -EndSplineSet -EndChar - -StartChar: hungarumlaut.uc -Encoding: 65549 -1 2308 -Width: 815 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 10 - 4 - 7 - 1 - 4 - 12 - 13 - 8 - 159 - 2 - 175 - 2 - 191 - 2 - 3 - 2 - 128 - 6 - 31 - 0 - 47 - 0 - 63 - 0 - 95 - 0 - 4 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -SHP[rp2] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -32 1530 m 1,0,-1 - 32 1550 l 1,1,-1 - 229 1777 l 1,2,-1 - 436 1777 l 1,3,-1 - 436 1748 l 1,4,-1 - 126 1530 l 1,5,-1 - 32 1530 l 1,0,-1 -379 1530 m 1,6,-1 - 379 1550 l 1,7,-1 - 576 1777 l 1,8,-1 - 783 1777 l 1,9,-1 - 783 1748 l 1,10,-1 - 473 1530 l 1,11,-1 - 379 1530 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: breve.uc -Encoding: 65550 -1 2309 -Width: 584 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 10 - 11 - 11 - 15 - 4 - 3 - 14 - 10 - 159 - 3 - 175 - 3 - 191 - 3 - 3 - 3 - 128 - 7 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -SMD -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SRP1 -SVTCA[x-axis] -SHP[rp1] -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -308 1530 m 256,0,1 - 175 1530 175 1530 84.5 1599 c 128,-1,2 - -6 1668 -6 1668 -24 1779 c 1,3,-1 - 93 1779 l 1,4,5 - 110 1726 110 1726 164.5 1696 c 128,-1,6 - 219 1666 219 1666 310 1666 c 256,7,8 - 401 1666 401 1666 454.5 1696.5 c 128,-1,9 - 508 1727 508 1727 525 1779 c 1,10,-1 - 642 1779 l 1,11,12 - 621 1665 621 1665 531 1597.5 c 128,-1,13 - 441 1530 441 1530 308 1530 c 256,0,1 -EndSplineSet -EndChar - -StartChar: grave.alt1 -Encoding: 65551 -1 2310 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 67 96 N 1 0 0 1 0 0 2 -EndChar - -StartChar: grave.alt2 -Encoding: 65552 -1 2311 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 67 96 N 1 0 0 1 0 0 2 -EndChar - -StartChar: grave.alt3 -Encoding: 65553 -1 2312 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 67 96 N 1 0 0 1 0 0 2 -EndChar - -StartChar: acute.alt1 -Encoding: 65554 -1 2313 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 118 180 N 1 0 0 1 0 0 2 -EndChar - -StartChar: acute.alt2 -Encoding: 65555 -1 2314 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 118 180 N 1 0 0 1 0 0 2 -EndChar - -StartChar: acute.alt3 -Encoding: 65556 -1 2315 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 118 180 N 1 0 0 1 0 0 2 -EndChar - -StartChar: hookabove.alt1 -Encoding: 65557 -1 2316 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 16 - 8 - 15 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --223 1665 m 256,0,1 - -223 1696 -223 1696 -248.5 1713 c 128,-1,2 - -274 1730 -274 1730 -316 1730 c 0,3,4 - -388 1730 -388 1730 -458 1706 c 1,5,-1 - -489 1805 l 1,6,7 - -399 1835 -399 1835 -293 1835 c 0,8,9 - -56 1835 -56 1835 -56 1686 c 0,10,11 - -56 1627 -56 1627 -96.5 1584.5 c 128,-1,12 - -137 1542 -137 1542 -228 1531 c 1,13,-1 - -228 1481 l 1,14,-1 - -340 1481 l 1,15,-1 - -340 1601 l 1,16,17 - -271 1604 -271 1604 -247 1619 c 128,-1,18 - -223 1634 -223 1634 -223 1665 c 256,0,1 -EndSplineSet -EndChar - -StartChar: hookabove.alt2 -Encoding: 65558 -1 2317 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 16 - 8 - 15 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --485 1665 m 256,0,1 - -485 1696 -485 1696 -510.5 1713 c 128,-1,2 - -536 1730 -536 1730 -578 1730 c 0,3,4 - -650 1730 -650 1730 -720 1706 c 1,5,-1 - -751 1805 l 1,6,7 - -661 1835 -661 1835 -555 1835 c 0,8,9 - -318 1835 -318 1835 -318 1686 c 0,10,11 - -318 1627 -318 1627 -358.5 1584.5 c 128,-1,12 - -399 1542 -399 1542 -490 1531 c 1,13,-1 - -490 1481 l 1,14,-1 - -602 1481 l 1,15,-1 - -602 1601 l 1,16,17 - -533 1604 -533 1604 -509 1619 c 128,-1,18 - -485 1634 -485 1634 -485 1665 c 256,0,1 -EndSplineSet -EndChar - -StartChar: hookabove.alt3 -Encoding: 65559 -1 2318 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_4 - 3 - 16 - 8 - 15 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --670 1665 m 256,0,1 - -670 1696 -670 1696 -695.5 1713 c 128,-1,2 - -721 1730 -721 1730 -763 1730 c 0,3,4 - -835 1730 -835 1730 -905 1706 c 1,5,-1 - -936 1805 l 1,6,7 - -846 1835 -846 1835 -740 1835 c 0,8,9 - -503 1835 -503 1835 -503 1686 c 0,10,11 - -503 1627 -503 1627 -543.5 1584.5 c 128,-1,12 - -584 1542 -584 1542 -675 1531 c 1,13,-1 - -675 1481 l 1,14,-1 - -787 1481 l 1,15,-1 - -787 1601 l 1,16,17 - -718 1604 -718 1604 -694 1619 c 128,-1,18 - -670 1634 -670 1634 -670 1665 c 256,0,1 -EndSplineSet -EndChar - -StartChar: tilde.alt1 -Encoding: 65560 -1 2319 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tilde.alt2 -Encoding: 65561 -1 2320 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: breve.alt1 -Encoding: 65562 -1 2321 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 666 728 N 1 0 0 1 0 0 2 -EndChar - -StartChar: circumflex.alt1 -Encoding: 65563 -1 2322 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 648 710 N 1 0 0 1 0 0 2 -EndChar - -StartChar: dotbelow.alt1 -Encoding: 65564 -1 2323 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_2 - 0 - 2 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --241 -311 m 1,0,-1 - -241 -139 l 1,1,-1 - -61 -139 l 1,2,-1 - -61 -311 l 1,3,-1 - -241 -311 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: acute.alt4 -Encoding: 65565 -1 2324 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 118 180 N 1 0 0 1 0 0 2 -EndChar - -StartChar: acute.alt5 -Encoding: 65566 -1 2325 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 118 180 N 1 0 0 1 0 0 2 -EndChar - -StartChar: grave.alt4 -Encoding: 65567 -1 2326 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 67 96 N 1 0 0 1 0 0 2 -EndChar - -StartChar: grave.alt5 -Encoding: 65568 -1 2327 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 67 96 N 1 0 0 1 0 0 2 -EndChar - -StartChar: hookabove.alt4 -Encoding: 65569 -1 2328 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 715 777 N 1 0 0 1 0 0 3 -EndChar - -StartChar: hookabove.alt5 -Encoding: 65570 -1 2329 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 715 777 N 1 0 0 1 0 0 3 -EndChar - -StartChar: tilde.alt3 -Encoding: 65571 -1 2330 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tilde.alt4 -Encoding: 65572 -1 2331 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tilde.alt5 -Encoding: 65573 -1 2332 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tilde.alt6 -Encoding: 65574 -1 2333 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tilde.alt7 -Encoding: 65575 -1 2334 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tilde.alt8 -Encoding: 65576 -1 2335 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: dotbelow.alt2 -Encoding: 65577 -1 2336 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -528 0 2 -EndChar - -StartChar: dotbelow.alt3 -Encoding: 65578 -1 2337 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -644 0 2 -EndChar - -StartChar: dotbelow.alt4 -Encoding: 65579 -1 2338 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -804 0 2 -EndChar - -StartChar: dotbelow.alt5 -Encoding: 65580 -1 2339 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -576 0 2 -EndChar - -StartChar: dotbelow.alt6 -Encoding: 65581 -1 2340 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -873 0 2 -EndChar - -StartChar: tilde.alt9 -Encoding: 65582 -1 2341 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: dotbelow.alt7 -Encoding: 65583 -1 2342 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -418 0 2 -EndChar - -StartChar: dotbelow.alt8 -Encoding: 65584 -1 2343 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -139 0 2 -EndChar - -StartChar: dotbelow.alt9 -Encoding: 65585 -1 2344 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -69 0 2 -EndChar - -StartChar: dotbelow.alt10 -Encoding: 65586 -1 2345 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -534 0 2 -EndChar - -StartChar: dotbelow.alt11 -Encoding: 65587 -1 2346 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -405 0 2 -EndChar - -StartChar: dotbelow.alt12 -Encoding: 65588 -1 2347 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -425 0 2 -EndChar - -StartChar: dotbelow.alt13 -Encoding: 65589 -1 2348 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -625 0 2 -EndChar - -StartChar: dotbelow.alt14 -Encoding: 65590 -1 2349 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -492 0 2 -EndChar - -StartChar: dotbelow.alt15 -Encoding: 65591 -1 2350 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 2323 -1 N 1 0 0 1 -725 0 2 -EndChar - -StartChar: tilde.alt10 -Encoding: 65592 -1 2351 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tilde.alt11 -Encoding: 65593 -1 2352 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tilde.alt12 -Encoding: 65594 -1 2353 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: tilde.alt13 -Encoding: 65595 -1 2354 -Width: 0 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 670 732 N 1 0 0 1 0 0 2 -EndChar - -StartChar: dotlessi.alt1 -Encoding: 65596 -1 2355 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 0 - 0 - 4 - 5 - 2 - 15 - 0 - 21 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -136 0 m 1,0,-1 - 136 1062 l 1,1,-1 - 316 1062 l 1,2,-1 - 316 0 l 1,3,-1 - 136 0 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03080304.cap -Encoding: 65597 -1 2356 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 8 - 159 - 11 - 255 - 11 - 2 - 11 - 64 - 9 - 13 - 72 - 11 - 11 - 5 - 1 - 1 - 4 - 111 - 0 - 1 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP3 -SHP[rp2] -SHP[rp2] -SRP1 -SHP[rp1] -SHP[rp2] -MDAP[rnd] -CALL -DELTAP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -136 1458 m 1,0,-1 - 136 1642 l 1,1,-1 - 299 1642 l 1,2,-1 - 299 1458 l 1,3,-1 - 136 1458 l 1,0,-1 --298 1458 m 1,4,-1 - -298 1642 l 1,5,-1 - -135 1642 l 1,6,-1 - -135 1458 l 1,7,-1 - -298 1458 l 1,4,-1 -275 1708 m 1,8,-1 - -274 1708 l 1,9,-1 - -274 1835 l 1,10,-1 - 275 1835 l 1,11,-1 - 275 1708 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: uni03080301.cap -Encoding: 65598 -1 2357 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 12 - 7 - 4 - 7 - 4 - 6 - 1 - 13 - 13 - 107 - 6 - 1 - 6 - 132 - 1 - 1 - 240 - 1 - 1 - 2 - 176 - 1 - 208 - 1 - 224 - 1 - 3 - 1 -PUSHW_1 - -64 -NPUSHB - 26 - 30 - 33 - 72 - 15 - 1 - 1 - 224 - 1 - 240 - 1 - 2 - 159 - 1 - 1 - 48 - 1 - 64 - 1 - 80 - 1 - 112 - 1 - 128 - 1 - 5 - 1 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -CALL -DELTAP2 -SDS -DELTAP2 -DELTAP3 -MDAP[rnd] -DELTAP3 -SHP[rp1] -MDAP[rnd] -SRP1 -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -62 1835 m 1,0,-1 - 288 1835 l 1,1,-1 - 288 1823 l 1,2,-1 - 27 1652 l 1,3,-1 - -103 1652 l 1,4,-1 - -103 1662 l 1,5,-1 - 62 1835 l 1,0,-1 -136 1448 m 1,6,-1 - 136 1632 l 1,7,-1 - 299 1632 l 1,8,-1 - 299 1448 l 1,9,-1 - 136 1448 l 1,6,-1 --298 1448 m 1,10,-1 - -298 1632 l 1,11,-1 - -135 1632 l 1,12,-1 - -135 1448 l 1,13,-1 - -298 1448 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni0308030C.cap -Encoding: 65599 -1 2358 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 8 - 3 - 7 - 15 - 11 - 3 - 11 - 3 - 11 - 16 - 107 - 12 - 1 - 12 - 7 - 7 - 132 - 0 - 1 - 240 - 0 - 1 - 2 - 176 - 0 - 208 - 0 - 224 - 0 - 3 - 0 -PUSHW_1 - -64 -NPUSHB - 26 - 30 - 33 - 72 - 15 - 0 - 1 - 224 - 0 - 240 - 0 - 2 - 159 - 0 - 1 - 48 - 0 - 64 - 0 - 80 - 0 - 112 - 0 - 128 - 0 - 5 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -CALL -DELTAP2 -SDS -DELTAP2 -DELTAP3 -SHP[rp2] -MDAP[rnd] -MDAP[rnd] -DELTAP3 -SHP[rp1] -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -152 1835 m 1,0,-1 - 307 1835 l 1,1,-1 - 307 1825 l 1,2,-1 - 99 1652 l 1,3,-1 - -96 1652 l 1,4,-1 - -305 1823 l 1,5,-1 - -305 1835 l 1,6,-1 - -150 1835 l 1,7,-1 - 1 1738 l 1,8,-1 - 152 1835 l 1,0,-1 -136 1448 m 1,9,-1 - 136 1632 l 1,10,-1 - 299 1632 l 1,11,-1 - 299 1448 l 1,12,-1 - 136 1448 l 1,9,-1 --298 1448 m 1,13,-1 - -298 1632 l 1,14,-1 - -135 1632 l 1,15,-1 - -135 1448 l 1,16,-1 - -298 1448 l 1,13,-1 -EndSplineSet -EndChar - -StartChar: uni03080300.cap -Encoding: 65600 -1 2359 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 11 - 8 - 2 - 8 - 2 - 8 - 5 - 10 - 107 - 9 - 1 - 9 - 132 - 5 - 1 - 240 - 5 - 1 - 2 - 176 - 5 - 208 - 5 - 224 - 5 - 3 - 5 -PUSHW_1 - -64 -NPUSHB - 26 - 30 - 33 - 72 - 15 - 5 - 1 - 224 - 5 - 240 - 5 - 2 - 159 - 5 - 1 - 48 - 5 - 64 - 5 - 80 - 5 - 112 - 5 - 128 - 5 - 5 - 5 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -CALL -DELTAP2 -SDS -DELTAP2 -DELTAP3 -MDAP[rnd] -DELTAP3 -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -104 1662 m 1,0,-1 - 104 1652 l 1,1,-1 - -26 1652 l 1,2,-1 - -287 1823 l 1,3,-1 - -287 1835 l 1,4,-1 - -61 1835 l 1,5,-1 - 104 1662 l 1,0,-1 --298 1448 m 1,6,-1 - -298 1632 l 1,7,-1 - -135 1632 l 1,8,-1 - -135 1448 l 1,9,-1 - -298 1448 l 1,6,-1 -136 1448 m 1,10,-1 - 136 1632 l 1,11,-1 - 299 1632 l 1,12,-1 - 299 1448 l 1,13,-1 - 136 1448 l 1,10,-1 -EndSplineSet -EndChar - -StartChar: uni03070304.cap -Encoding: 65601 -1 2360 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 4 - 15 - 7 - 95 - 7 - 2 - 175 - 7 - 255 - 7 - 2 - 7 - 64 - 9 - 13 - 72 - 7 - 7 - 1 - 80 - 0 - 240 - 0 - 2 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP2 -SHP[rp2] -SHP[rp2] -MDAP[rnd] -CALL -DELTAP1 -DELTAP2 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --87 1468 m 1,0,-1 - -87 1652 l 1,1,-1 - 76 1652 l 1,2,-1 - 76 1468 l 1,3,-1 - -87 1468 l 1,0,-1 -275 1708 m 1,4,-1 - -274 1708 l 1,5,-1 - -274 1835 l 1,6,-1 - 275 1835 l 1,7,-1 - 275 1708 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni03030304.cap -Encoding: 65602 -1 2361 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 23 - 8 - 32 - 16 - 48 - 16 - 64 - 16 - 3 - 16 - 16 - 1 - 20 - 11 - 4 - 8 - 1 - 24 - 1 - 2 - 1 - 111 - 2 - 127 - 2 - 159 - 2 - 175 - 2 - 4 - 2 - 64 - 25 - 30 - 72 - 2 -SVTCA[y-axis] -MDAP[rnd] -CALL -DELTAP1 -SHP[rp1] -DELTAP2 -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -DELTAP2 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -275 1708 m 1,0,-1 - -274 1708 l 1,1,-1 - -274 1835 l 1,2,-1 - 275 1835 l 1,3,-1 - 275 1708 l 1,0,-1 -127 1475 m 0,4,5 - 76 1475 76 1475 -8 1513 c 0,6,7 - -93 1550 -93 1550 -129 1550 c 0,8,9 - -174 1550 -174 1550 -196.5 1532.5 c 128,-1,10 - -219 1515 -219 1515 -227 1475 c 1,11,-1 - -318 1475 l 1,12,13 - -307 1557 -307 1557 -285.5 1593 c 128,-1,14 - -264 1629 -264 1629 -226 1649 c 128,-1,15 - -188 1669 -188 1669 -125 1669 c 0,16,17 - -70 1669 -70 1669 13 1632 c 0,18,19 - 96 1594 96 1594 130 1594 c 0,20,21 - 178 1594 178 1594 199.5 1613 c 128,-1,22 - 221 1632 221 1632 227 1669 c 1,23,-1 - 319 1669 l 1,24,25 - 307 1588 307 1588 286 1551 c 128,-1,26 - 265 1514 265 1514 227.5 1494.5 c 128,-1,27 - 190 1475 190 1475 127 1475 c 0,4,5 -EndSplineSet -EndChar - -StartChar: uni02E502E502E6 -Encoding: 65603 -1 2362 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 7 - 1 - 1 - 0 - 4 - 0 - 10 - 11 - 8 - 3 - 7 - 7 - 1 - 4 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 925 l 1,2,-1 - 467 1273 l 1,3,-1 - 160 1273 l 1,4,-1 - 160 1409 l 1,5,-1 - 517 1409 l 1,6,-1 - 815 1111 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E5 uni02E6 -EndChar - -StartChar: uni02E502E502E7 -Encoding: 65604 -1 2363 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 8 - 3 - 7 - 7 - 1 - 4 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 725 l 1,2,-1 - 447 1273 l 1,3,-1 - 160 1273 l 1,4,-1 - 160 1409 l 1,5,-1 - 517 1409 l 1,6,-1 - 815 966 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E5 uni02E7 -EndChar - -StartChar: uni02E502E502E8 -Encoding: 65605 -1 2364 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 8 - 3 - 7 - 7 - 1 - 4 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 415 l 1,2,-1 - 437 1273 l 1,3,-1 - 160 1273 l 1,4,-1 - 160 1409 l 1,5,-1 - 527 1409 l 1,6,-1 - 815 731 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E5 uni02E8 -EndChar - -StartChar: uni02E502E502E9 -Encoding: 65606 -1 2365 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 6 - 0 - 0 - 3 - 10 - 9 - 7 - 3 - 6 - 6 - 1 - 3 - 4 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 430 1273 l 1,2,-1 - 160 1273 l 1,3,-1 - 160 1409 l 1,4,-1 - 527 1409 l 1,5,-1 - 815 453 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E5 uni02E9 -EndChar - -StartChar: uni02E502E602E5 -Encoding: 65607 -1 2366 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 1 - 0 - 0 - 4 - 10 - 9 - 2 - 7 - 3 - 3 - 6 - 6 - 1 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1223 l 1,2,-1 - 487 915 l 1,3,-1 - 77 1304 l 1,4,-1 - 169 1401 l 1,5,-1 - 487 1101 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E5 -EndChar - -StartChar: uni02E502E602E6 -Encoding: 65608 -1 2367 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 7 - 1 - 1 - 0 - 4 - 0 - 10 - 11 - 8 - 3 - 3 - 6 - 6 - 1 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 935 l 1,2,-1 - 451 935 l 1,3,-1 - 82 1302 l 1,4,-1 - 180 1399 l 1,5,-1 - 507 1071 l 1,6,-1 - 815 1071 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E6 -EndChar - -StartChar: uni02E502E602E7 -Encoding: 65609 -1 2368 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 1 - 1 - 0 - 3 - 0 - 8 - 9 - 6 - 3 - 2 - 5 - 5 - 1 - 4 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 586 l 1,2,-1 - 77 1302 l 1,3,-1 - 172 1396 l 1,4,-1 - 815 783 l 1,5,-1 - 815 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E7 -EndChar - -StartChar: uni02E502E602E8 -Encoding: 65610 -1 2369 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 8 - 3 - 2 - 7 - 7 - 1 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 236 l 1,2,-1 - 487 913 l 1,3,-1 - 77 1302 l 1,4,-1 - 160 1409 l 1,5,-1 - 595 1001 l 1,6,-1 - 815 536 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E8 -EndChar - -StartChar: uni02E502E602E9 -Encoding: 65611 -1 2370 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 6 - 0 - 0 - 3 - 10 - 9 - 6 - 6 - 1 - 4 - 7 - 7 - 4 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 470 929 l 1,2,-1 - 70 1307 l 1,3,-1 - 160 1409 l 1,4,-1 - 590 1003 l 1,5,-1 - 815 391 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 uni02E9 -EndChar - -StartChar: uni02E502E6 -Encoding: 65612 -1 2371 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 1 - 1 - 0 - 0 - 3 - 9 - 8 - 6 - 3 - 2 - 5 - 5 - 1 - 4 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 925 l 1,2,-1 - 70 1309 l 1,3,-1 - 160 1409 l 1,4,-1 - 488 1113 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E6 -EndChar - -StartChar: uni02E502E702E5 -Encoding: 65613 -1 2372 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 1 - 0 - 0 - 4 - 10 - 9 - 2 - 7 - 3 - 3 - 6 - 6 - 1 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1145 l 1,2,-1 - 483 591 l 1,3,-1 - 53 1331 l 1,4,-1 - 160 1409 l 1,5,-1 - 487 864 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E5 -EndChar - -StartChar: uni02E502E702E6 -Encoding: 65614 -1 2373 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 8 - 3 - 3 - 6 - 2 - 7 - 7 - 5 - 6 - 6 - 1 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -MIAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 929 l 1,2,-1 - 483 594 l 1,3,-1 - 53 1334 l 1,4,-1 - 160 1409 l 1,5,-1 - 513 820 l 1,6,-1 - 815 1121 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E6 -EndChar - -StartChar: uni02E502E702E7 -Encoding: 65615 -1 2374 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 3 - 6 - 6 - 1 - 8 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 667 l 1,2,-1 - 471 667 l 1,3,-1 - 79 1337 l 1,4,-1 - 195 1409 l 1,5,-1 - 551 803 l 1,6,-1 - 815 803 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E7 -EndChar - -StartChar: uni02E502E702E8 -Encoding: 65616 -1 2375 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 2 - 7 - 7 - 1 - 8 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 270 l 1,2,-1 - 461 625 l 1,3,-1 - 45 1339 l 1,4,-1 - 163 1409 l 1,5,-1 - 567 711 l 1,6,-1 - 815 462 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E8 -EndChar - -StartChar: uni02E502E702E9 -Encoding: 65617 -1 2376 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 4 - 0 - 0 - 2 - 8 - 7 - 4 - 4 - 1 - 5 - 3 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 72 1341 l 1,2,-1 - 191 1409 l 1,3,-1 - 815 282 l 1,4,-1 - 815 1409 l 1,5,-1 - 951 1409 l 1,6,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 uni02E9 -EndChar - -StartChar: uni02E502E7 -Encoding: 65618 -1 2377 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 5 - 1 - 1 - 0 - 0 - 3 - 9 - 8 - 2 - 5 - 5 - 1 - 6 - 4 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 598 l 1,2,-1 - 45 1337 l 1,3,-1 - 160 1409 l 1,4,-1 - 488 864 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E7 -EndChar - -StartChar: uni02E502E802E5 -Encoding: 65619 -1 2378 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 1 - 0 - 0 - 4 - 10 - 9 - 2 - 7 - 3 - 3 - 6 - 6 - 1 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1049 l 1,2,-1 - 487 246 l 1,3,-1 - 36 1359 l 1,4,-1 - 160 1409 l 1,5,-1 - 487 606 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E5 -EndChar - -StartChar: uni02E502E802E6 -Encoding: 65620 -1 2379 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 7 - 1 - 1 - 0 - 4 - 0 - 10 - 11 - 3 - 6 - 2 - 7 - 7 - 5 - 6 - 6 - 1 - 8 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 927 l 1,2,-1 - 497 292 l 1,3,-1 - 37 1356 l 1,4,-1 - 163 1409 l 1,5,-1 - 507 617 l 1,6,-1 - 815 1231 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E6 -EndChar - -StartChar: uni02E502E802E7 -Encoding: 65621 -1 2380 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 3 - 6 - 2 - 7 - 7 - 5 - 6 - 6 - 1 - 8 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 598 l 1,2,-1 - 482 263 l 1,3,-1 - 37 1359 l 1,4,-1 - 160 1409 l 1,5,-1 - 531 510 l 1,6,-1 - 815 784 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E7 -EndChar - -StartChar: uni02E502E802E8 -Encoding: 65622 -1 2381 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 3 - 6 - 6 - 1 - 8 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 337 l 1,2,-1 - 452 337 l 1,3,-1 - 39 1359 l 1,4,-1 - 160 1409 l 1,5,-1 - 547 473 l 1,6,-1 - 815 473 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E8 -EndChar - -StartChar: uni02E502E802E9 -Encoding: 65623 -1 2382 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 6 - 0 - 3 - 0 - 9 - 10 - 7 - 4 - 3 - 6 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 487 327 l 1,2,-1 - 47 1354 l 1,3,-1 - 174 1409 l 1,4,-1 - 603 405 l 1,5,-1 - 815 191 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 uni02E9 -EndChar - -StartChar: uni02E502E8 -Encoding: 65624 -1 2383 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 5 - 1 - 1 - 0 - 3 - 0 - 8 - 9 - 2 - 5 - 5 - 1 - 6 - 4 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 243 l 1,2,-1 - 37 1359 l 1,3,-1 - 160 1409 l 1,4,-1 - 488 606 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E8 -EndChar - -StartChar: uni02E502E902E5 -Encoding: 65625 -1 2384 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 1 - 0 - 4 - 0 - 9 - 10 - 6 - 2 - 3 - 7 - 5 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 983 l 1,2,-1 - 487 0 l 1,3,-1 - 29 1361 l 1,4,-1 - 154 1409 l 1,5,-1 - 487 426 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E5 -EndChar - -StartChar: uni02E502E902E6 -Encoding: 65626 -1 2385 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 7 - 1 - 1 - 0 - 4 - 0 - 10 - 11 - 6 - 2 - 6 - 2 - 3 - 8 - 5 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 885 l 1,2,-1 - 487 0 l 1,3,-1 - 23 1359 l 1,4,-1 - 149 1406 l 1,5,-1 - 494 405 l 1,6,-1 - 815 1281 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E6 -EndChar - -StartChar: uni02E502E902E7 -Encoding: 65627 -1 2386 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 7 - 1 - 1 - 0 - 4 - 0 - 10 - 11 - 6 - 2 - 6 - 2 - 3 - 8 - 5 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 655 l 1,2,-1 - 487 0 l 1,3,-1 - 54 1363 l 1,4,-1 - 181 1408 l 1,5,-1 - 515 355 l 1,6,-1 - 815 976 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E7 -EndChar - -StartChar: uni02E502E902E8 -Encoding: 65628 -1 2387 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 6 - 2 - 6 - 2 - 3 - 8 - 5 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 312 l 1,2,-1 - 487 0 l 1,3,-1 - 54 1363 l 1,4,-1 - 180 1408 l 1,5,-1 - 552 251 l 1,6,-1 - 815 501 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E8 -EndChar - -StartChar: uni02E502E902E9 -Encoding: 65629 -1 2388 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 5 - 0 - 2 - 1 - 0 - 3 - 9 - 8 - 6 - 3 - 3 - 4 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[min,rnd,black] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 482 0 l 1,1,-1 - 48 1363 l 1,2,-1 - 177 1409 l 1,3,-1 - 580 136 l 1,4,-1 - 815 136 l 1,5,-1 - 815 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 uni02E9 -EndChar - -StartChar: uni02E502E9 -Encoding: 65630 -1 2389 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 4 - 0 - 0 - 2 - 8 - 7 - 4 - 4 - 1 - 5 - 3 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 41 1363 l 1,2,-1 - 170 1409 l 1,3,-1 - 488 426 l 1,4,-1 - 488 1409 l 1,5,-1 - 624 1409 l 1,6,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E5 uni02E9 -EndChar - -StartChar: uni02E602E502E5 -Encoding: 65631 -1 2390 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 1 - 0 - 0 - 6 - 5 - 3 - 8 - 9 - 4 - 4 - 1 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1273 l 1,2,-1 - 507 1273 l 1,3,-1 - 176 945 l 1,4,-1 - 79 1042 l 1,5,-1 - 451 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E5 -EndChar - -StartChar: uni02E602E502E6 -Encoding: 65632 -1 2391 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 5 - 3 - 0 - 3 - 11 - 10 - 2 - 7 - 4 - 7 - 4 - 7 - 1 - 8 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 914 l 1,2,-1 - 486 1223 l 1,3,-1 - 167 930 l 1,4,-1 - 76 1032 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 1101 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E6 -EndChar - -StartChar: uni02E602E502E7 -Encoding: 65633 -1 2392 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 7 - 1 - 1 - 0 - 5 - 3 - 0 - 3 - 11 - 10 - 2 - 7 - 4 - 7 - 4 - 1 - 8 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 553 l 1,2,-1 - 455 1194 l 1,3,-1 - 161 928 l 1,4,-1 - 76 1032 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 834 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E7 -EndChar - -StartChar: uni02E602E502E8 -Encoding: 65634 -1 2393 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 7 - 4 - 7 - 4 - 1 - 8 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 233 l 1,2,-1 - 435 1174 l 1,3,-1 - 159 928 l 1,4,-1 - 76 1032 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 596 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E8 -EndChar - -StartChar: uni02E602E502E9 -Encoding: 65635 -1 2394 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 6 - 0 - 4 - 2 - 0 - 3 - 10 - 9 - 6 - 3 - 6 - 3 - 1 - 7 - 2 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 444 1161 l 1,2,-1 - 175 930 l 1,3,-1 - 94 1032 l 1,4,-1 - 505 1409 l 1,5,-1 - 815 446 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 uni02E9 -EndChar - -StartChar: uni02E602E5 -Encoding: 65636 -1 2395 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 1 - 0 - 4 - 0 - 7 - 8 - 3 - 3 - 1 - 2 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 1218 l 1,2,-1 - 170 927 l 1,3,-1 - 76 1032 l 1,4,-1 - 488 1409 l 1,5,-1 - 624 1409 l 1,6,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E5 -EndChar - -StartChar: uni02E602E602E5 -Encoding: 65637 -1 2396 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 1 - 0 - 4 - 0 - 9 - 10 - 4 - 5 - 5 - 1 - 2 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1220 l 1,2,-1 - 560 995 l 1,3,-1 - 160 995 l 1,4,-1 - 160 1131 l 1,5,-1 - 500 1131 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E6 uni02E5 -EndChar - -StartChar: uni02E602E602E7 -Encoding: 65638 -1 2397 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 2 - 7 - 4 - 5 - 7 - 5 - 7 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 617 l 1,2,-1 - 458 995 l 1,3,-1 - 160 995 l 1,4,-1 - 160 1131 l 1,5,-1 - 513 1131 l 1,6,-1 - 815 813 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E6 uni02E7 -EndChar - -StartChar: uni02E602E602E8 -Encoding: 65639 -1 2398 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 7 - 1 - 1 - 0 - 4 - 0 - 10 - 11 - 4 - 5 - 7 - 5 - 7 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 309 l 1,2,-1 - 461 995 l 1,3,-1 - 160 995 l 1,4,-1 - 160 1131 l 1,5,-1 - 543 1131 l 1,6,-1 - 815 605 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E6 uni02E8 -EndChar - -StartChar: uni02E602E602E9 -Encoding: 65640 -1 2399 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 0 - 3 - 0 - 9 - 10 - 3 - 4 - 6 - 4 - 6 - 4 - 1 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 476 995 l 1,2,-1 - 160 995 l 1,3,-1 - 160 1131 l 1,4,-1 - 574 1131 l 1,5,-1 - 815 426 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E6 uni02E9 -EndChar - -StartChar: uni02E602E702E5 -Encoding: 65641 -1 2400 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 1 - 0 - 0 - 6 - 4 - 3 - 9 - 10 - 3 - 6 - 5 - 6 - 5 - 1 - 2 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1144 l 1,2,-1 - 488 589 l 1,3,-1 - 80 1006 l 1,4,-1 - 176 1104 l 1,5,-1 - 462 811 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E5 -EndChar - -StartChar: uni02E602E702E6 -Encoding: 65642 -1 2401 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 7 - 1 - 1 - 0 - 4 - 6 - 0 - 3 - 11 - 10 - 3 - 6 - 2 - 7 - 7 - 5 - 8 - 6 - 5 - 6 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 944 l 1,2,-1 - 487 617 l 1,3,-1 - 76 1029 l 1,4,-1 - 172 1125 l 1,5,-1 - 487 810 l 1,6,-1 - 815 1137 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E6 -EndChar - -StartChar: uni02E602E702E7 -Encoding: 65643 -1 2402 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 3 - 6 - 5 - 6 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 667 l 1,2,-1 - 405 667 l 1,3,-1 - 70 1041 l 1,4,-1 - 168 1133 l 1,5,-1 - 466 803 l 1,6,-1 - 815 803 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E7 -EndChar - -StartChar: uni02E602E702E8 -Encoding: 65644 -1 2403 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 1 - 1 - 0 - 0 - 3 - 9 - 8 - 2 - 5 - 4 - 5 - 4 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 295 l 1,2,-1 - 76 1035 l 1,3,-1 - 170 1134 l 1,4,-1 - 815 489 l 1,5,-1 - 815 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E8 -EndChar - -StartChar: uni02E602E702E9 -Encoding: 65645 -1 2404 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 6 - 0 - 0 - 3 - 10 - 9 - 6 - 4 - 6 - 4 - 1 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 487 627 l 1,2,-1 - 76 1037 l 1,3,-1 - 167 1136 l 1,4,-1 - 599 707 l 1,5,-1 - 815 294 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 uni02E9 -EndChar - -StartChar: uni02E602E7 -Encoding: 65646 -1 2405 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 1 - 1 - 0 - 3 - 0 - 8 - 9 - 2 - 5 - 4 - 5 - 4 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 612 l 1,2,-1 - 76 1024 l 1,3,-1 - 169 1125 l 1,4,-1 - 488 806 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E7 -EndChar - -StartChar: uni02E602E802E5 -Encoding: 65647 -1 2406 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 1 - 0 - 4 - 6 - 0 - 3 - 10 - 9 - 3 - 6 - 5 - 6 - 5 - 1 - 2 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1053 l 1,2,-1 - 488 258 l 1,3,-1 - 47 1123 l 1,4,-1 - 164 1193 l 1,5,-1 - 475 578 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E5 -EndChar - -StartChar: uni02E602E802E6 -Encoding: 65648 -1 2407 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 7 - 1 - 1 - 0 - 0 - 6 - 4 - 3 - 10 - 11 - 3 - 6 - 2 - 7 - 7 - 5 - 8 - 6 - 5 - 6 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 925 l 1,2,-1 - 487 270 l 1,3,-1 - 57 1109 l 1,4,-1 - 175 1180 l 1,5,-1 - 487 573 l 1,6,-1 - 815 1228 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E6 -EndChar - -StartChar: uni02E602E802E7 -Encoding: 65649 -1 2408 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 7 - 1 - 1 - 0 - 0 - 6 - 4 - 3 - 10 - 11 - 3 - 6 - 2 - 7 - 7 - 5 - 6 - 5 - 6 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 627 l 1,2,-1 - 497 279 l 1,3,-1 - 63 1135 l 1,4,-1 - 182 1196 l 1,5,-1 - 531 513 l 1,6,-1 - 815 825 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E7 -EndChar - -StartChar: uni02E602E802E8 -Encoding: 65650 -1 2409 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 7 - 1 - 1 - 0 - 0 - 3 - 4 - 3 - 10 - 11 - 3 - 6 - 5 - 6 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 342 l 1,2,-1 - 466 342 l 1,3,-1 - 63 1135 l 1,4,-1 - 182 1196 l 1,5,-1 - 549 478 l 1,6,-1 - 815 478 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E8 -EndChar - -StartChar: uni02E602E802E9 -Encoding: 65651 -1 2410 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 6 - 0 - 0 - 3 - 10 - 9 - 4 - 4 - 1 - 7 - 3 - 6 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 483 309 l 1,2,-1 - 63 1135 l 1,3,-1 - 182 1196 l 1,4,-1 - 592 394 l 1,5,-1 - 815 191 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 uni02E9 -EndChar - -StartChar: uni02E602E8 -Encoding: 65652 -1 2411 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 5 - 1 - 1 - 0 - 0 - 3 - 9 - 8 - 5 - 4 - 5 - 4 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 301 l 1,2,-1 - 63 1135 l 1,3,-1 - 182 1196 l 1,4,-1 - 488 598 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E8 -EndChar - -StartChar: uni02E602E902E5 -Encoding: 65653 -1 2412 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 1 - 0 - 0 - 6 - 4 - 3 - 9 - 10 - 6 - 2 - 5 - 5 - 3 - 7 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 983 l 1,2,-1 - 487 0 l 1,3,-1 - 54 1289 l 1,4,-1 - 179 1337 l 1,5,-1 - 487 426 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E5 -EndChar - -StartChar: uni02E602E902E6 -Encoding: 65654 -1 2413 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 7 - 1 - 1 - 0 - 0 - 6 - 4 - 3 - 10 - 11 - 2 - 7 - 6 - 7 - 5 - 5 - 3 - 8 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 885 l 1,2,-1 - 487 0 l 1,3,-1 - 53 1289 l 1,4,-1 - 178 1338 l 1,5,-1 - 494 405 l 1,6,-1 - 815 1281 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E6 -EndChar - -StartChar: uni02E602E902E7 -Encoding: 65655 -1 2414 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 7 - 1 - 1 - 0 - 4 - 6 - 0 - 3 - 11 - 10 - 2 - 7 - 6 - 7 - 5 - 5 - 3 - 8 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 655 l 1,2,-1 - 487 0 l 1,3,-1 - 54 1291 l 1,4,-1 - 181 1336 l 1,5,-1 - 515 355 l 1,6,-1 - 815 976 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E7 -EndChar - -StartChar: uni02E602E902E8 -Encoding: 65656 -1 2415 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 7 - 1 - 1 - 0 - 4 - 6 - 0 - 3 - 11 - 10 - 2 - 7 - 7 - 5 - 5 - 3 - 8 - 3 - 6 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 312 l 1,2,-1 - 487 0 l 1,3,-1 - 54 1290 l 1,4,-1 - 180 1335 l 1,5,-1 - 552 251 l 1,6,-1 - 815 501 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E8 -EndChar - -StartChar: uni02E602E902E9 -Encoding: 65657 -1 2416 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 5 - 0 - 2 - 1 - 0 - 3 - 9 - 8 - 3 - 3 - 1 - 6 - 3 - 4 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 487 0 l 1,1,-1 - 54 1290 l 1,2,-1 - 180 1335 l 1,3,-1 - 591 136 l 1,4,-1 - 815 136 l 1,5,-1 - 815 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 uni02E9 -EndChar - -StartChar: uni02E602E9 -Encoding: 65658 -1 2417 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 4 - 0 - 0 - 2 - 8 - 7 - 4 - 3 - 3 - 1 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 53 1290 l 1,2,-1 - 180 1335 l 1,3,-1 - 488 433 l 1,4,-1 - 488 1409 l 1,5,-1 - 624 1409 l 1,6,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E6 uni02E9 -EndChar - -StartChar: uni02E702E502E5 -Encoding: 65659 -1 2418 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 1 - 0 - 0 - 6 - 5 - 3 - 8 - 9 - 4 - 4 - 1 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1273 l 1,2,-1 - 528 1273 l 1,3,-1 - 187 700 l 1,4,-1 - 76 775 l 1,5,-1 - 451 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E5 -EndChar - -StartChar: uni02E702E502E6 -Encoding: 65660 -1 2419 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 4 - 7 - 4 - 7 - 1 - 8 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 914 l 1,2,-1 - 513 1200 l 1,3,-1 - 187 700 l 1,4,-1 - 76 775 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 1101 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E6 -EndChar - -StartChar: uni02E702E502E7 -Encoding: 65661 -1 2420 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 4 - 7 - 4 - 7 - 1 - 8 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 553 l 1,2,-1 - 480 1148 l 1,3,-1 - 187 700 l 1,4,-1 - 76 775 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 834 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E7 -EndChar - -StartChar: uni02E702E502E8 -Encoding: 65662 -1 2421 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 4 - 7 - 4 - 1 - 8 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 233 l 1,2,-1 - 458 1118 l 1,3,-1 - 187 700 l 1,4,-1 - 76 775 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 596 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E8 -EndChar - -StartChar: uni02E702E502E9 -Encoding: 65663 -1 2422 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 0 - 0 - 4 - 10 - 9 - 6 - 3 - 6 - 3 - 1 - 7 - 2 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 461 1106 l 1,2,-1 - 187 700 l 1,3,-1 - 76 775 l 1,4,-1 - 505 1409 l 1,5,-1 - 815 446 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 uni02E9 -EndChar - -StartChar: uni02E702E5 -Encoding: 65664 -1 2423 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 1 - 0 - 0 - 4 - 8 - 7 - 3 - 3 - 1 - 2 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 1150 l 1,2,-1 - 215 698 l 1,3,-1 - 104 775 l 1,4,-1 - 488 1409 l 1,5,-1 - 624 1409 l 1,6,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E5 -EndChar - -StartChar: uni02E702E602E5 -Encoding: 65665 -1 2424 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 1 - 0 - 4 - 0 - 7 - 8 - 3 - 3 - 1 - 2 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1231 l 1,2,-1 - 154 671 l 1,3,-1 - 76 775 l 1,4,-1 - 815 1409 l 1,5,-1 - 951 1409 l 1,6,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E5 -EndChar - -StartChar: uni02E702E602E6 -Encoding: 65666 -1 2425 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 3 - 6 - 4 - 6 - 4 - 6 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 995 l 1,2,-1 - 493 995 l 1,3,-1 - 168 635 l 1,4,-1 - 70 727 l 1,5,-1 - 432 1131 l 1,6,-1 - 815 1131 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E6 -EndChar - -StartChar: uni02E702E602E7 -Encoding: 65667 -1 2426 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 3 - 6 - 4 - 7 - 6 - 6 - 7 - 4 - 3 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 641 l 1,2,-1 - 486 950 l 1,3,-1 - 167 657 l 1,4,-1 - 76 759 l 1,5,-1 - 487 1136 l 1,6,-1 - 815 828 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E7 -EndChar - -StartChar: uni02E702E602E8 -Encoding: 65668 -1 2427 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 3 - 6 - 7 - 4 - 6 - 6 - 4 - 7 - 3 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 281 l 1,2,-1 - 455 922 l 1,3,-1 - 161 656 l 1,4,-1 - 76 760 l 1,5,-1 - 487 1137 l 1,6,-1 - 815 562 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E8 -EndChar - -StartChar: uni02E702E602E9 -Encoding: 65669 -1 2428 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 6 - 0 - 0 - 2 - 4 - 3 - 9 - 10 - 2 - 5 - 6 - 3 - 5 - 3 - 5 - 1 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 408 951 l 1,2,-1 - 179 667 l 1,3,-1 - 76 759 l 1,4,-1 - 447 1209 l 1,5,-1 - 815 349 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 uni02E9 -EndChar - -StartChar: uni02E702E6 -Encoding: 65670 -1 2429 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 5 - 1 - 1 - 0 - 0 - 4 - 9 - 8 - 2 - 5 - 5 - 6 - 3 - 3 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 969 l 1,2,-1 - 169 650 l 1,3,-1 - 76 751 l 1,4,-1 - 488 1163 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E6 -EndChar - -StartChar: uni02E702E702E5 -Encoding: 65671 -1 2430 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 1 - 0 - 4 - 0 - 9 - 10 - 4 - 5 - 5 - 1 - 2 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1114 l 1,2,-1 - 584 667 l 1,3,-1 - 160 667 l 1,4,-1 - 160 803 l 1,5,-1 - 502 803 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E7 uni02E5 -EndChar - -StartChar: uni02E702E702E6 -Encoding: 65672 -1 2431 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 4 - 5 - 2 - 7 - 7 - 8 - 5 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 921 l 1,2,-1 - 573 667 l 1,3,-1 - 160 667 l 1,4,-1 - 160 803 l 1,5,-1 - 518 803 l 1,6,-1 - 815 1117 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E7 uni02E6 -EndChar - -StartChar: uni02E702E702E8 -Encoding: 65673 -1 2432 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 2 - 7 - 4 - 5 - 7 - 5 - 7 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 292 l 1,2,-1 - 460 667 l 1,3,-1 - 160 667 l 1,4,-1 - 160 803 l 1,5,-1 - 515 803 l 1,6,-1 - 815 488 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E7 uni02E8 -EndChar - -StartChar: uni02E702E702E9 -Encoding: 65674 -1 2433 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 0 - 3 - 0 - 9 - 10 - 3 - 4 - 6 - 4 - 6 - 4 - 1 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 471 667 l 1,2,-1 - 160 667 l 1,3,-1 - 160 803 l 1,4,-1 - 553 803 l 1,5,-1 - 815 295 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E7 uni02E9 -EndChar - -StartChar: uni02E702E802E5 -Encoding: 65675 -1 2434 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 1 - 0 - 0 - 6 - 4 - 3 - 9 - 10 - 3 - 6 - 5 - 6 - 5 - 1 - 2 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1060 l 1,2,-1 - 495 309 l 1,3,-1 - 86 704 l 1,4,-1 - 181 798 l 1,5,-1 - 446 544 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E5 -EndChar - -StartChar: uni02E702E802E6 -Encoding: 65676 -1 2435 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 7 - 1 - 1 - 0 - 0 - 6 - 4 - 3 - 10 - 11 - 3 - 6 - 2 - 7 - 7 - 5 - 8 - 6 - 5 - 6 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 896 l 1,2,-1 - 487 317 l 1,3,-1 - 87 704 l 1,4,-1 - 181 798 l 1,5,-1 - 455 534 l 1,6,-1 - 815 1168 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E6 -EndChar - -StartChar: uni02E702E802E7 -Encoding: 65677 -1 2436 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 7 - 1 - 1 - 0 - 4 - 6 - 0 - 3 - 11 - 10 - 3 - 6 - 2 - 7 - 7 - 5 - 8 - 6 - 5 - 6 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 620 l 1,2,-1 - 487 312 l 1,3,-1 - 89 698 l 1,4,-1 - 180 800 l 1,5,-1 - 488 501 l 1,6,-1 - 815 807 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E7 -EndChar - -StartChar: uni02E702E802E8 -Encoding: 65678 -1 2437 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 3 - 6 - 5 - 6 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 342 l 1,2,-1 - 455 342 l 1,3,-1 - 87 706 l 1,4,-1 - 185 798 l 1,5,-1 - 516 478 l 1,6,-1 - 815 478 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E8 -EndChar - -StartChar: uni02E702E802E9 -Encoding: 65679 -1 2438 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 4 - 0 - 2 - 0 - 7 - 8 - 3 - 3 - 1 - 5 - 3 - 4 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 86 704 l 1,2,-1 - 181 798 l 1,3,-1 - 815 188 l 1,4,-1 - 815 1409 l 1,5,-1 - 951 1409 l 1,6,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 uni02E9 -EndChar - -StartChar: uni02E702E8 -Encoding: 65680 -1 2439 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 1 - 1 - 0 - 3 - 0 - 8 - 9 - 2 - 5 - 4 - 5 - 4 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 308 l 1,2,-1 - 92 703 l 1,3,-1 - 185 804 l 1,4,-1 - 488 502 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E8 -EndChar - -StartChar: uni02E702E902E5 -Encoding: 65681 -1 2440 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 1 - 0 - 0 - 6 - 4 - 3 - 9 - 10 - 5 - 5 - 3 - 2 - 7 - 3 - 6 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 963 l 1,2,-1 - 505 0 l 1,3,-1 - 56 729 l 1,4,-1 - 167 804 l 1,5,-1 - 466 317 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E5 -EndChar - -StartChar: uni02E702E902E6 -Encoding: 65682 -1 2441 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 0 - 6 - 4 - 3 - 10 - 11 - 2 - 7 - 7 - 8 - 5 - 5 - 3 - 8 - 3 - 6 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 813 l 1,2,-1 - 487 0 l 1,3,-1 - 55 729 l 1,4,-1 - 166 804 l 1,5,-1 - 464 304 l 1,6,-1 - 815 1176 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E6 -EndChar - -StartChar: uni02E702E902E7 -Encoding: 65683 -1 2442 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 4 - 6 - 0 - 3 - 11 - 10 - 2 - 7 - 7 - 8 - 5 - 5 - 3 - 8 - 3 - 6 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 575 l 1,2,-1 - 487 0 l 1,3,-1 - 55 729 l 1,4,-1 - 166 804 l 1,5,-1 - 485 269 l 1,6,-1 - 815 856 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E7 -EndChar - -StartChar: uni02E702E902E8 -Encoding: 65684 -1 2443 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 7 - 1 - 1 - 0 - 4 - 6 - 0 - 3 - 11 - 10 - 2 - 7 - 7 - 5 - 5 - 3 - 8 - 3 - 6 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 345 l 1,2,-1 - 488 -3 l 1,3,-1 - 56 729 l 1,4,-1 - 167 804 l 1,5,-1 - 513 222 l 1,6,-1 - 815 543 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E8 -EndChar - -StartChar: uni02E702E902E9 -Encoding: 65685 -1 2444 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 5 - 0 - 0 - 1 - 2 - 3 - 8 - 9 - 3 - 3 - 1 - 6 - 3 - 4 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 487 0 l 1,1,-1 - 56 729 l 1,2,-1 - 167 804 l 1,3,-1 - 564 136 l 1,4,-1 - 815 136 l 1,5,-1 - 815 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 uni02E9 -EndChar - -StartChar: uni02E702E9 -Encoding: 65686 -1 2445 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 4 - 0 - 0 - 2 - 8 - 7 - 3 - 3 - 1 - 5 - 3 - 4 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 487 0 l 1,1,-1 - 56 729 l 1,2,-1 - 167 804 l 1,3,-1 - 488 263 l 1,4,-1 - 488 1409 l 1,5,-1 - 624 1409 l 1,6,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E7 uni02E9 -EndChar - -StartChar: uni02E802E502E5 -Encoding: 65687 -1 2446 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 1 - 0 - 0 - 6 - 5 - 3 - 8 - 9 - 4 - 4 - 1 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1273 l 1,2,-1 - 577 1273 l 1,3,-1 - 192 342 l 1,4,-1 - 71 392 l 1,5,-1 - 482 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E5 -EndChar - -StartChar: uni02E802E502E6 -Encoding: 65688 -1 2447 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 4 - 7 - 4 - 7 - 1 - 8 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 888 l 1,2,-1 - 531 1162 l 1,3,-1 - 192 342 l 1,4,-1 - 69 392 l 1,5,-1 - 482 1409 l 1,6,-1 - 815 1074 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E6 -EndChar - -StartChar: uni02E802E502E7 -Encoding: 65689 -1 2448 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 5 - 3 - 0 - 3 - 11 - 10 - 2 - 7 - 4 - 7 - 4 - 7 - 1 - 8 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 611 l 1,2,-1 - 509 1108 l 1,3,-1 - 192 342 l 1,4,-1 - 69 391 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 872 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E7 -EndChar - -StartChar: uni02E802E502E8 -Encoding: 65690 -1 2449 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 4 - 7 - 4 - 7 - 1 - 8 - 3 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 157 l 1,2,-1 - 484 1042 l 1,3,-1 - 192 342 l 1,4,-1 - 69 392 l 1,5,-1 - 487 1412 l 1,6,-1 - 815 548 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E8 -EndChar - -StartChar: uni02E802E502E9 -Encoding: 65691 -1 2450 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 6 - 0 - 4 - 2 - 0 - 3 - 10 - 9 - 3 - 6 - 3 - 6 - 1 - 7 - 2 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 475 1021 l 1,2,-1 - 192 342 l 1,3,-1 - 69 392 l 1,4,-1 - 487 1409 l 1,5,-1 - 815 426 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 uni02E9 -EndChar - -StartChar: uni02E802E5 -Encoding: 65692 -1 2451 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 1 - 0 - 4 - 0 - 7 - 8 - 3 - 3 - 1 - 2 - 5 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 1052 l 1,2,-1 - 192 342 l 1,3,-1 - 69 392 l 1,4,-1 - 487 1409 l 1,5,-1 - 624 1409 l 1,6,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E5 -EndChar - -StartChar: uni02E802E602E5 -Encoding: 65693 -1 2452 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 1 - 0 - 0 - 5 - 10 - 9 - 4 - 4 - 1 - 2 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1218 l 1,2,-1 - 592 1015 l 1,3,-1 - 248 342 l 1,4,-1 - 129 403 l 1,5,-1 - 483 1100 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E5 -EndChar - -StartChar: uni02E802E602E6 -Encoding: 65694 -1 2453 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 7 - 1 - 1 - 0 - 5 - 0 - 10 - 11 - 3 - 6 - 4 - 6 - 4 - 6 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 995 l 1,2,-1 - 582 995 l 1,3,-1 - 247 342 l 1,4,-1 - 129 403 l 1,5,-1 - 499 1131 l 1,6,-1 - 815 1131 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E6 -EndChar - -StartChar: uni02E802E602E7 -Encoding: 65695 -1 2454 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 3 - 6 - 4 - 7 - 6 - 6 - 7 - 4 - 3 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 601 l 1,2,-1 - 513 997 l 1,3,-1 - 175 342 l 1,4,-1 - 57 413 l 1,5,-1 - 487 1252 l 1,6,-1 - 815 824 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E7 -EndChar - -StartChar: uni02E802E602E8 -Encoding: 65696 -1 2455 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 3 - 6 - 4 - 7 - 6 - 6 - 7 - 4 - 3 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 181 l 1,2,-1 - 479 931 l 1,3,-1 - 175 343 l 1,4,-1 - 57 414 l 1,5,-1 - 487 1253 l 1,6,-1 - 815 517 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E8 -EndChar - -StartChar: uni02E802E602E9 -Encoding: 65697 -1 2456 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 6 - 0 - 4 - 0 - 9 - 10 - 2 - 6 - 5 - 3 - 5 - 3 - 5 - 1 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP2 -IP -SHP[rp2] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 471 915 l 1,2,-1 - 175 343 l 1,3,-1 - 58 413 l 1,4,-1 - 487 1253 l 1,5,-1 - 815 378 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 uni02E9 -EndChar - -StartChar: uni02E802E6 -Encoding: 65698 -1 2457 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 5 - 1 - 1 - 0 - 4 - 0 - 8 - 9 - 2 - 5 - 5 - 6 - 3 - 3 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 953 l 1,2,-1 - 176 344 l 1,3,-1 - 57 405 l 1,4,-1 - 488 1250 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E6 -EndChar - -StartChar: uni02E802E702E5 -Encoding: 65699 -1 2458 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 1 - 0 - 5 - 0 - 9 - 10 - 4 - 4 - 1 - 2 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1115 l 1,2,-1 - 599 702 l 1,3,-1 - 236 342 l 1,4,-1 - 145 441 l 1,5,-1 - 487 782 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E5 -EndChar - -StartChar: uni02E802E702E6 -Encoding: 65700 -1 2459 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 3 - 7 - 7 - 6 - 2 - 6 - 8 - 9 - 0 - 3 - 3 - 1 - 1 - 4 - 7 - 18 - 4 - 3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -815 988 m 1,0,-1 - 236 342 l 1,1,-1 - 145 441 l 1,2,-1 - 815 1180 l 1,3,-1 - 815 1409 l 1,4,-1 - 951 1409 l 1,5,-1 - 951 0 l 1,6,-1 - 815 0 l 1,7,-1 - 815 988 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E6 -EndChar - -StartChar: uni02E802E702E7 -Encoding: 65701 -1 2460 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 5 - 6 - 0 - 3 - 11 - 10 - 3 - 6 - 4 - 6 - 4 - 6 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 667 l 1,2,-1 - 527 667 l 1,3,-1 - 236 342 l 1,4,-1 - 145 441 l 1,5,-1 - 473 803 l 1,6,-1 - 815 803 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E7 -EndChar - -StartChar: uni02E802E702E8 -Encoding: 65702 -1 2461 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 26 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 3 - 6 - 4 - 7 - 6 - 6 - 7 - 4 - 3 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 322 l 1,2,-1 - 491 627 l 1,3,-1 - 236 342 l 1,4,-1 - 145 441 l 1,5,-1 - 487 817 l 1,6,-1 - 815 509 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E8 -EndChar - -StartChar: uni02E802E702E9 -Encoding: 65703 -1 2462 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 6 - 0 - 0 - 2 - 4 - 3 - 9 - 10 - 2 - 5 - 6 - 3 - 5 - 5 - 3 - 6 - 3 - 1 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -SLOOP -IP -MDAP[rnd] -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 461 588 l 1,2,-1 - 239 339 l 1,3,-1 - 145 441 l 1,4,-1 - 487 817 l 1,5,-1 - 815 260 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 uni02E9 -EndChar - -StartChar: uni02E802E7 -Encoding: 65704 -1 2463 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 5 - 1 - 1 - 0 - 4 - 0 - 8 - 9 - 2 - 5 - 5 - 6 - 3 - 3 - 1 - 6 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 660 l 1,2,-1 - 169 341 l 1,3,-1 - 76 442 l 1,4,-1 - 488 854 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E7 -EndChar - -StartChar: uni02E802E802E5 -Encoding: 65705 -1 2464 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 16 - 1 - 0 - 0 - 4 - 10 - 9 - 4 - 2 - 7 - 5 - 5 - 1 - 7 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 983 l 1,2,-1 - 596 342 l 1,3,-1 - 160 342 l 1,4,-1 - 160 478 l 1,5,-1 - 498 478 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E8 uni02E5 -EndChar - -StartChar: uni02E802E802E6 -Encoding: 65706 -1 2465 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 4 - 5 - 2 - 7 - 7 - 8 - 5 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 804 l 1,2,-1 - 576 342 l 1,3,-1 - 160 342 l 1,4,-1 - 160 478 l 1,5,-1 - 494 478 l 1,6,-1 - 815 1100 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E8 uni02E6 -EndChar - -StartChar: uni02E802E802E7 -Encoding: 65707 -1 2466 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 5 - 0 - 10 - 11 - 4 - 5 - 2 - 7 - 7 - 8 - 5 - 5 - 1 - 8 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 659 l 1,2,-1 - 517 342 l 1,3,-1 - 160 342 l 1,4,-1 - 160 478 l 1,5,-1 - 447 478 l 1,6,-1 - 815 869 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E8 uni02E7 -EndChar - -StartChar: uni02E802E802E9 -Encoding: 65708 -1 2467 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 15 - 4 - 7 - 1 - 7 - 9 - 10 - 1 - 2 - 2 - 5 - 4 - 8 - 18 - 5 - 3 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -447 342 m 1,0,-1 - 160 342 l 1,1,-1 - 160 478 l 1,2,-1 - 517 478 l 1,3,-1 - 815 201 l 1,4,-1 - 815 1409 l 1,5,-1 - 951 1409 l 1,6,-1 - 951 0 l 1,7,-1 - 815 0 l 1,8,-1 - 447 342 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E8 uni02E9 -EndChar - -StartChar: uni02E802E902E5 -Encoding: 65709 -1 2468 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 1 - 0 - 0 - 6 - 4 - 3 - 9 - 10 - 2 - 7 - 5 - 5 - 3 - 7 - 3 - 6 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 978 l 1,2,-1 - 487 0 l 1,3,-1 - 76 377 l 1,4,-1 - 167 479 l 1,5,-1 - 423 244 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E5 -EndChar - -StartChar: uni02E802E902E6 -Encoding: 65710 -1 2469 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 0 - 6 - 4 - 3 - 10 - 11 - 2 - 7 - 7 - 8 - 5 - 5 - 3 - 8 - 3 - 6 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 853 l 1,2,-1 - 487 0 l 1,3,-1 - 76 377 l 1,4,-1 - 167 479 l 1,5,-1 - 435 232 l 1,6,-1 - 815 1216 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E6 -EndChar - -StartChar: uni02E802E902E7 -Encoding: 65711 -1 2470 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 0 - 6 - 4 - 3 - 10 - 11 - 2 - 7 - 7 - 8 - 5 - 5 - 3 - 8 - 3 - 6 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 575 l 1,2,-1 - 487 0 l 1,3,-1 - 76 377 l 1,4,-1 - 167 479 l 1,5,-1 - 452 217 l 1,6,-1 - 815 856 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E7 -EndChar - -StartChar: uni02E802E902E8 -Encoding: 65712 -1 2471 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 7 - 1 - 1 - 0 - 0 - 6 - 4 - 3 - 10 - 11 - 2 - 7 - 7 - 8 - 5 - 5 - 3 - 8 - 3 - 6 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 308 l 1,2,-1 - 487 0 l 1,3,-1 - 76 377 l 1,4,-1 - 167 479 l 1,5,-1 - 486 186 l 1,6,-1 - 815 495 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E8 -EndChar - -StartChar: uni02E802E902E9 -Encoding: 65713 -1 2472 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 5 - 0 - 0 - 2 - 9 - 8 - 3 - 3 - 1 - 6 - 3 - 4 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 488 0 l 1,1,-1 - 79 374 l 1,2,-1 - 173 479 l 1,3,-1 - 548 136 l 1,4,-1 - 815 136 l 1,5,-1 - 815 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 uni02E9 -EndChar - -StartChar: uni02E802E9 -Encoding: 65714 -1 2473 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 4 - 0 - 2 - 0 - 7 - 8 - 3 - 3 - 1 - 5 - 3 - 4 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 79 374 l 1,2,-1 - 173 479 l 1,3,-1 - 488 191 l 1,4,-1 - 488 1409 l 1,5,-1 - 624 1409 l 1,6,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E8 uni02E9 -EndChar - -StartChar: uni02E902E502E5 -Encoding: 65715 -1 2474 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 0 - 0 - 5 - 9 - 8 - 3 - 6 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1273 l 1,2,-1 - 580 1273 l 1,3,-1 - 177 0 l 1,4,-1 - 48 46 l 1,5,-1 - 482 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E5 -EndChar - -StartChar: uni02E902E502E6 -Encoding: 65716 -1 2475 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 5 - 3 - 0 - 3 - 11 - 10 - 2 - 7 - 7 - 4 - 8 - 3 - 6 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 908 l 1,2,-1 - 552 1158 l 1,3,-1 - 180 1 l 1,4,-1 - 54 46 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 1097 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E6 -EndChar - -StartChar: uni02E902E502E7 -Encoding: 65717 -1 2476 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 7 - 1 - 1 - 0 - 0 - 5 - 11 - 10 - 2 - 7 - 7 - 4 - 8 - 3 - 6 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 586 l 1,2,-1 - 523 1079 l 1,3,-1 - 181 1 l 1,4,-1 - 54 46 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 854 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E7 -EndChar - -StartChar: uni02E902E502E8 -Encoding: 65718 -1 2477 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 7 - 1 - 1 - 0 - 0 - 5 - 11 - 10 - 2 - 7 - 7 - 4 - 8 - 3 - 6 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SHP[rp1] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 234 l 1,2,-1 - 498 1018 l 1,3,-1 - 149 3 l 1,4,-1 - 23 50 l 1,5,-1 - 487 1409 l 1,6,-1 - 815 604 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E8 -EndChar - -StartChar: uni02E902E502E9 -Encoding: 65719 -1 2478 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 6 - 0 - 0 - 4 - 10 - 9 - 6 - 2 - 6 - 2 - 3 - 7 - 5 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 487 983 l 1,2,-1 - 154 0 l 1,3,-1 - 29 48 l 1,4,-1 - 487 1409 l 1,5,-1 - 815 426 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 uni02E9 -EndChar - -StartChar: uni02E902E5 -Encoding: 65720 -1 2479 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 14 - 1 - 0 - 0 - 4 - 8 - 7 - 2 - 2 - 3 - 5 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 983 l 1,2,-1 - 170 0 l 1,3,-1 - 41 46 l 1,4,-1 - 488 1409 l 1,5,-1 - 624 1409 l 1,6,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E5 -EndChar - -StartChar: uni02E902E602E5 -Encoding: 65721 -1 2480 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 0 - 0 - 5 - 10 - 9 - 2 - 7 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1218 l 1,2,-1 - 603 1004 l 1,3,-1 - 174 0 l 1,4,-1 - 47 55 l 1,5,-1 - 487 1082 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E5 -EndChar - -StartChar: uni02E902E602E6 -Encoding: 65722 -1 2481 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 7 - 1 - 1 - 0 - 0 - 5 - 11 - 10 - 3 - 6 - 6 - 4 - 8 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 995 l 1,2,-1 - 571 995 l 1,3,-1 - 160 0 l 1,4,-1 - 39 50 l 1,5,-1 - 476 1131 l 1,6,-1 - 815 1131 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E6 -EndChar - -StartChar: uni02E902E602E7 -Encoding: 65723 -1 2482 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 3 - 6 - 7 - 6 - 7 - 6 - 4 - 8 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 625 l 1,2,-1 - 531 899 l 1,3,-1 - 160 0 l 1,4,-1 - 37 50 l 1,5,-1 - 482 1146 l 1,6,-1 - 815 811 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E7 -EndChar - -StartChar: uni02E902E602E8 -Encoding: 65724 -1 2483 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 22 - 7 - 1 - 1 - 0 - 0 - 5 - 11 - 10 - 2 - 7 - 3 - 6 - 7 - 6 - 7 - 6 - 4 - 8 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 198 l 1,2,-1 - 518 816 l 1,3,-1 - 163 0 l 1,4,-1 - 37 53 l 1,5,-1 - 508 1141 l 1,6,-1 - 815 502 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E8 -EndChar - -StartChar: uni02E902E602E9 -Encoding: 65725 -1 2484 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 20 - 6 - 0 - 4 - 2 - 0 - 3 - 10 - 9 - 2 - 5 - 6 - 5 - 6 - 5 - 3 - 7 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 487 803 l 1,2,-1 - 160 0 l 1,3,-1 - 36 50 l 1,4,-1 - 487 1163 l 1,5,-1 - 815 360 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 uni02E9 -EndChar - -StartChar: uni02E902E6 -Encoding: 65726 -1 2485 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 5 - 1 - 1 - 0 - 4 - 0 - 8 - 9 - 2 - 5 - 5 - 3 - 6 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 888 l 1,2,-1 - 160 0 l 1,3,-1 - 37 50 l 1,4,-1 - 488 1266 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E6 -EndChar - -StartChar: uni02E902E702E5 -Encoding: 65727 -1 2486 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 0 - 4 - 0 - 7 - 8 - 2 - 5 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1127 l 1,2,-1 - 191 0 l 1,3,-1 - 72 68 l 1,4,-1 - 815 1409 l 1,5,-1 - 951 1409 l 1,6,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E5 -EndChar - -StartChar: uni02E902E702E6 -Encoding: 65728 -1 2487 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 7 - 1 - 1 - 0 - 0 - 5 - 11 - 10 - 2 - 7 - 7 - 4 - 8 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 947 l 1,2,-1 - 567 698 l 1,3,-1 - 163 0 l 1,4,-1 - 45 70 l 1,5,-1 - 461 784 l 1,6,-1 - 815 1139 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E6 -EndChar - -StartChar: uni02E902E702E7 -Encoding: 65729 -1 2488 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 7 - 1 - 1 - 0 - 5 - 0 - 10 - 11 - 3 - 6 - 6 - 4 - 8 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 667 l 1,2,-1 - 551 667 l 1,3,-1 - 195 0 l 1,4,-1 - 79 72 l 1,5,-1 - 471 803 l 1,6,-1 - 815 803 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E7 -EndChar - -StartChar: uni02E902E702E8 -Encoding: 65730 -1 2489 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 7 - 1 - 1 - 0 - 0 - 3 - 5 - 3 - 10 - 11 - 2 - 7 - 3 - 6 - 7 - 6 - 7 - 6 - 4 - 8 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -IP -MDAP[rnd] -MDAP[rnd] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 288 l 1,2,-1 - 513 589 l 1,3,-1 - 160 0 l 1,4,-1 - 53 75 l 1,5,-1 - 483 815 l 1,6,-1 - 815 480 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E8 -EndChar - -StartChar: uni02E902E702E9 -Encoding: 65731 -1 2490 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 6 - 0 - 4 - 2 - 0 - 3 - 10 - 9 - 2 - 6 - 5 - 5 - 3 - 7 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -IP -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 487 545 l 1,2,-1 - 160 0 l 1,3,-1 - 53 78 l 1,4,-1 - 483 818 l 1,5,-1 - 815 264 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 uni02E9 -EndChar - -StartChar: uni02E902E7 -Encoding: 65732 -1 2491 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 5 - 1 - 1 - 0 - 4 - 0 - 8 - 9 - 2 - 5 - 5 - 3 - 6 - 3 - 1 - 3 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 545 l 1,2,-1 - 160 0 l 1,3,-1 - 45 72 l 1,4,-1 - 488 811 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E7 -EndChar - -StartChar: uni02E902E802E5 -Encoding: 65733 -1 2492 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 1 - 0 - 0 - 5 - 10 - 9 - 2 - 7 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 1018 l 1,2,-1 - 590 406 l 1,3,-1 - 160 0 l 1,4,-1 - 70 102 l 1,5,-1 - 470 480 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E5 -EndChar - -StartChar: uni02E902E802E6 -Encoding: 65734 -1 2493 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 7 - 1 - 1 - 0 - 5 - 0 - 10 - 11 - 2 - 7 - 7 - 4 - 8 - 3 - 1 - 4 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 873 l 1,2,-1 - 595 408 l 1,3,-1 - 160 0 l 1,4,-1 - 77 107 l 1,5,-1 - 487 496 l 1,6,-1 - 815 1173 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E6 -EndChar - -StartChar: uni02E902E802E7 -Encoding: 65735 -1 2494 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 1 - 1 - 0 - 0 - 4 - 9 - 8 - 2 - 5 - 5 - 3 - 6 - 3 - 3 - 3 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 626 l 1,2,-1 - 172 13 l 1,3,-1 - 77 107 l 1,4,-1 - 815 823 l 1,5,-1 - 815 1409 l 1,6,-1 - 951 1409 l 1,7,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E7 -EndChar - -StartChar: uni02E902E802E8 -Encoding: 65736 -1 2495 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 7 - 1 - 1 - 0 - 0 - 5 - 11 - 10 - 3 - 6 - 6 - 4 - 8 - 3 - 4 - 4 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 342 l 1,2,-1 - 507 342 l 1,3,-1 - 180 10 l 1,4,-1 - 82 107 l 1,5,-1 - 451 478 l 1,6,-1 - 815 478 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E8 -EndChar - -StartChar: uni02E902E802E9 -Encoding: 65737 -1 2496 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 6 - 0 - 4 - 2 - 0 - 3 - 10 - 9 - 2 - 5 - 5 - 3 - 7 - 3 - 3 - 3 - 6 - 0 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -SHP[rp2] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 487 308 l 1,2,-1 - 169 8 l 1,3,-1 - 77 105 l 1,4,-1 - 487 494 l 1,5,-1 - 815 186 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 uni02E9 -EndChar - -StartChar: uni02E902E8 -Encoding: 65738 -1 2497 -Width: 784 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 18 - 5 - 1 - 1 - 0 - 0 - 4 - 9 - 8 - 2 - 5 - 5 - 3 - 6 - 3 - 3 - 3 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp1] -MDAP[rnd] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -624 0 m 1,0,-1 - 488 0 l 1,1,-1 - 488 296 l 1,2,-1 - 160 0 l 1,3,-1 - 70 100 l 1,4,-1 - 488 484 l 1,5,-1 - 488 1409 l 1,6,-1 - 624 1409 l 1,7,-1 - 624 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E8 -EndChar - -StartChar: uni02E902E902E5 -Encoding: 65739 -1 2498 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 1 - 0 - 4 - 6 - 0 - 3 - 10 - 9 - 2 - 4 - 7 - 3 - 5 - 4 - 18 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 956 l 1,2,-1 - 527 0 l 1,3,-1 - 160 0 l 1,4,-1 - 160 136 l 1,5,-1 - 430 136 l 1,6,-1 - 815 1409 l 1,7,-1 - 951 1409 l 1,8,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E9 uni02E5 -EndChar - -StartChar: uni02E902E902E6 -Encoding: 65740 -1 2499 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 7 - 1 - 1 - 0 - 0 - 4 - 11 - 10 - 2 - 7 - 7 - 4 - 8 - 3 - 5 - 4 - 18 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 806 l 1,2,-1 - 527 0 l 1,3,-1 - 160 0 l 1,4,-1 - 160 136 l 1,5,-1 - 432 136 l 1,6,-1 - 815 1201 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E9 uni02E6 -EndChar - -StartChar: uni02E902E902E7 -Encoding: 65741 -1 2500 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 7 - 1 - 1 - 0 - 0 - 6 - 4 - 3 - 10 - 11 - 2 - 7 - 7 - 4 - 8 - 3 - 5 - 4 - 18 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 580 l 1,2,-1 - 529 0 l 1,3,-1 - 160 0 l 1,4,-1 - 160 136 l 1,5,-1 - 444 136 l 1,6,-1 - 815 891 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E9 uni02E7 -EndChar - -StartChar: uni02E902E902E8 -Encoding: 65742 -1 2501 -Width: 1111 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 19 - 7 - 1 - 1 - 0 - 4 - 0 - 10 - 11 - 2 - 7 - 7 - 4 - 8 - 3 - 5 - 4 - 18 - 1 - 18 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SHP[rp1] -MIAP[rnd] -SRP2 -IP -SRP1 -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -951 0 m 1,0,-1 - 815 0 l 1,1,-1 - 815 298 l 1,2,-1 - 517 0 l 1,3,-1 - 160 0 l 1,4,-1 - 160 136 l 1,5,-1 - 467 136 l 1,6,-1 - 815 484 l 1,7,-1 - 815 1409 l 1,8,-1 - 951 1409 l 1,9,-1 - 951 0 l 1,0,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition lookup 4 subtable" uni02E9 uni02E9 uni02E8 -EndChar - -StartChar: cyrillic_otmark -Encoding: 65743 -1 2502 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 9 - 3 - 7 - 7 - 6 - 2 - 9 - 128 - 11 - 3 -SVTCA[y-axis] -MIAP[rnd] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp2] -IP -MDAP[rnd] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -457 1409 m 1,0,-1 - 367 1214 l 1,1,-1 - 327 1214 l 1,2,-1 - 280 1315 l 1,3,-1 - 67 1315 l 1,4,-1 - 20 1214 l 1,5,-1 - -20 1214 l 1,6,-1 - -67 1315 l 1,7,-1 - -280 1315 l 1,8,-1 - -327 1214 l 1,9,-1 - -367 1214 l 1,10,-1 - -457 1409 l 1,11,-1 - 457 1409 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03040300.cap -Encoding: 65744 -1 2503 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 2 - 5 - 8 - 228 - 8 - 244 - 8 - 2 - 8 - 7 - 112 - 5 - 1 - 80 - 5 - 128 - 5 - 240 - 5 - 3 - 15 - 5 - 1 - 5 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -MDAP[rnd] -SHP[rp1] -DELTAP1 -SRP1 -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -128 1662 m 1,0,-1 - 128 1652 l 1,1,-1 - -2 1652 l 1,2,-1 - -263 1823 l 1,3,-1 - -263 1835 l 1,4,-1 - -37 1835 l 1,5,-1 - 128 1662 l 1,0,-1 -275 1496 m 1,6,-1 - -274 1496 l 1,7,-1 - -274 1623 l 1,8,-1 - 275 1623 l 1,9,-1 - 275 1496 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni03040301.cap -Encoding: 65745 -1 2504 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 3 - 6 - 228 - 6 - 244 - 6 - 2 - 6 - 9 - 112 - 0 - 1 - 80 - 0 - 128 - 0 - 240 - 0 - 3 - 15 - 0 - 1 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -MDAP[rnd] -SHP[rp1] -DELTAP1 -SRP1 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -38 1835 m 1,0,-1 - 264 1835 l 1,1,-1 - 264 1823 l 1,2,-1 - 3 1652 l 1,3,-1 - -127 1652 l 1,4,-1 - -127 1662 l 1,5,-1 - 38 1835 l 1,0,-1 --274 1623 m 1,6,-1 - 275 1623 l 1,7,-1 - 275 1496 l 1,8,-1 - -274 1496 l 1,9,-1 - -274 1623 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: uni03030301.cap -Encoding: 65746 -1 2505 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 45 - 19 - 27 - 24 - 16 - 4 - 12 - 12 - 16 - 24 - 32 - 24 - 2 - 208 - 24 - 224 - 24 - 240 - 24 - 3 - 207 - 24 - 1 - 96 - 24 - 112 - 24 - 2 - 240 - 24 - 1 - 159 - 24 - 175 - 24 - 2 - 64 - 24 - 80 - 24 - 128 - 24 - 3 - 24 - 7 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -IP -MDAP[rnd] -IP -IP -SRP2 -IP -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -127 1475 m 0,0,1 - 76 1475 76 1475 -8 1513 c 0,2,3 - -93 1550 -93 1550 -129 1550 c 0,4,5 - -174 1550 -174 1550 -196.5 1532.5 c 128,-1,6 - -219 1515 -219 1515 -227 1475 c 1,7,-1 - -318 1475 l 1,8,9 - -307 1557 -307 1557 -285.5 1593 c 128,-1,10 - -264 1629 -264 1629 -226 1649 c 128,-1,11 - -188 1669 -188 1669 -125 1669 c 0,12,13 - -70 1669 -70 1669 13 1632 c 0,14,15 - 96 1594 96 1594 130 1594 c 0,16,17 - 178 1594 178 1594 199.5 1613 c 128,-1,18 - 221 1632 221 1632 227 1669 c 1,19,-1 - 319 1669 l 1,20,21 - 307 1588 307 1588 286 1551 c 128,-1,22 - 265 1514 265 1514 227.5 1494.5 c 128,-1,23 - 190 1475 190 1475 127 1475 c 0,0,1 -38 1835 m 1,24,-1 - 264 1835 l 1,25,-1 - 264 1823 l 1,26,-1 - 33 1692 l 1,27,-1 - -97 1692 l 1,28,-1 - -97 1702 l 1,29,-1 - 38 1835 l 1,24,-1 -EndSplineSet -EndChar - -StartChar: uni03030308.cap -Encoding: 65747 -1 2506 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 12 - 24 - 8 - 27 - 27 - 20 -PUSHW_1 - -64 -NPUSHB - 19 - 25 - 32 - 72 - 20 - 20 - 15 - 8 - 2 - 223 - 5 - 239 - 5 - 255 - 5 - 3 - 192 - 5 - 1 - 5 -PUSHW_1 - -64 -NPUSHB - 54 - 18 - 22 - 72 - 5 - 3 - 16 - 7 - 32 - 7 - 64 - 7 - 80 - 7 - 96 - 7 - 128 - 7 - 6 - 208 - 7 - 224 - 7 - 240 - 7 - 3 - 207 - 7 - 1 - 96 - 7 - 112 - 7 - 2 - 15 - 7 - 31 - 7 - 2 - 240 - 7 - 1 - 159 - 7 - 175 - 7 - 2 - 64 - 7 - 80 - 7 - 128 - 7 - 3 - 7 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP1 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP2 -DELTAP3 -SHP[rp1] -MDRP[min,rnd,black] -CALL -DELTAP2 -DELTAP2 -SHP[rp2] -MDAP[rnd] -SHP[rp1] -IP -MDAP[rnd] -CALL -SHP[rp1] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -218 1835 m 1,0,-1 - 218 1700 l 1,1,-1 - 99 1700 l 1,2,-1 - 99 1835 l 1,3,-1 - 218 1835 l 1,0,-1 --98 1835 m 1,4,-1 - -98 1700 l 1,5,-1 - -217 1700 l 1,6,-1 - -217 1835 l 1,7,-1 - -98 1835 l 1,4,-1 -127 1475 m 0,8,9 - 76 1475 76 1475 -8 1513 c 0,10,11 - -93 1550 -93 1550 -129 1550 c 0,12,13 - -174 1550 -174 1550 -196.5 1532.5 c 128,-1,14 - -219 1515 -219 1515 -227 1475 c 1,15,-1 - -318 1475 l 1,16,17 - -307 1557 -307 1557 -285.5 1593 c 128,-1,18 - -264 1629 -264 1629 -226 1649 c 128,-1,19 - -188 1669 -188 1669 -125 1669 c 0,20,21 - -70 1669 -70 1669 13 1632 c 0,22,23 - 96 1594 96 1594 130 1594 c 0,24,25 - 178 1594 178 1594 199.5 1613 c 128,-1,26 - 221 1632 221 1632 227 1669 c 1,27,-1 - 319 1669 l 1,28,29 - 307 1588 307 1588 286 1551 c 128,-1,30 - 265 1514 265 1514 227.5 1494.5 c 128,-1,31 - 190 1475 190 1475 127 1475 c 0,8,9 -EndSplineSet -EndChar - -StartChar: uni03010307.cap -Encoding: 65748 -1 2507 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 2 - 1 - 2 - 1 - 128 - 7 - 1 - 7 - 128 - 4 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -DELTAP1 -IP -IP -MDAP[rnd] -MDAP[rnd] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --32 1666 m 1,0,-1 - -167 1666 l 1,1,-1 - -167 1803 l 1,2,-1 - -32 1803 l 1,3,-1 - -32 1666 l 1,0,-1 --80 1506 m 1,4,-1 - -80 1526 l 1,5,-1 - 137 1813 l 1,6,-1 - 344 1813 l 1,7,-1 - 344 1784 l 1,8,-1 - 14 1506 l 1,9,-1 - -80 1506 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni030C0307.cap -Encoding: 65749 -1 2508 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 9 - 5 - 11 - 2 - 64 - 8 -PUSHW_1 - -64 -PUSHB_6 - 9 - 17 - 72 - 8 - 128 - 5 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[rp0,min,rnd,black] -CALL -SMD -MDRP[min,rnd,white] -SHP[rp1] -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -68 1698 m 1,0,-1 - -67 1698 l 1,1,-1 - -67 1835 l 1,2,-1 - 68 1835 l 1,3,-1 - 68 1698 l 1,0,-1 -107 1498 m 1,4,-1 - -97 1498 l 1,5,-1 - -331 1737 l 1,6,-1 - -331 1758 l 1,7,-1 - -227 1758 l 1,8,-1 - 5 1619 l 1,9,-1 - 7 1619 l 1,10,-1 - 226 1758 l 1,11,-1 - 331 1758 l 1,12,-1 - 331 1737 l 1,13,-1 - 107 1498 l 1,4,-1 -EndSplineSet -EndChar - -StartChar: uni03040308.cap -Encoding: 65750 -1 2509 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 35 - 2 - 10 - 9 - 5 - 5 - 7 - 9 - 3 - 80 - 7 - 96 - 7 - 112 - 7 - 208 - 7 - 224 - 7 - 240 - 7 - 6 - 64 - 7 - 80 - 7 - 112 - 7 - 128 - 7 - 224 - 7 - 240 - 7 - 6 - 7 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHP[rp1] -MDAP[rnd] -SRP2 -IP -MDAP[rnd] -SRP2 -IP -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -299 1835 m 1,0,-1 - 299 1651 l 1,1,-1 - 136 1651 l 1,2,-1 - 136 1835 l 1,3,-1 - 299 1835 l 1,0,-1 --135 1835 m 1,4,-1 - -135 1651 l 1,5,-1 - -298 1651 l 1,6,-1 - -298 1835 l 1,7,-1 - -135 1835 l 1,4,-1 -275 1458 m 1,8,-1 - -274 1458 l 1,9,-1 - -274 1585 l 1,10,-1 - 275 1585 l 1,11,-1 - 275 1458 l 1,8,-1 -EndSplineSet -EndChar - -StartChar: bari.dotless -Encoding: 65751 -1 2510 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 24 - 11 - 1 - 9 - 9 - 6 - 4 - 8 - 8 - 12 - 13 - 7 - 11 - 0 - 11 - 80 - 89 - 4 - 0 - 0 - 2 - 9 - 21 - 2 - 15 -SVTCA[y-axis] -MIAP[rnd] -MIAP[rnd] -SRP2 -IP -MDAP[rnd] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -SRP1 -SRP2 -SVTCA[x-axis] -IP -SRP1 -SHP[rp1] -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -AnchorPoint: "Anchor-25" 160 0 basechar 0 -AnchorPoint: "Anchor-23" 1366 1840 basechar 0 -AnchorPoint: "Anchor-22" 0 1840 basechar 0 -AnchorPoint: "Anchor-21" 455 1540 basechar 0 -AnchorPoint: "Anchor-20" 455 -380 basechar 0 -AnchorPoint: "Anchor-16" 230 1580 basechar 0 -AnchorPoint: "Anchor-15" 320 1540 basechar 0 -AnchorPoint: "Anchor-14" 230 -130 basechar 0 -LayerCount: 2 -Fore -SplineSet -26 617 m 1,0,-1 - 135 617 l 1,1,-1 - 135 1082 l 1,2,-1 - 315 1082 l 1,3,-1 - 315 617 l 1,4,-1 - 429 617 l 1,5,-1 - 429 484 l 1,6,-1 - 315 484 l 1,7,-1 - 315 0 l 1,8,-1 - 135 0 l 1,9,-1 - 135 484 l 1,10,-1 - 26 484 l 1,11,-1 - 26 617 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: uni03B1030403130300 -Encoding: 65752 -1 2511 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 4 - 3 - 31 - 48 - 47 - 48 - 79 - 48 - 3 - 191 - 48 - 1 - 16 - 48 - 128 - 48 - 160 - 48 - 192 - 48 - 240 - 48 - 5 - 48 - 2 - 40 - 17 - 38 - 4 - 3 - 2 - 40 - 0 - 40 - 39 - 6 - 19 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 220 0 2 -Refer: 1953 8141 N 1 0 0 1 230 350 2 -EndChar - -StartChar: uni03B1030403130301 -Encoding: 65753 -1 2512 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 4 - 3 - 31 - 59 - 47 - 59 - 79 - 59 - 3 - 191 - 59 - 1 - 16 - 59 - 128 - 59 - 160 - 59 - 192 - 59 - 240 - 59 - 5 - 59 - 2 - 40 - 17 - 38 - 4 - 3 - 2 - 40 - 0 - 40 - 39 - 6 - 19 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 220 0 2 -Refer: 1954 8142 N 1 0 0 1 230 350 2 -EndChar - -StartChar: uni03B1030403140300 -Encoding: 65754 -1 2513 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 4 - 3 - 31 - 59 - 47 - 59 - 79 - 59 - 3 - 191 - 59 - 1 - 16 - 59 - 128 - 59 - 160 - 59 - 192 - 59 - 240 - 59 - 5 - 59 - 2 - 40 - 17 - 38 - 4 - 3 - 2 - 40 - 0 - 40 - 39 - 6 - 19 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 220 0 2 -Refer: 1966 8157 N 1 0 0 1 230 350 2 -EndChar - -StartChar: uni03B1030403140301 -Encoding: 65755 -1 2514 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 4 - 3 - 31 - 59 - 47 - 59 - 79 - 59 - 3 - 191 - 59 - 1 - 16 - 59 - 128 - 59 - 160 - 59 - 192 - 59 - 240 - 59 - 5 - 59 - 2 - 40 - 17 - 38 - 4 - 3 - 2 - 40 - 0 - 40 - 39 - 6 - 19 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 220 0 2 -Refer: 1967 8158 N 1 0 0 1 230 350 2 -EndChar - -StartChar: uni03B1030603130300 -Encoding: 65756 -1 2515 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 4 - 3 - 47 - 69 - 63 - 69 - 79 - 69 - 191 - 69 - 4 - 128 - 69 - 240 - 69 - 2 - 69 - 2 - 39 - 39 - 17 - 38 - 4 - 3 - 2 - 42 - 0 - 42 - 50 - 6 - 19 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 712 774 N 1 0 0 1 538 -39 2 -Refer: 1953 8141 N 1 0 0 1 230 350 2 -EndChar - -StartChar: uni03B1030603130301 -Encoding: 65757 -1 2516 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 2 - 3 - 47 - 55 - 63 - 55 - 79 - 55 - 191 - 55 - 4 - 128 - 55 - 240 - 55 - 2 - 55 - 4 - 56 - 56 - 17 - 38 - 4 - 3 - 2 - 59 - 0 - 59 - 67 - 6 - 19 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 230 350 2 -Refer: 712 774 N 1 0 0 1 538 -39 2 -EndChar - -StartChar: uni03B1030603140300 -Encoding: 65758 -1 2517 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 2 - 3 - 47 - 55 - 63 - 55 - 79 - 55 - 191 - 55 - 4 - 128 - 55 - 240 - 55 - 2 - 55 - 4 - 56 - 56 - 17 - 38 - 4 - 3 - 2 - 59 - 0 - 59 - 67 - 6 - 19 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 230 350 2 -Refer: 712 774 N 1 0 0 1 538 -39 2 -EndChar - -StartChar: uni03B1030603140301 -Encoding: 65759 -1 2518 -Width: 1184 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 2 - 3 - 47 - 55 - 63 - 55 - 79 - 55 - 191 - 55 - 4 - 128 - 55 - 240 - 55 - 2 - 55 - 4 - 56 - 56 - 17 - 38 - 4 - 3 - 2 - 59 - 0 - 59 - 67 - 6 - 19 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 867 945 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 230 350 2 -Refer: 712 774 N 1 0 0 1 538 -39 2 -EndChar - -StartChar: uni03B9030403130300 -Encoding: 65760 -1 2519 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 3 - 2 - 31 - 30 - 47 - 30 - 79 - 30 - 3 - 191 - 30 - 1 - 16 - 30 - 128 - 30 - 160 - 30 - 192 - 30 - 240 - 30 - 5 - 30 - 1 - 10 - 10 - 17 - 38 - 3 - 2 - 1 - 12 - 0 - 12 - 13 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 -94 0 2 -Refer: 1953 8141 N 1 0 0 1 -104 350 2 -EndChar - -StartChar: uni03B9030403130301 -Encoding: 65761 -1 2520 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 3 - 2 - 31 - 30 - 47 - 30 - 79 - 30 - 3 - 191 - 30 - 1 - 16 - 30 - 128 - 30 - 160 - 30 - 192 - 30 - 240 - 30 - 5 - 30 - 1 - 10 - 10 - 17 - 38 - 3 - 2 - 1 - 12 - 0 - 12 - 13 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 -94 0 2 -Refer: 1954 8142 N 1 0 0 1 -84 350 2 -EndChar - -StartChar: uni03B9030403140300 -Encoding: 65762 -1 2521 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 3 - 2 - 31 - 30 - 47 - 30 - 79 - 30 - 3 - 191 - 30 - 1 - 16 - 30 - 128 - 30 - 160 - 30 - 192 - 30 - 240 - 30 - 5 - 30 - 1 - 10 - 10 - 17 - 38 - 3 - 2 - 1 - 12 - 0 - 12 - 13 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 -94 0 2 -Refer: 1966 8157 N 1 0 0 1 -109 350 2 -EndChar - -StartChar: uni03B9030403140301 -Encoding: 65763 -1 2522 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 3 - 2 - 31 - 30 - 47 - 30 - 79 - 30 - 3 - 191 - 30 - 1 - 16 - 30 - 128 - 30 - 160 - 30 - 192 - 30 - 240 - 30 - 5 - 30 - 1 - 10 - 10 - 17 - 38 - 3 - 2 - 1 - 12 - 0 - 12 - 13 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 -94 0 2 -Refer: 1967 8158 N 1 0 0 1 -69 350 2 -EndChar - -StartChar: uni03B9030603130300 -Encoding: 65764 -1 2523 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 1 - 2 - 47 - 26 - 63 - 26 - 79 - 26 - 191 - 26 - 4 - 128 - 26 - 240 - 26 - 2 - 26 - 3 - 27 - 27 - 17 - 38 - 1 - 3 - 2 - 30 - 0 - 30 - 38 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 -99 350 2 -Refer: 712 774 N 1 0 0 1 230 -39 2 -EndChar - -StartChar: uni03B9030603130301 -Encoding: 65765 -1 2524 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 1 - 2 - 47 - 26 - 63 - 26 - 79 - 26 - 191 - 26 - 4 - 128 - 26 - 240 - 26 - 2 - 26 - 3 - 27 - 27 - 17 - 38 - 1 - 3 - 2 - 30 - 0 - 30 - 38 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 -99 350 2 -Refer: 712 774 N 1 0 0 1 230 -39 2 -EndChar - -StartChar: uni03B9030603140300 -Encoding: 65766 -1 2525 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 1 - 2 - 47 - 26 - 63 - 26 - 79 - 26 - 191 - 26 - 4 - 128 - 26 - 240 - 26 - 2 - 26 - 3 - 27 - 27 - 17 - 38 - 1 - 3 - 2 - 30 - 0 - 30 - 38 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 -99 350 2 -Refer: 712 774 N 1 0 0 1 230 -39 2 -EndChar - -StartChar: uni03B9030603140301 -Encoding: 65767 -1 2526 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 1 - 2 - 47 - 26 - 63 - 26 - 79 - 26 - 191 - 26 - 4 - 128 - 26 - 240 - 26 - 2 - 26 - 3 - 27 - 27 - 17 - 38 - 1 - 3 - 2 - 30 - 0 - 30 - 38 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 -99 350 2 -Refer: 712 774 N 1 0 0 1 230 -39 2 -EndChar - -StartChar: uni03C5030403130300 -Encoding: 65768 -1 2527 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 3 - 2 - 31 - 42 - 47 - 42 - 79 - 42 - 3 - 191 - 42 - 1 - 16 - 42 - 128 - 42 - 160 - 42 - 192 - 42 - 240 - 42 - 5 - 42 - 1 - 22 - 22 - 17 - 38 - 3 - 2 - 1 - 24 - 0 - 24 - 25 - 6 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 210 0 2 -Refer: 1953 8141 N 1 0 0 1 200 350 2 -EndChar - -StartChar: uni03C5030403130301 -Encoding: 65769 -1 2528 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 1 - 2 - 31 - 38 - 47 - 38 - 79 - 38 - 3 - 191 - 38 - 1 - 16 - 38 - 128 - 38 - 160 - 38 - 192 - 38 - 240 - 38 - 5 - 38 - 3 - 40 - 40 - 17 - 38 - 3 - 2 - 1 - 41 - 0 - 41 - 42 - 6 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 220 350 2 -Refer: 651 713 N 1 0 0 1 210 0 2 -EndChar - -StartChar: uni03C5030403140300 -Encoding: 65770 -1 2529 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 1 - 2 - 31 - 38 - 47 - 38 - 79 - 38 - 3 - 191 - 38 - 1 - 16 - 38 - 128 - 38 - 160 - 38 - 192 - 38 - 240 - 38 - 5 - 38 - 3 - 40 - 40 - 17 - 38 - 3 - 2 - 1 - 41 - 0 - 41 - 42 - 6 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 200 350 2 -Refer: 651 713 N 1 0 0 1 210 0 2 -EndChar - -StartChar: uni03C5030403140301 -Encoding: 65771 -1 2530 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 39 - 1 - 2 - 31 - 38 - 47 - 38 - 79 - 38 - 3 - 191 - 38 - 1 - 16 - 38 - 128 - 38 - 160 - 38 - 192 - 38 - 240 - 38 - 5 - 38 - 3 - 40 - 40 - 17 - 38 - 3 - 2 - 1 - 41 - 0 - 41 - 42 - 6 - 13 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -DELTAP2 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 240 350 2 -Refer: 651 713 N 1 0 0 1 210 0 2 -EndChar - -StartChar: uni03C5030603130300 -Encoding: 65772 -1 2531 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 1 - 2 - 47 - 38 - 63 - 38 - 79 - 38 - 191 - 38 - 4 - 128 - 38 - 240 - 38 - 2 - 38 - 3 - 39 - 39 - 17 - 38 - 1 - 3 - 2 - 42 - 0 - 42 - 50 - 6 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1953 8141 N 1 0 0 1 210 350 2 -Refer: 712 774 N 1 0 0 1 540 -39 2 -EndChar - -StartChar: uni03C5030603130301 -Encoding: 65773 -1 2532 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 1 - 2 - 47 - 38 - 63 - 38 - 79 - 38 - 191 - 38 - 4 - 128 - 38 - 240 - 38 - 2 - 38 - 3 - 39 - 39 - 17 - 38 - 1 - 3 - 2 - 42 - 0 - 42 - 50 - 6 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1954 8142 N 1 0 0 1 220 350 2 -Refer: 712 774 N 1 0 0 1 540 -39 2 -EndChar - -StartChar: uni03C5030603140300 -Encoding: 65774 -1 2533 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 1 - 2 - 47 - 38 - 63 - 38 - 79 - 38 - 191 - 38 - 4 - 128 - 38 - 240 - 38 - 2 - 38 - 3 - 39 - 39 - 17 - 38 - 1 - 3 - 2 - 42 - 0 - 42 - 50 - 6 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1966 8157 N 1 0 0 1 190 350 2 -Refer: 712 774 N 1 0 0 1 540 -39 2 -EndChar - -StartChar: uni03C5030603140301 -Encoding: 65775 -1 2534 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 1 - 2 - 47 - 38 - 63 - 38 - 79 - 38 - 191 - 38 - 4 - 128 - 38 - 240 - 38 - 2 - 38 - 3 - 39 - 39 - 17 - 38 - 1 - 3 - 2 - 42 - 0 - 42 - 50 - 6 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -SRP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP1 -SHC[rp1] -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 1967 8158 N 1 0 0 1 260 350 2 -Refer: 712 774 N 1 0 0 1 540 -39 2 -EndChar - -StartChar: uni03B9030803040300 -Encoding: 65776 -1 2535 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 148 - 4 - 43 - 24 - 59 - 24 - 107 - 24 - 123 - 24 - 4 - 11 - 24 - 27 - 24 - 43 - 24 - 59 - 24 - 91 - 24 - 139 - 24 - 155 - 24 - 7 - 59 - 24 - 123 - 24 - 155 - 24 - 3 - 212 - 24 - 1 - 244 - 24 - 1 - 24 - 3 - 159 - 20 - 1 - 2 - 31 - 20 - 47 - 20 - 111 - 20 - 127 - 20 - 159 - 20 - 191 - 20 - 207 - 20 - 239 - 20 - 8 - 15 - 20 - 47 - 20 - 63 - 20 - 95 - 20 - 143 - 20 - 207 - 20 - 255 - 20 - 7 - 63 - 20 - 95 - 20 - 111 - 20 - 127 - 20 - 143 - 20 - 175 - 20 - 191 - 20 - 223 - 20 - 239 - 20 - 255 - 20 - 10 - 20 - 2 - 1 - 10 - 95 - 10 - 1 - 0 - 10 - 16 - 10 - 32 - 10 - 48 - 10 - 64 - 10 - 5 - 16 - 10 - 32 - 10 - 64 - 10 - 80 - 10 - 96 - 10 - 112 - 10 - 208 - 10 - 224 - 10 - 240 - 10 - 9 - 10 - 17 - 38 - 4 - 3 - 2 - 1 - 14 - 0 - 14 - 13 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -DELTAP2 -DELTAP3 -DELTAP3 -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -SDS -DELTAP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -94 -69 2 -Refer: 651 713 N 1 0 0 1 -96 166 2 -Refer: 2573 -1 N 1 0 0 1 -168 0 2 -EndChar - -StartChar: uni03B9030803040301 -Encoding: 65777 -1 2536 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 148 - 4 - 43 - 24 - 59 - 24 - 107 - 24 - 123 - 24 - 4 - 11 - 24 - 27 - 24 - 43 - 24 - 59 - 24 - 91 - 24 - 139 - 24 - 155 - 24 - 7 - 59 - 24 - 123 - 24 - 155 - 24 - 3 - 212 - 24 - 1 - 244 - 24 - 1 - 24 - 3 - 159 - 20 - 1 - 2 - 31 - 20 - 47 - 20 - 111 - 20 - 127 - 20 - 159 - 20 - 191 - 20 - 207 - 20 - 239 - 20 - 8 - 15 - 20 - 47 - 20 - 63 - 20 - 95 - 20 - 143 - 20 - 207 - 20 - 255 - 20 - 7 - 63 - 20 - 95 - 20 - 111 - 20 - 127 - 20 - 143 - 20 - 175 - 20 - 191 - 20 - 223 - 20 - 239 - 20 - 255 - 20 - 10 - 20 - 2 - 1 - 10 - 95 - 10 - 1 - 0 - 10 - 16 - 10 - 32 - 10 - 48 - 10 - 64 - 10 - 5 - 16 - 10 - 32 - 10 - 64 - 10 - 80 - 10 - 96 - 10 - 112 - 10 - 208 - 10 - 224 - 10 - 240 - 10 - 9 - 10 - 17 - 38 - 4 - 3 - 2 - 1 - 15 - 0 - 15 - 12 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -DELTAP2 -DELTAP3 -DELTAP3 -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -SDS -DELTAP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -94 -69 2 -Refer: 651 713 N 1 0 0 1 -96 166 2 -Refer: 2574 -1 N 1 0 0 1 -42 0 2 -EndChar - -StartChar: uni03B9030803060300 -Encoding: 65778 -1 2537 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 131 - 4 - 111 - 34 - 127 - 34 - 143 - 34 - 191 - 34 - 4 - 63 - 34 - 143 - 34 - 159 - 34 - 3 - 15 - 34 - 63 - 34 - 79 - 34 - 127 - 34 - 159 - 34 - 191 - 34 - 6 - 208 - 34 - 1 - 240 - 34 - 1 - 34 - 3 - 31 - 21 - 47 - 21 - 111 - 21 - 127 - 21 - 159 - 21 - 191 - 21 - 207 - 21 - 239 - 21 - 8 - 63 - 21 - 143 - 21 - 159 - 21 - 3 - 15 - 21 - 47 - 21 - 63 - 21 - 127 - 21 - 159 - 21 - 5 - 21 - 2 - 1 - 14 - 95 - 14 - 1 - 0 - 14 - 16 - 14 - 32 - 14 - 48 - 14 - 64 - 14 - 5 - 16 - 14 - 32 - 14 - 64 - 14 - 80 - 14 - 96 - 14 - 112 - 14 - 208 - 14 - 224 - 14 - 240 - 14 - 9 - 14 - 17 - 38 - 4 - 3 - 21 - 0 - 21 - 29 - 4 - 5 - 37 - 2 - 1 - 14 - 0 - 14 - 13 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -DELTAP2 -DELTAP3 -DELTAP3 -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -94 -69 2 -Refer: 712 774 N 1 0 0 1 230 166 2 -Refer: 2573 -1 N 1 0 0 1 -168 0 2 -EndChar - -StartChar: uni03B9030803060301 -Encoding: 65779 -1 2538 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 131 - 4 - 111 - 34 - 127 - 34 - 143 - 34 - 191 - 34 - 4 - 63 - 34 - 143 - 34 - 159 - 34 - 3 - 15 - 34 - 63 - 34 - 79 - 34 - 127 - 34 - 159 - 34 - 191 - 34 - 6 - 208 - 34 - 1 - 240 - 34 - 1 - 34 - 3 - 31 - 21 - 47 - 21 - 111 - 21 - 127 - 21 - 159 - 21 - 191 - 21 - 207 - 21 - 239 - 21 - 8 - 63 - 21 - 143 - 21 - 159 - 21 - 3 - 15 - 21 - 47 - 21 - 63 - 21 - 127 - 21 - 159 - 21 - 5 - 21 - 2 - 1 - 14 - 95 - 14 - 1 - 0 - 14 - 16 - 14 - 32 - 14 - 48 - 14 - 64 - 14 - 5 - 16 - 14 - 32 - 14 - 64 - 14 - 80 - 14 - 96 - 14 - 112 - 14 - 208 - 14 - 224 - 14 - 240 - 14 - 9 - 14 - 17 - 38 - 4 - 3 - 21 - 0 - 21 - 29 - 4 - 5 - 37 - 2 - 1 - 14 - 0 - 14 - 13 - 4 - 5 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -DELTAP2 -DELTAP3 -DELTAP3 -SRP1 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 875 953 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 -94 -69 2 -Refer: 712 774 N 1 0 0 1 230 166 2 -Refer: 2574 -1 N 1 0 0 1 -42 0 2 -EndChar - -StartChar: uni03C5030803040300 -Encoding: 65780 -1 2539 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 147 - 4 - 43 - 36 - 59 - 36 - 107 - 36 - 123 - 36 - 4 - 11 - 36 - 27 - 36 - 43 - 36 - 59 - 36 - 91 - 36 - 139 - 36 - 155 - 36 - 7 - 59 - 36 - 123 - 36 - 155 - 36 - 3 - 212 - 36 - 1 - 244 - 36 - 1 - 36 - 1 - 159 - 24 - 1 - 2 - 31 - 24 - 47 - 24 - 111 - 24 - 127 - 24 - 159 - 24 - 191 - 24 - 207 - 24 - 239 - 24 - 8 - 15 - 24 - 47 - 24 - 63 - 24 - 95 - 24 - 143 - 24 - 207 - 24 - 255 - 24 - 7 - 63 - 24 - 95 - 24 - 111 - 24 - 127 - 24 - 143 - 24 - 175 - 24 - 191 - 24 - 223 - 24 - 239 - 24 - 255 - 24 - 10 - 24 - 2 - 3 - 95 - 30 - 1 - 0 - 30 - 16 - 30 - 32 - 30 - 48 - 30 - 64 - 30 - 5 - 16 - 30 - 32 - 30 - 64 - 30 - 80 - 30 - 96 - 30 - 112 - 30 - 208 - 30 - 224 - 30 - 240 - 30 - 9 - 30 - 17 - 38 - 4 - 3 - 2 - 1 - 30 - 0 - 30 - 29 - 7 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -DELTAP2 -DELTAP3 -DELTAP3 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -SDS -DELTAP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 203 166 2 -Refer: 106 168 N 1 0 0 1 205 -69 2 -Refer: 2573 -1 N 1 0 0 1 121 0 2 -EndChar - -StartChar: uni03C5030803040301 -Encoding: 65781 -1 2540 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 147 - 4 - 43 - 36 - 59 - 36 - 107 - 36 - 123 - 36 - 4 - 11 - 36 - 27 - 36 - 43 - 36 - 59 - 36 - 91 - 36 - 139 - 36 - 155 - 36 - 7 - 59 - 36 - 123 - 36 - 155 - 36 - 3 - 212 - 36 - 1 - 244 - 36 - 1 - 36 - 1 - 159 - 24 - 1 - 2 - 31 - 24 - 47 - 24 - 111 - 24 - 127 - 24 - 159 - 24 - 191 - 24 - 207 - 24 - 239 - 24 - 8 - 15 - 24 - 47 - 24 - 63 - 24 - 95 - 24 - 143 - 24 - 207 - 24 - 255 - 24 - 7 - 63 - 24 - 95 - 24 - 111 - 24 - 127 - 24 - 143 - 24 - 175 - 24 - 191 - 24 - 223 - 24 - 239 - 24 - 255 - 24 - 10 - 24 - 2 - 3 - 95 - 30 - 1 - 0 - 30 - 16 - 30 - 32 - 30 - 48 - 30 - 64 - 30 - 5 - 16 - 30 - 32 - 30 - 64 - 30 - 80 - 30 - 96 - 30 - 112 - 30 - 208 - 30 - 224 - 30 - 240 - 30 - 9 - 30 - 17 - 38 - 4 - 3 - 2 - 1 - 30 - 0 - 30 - 29 - 7 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -DELTAP2 -DELTAP3 -DELTAP3 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -SDS -DELTAP1 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 651 713 N 1 0 0 1 203 166 2 -Refer: 106 168 N 1 0 0 1 205 -69 2 -Refer: 2574 -1 N 1 0 0 1 244 0 2 -EndChar - -StartChar: uni03C5030803060300 -Encoding: 65782 -1 2541 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 123 - 4 - 111 - 46 - 127 - 46 - 143 - 46 - 191 - 46 - 4 - 63 - 46 - 143 - 46 - 159 - 46 - 3 - 15 - 46 - 63 - 46 - 79 - 46 - 127 - 46 - 159 - 46 - 191 - 46 - 6 - 208 - 46 - 1 - 240 - 46 - 1 - 46 - 3 - 31 - 33 - 47 - 33 - 111 - 33 - 127 - 33 - 159 - 33 - 191 - 33 - 207 - 33 - 239 - 33 - 8 - 63 - 33 - 143 - 33 - 159 - 33 - 3 - 15 - 33 - 47 - 33 - 63 - 33 - 127 - 33 - 159 - 33 - 5 - 33 - 2 - 1 - 95 - 26 - 1 - 0 - 26 - 16 - 26 - 32 - 26 - 48 - 26 - 64 - 26 - 5 - 16 - 26 - 32 - 26 - 64 - 26 - 80 - 26 - 96 - 26 - 112 - 26 - 208 - 26 - 224 - 26 - 240 - 26 - 9 - 26 - 17 - 38 - 4 - 3 - 2 - 1 - 26 - 0 - 26 - 25 - 7 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -DELTAP2 -DELTAP3 -DELTAP3 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 205 -69 2 -Refer: 712 774 N 1 0 0 1 530 166 2 -Refer: 2573 -1 N 1 0 0 1 129 0 2 -EndChar - -StartChar: uni03C5030803060301 -Encoding: 65783 -1 2542 -Width: 1120 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 123 - 4 - 111 - 46 - 127 - 46 - 143 - 46 - 191 - 46 - 4 - 63 - 46 - 143 - 46 - 159 - 46 - 3 - 15 - 46 - 63 - 46 - 79 - 46 - 127 - 46 - 159 - 46 - 191 - 46 - 6 - 208 - 46 - 1 - 240 - 46 - 1 - 46 - 3 - 31 - 33 - 47 - 33 - 111 - 33 - 127 - 33 - 159 - 33 - 191 - 33 - 207 - 33 - 239 - 33 - 8 - 63 - 33 - 143 - 33 - 159 - 33 - 3 - 15 - 33 - 47 - 33 - 63 - 33 - 127 - 33 - 159 - 33 - 5 - 33 - 2 - 1 - 95 - 26 - 1 - 0 - 26 - 16 - 26 - 32 - 26 - 48 - 26 - 64 - 26 - 5 - 16 - 26 - 32 - 26 - 64 - 26 - 80 - 26 - 96 - 26 - 112 - 26 - 208 - 26 - 224 - 26 - 240 - 26 - 9 - 26 - 17 - 38 - 4 - 3 - 2 - 1 - 26 - 0 - 26 - 25 - 7 - 15 - 37 -CALL -SRP1 -SHC[rp1] -SHC[rp1] -SHC[rp1] -SHC[rp1] -SVTCA[y-axis] -CALL -DELTAP2 -DELTAP3 -DELTAP3 -SHC[rp1] -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP1 -DELTAP2 -DELTAP3 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 887 965 N 1 0 0 1 0 0 3 -Refer: 106 168 N 1 0 0 1 198 -69 2 -Refer: 712 774 N 1 0 0 1 523 166 2 -Refer: 2574 -1 N 1 0 0 1 225 0 2 -EndChar - -StartChar: dottediacute -Encoding: 65784 -1 2543 -Width: 455 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 25 - 2 - 13 - 159 - 13 - 175 - 13 - 2 - 0 - 13 - 192 - 13 - 240 - 13 - 3 - 13 - 5 - 38 - 2 - 9 - 89 - 9 - 12 - 5 - 7 - 37 -CALL -SRP1 -SHC[rp1] -SVTCA[y-axis] -CALL -DELTAP1 -DELTAP1 -SRP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 76 105 N 1 0 0 1 0 0 3 -Refer: 2303 -1 N 1 0 0 1 32 59 2 -EndChar - -StartChar: Eng.alt1 -Encoding: 65785 -1 2544 -Width: 1481 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 30 - 9 - 32 - 24 - 18 - 18 - 20 - 19 - 19 - 3 - 32 - 3 - 36 - 35 - 28 - 13 - 95 - 89 - 28 - 4 - 25 - 19 - 21 - 3 - 0 - 6 - 95 - 89 - 0 - 19 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SRP2 -IP -MIAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -944 -425 m 0,0,1 - 849 -425 849 -425 767 -388 c 128,-1,2 - 685 -351 685 -351 626 -277 c 1,3,-1 - 753 -162 l 1,4,5 - 843 -272 843 -272 949 -272 c 0,6,7 - 1077 -272 1077 -272 1130 -165 c 128,-1,8 - 1183 -58 1183 -58 1183 191 c 2,9,-1 - 1183 818 l 2,10,11 - 1183 1033 1183 1033 1085 1153.5 c 128,-1,12 - 987 1274 987 1274 811 1274 c 0,13,14 - 692 1274 692 1274 588 1222 c 128,-1,15 - 484 1170 484 1170 423.5 1081 c 128,-1,16 - 363 992 363 992 363 891 c 2,17,-1 - 363 0 l 1,18,-1 - 172 0 l 1,19,-1 - 172 1092 l 1,20,-1 - 168 1409 l 1,21,-1 - 352 1409 l 1,22,23 - 359 1255 359 1255 359 1158 c 1,24,-1 - 363 1158 l 1,25,26 - 435 1287 435 1287 570.5 1358 c 128,-1,27 - 706 1429 706 1429 869 1429 c 0,28,29 - 1112 1429 1112 1429 1242.5 1276.5 c 128,-1,30 - 1373 1124 1373 1124 1373 839 c 2,31,-1 - 1373 187 l 2,32,33 - 1373 -132 1373 -132 1267 -278.5 c 128,-1,34 - 1161 -425 1161 -425 944 -425 c 0,0,1 -EndSplineSet -EndChar - -StartChar: Eng.alt2 -Encoding: 65786 -1 2545 -Width: 1479 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 29 - 23 - 21 - 21 - 0 - 14 - 17 - 17 - 12 - 18 - 0 - 18 - 5 - 0 - 3 - 27 - 26 - 21 - 14 - 18 - 24 - 19 - 3 - 3 - 8 - 95 - 89 - 3 - 18 - 18 -SVTCA[y-axis] -MIAP[rnd] -MDRP[rnd,grey] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -SHP[rp1] -SRP2 -IP -IP -SRP1 -SRP2 -SVTCA[x-axis] -SLOOP -IP -SRP1 -SRP2 -IP -SHP[rp2] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1312 -134 m 2,0,1 - 1312 -284 1312 -284 1249.5 -354.5 c 128,-1,2 - 1187 -425 1187 -425 1065 -425 c 0,3,4 - 983 -425 983 -425 918 -411 c 1,5,-1 - 918 -259 l 1,6,7 - 970 -270 970 -270 1010 -270 c 0,8,9 - 1055 -270 1055 -270 1079.5 -256 c 128,-1,10 - 1104 -242 1104 -242 1114.5 -209.5 c 128,-1,11 - 1125 -177 1125 -177 1125 -94 c 2,12,-1 - 1125 -3 l 1,13,-1 - 328 1200 l 1,14,-1 - 333 1103 l 1,15,-1 - 338 936 l 1,16,-1 - 338 0 l 1,17,-1 - 168 0 l 1,18,-1 - 168 1409 l 1,19,-1 - 390 1409 l 1,20,-1 - 1152 261 l 1,21,22 - 1140 457 1140 457 1140 545 c 2,23,-1 - 1140 1409 l 1,24,-1 - 1312 1409 l 1,25,-1 - 1312 -134 l 2,0,1 -EndSplineSet -EndChar - -StartChar: Eng.alt3 -Encoding: 65787 -1 2546 -Width: 1481 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 36 - 12 - 35 - 27 - 21 - 21 - 22 - 5 - 4 - 4 - 23 - 22 - 35 - 22 - 39 - 38 - 27 - 31 - 22 - 22 - 31 - 31 - 16 - 95 - 89 - 31 - 4 - 24 - 3 - 0 - 9 - 95 - 89 - 4 - 4 - 0 - 19 -SVTCA[y-axis] -MIAP[rnd] -SHP[rp2] -MDAP[rnd] -CALL -SVTCA[y-axis] -RTG -MIAP[rnd] -MIAP[rnd] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -IP -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -SRP1 -SHP[rp1] -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -761 -20 m 0,0,1 - 581 -20 581 -20 450 40.5 c 128,-1,2 - 319 101 319 101 250.5 214.5 c 128,-1,3 - 182 328 182 328 172 489 c 1,4,-1 - 363 489 l 1,5,6 - 373 362 373 362 419.5 283.5 c 128,-1,7 - 466 205 466 205 546.5 168 c 128,-1,8 - 627 131 627 131 765 131 c 0,9,10 - 977 131 977 131 1080 260.5 c 128,-1,11 - 1183 390 1183 390 1183 665 c 2,12,-1 - 1183 818 l 2,13,14 - 1183 1033 1183 1033 1085 1153.5 c 128,-1,15 - 987 1274 987 1274 811 1274 c 0,16,17 - 692 1274 692 1274 588 1222 c 128,-1,18 - 484 1170 484 1170 423.5 1081 c 128,-1,19 - 363 992 363 992 363 891 c 2,20,-1 - 363 700 l 1,21,-1 - 172 700 l 1,22,-1 - 172 1092 l 1,23,-1 - 168 1409 l 1,24,-1 - 352 1409 l 1,25,26 - 359 1255 359 1255 359 1178 c 1,27,-1 - 363 1178 l 1,28,29 - 435 1297 435 1297 567 1363 c 128,-1,30 - 699 1429 699 1429 869 1429 c 0,31,32 - 1112 1429 1112 1429 1242.5 1276.5 c 128,-1,33 - 1373 1124 1373 1124 1373 839 c 2,34,-1 - 1373 661 l 2,35,36 - 1373 321 1373 321 1218.5 150.5 c 128,-1,37 - 1064 -20 1064 -20 761 -20 c 0,0,1 -EndSplineSet -EndChar - -StartChar: zero.alt -Encoding: 65788 -1 2547 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 23 - 9 - 15 - 229 - 89 - 0 - 9 - 1 - 41 - 3 - 9 - 3 - 21 - 229 - 89 - 47 - 3 - 63 - 3 - 2 - 16 - 3 - 1 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -306 490 m 0,0,1 - 306 301 306 301 227 203.5 c 128,-1,2 - 148 106 148 106 -3 106 c 0,3,4 - -153 106 -153 106 -230.5 202.5 c 128,-1,5 - -308 299 -308 299 -308 490 c 0,6,7 - -308 684 -308 684 -233.5 779 c 128,-1,8 - -159 874 -159 874 1 874 c 0,9,10 - 157 874 157 874 231.5 777.5 c 128,-1,11 - 306 681 306 681 306 490 c 0,0,1 -160 490 m 0,12,13 - 160 629 160 629 122 693 c 128,-1,14 - 84 757 84 757 1 757 c 0,15,16 - -85 757 -85 757 -123.5 692.5 c 128,-1,17 - -162 628 -162 628 -162 490 c 0,18,19 - -162 358 -162 358 -123 290.5 c 128,-1,20 - -84 223 -84 223 -2 223 c 0,21,22 - 160 223 160 223 160 490 c 0,12,13 -EndSplineSet -EndChar - -StartChar: one.alt -Encoding: 65789 -1 2548 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 27 - 1 - 0 - 2 - 128 - 47 - 4 - 159 - 4 - 2 - 191 - 4 - 1 - 4 - 0 - 0 - 1 - 0 - 0 - 16 - 0 - 2 - 0 - 0 - 16 - 0 - 2 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -MDAP[rnd] -DELTAP1 -DELTAP2 -SMD -MDRP[min,rnd,black] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -31 125 m 1,0,-1 - 31 726 l 1,1,-1 - -168 606 l 1,2,-1 - -168 746 l 1,3,-1 - 40 867 l 1,4,-1 - 167 867 l 1,5,-1 - 167 125 l 1,6,-1 - 31 125 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: two.alt -Encoding: 65790 -1 2549 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 37 - 7 - 23 - 17 - 0 - 13 - 13 - 17 - 17 - 10 - 229 - 89 - 0 - 17 - 1 - 41 - 3 - 17 - 1 - 26 - 0 - 26 - 229 - 89 - 0 - 0 - 1 - 0 - 0 - 16 - 0 - 2 - 0 - 0 - 16 - 0 - 2 - 0 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP1 -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --291 125 m 1,0,-1 - -291 192 l 1,1,2 - -255 262 -255 262 -194 324 c 128,-1,3 - -133 386 -133 386 -33 456 c 0,4,5 - 59 520 59 520 93.5 561.5 c 128,-1,6 - 128 603 128 603 128 647 c 0,7,8 - 128 701 128 701 93 729 c 128,-1,9 - 58 757 58 757 -3 757 c 0,10,11 - -61 757 -61 757 -102.5 730 c 128,-1,12 - -144 703 -144 703 -152 650 c 1,13,-1 - -286 679 l 1,14,15 - -275 767 -275 767 -197 820.5 c 128,-1,16 - -119 874 -119 874 2 874 c 0,17,18 - 133 874 133 874 205.5 818 c 128,-1,19 - 278 762 278 762 278 662 c 0,20,21 - 278 593 278 593 236 534 c 128,-1,22 - 194 475 194 475 113 421 c 0,23,24 - -9 340 -9 340 -51.5 305.5 c 128,-1,25 - -94 271 -94 271 -115 235 c 1,26,-1 - 292 235 l 1,27,-1 - 292 125 l 1,28,-1 - -291 125 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: three.alt -Encoding: 65791 -1 2550 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 58 - 33 - 16 - 15 - 16 - 15 - 228 - 89 - 16 - 64 - 9 - 12 - 72 - 16 - 16 - 28 - 3 - 15 - 24 - 31 - 24 - 47 - 24 - 3 - 15 - 3 - 24 - 24 - 28 - 28 - 22 - 229 - 89 - 0 - 28 - 1 - 41 - 3 - 28 - 3 - 9 - 229 - 89 - 80 - 7 - 96 - 7 - 2 - 7 - 7 - 47 - 3 - 63 - 3 - 2 - 16 - 3 - 1 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHP[rp1] -MDAP[rnd] -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SRP1 -SRP2 -IP -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -304 331 m 0,0,1 - 304 228 304 228 227 167 c 128,-1,2 - 150 106 150 106 4 106 c 0,3,4 - -127 106 -127 106 -208.5 160.5 c 128,-1,5 - -290 215 -290 215 -304 309 c 1,6,-1 - -157 335 l 1,7,8 - -139 223 -139 223 3 223 c 0,9,10 - 75 223 75 223 116 255 c 128,-1,11 - 157 287 157 287 157 346 c 0,12,13 - 157 452 157 452 -29 452 c 2,14,-1 - -92 452 l 1,15,-1 - -78 559 l 1,16,-1 - -27 559 l 2,17,18 - 60 559 60 559 98.5 582.5 c 128,-1,19 - 137 606 137 606 137 655 c 0,20,21 - 137 756 137 756 -3 756 c 0,22,23 - -136 756 -136 756 -148 658 c 1,24,-1 - -288 673 l 1,25,26 - -277 764 -277 764 -199 819 c 128,-1,27 - -121 874 -121 874 0 874 c 0,28,29 - 132 874 132 874 205.5 818 c 128,-1,30 - 279 762 279 762 279 668 c 0,31,32 - 279 533 279 533 105 500 c 1,33,-1 - 105 498 l 1,34,35 - 304 479 304 479 304 331 c 0,0,1 -EndSplineSet -EndChar - -StartChar: four.alt -Encoding: 65792 -1 2551 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 41 - 0 - 4 - 15 - 4 - 229 - 89 - 8 - 5 - 11 - 6 - 15 - 64 - 9 - 12 - 72 - 15 - 15 - 2 - 47 - 6 - 159 - 6 - 2 - 191 - 6 - 1 - 6 - 0 - 2 - 1 - 0 - 2 - 16 - 2 - 2 - 0 - 2 - 16 - 2 - 2 - 2 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -DELTAP3 -MDAP[rnd] -DELTAP1 -DELTAP2 -SRP2 -IP -MDAP[rnd] -CALL -SRP2 -IP -SHP[rp1] -SHP[rp1] -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -208 284 m 1,0,-1 - 208 125 l 1,1,-1 - 92 125 l 1,2,-1 - 92 284 l 1,3,-1 - -318 284 l 1,4,-1 - -318 368 l 1,5,-1 - 79 867 l 1,6,-1 - 208 867 l 1,7,-1 - 208 397 l 1,8,-1 - 321 397 l 1,9,-1 - 321 284 l 1,10,-1 - 208 284 l 1,0,-1 -85 715 m 1,11,-1 - 49 662 l 1,12,-1 - -130 439 l 2,13,14 - -143 418 -143 418 -167 397 c 1,15,-1 - 85 397 l 1,16,-1 - 85 715 l 1,11,-1 -EndSplineSet -EndChar - -StartChar: five.alt -Encoding: 65793 -1 2552 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 10 - 24 - 27 - 19 - 19 - 27 - 27 - 15 - 228 - 89 - 27 -PUSHW_1 - -64 -NPUSHB - 50 - 9 - 12 - 72 - 27 - 27 - 20 - 3 - 20 - 23 - 229 - 89 - 63 - 20 - 95 - 20 - 175 - 20 - 3 - 15 - 20 - 127 - 20 - 207 - 20 - 239 - 20 - 4 - 13 - 3 - 20 - 3 - 9 - 229 - 89 - 80 - 6 - 96 - 6 - 2 - 6 - 6 - 47 - 3 - 63 - 3 - 2 - 16 - 3 - 1 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -SHP[rp1] -MDAP[rnd] -DELTAP1 -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -RTG -MDAP[rnd] -SRP2 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -305 378 m 0,0,1 - 305 253 305 253 222.5 179.5 c 128,-1,2 - 140 106 140 106 1 106 c 0,3,4 - -256 106 -256 106 -305 307 c 1,5,-1 - -158 331 l 1,6,7 - -138 272 -138 272 -98.5 245.5 c 128,-1,8 - -59 219 -59 219 3 219 c 0,9,10 - 79 219 79 219 122.5 260.5 c 128,-1,11 - 166 302 166 302 166 373 c 0,12,13 - 166 440 166 440 129.5 481 c 128,-1,14 - 93 522 93 522 13 522 c 0,15,16 - -50 522 -50 522 -90.5 502 c 128,-1,17 - -131 482 -131 482 -163 452 c 1,18,-1 - -280 452 l 1,19,-1 - -251 859 l 1,20,-1 - 258 859 l 1,21,-1 - 258 742 l 1,22,-1 - -140 742 l 1,23,-1 - -157 565 l 1,24,25 - -122 593 -122 593 -80 610.5 c 128,-1,26 - -38 628 -38 628 25 628 c 0,27,28 - 155 628 155 628 230 560.5 c 128,-1,29 - 305 493 305 493 305 378 c 0,0,1 -EndSplineSet -EndChar - -StartChar: six.alt -Encoding: 65794 -1 2553 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_6 - 20 - 26 - 228 - 89 - 17 - 20 -PUSHW_1 - -64 -NPUSHB - 34 - 9 - 12 - 72 - 20 - 20 - 3 - 9 - 9 - 14 - 228 - 89 - 12 - 12 - 0 - 9 - 1 - 41 - 3 - 9 - 3 - 32 - 228 - 89 - 47 - 3 - 63 - 3 - 79 - 3 - 3 - 16 - 3 - 1 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -IP -CALL -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -297 367 m 0,0,1 - 297 248 297 248 219 176.5 c 128,-1,2 - 141 105 141 105 10 105 c 0,3,4 - -140 105 -140 105 -218.5 199 c 128,-1,5 - -297 293 -297 293 -297 472 c 0,6,7 - -297 671 -297 671 -213.5 772.5 c 128,-1,8 - -130 874 -130 874 18 874 c 0,9,10 - 214 874 214 874 269 721 c 1,11,-1 - 134 696 l 1,12,13 - 106 772 106 772 12 772 c 0,14,15 - -66 772 -66 772 -111.5 710.5 c 128,-1,16 - -157 649 -157 649 -157 524 c 1,17,18 - -134 558 -134 558 -86 582.5 c 128,-1,19 - -38 607 -38 607 34 607 c 0,20,21 - 152 607 152 607 224.5 543 c 128,-1,22 - 297 479 297 479 297 367 c 0,0,1 -152 356 m 0,23,24 - 152 431 152 431 117 464.5 c 128,-1,25 - 82 498 82 498 1 498 c 0,26,27 - -66 498 -66 498 -102 461 c 128,-1,28 - -138 424 -138 424 -138 356 c 0,29,30 - -138 287 -138 287 -101.5 248 c 128,-1,31 - -65 209 -65 209 5 209 c 0,32,33 - 74 209 74 209 113 248 c 128,-1,34 - 152 287 152 287 152 356 c 0,23,24 -EndSplineSet -EndChar - -StartChar: seven.alt -Encoding: 65795 -1 2554 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 32 - 0 - 8 - 9 - 8 - 229 - 89 - 47 - 9 - 127 - 9 - 159 - 9 - 239 - 9 - 4 - 79 - 9 - 191 - 9 - 2 - 9 - 0 - 4 - 16 - 4 - 2 - 0 - 4 - 16 - 4 - 2 - 4 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SRP1 -SVTCA[y-axis] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -291 764 m 1,0,1 - 132 593 132 593 69.5 445 c 128,-1,2 - 7 297 7 297 7 124 c 1,3,-1 - -141 124 l 1,4,5 - -141 274 -141 274 -77 419.5 c 128,-1,6 - -13 565 -13 565 152 749 c 1,7,-1 - -291 749 l 1,8,-1 - -291 860 l 1,9,-1 - 291 860 l 1,10,-1 - 291 764 l 1,0,1 -EndSplineSet -EndChar - -StartChar: eight.alt -Encoding: 65796 -1 2555 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 22 - 9 - 33 - 38 - 33 - 38 - 228 - 89 - 33 - 64 - 9 - 12 - 72 - 33 - 33 - 16 - 3 - 16 - 28 - 228 - 89 - 0 - 16 - 1 - 41 - 3 - 16 - 3 - 43 - 228 - 89 - 47 - 3 - 63 - 3 - 2 - 16 - 3 - 1 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP1 -DELTAP2 -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -304 322 m 0,0,1 - 304 217 304 217 225.5 161.5 c 128,-1,2 - 147 106 147 106 4 106 c 256,3,4 - -139 106 -139 106 -218 162 c 128,-1,5 - -297 218 -297 218 -297 321 c 0,6,7 - -297 393 -297 393 -249 444 c 128,-1,8 - -201 495 -201 495 -121 507 c 1,9,-1 - -121 509 l 1,10,11 - -196 524 -196 524 -235.5 571 c 128,-1,12 - -275 618 -275 618 -275 680 c 0,13,14 - -275 766 -275 766 -199.5 820 c 128,-1,15 - -124 874 -124 874 2 874 c 0,16,17 - 129 874 129 874 206 821 c 128,-1,18 - 283 768 283 768 283 679 c 0,19,20 - 283 618 283 618 242.5 571 c 128,-1,21 - 202 524 202 524 126 510 c 1,22,-1 - 126 508 l 1,23,24 - 207 497 207 497 255.5 448 c 128,-1,25 - 304 399 304 399 304 322 c 0,0,1 -140 675 m 0,26,27 - 140 780 140 780 2 780 c 0,28,29 - -135 780 -135 780 -135 675 c 0,30,31 - -135 621 -135 621 -100.5 592.5 c 128,-1,32 - -66 564 -66 564 3 564 c 0,33,34 - 140 564 140 564 140 675 c 0,26,27 -158 338 m 0,35,36 - 158 396 158 396 117.5 425.5 c 128,-1,37 - 77 455 77 455 2 455 c 0,38,39 - -71 455 -71 455 -111 423 c 128,-1,40 - -151 391 -151 391 -151 336 c 0,41,42 - -151 207 -151 207 6 207 c 0,43,44 - 84 207 84 207 121 239 c 128,-1,45 - 158 271 158 271 158 338 c 0,35,36 -EndSplineSet -EndChar - -StartChar: nine.alt -Encoding: 65797 -1 2556 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 42 - 28 - 22 - 228 - 89 - 19 - 9 - 28 - 64 - 9 - 15 - 72 - 28 - 28 - 3 - 9 - 9 - 16 - 228 - 89 - 13 - 13 - 31 - 9 - 47 - 9 - 63 - 9 - 3 - 0 - 9 - 1 - 10 - 3 - 9 - 3 - 34 - 228 - 89 - 0 - 3 - 1 - 3 -SVTCA[y-axis] -MDAP[rnd] -DELTAP3 -CALL -SVTCA[y-axis] -RTG -MDAP[rnd] -SDS -SDB -DELTAP1 -DELTAP2 -SHP[rp1] -MDAP[rnd] -CALL -SRP1 -SRP2 -SVTCA[y-axis] -IP -RTG -MDAP[rnd] -CALL -SRP2 -IP -CALL -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --296 612 m 0,0,1 - -296 731 -296 731 -218 802.5 c 128,-1,2 - -140 874 -140 874 -9 874 c 0,3,4 - 139 874 139 874 218.5 780.5 c 128,-1,5 - 298 687 298 687 298 507 c 0,6,7 - 298 307 298 307 222 206 c 128,-1,8 - 146 105 146 105 -17 105 c 0,9,10 - -118 105 -118 105 -186 146.5 c 128,-1,11 - -254 188 -254 188 -282 265 c 1,12,-1 - -147 290 l 1,13,14 - -132 249 -132 249 -93 229.5 c 128,-1,15 - -54 210 -54 210 -11 210 c 0,16,17 - 67 210 67 210 112.5 270 c 128,-1,18 - 158 330 158 330 158 455 c 1,19,20 - 135 421 135 421 87 396.5 c 128,-1,21 - 39 372 39 372 -33 372 c 0,22,23 - -151 372 -151 372 -223.5 436 c 128,-1,24 - -296 500 -296 500 -296 612 c 0,0,1 --151 625 m 0,25,26 - -151 543 -151 543 -113 511 c 128,-1,27 - -75 479 -75 479 0 479 c 0,28,29 - 67 479 67 479 103 517 c 128,-1,30 - 139 555 139 555 139 625 c 0,31,32 - 139 694 139 694 102.5 731 c 128,-1,33 - 66 768 66 768 -4 768 c 0,34,35 - -73 768 -73 768 -112 731 c 128,-1,36 - -151 694 -151 694 -151 625 c 0,25,26 -EndSplineSet -EndChar - -StartChar: circumflexacute -Encoding: 65798 -1 2557 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 128 - 0 - 1 - 0 - 64 - 3 - 3 - 9 - 14 - 128 - 8 - 11 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -MDAP[rnd] -SMD -MDRP[min,rnd,black] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -312 1835 m 1,0,-1 - 529 1835 l 1,1,-1 - 529 1823 l 1,2,-1 - 303 1647 l 1,3,-1 - 207 1647 l 1,4,-1 - 207 1657 l 1,5,-1 - 312 1835 l 1,0,-1 -323 1482 m 1,6,-1 - 323 1462 l 1,7,-1 - 218 1462 l 1,8,-1 - -1 1631 l 1,9,-1 - -3 1631 l 1,10,-1 - -225 1462 l 1,11,-1 - -329 1462 l 1,12,-1 - -329 1482 l 1,13,-1 - -105 1752 l 1,14,-1 - 99 1752 l 1,15,-1 - 323 1482 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: circumflexgrave -Encoding: 65799 -1 2558 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 12 - 128 - 5 - 1 - 5 - 64 - 2 - 2 - 9 - 14 - 128 - 8 - 11 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -MDAP[rnd] -SMD -MDRP[min,rnd,black] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --210 1657 m 1,0,-1 - -210 1647 l 1,1,-1 - -306 1647 l 1,2,-1 - -532 1823 l 1,3,-1 - -532 1835 l 1,4,-1 - -315 1835 l 1,5,-1 - -210 1657 l 1,0,-1 -323 1482 m 1,6,-1 - 323 1462 l 1,7,-1 - 218 1462 l 1,8,-1 - -1 1631 l 1,9,-1 - -3 1631 l 1,10,-1 - -225 1462 l 1,11,-1 - -329 1462 l 1,12,-1 - -329 1482 l 1,13,-1 - -105 1752 l 1,14,-1 - 99 1752 l 1,15,-1 - 323 1482 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: circumflexhook -Encoding: 65800 -1 2559 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 2 - 12 - 128 - 7 - 1 - 7 - 64 - 240 - 14 - 1 - 14 - 14 - 20 - 25 - 128 - 19 - 22 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -MDAP[rnd] -DELTAP1 -SMD -MDRP[min,rnd,grey] -DELTAP1 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -340 1732 m 0,0,1 - 340 1767 340 1767 281 1767 c 0,2,3 - 230 1767 230 1767 190 1751 c 1,4,-1 - 170 1815 l 1,5,6 - 228 1835 228 1835 295 1835 c 0,7,8 - 447 1835 447 1835 447 1739 c 0,9,10 - 447 1695 447 1695 413.5 1667 c 128,-1,11 - 380 1639 380 1639 326 1639 c 1,12,-1 - 326 1616 l 1,13,-1 - 265 1616 l 1,14,-1 - 265 1694 l 1,15,16 - 340 1694 340 1694 340 1732 c 0,0,1 -323 1482 m 1,17,-1 - 323 1462 l 1,18,-1 - 218 1462 l 1,19,-1 - -1 1631 l 1,20,-1 - -3 1631 l 1,21,-1 - -225 1462 l 1,22,-1 - -329 1462 l 1,23,-1 - -329 1482 l 1,24,-1 - -105 1752 l 1,25,-1 - 99 1752 l 1,26,-1 - 323 1482 l 1,17,-1 -EndSplineSet -EndChar - -StartChar: circumflextilde -Encoding: 65801 -1 2560 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 28 - 19 - 4 - 15 - 12 - 31 - 12 - 2 - 12 - 64 - 9 - 15 - 72 - 12 - 16 - 7 - 0 - 0 - 24 - 143 - 28 - 159 - 28 - 175 - 28 - 3 - 28 - 32 - 25 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDRP[min,rnd,black] -DELTAP1 -SHP[rp2] -SHP[rp2] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -MDRP[min,rnd,black] -CALL -DELTAP2 -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -127 1641 m 0,0,1 - 76 1641 76 1641 -8 1679 c 0,2,3 - -93 1716 -93 1716 -129 1716 c 0,4,5 - -174 1716 -174 1716 -196.5 1698.5 c 128,-1,6 - -219 1681 -219 1681 -227 1641 c 1,7,-1 - -318 1641 l 1,8,9 - -307 1723 -307 1723 -285.5 1759 c 128,-1,10 - -264 1795 -264 1795 -226 1815 c 128,-1,11 - -188 1835 -188 1835 -125 1835 c 0,12,13 - -70 1835 -70 1835 13 1798 c 0,14,15 - 96 1760 96 1760 130 1760 c 0,16,17 - 178 1760 178 1760 199.5 1779 c 128,-1,18 - 221 1798 221 1798 227 1835 c 1,19,-1 - 319 1835 l 1,20,21 - 307 1754 307 1754 286 1717 c 128,-1,22 - 265 1680 265 1680 227.5 1660.5 c 128,-1,23 - 190 1641 190 1641 127 1641 c 0,0,1 -1 1529 m 1,24,-1 - -150 1462 l 1,25,-1 - -305 1462 l 1,26,-1 - -305 1474 l 1,27,-1 - -96 1615 l 1,28,-1 - 99 1615 l 1,29,-1 - 307 1472 l 1,30,-1 - 307 1462 l 1,31,-1 - 152 1462 l 1,32,-1 - 1 1529 l 1,24,-1 -EndSplineSet -EndChar - -StartChar: breveacute -Encoding: 65802 -1 2561 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 159 - 0 - 175 - 0 - 2 - 0 - 13 - 6 - 80 - 3 - 96 - 3 - 2 - 3 - 3 - 16 - 32 - 10 - 64 - 10 - 80 - 10 - 96 - 10 - 128 - 10 - 208 - 10 - 6 - 208 - 10 - 224 - 10 - 240 - 10 - 3 - 64 - 10 - 1 - 10 -PUSHW_1 - -64 -PUSHB_5 - 21 - 24 - 72 - 10 - 6 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,grey] -CALL -DELTAP1 -DELTAP2 -DELTAP3 -SHP[rp2] -IP -MDAP[rnd] -DELTAP3 -SRP2 -IP -MDRP[min,rnd,black] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -35 1835 m 1,0,-1 - 261 1835 l 1,1,-1 - 261 1823 l 1,2,-1 - 40 1677 l 1,3,-1 - -90 1677 l 1,4,-1 - -90 1687 l 1,5,-1 - 35 1835 l 1,0,-1 --1 1462 m 256,6,7 - -130 1462 -130 1462 -212.5 1528.5 c 128,-1,8 - -295 1595 -295 1595 -313 1711 c 1,9,-1 - -206 1711 l 1,10,11 - -189 1643 -189 1643 -136 1615.5 c 128,-1,12 - -83 1588 -83 1588 1 1588 c 256,13,14 - 85 1588 85 1588 137 1616 c 128,-1,15 - 189 1644 189 1644 206 1711 c 1,16,-1 - 313 1711 l 1,17,18 - 291 1591 291 1591 209.5 1526.5 c 128,-1,19 - 128 1462 128 1462 -1 1462 c 256,6,7 -EndSplineSet -EndChar - -StartChar: brevegrave -Encoding: 65803 -1 2562 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 40 - 159 - 5 - 175 - 5 - 2 - 5 - 13 - 6 - 80 - 2 - 96 - 2 - 2 - 2 - 2 - 16 - 32 - 9 - 64 - 9 - 80 - 9 - 96 - 9 - 128 - 9 - 208 - 9 - 6 - 208 - 9 - 224 - 9 - 240 - 9 - 3 - 64 - 9 - 1 - 9 -PUSHW_1 - -64 -PUSHB_5 - 21 - 24 - 72 - 9 - 6 -SVTCA[y-axis] -MDAP[rnd] -MDRP[min,rnd,black] -CALL -DELTAP1 -DELTAP2 -DELTAP3 -SHP[rp2] -IP -MDAP[rnd] -DELTAP3 -SRP2 -IP -MDRP[min,rnd,black] -DELTAP1 -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -92 1687 m 1,0,-1 - 92 1677 l 1,1,-1 - -38 1677 l 1,2,-1 - -259 1823 l 1,3,-1 - -259 1835 l 1,4,-1 - -33 1835 l 1,5,-1 - 92 1687 l 1,0,-1 --1 1462 m 256,6,7 - -130 1462 -130 1462 -212.5 1528.5 c 128,-1,8 - -295 1595 -295 1595 -313 1711 c 1,9,-1 - -206 1711 l 1,10,11 - -189 1643 -189 1643 -136 1615.5 c 128,-1,12 - -83 1588 -83 1588 1 1588 c 256,13,14 - 85 1588 85 1588 137 1616 c 128,-1,15 - 189 1644 189 1644 206 1711 c 1,16,-1 - 313 1711 l 1,17,18 - 291 1591 291 1591 209.5 1526.5 c 128,-1,19 - 128 1462 128 1462 -1 1462 c 256,6,7 -EndSplineSet -EndChar - -StartChar: brevehook -Encoding: 65804 -1 2563 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 38 - 16 - 28 - 21 - 26 - 0 - 27 - 27 - 0 - 21 - 64 - 14 - 24 - 72 - 21 - 7 - 10 - 10 - 32 - 4 - 64 - 4 - 80 - 4 - 96 - 4 - 128 - 4 - 208 - 4 - 6 - 208 - 4 - 224 - 4 - 240 - 4 - 3 - 4 -PUSHW_1 - -64 -PUSHB_4 - 29 - 32 - 72 - 4 -PUSHW_1 - -64 -PUSHB_4 - 21 - 24 - 72 - 4 -PUSHW_1 - -64 -PUSHB_5 - 13 - 17 - 72 - 4 - 0 -SVTCA[y-axis] -MDAP[rnd] -MDRP[rp0,min,rnd,grey] -CALL -CALL -CALL -DELTAP2 -DELTAP3 -SHP[rp2] -SRP2 -IP -MDRP[min,rnd,grey] -CALL -SRP1 -IP -MDAP[rnd] -SRP2 -IP -SRP2 -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --1 1462 m 256,0,1 - -130 1462 -130 1462 -212.5 1528.5 c 128,-1,2 - -295 1595 -295 1595 -313 1711 c 1,3,-1 - -206 1711 l 1,4,5 - -189 1643 -189 1643 -136 1615.5 c 128,-1,6 - -83 1588 -83 1588 1 1588 c 256,7,8 - 85 1588 85 1588 137 1616 c 128,-1,9 - 189 1644 189 1644 206 1711 c 1,10,-1 - 313 1711 l 1,11,12 - 291 1591 291 1591 209.5 1526.5 c 128,-1,13 - 128 1462 128 1462 -1 1462 c 256,0,1 -29 1732 m 0,14,15 - 29 1767 29 1767 -30 1767 c 0,16,17 - -81 1767 -81 1767 -121 1751 c 1,18,-1 - -141 1815 l 1,19,20 - -83 1835 -83 1835 -16 1835 c 0,21,22 - 136 1835 136 1835 136 1739 c 0,23,24 - 136 1691 136 1691 99 1665 c 128,-1,25 - 62 1639 62 1639 -11 1639 c 2,26,-1 - -46 1639 l 1,27,-1 - -46 1694 l 1,28,29 - 29 1694 29 1694 29 1732 c 0,14,15 -EndSplineSet -EndChar - -StartChar: brevetilde -Encoding: 65805 -1 2564 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 31 - 29 - 20 - 12 - 12 - 8 - 4 - 4 - 32 - 17 - 128 - 24 - 1 - 80 - 24 - 96 - 24 - 112 - 24 - 208 - 24 - 224 - 24 - 240 - 24 - 6 - 224 - 24 - 240 - 24 - 2 - 24 -PUSHW_1 - -64 -NPUSHB - 16 - 42 - 47 - 72 - 111 - 24 - 159 - 24 - 175 - 24 - 3 - 64 - 24 - 1 - 24 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -MDAP[rnd] -DELTAP1 -DELTAP1 -CALL -DELTAP1 -DELTAP2 -DELTAP3 -SHP[rp1] -SHP[rp1] -IP -MDAP[rnd] -SHP[rp1] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1 1462 m 0,0,1 - -101 1462 -101 1462 -167.5 1515 c 128,-1,2 - -234 1568 -234 1568 -248 1661 c 1,3,-1 - -163 1661 l 1,4,5 - -134 1578 -134 1578 3 1578 c 0,6,7 - 138 1578 138 1578 167 1661 c 1,8,-1 - 252 1661 l 1,9,10 - 231 1561 231 1561 166.5 1511.5 c 128,-1,11 - 102 1462 102 1462 1 1462 c 0,0,1 -127 1681 m 0,12,13 - 92 1681 92 1681 58 1690.5 c 128,-1,14 - 24 1700 24 1700 -8.5 1711 c 128,-1,15 - -41 1722 -41 1722 -71.5 1731.5 c 128,-1,16 - -102 1741 -102 1741 -129 1741 c 0,17,18 - -210 1741 -210 1741 -227 1681 c 1,19,-1 - -318 1681 l 1,20,21 - -306 1746 -306 1746 -285 1774.5 c 128,-1,22 - -264 1803 -264 1803 -226.5 1819 c 128,-1,23 - -189 1835 -189 1835 -125 1835 c 0,24,25 - -89 1835 -89 1835 -54 1825.5 c 128,-1,26 - -19 1816 -19 1816 13 1805 c 128,-1,27 - 45 1794 45 1794 74.5 1784.5 c 128,-1,28 - 104 1775 104 1775 130 1775 c 0,29,30 - 178 1775 178 1775 199.5 1790.5 c 128,-1,31 - 221 1806 221 1806 227 1835 c 1,32,-1 - 319 1835 l 1,33,34 - 308 1771 308 1771 287 1741.5 c 128,-1,35 - 266 1712 266 1712 228 1696.5 c 128,-1,36 - 190 1681 190 1681 127 1681 c 0,12,13 -EndSplineSet -EndChar - -StartChar: circumflexacute.lc -Encoding: 65806 -1 2565 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 0 - 3 - 3 - 9 - 14 - 128 - 11 - 8 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -MDAP[rnd] -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -312 1574 m 1,0,-1 - 529 1574 l 1,1,-1 - 529 1562 l 1,2,-1 - 303 1386 l 1,3,-1 - 207 1386 l 1,4,-1 - 207 1396 l 1,5,-1 - 312 1574 l 1,0,-1 -323 1221 m 1,6,-1 - 323 1201 l 1,7,-1 - 218 1201 l 1,8,-1 - -1 1370 l 1,9,-1 - -3 1370 l 1,10,-1 - -225 1201 l 1,11,-1 - -329 1201 l 1,12,-1 - -329 1221 l 1,13,-1 - -105 1491 l 1,14,-1 - 99 1491 l 1,15,-1 - 323 1221 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: circumflexgrave.lc -Encoding: 65807 -1 2566 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 5 - 2 - 2 - 11 - 7 - 128 - 13 - 10 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -MDAP[rnd] -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --210 1396 m 1,0,-1 - -210 1386 l 1,1,-1 - -306 1386 l 1,2,-1 - -532 1562 l 1,3,-1 - -532 1574 l 1,4,-1 - -315 1574 l 1,5,-1 - -210 1396 l 1,0,-1 --102 1491 m 1,6,-1 - 102 1491 l 1,7,-1 - 326 1221 l 1,8,-1 - 326 1201 l 1,9,-1 - 222 1201 l 1,10,-1 - 0 1370 l 1,11,-1 - -2 1370 l 1,12,-1 - -221 1201 l 1,13,-1 - -326 1201 l 1,14,-1 - -326 1221 l 1,15,-1 - -102 1491 l 1,6,-1 -EndSplineSet -EndChar - -StartChar: circumflexhook.lc -Encoding: 65808 -1 2567 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 15 - 20 - 2 - 7 - 14 - 14 - 21 - 26 - 128 - 23 - 20 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -IP -MDAP[rnd] -MDRP[min,rnd,grey] -SHP[rp2] -SRP1 -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -345 1524 m 0,0,1 - 345 1568 345 1568 269 1568 c 0,2,3 - 208 1568 208 1568 155 1549 c 1,4,-1 - 129 1629 l 1,5,6 - 199 1653 199 1653 288 1653 c 0,7,8 - 480 1653 480 1653 480 1541 c 0,9,10 - 480 1493 480 1493 447 1458.5 c 128,-1,11 - 414 1424 414 1424 341 1415 c 1,12,-1 - 341 1377 l 1,13,-1 - 250 1377 l 1,14,-1 - 250 1471 l 1,15,16 - 292 1473 292 1473 318.5 1482 c 128,-1,17 - 345 1491 345 1491 345 1524 c 0,0,1 -323 1221 m 1,18,-1 - 323 1201 l 1,19,-1 - 218 1201 l 1,20,-1 - -1 1370 l 1,21,-1 - -3 1370 l 1,22,-1 - -225 1201 l 1,23,-1 - -329 1201 l 1,24,-1 - -329 1221 l 1,25,-1 - -105 1491 l 1,26,-1 - 99 1491 l 1,27,-1 - 323 1221 l 1,18,-1 -EndSplineSet -EndChar - -StartChar: circumflextilde.lc -Encoding: 65809 -1 2568 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 17 - 29 - 14 - 22 - 64 - 23 - 26 - 72 - 22 - 64 - 9 - 15 - 72 - 22 - 64 - 26 - 17 - 10 -PUSHW_1 - -64 -NPUSHB - 10 - 12 - 15 - 72 - 10 - 10 - 5 - 0 - 128 - 4 - 7 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -SMD -MDRP[min,rnd,black] -SHP[rp2] -SHP[rp2] -MDAP[rnd] -CALL -SHP[rp1] -SHP[rp1] -SMD -MDRP[min,rnd,black] -CALL -CALL -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --102 1491 m 1,0,-1 - 102 1491 l 1,1,-1 - 326 1221 l 1,2,-1 - 326 1201 l 1,3,-1 - 222 1201 l 1,4,-1 - 0 1370 l 1,5,-1 - -2 1370 l 1,6,-1 - -221 1201 l 1,7,-1 - -326 1201 l 1,8,-1 - -326 1221 l 1,9,-1 - -102 1491 l 1,0,-1 -114 1581 m 0,10,11 - 63 1581 63 1581 -21 1619 c 0,12,13 - -106 1656 -106 1656 -142 1656 c 0,14,15 - -187 1656 -187 1656 -209.5 1638.5 c 128,-1,16 - -232 1621 -232 1621 -240 1581 c 1,17,-1 - -331 1581 l 1,18,19 - -320 1663 -320 1663 -298.5 1699 c 128,-1,20 - -277 1735 -277 1735 -239 1755 c 128,-1,21 - -201 1775 -201 1775 -138 1775 c 0,22,23 - -83 1775 -83 1775 0 1738 c 0,24,25 - 83 1700 83 1700 117 1700 c 0,26,27 - 165 1700 165 1700 186.5 1719 c 128,-1,28 - 208 1738 208 1738 214 1775 c 1,29,-1 - 306 1775 l 1,30,31 - 294 1694 294 1694 273 1657 c 128,-1,32 - 252 1620 252 1620 214.5 1600.5 c 128,-1,33 - 177 1581 177 1581 114 1581 c 0,10,11 -EndSplineSet -EndChar - -StartChar: breveacute.lc -Encoding: 65810 -1 2569 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 14 - 17 - 17 - 8 - 3 - 128 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SHP[rp2] -MDAP[rnd] -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --1 1201 m 0,0,1 - -133 1201 -133 1201 -224 1286 c 128,-1,2 - -315 1371 -315 1371 -333 1510 c 1,3,-1 - -216 1510 l 1,4,5 - -188 1357 -188 1357 1 1357 c 0,6,7 - 187 1357 187 1357 216 1510 c 1,8,-1 - 333 1510 l 1,9,10 - 312 1368 312 1368 222.5 1284.5 c 128,-1,11 - 133 1201 133 1201 -1 1201 c 0,0,1 --108 1530 m 1,12,-1 - -108 1550 l 1,13,-1 - 109 1776 l 1,14,-1 - 316 1776 l 1,15,-1 - 316 1747 l 1,16,-1 - 6 1530 l 1,17,-1 - -108 1530 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: brevegrave.lc -Encoding: 65811 -1 2570 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 15 - 12 - 12 - 8 - 3 - 128 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SHP[rp2] -MDAP[rnd] -MDRP[min,rnd,black] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -1 1201 m 0,0,1 - -134 1201 -134 1201 -223 1285 c 128,-1,2 - -312 1369 -312 1369 -333 1510 c 1,3,-1 - -216 1510 l 1,4,5 - -187 1357 -187 1357 -1 1357 c 0,6,7 - 188 1357 188 1357 216 1510 c 1,8,-1 - 333 1510 l 1,9,10 - 315 1370 315 1370 224 1285.5 c 128,-1,11 - 133 1201 133 1201 1 1201 c 0,0,1 --6 1530 m 1,12,-1 - -316 1747 l 1,13,-1 - -316 1776 l 1,14,-1 - -109 1776 l 1,15,-1 - 108 1550 l 1,16,-1 - 108 1530 l 1,17,-1 - -6 1530 l 1,12,-1 -EndSplineSet -EndChar - -StartChar: brevehook.lc -Encoding: 65812 -1 2571 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 11 - 27 - 24 - 14 - 19 - 26 - 26 - 9 - 3 - 128 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,grey] -SHP[rp2] -SHP[rp2] -MDAP[rnd] -MDRP[min,rnd,grey] -SHP[rp2] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --1 1201 m 0,0,1 - -133 1201 -133 1201 -224 1286 c 128,-1,2 - -315 1371 -315 1371 -333 1510 c 1,3,-1 - -216 1510 l 1,4,5 - -188 1357 -188 1357 1 1357 c 0,6,7 - 187 1357 187 1357 216 1510 c 1,8,-1 - 333 1510 l 1,9,10 - 312 1368 312 1368 222.5 1284.5 c 128,-1,11 - 133 1201 133 1201 -1 1201 c 0,0,1 -51 1675 m 0,12,13 - 51 1730 51 1730 -42 1730 c 0,14,15 - -114 1730 -114 1730 -184 1706 c 1,16,-1 - -215 1805 l 1,17,18 - -125 1835 -125 1835 -19 1835 c 0,19,20 - 218 1835 218 1835 218 1696 c 0,21,22 - 218 1637 218 1637 177.5 1594.5 c 128,-1,23 - 137 1552 137 1552 46 1541 c 1,24,-1 - 46 1501 l 1,25,-1 - -66 1501 l 1,26,-1 - -66 1611 l 1,27,28 - 3 1614 3 1614 27 1629 c 128,-1,29 - 51 1644 51 1644 51 1675 c 0,12,13 -EndSplineSet -EndChar - -StartChar: brevetilde.lc -Encoding: 65813 -1 2572 -Width: 0 -GlyphClass: 2 -Flags: W -TtInstrs: -NPUSHB - 21 - 31 - 16 - 24 - 64 - 9 - 15 - 72 - 24 - 64 - 28 - 19 - 12 - 12 - 9 - 128 - 3 - 1 - 3 - 128 - 6 - 0 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp2] -SMD -MDRP[min,rnd,grey] -DELTAP1 -SHP[rp2] -SHP[rp2] -MDAP[rnd] -SHP[rp1] -SHP[rp1] -SMD -MDRP[min,rnd,black] -CALL -SHP[rp2] -SHP[rp2] -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet --1 1201 m 0,0,1 - -133 1201 -133 1201 -224 1286 c 128,-1,2 - -315 1371 -315 1371 -333 1510 c 1,3,-1 - -216 1510 l 1,4,5 - -188 1357 -188 1357 1 1357 c 0,6,7 - 187 1357 187 1357 216 1510 c 1,8,-1 - 333 1510 l 1,9,10 - 312 1368 312 1368 222.5 1284.5 c 128,-1,11 - 133 1201 133 1201 -1 1201 c 0,0,1 -124 1581 m 0,12,13 - 73 1581 73 1581 -11 1619 c 0,14,15 - -96 1656 -96 1656 -132 1656 c 0,16,17 - -177 1656 -177 1656 -199.5 1638.5 c 128,-1,18 - -222 1621 -222 1621 -230 1581 c 1,19,-1 - -321 1581 l 1,20,21 - -310 1663 -310 1663 -288.5 1699 c 128,-1,22 - -267 1735 -267 1735 -229 1755 c 128,-1,23 - -191 1775 -191 1775 -128 1775 c 0,24,25 - -73 1775 -73 1775 10 1738 c 0,26,27 - 93 1700 93 1700 127 1700 c 0,28,29 - 175 1700 175 1700 196.5 1719 c 128,-1,30 - 218 1738 218 1738 224 1775 c 1,31,-1 - 316 1775 l 1,32,33 - 304 1694 304 1694 283 1657 c 128,-1,34 - 262 1620 262 1620 224.5 1600.5 c 128,-1,35 - 187 1581 187 1581 124 1581 c 0,12,13 -EndSplineSet -EndChar - -StartChar: uni1FEF.short -Encoding: 65814 -1 2573 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 4 - 1 - 7 - 6 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -404 1590 m 1,0,-1 - 203 1798 l 1,1,-1 - 203 1835 l 1,2,-1 - 410 1835 l 1,3,-1 - 479 1623 l 1,4,-1 - 479 1590 l 1,5,-1 - 404 1590 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: tonos.short -Encoding: 65815 -1 2574 -Width: 682 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_7 - 0 - 3 - 6 - 7 - 3 - 128 - 0 -SVTCA[y-axis] -MDAP[rnd] -SMD -MDRP[min,rnd,black] -SRP1 -SRP2 -SVTCA[x-axis] -IP -IP -IUP[x] -IUP[y] -EndTTInstrs -LayerCount: 2 -Fore -SplineSet -203 1590 m 1,0,-1 - 203 1623 l 1,1,-1 - 272 1835 l 1,2,-1 - 479 1835 l 1,3,-1 - 479 1798 l 1,4,-1 - 278 1590 l 1,5,-1 - 203 1590 l 1,0,-1 -EndSplineSet -EndChar - -StartChar: lamedholamdagesh -Encoding: 65816 -1 2575 -Width: 1085 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 420 0 basechar 0 -AnchorPoint: "Anchor-12" 680 1350 basechar 0 -AnchorPoint: "Anchor-11" 420 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 700 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" -180 1350 basechar 0 -AnchorPoint: "Anchor-6" 420 0 basechar 0 -AnchorPoint: "Anchor-5" 420 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" -300 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1292 1500 N 1 0 0 1 0 0 3 -Refer: 1265 1465 N 1 0 0 1 -69 0 2 -Refer: 1268 1468 N 1 0 0 1 426 20 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" lamed dagesh holam -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: lamedholam -Encoding: 65817 -1 2576 -Width: 1085 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 420 0 basechar 0 -AnchorPoint: "Anchor-12" 680 1350 basechar 0 -AnchorPoint: "Anchor-11" 420 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 700 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" -180 1350 basechar 0 -AnchorPoint: "Anchor-6" 420 0 basechar 0 -AnchorPoint: "Anchor-5" 420 0 basechar 0 -AnchorPoint: "Anchor-4" 600 1700 basechar 0 -AnchorPoint: "Anchor-3" 600 1350 basechar 0 -AnchorPoint: "Anchor-0" -300 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1292 1500 N 1 0 0 1 0 0 3 -Refer: 1265 1465 N 1 0 0 1 -69 0 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" lamed holam -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tet dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: finalkafqamats -Encoding: 65818 -1 2577 -Width: 1094 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 540 0 basechar 0 -AnchorPoint: "Anchor-12" 400 1350 basechar 0 -AnchorPoint: "Anchor-11" 340 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 1040 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 340 0 basechar 0 -AnchorPoint: "Anchor-5" 420 0 basechar 0 -AnchorPoint: "Anchor-4" 400 1700 basechar 0 -AnchorPoint: "Anchor-3" 400 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1290 1498 N 1 0 0 1 0 0 3 -Refer: 1264 1464 N 1 0 0 1 385 842 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" finalkaf qamats -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: finalkafsheva -Encoding: 65819 -1 2578 -Width: 1094 -GlyphClass: 2 -Flags: W -AnchorPoint: "Anchor-13" 540 0 basechar 0 -AnchorPoint: "Anchor-12" 400 1350 basechar 0 -AnchorPoint: "Anchor-11" 340 0 basechar 0 -AnchorPoint: "Anchor-10" 880 1430 basechar 0 -AnchorPoint: "Anchor-9" 1040 0 basechar 0 -AnchorPoint: "Anchor-8" 800 1350 basechar 0 -AnchorPoint: "Anchor-7" 140 1350 basechar 0 -AnchorPoint: "Anchor-6" 340 0 basechar 0 -AnchorPoint: "Anchor-5" 420 0 basechar 0 -AnchorPoint: "Anchor-4" 400 1700 basechar 0 -AnchorPoint: "Anchor-3" 400 1350 basechar 0 -AnchorPoint: "Anchor-0" 0 1430 basechar 0 -LayerCount: 2 -Fore -Refer: 1290 1498 N 1 0 0 1 0 0 3 -Refer: 1256 1456 N 1 0 0 1 408 811 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" finalkaf sheva -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" zayin dx=41 dy=0 dh=41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-102 dy=0 dh=-102 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-61 dy=0 dh=-61 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: aleflamedhatafsegol -Encoding: 65820 -1 2579 -Width: 1286 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -Refer: 2292 64335 N 1 0 0 1 0 0 3 -Refer: 1257 1457 N 1 0 0 1 664 0 2 -EndChar - -StartChar: aleflamedsegol -Encoding: 65821 -1 2580 -Width: 1286 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -Refer: 2292 64335 N 1 0 0 1 0 0 3 -Refer: 1262 1462 N 1 0 0 1 645 0 2 -EndChar - -StartChar: aleflamedtsere -Encoding: 65822 -1 2581 -Width: 1286 -GlyphClass: 3 -Flags: W -LayerCount: 2 -Fore -Refer: 2292 64335 N 1 0 0 1 0 0 3 -Refer: 1261 1461 N 1 0 0 1 651 0 2 -EndChar - -StartChar: alternativelamed -Encoding: 65823 -1 2582 -Width: 1085 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -Refer: 1292 1500 N 1 0 0 1 0 0 3 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafsheva dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkafqamats dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" perafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" betrafe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekhdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tetdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hedagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tavwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmemwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kafwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" hewide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" tav dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" pe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalpe dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" samekh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" mem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalmem dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-20 dy=0 dh=-20 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" kaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" finalkaf dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" het dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" he dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" gimel dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" bet dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: alefdagesh -Encoding: 65824 -1 2583 -Width: 1286 -GlyphClass: 2 -Flags: W -TtInstrs: -PUSHB_8 - 1 - 96 - 35 - 1 - 48 - 35 - 1 - 35 -SVTCA[y-axis] -SRP1 -DELTAP1 -DELTAP1 -SHC[rp1] -EndTTInstrs -LayerCount: 2 -Fore -Refer: 1280 1488 N 1 0 0 1 0 0 3 -Refer: 1268 1468 N 1 0 0 1 569 -585 2 -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" alef dagesh -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativelamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholam dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedholamdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qofdagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lameddagesh dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shindageshshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinsindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shinshindot dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamedwide dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" alternativeayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" shin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" qof dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" ayin dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -PairPos2: "'kern' Horizontal Kerning in Hebrew lookup 0 subtable" lamed dx=-41 dy=0 dh=-41 dv=0 dx=0 dy=0 dh=0 dv=0 -EndChar - -StartChar: uni05B105BD -Encoding: 65825 -1 2584 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 24 - 45 - 51 - 39 - 57 - 57 - 63 - 27 - 9 - 21 - 3 - 15 - 33 - 33 - 63 - 62 - 39 - 39 - 62 - 15 - 15 - 62 - 3 - 3 - 62 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SRP1 -SHP[rp1] -MDAP[rnd] -SRP1 -SHP[rp1] -MDAP[rnd] -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -SRP2 -SLOOP -IP -SRP1 -SHP[rp1] -MDAP[rnd] -SRP2 -IP -IP -IUP[y] -IUP[x] -EndTTInstrs -AnchorPoint: "Anchor-13" 380 20 mark 0 -AnchorPoint: "Anchor-11" -320 20 mark 0 -AnchorPoint: "Anchor-5" -30 20 mark 0 -LayerCount: 2 -Fore -SplineSet --474 -96 m 0,0,1 - -474 -64 -474 -64 -451 -41 c 128,-1,2 - -428 -18 -428 -18 -396 -18 c 0,3,4 - -362 -18 -362 -18 -339 -41 c 128,-1,5 - -316 -64 -316 -64 -316 -96 c 0,6,7 - -316 -130 -316 -130 -339 -153 c 128,-1,8 - -362 -176 -362 -176 -396 -176 c 0,9,10 - -428 -176 -428 -176 -451 -153 c 128,-1,11 - -474 -130 -474 -130 -474 -96 c 0,0,1 --245 -96 m 0,12,13 - -245 -64 -245 -64 -222 -41 c 128,-1,14 - -199 -18 -199 -18 -167 -18 c 0,15,16 - -133 -18 -133 -18 -110 -41 c 128,-1,17 - -87 -64 -87 -64 -87 -96 c 0,18,19 - -87 -130 -87 -130 -110 -153 c 128,-1,20 - -133 -176 -133 -176 -167 -176 c 0,21,22 - -199 -176 -199 -176 -222 -153 c 128,-1,23 - -245 -130 -245 -130 -245 -96 c 0,12,13 --359 -305 m 0,24,25 - -359 -271 -359 -271 -336.5 -248 c 128,-1,26 - -314 -225 -314 -225 -282 -225 c 0,27,28 - -247 -225 -247 -225 -224.5 -248 c 128,-1,29 - -202 -271 -202 -271 -202 -305 c 0,30,31 - -202 -337 -202 -337 -224.5 -361 c 128,-1,32 - -247 -385 -247 -385 -282 -385 c 0,33,34 - -314 -385 -314 -385 -336.5 -361 c 128,-1,35 - -359 -337 -359 -337 -359 -305 c 0,24,25 -203 -98 m 0,36,37 - 203 -64 203 -64 226 -41 c 128,-1,38 - 249 -18 249 -18 281 -18 c 0,39,40 - 315 -18 315 -18 338 -41 c 128,-1,41 - 361 -64 361 -64 361 -98 c 0,42,43 - 361 -130 361 -130 338 -153 c 128,-1,44 - 315 -176 315 -176 281 -176 c 0,45,46 - 249 -176 249 -176 226 -153 c 128,-1,47 - 203 -130 203 -130 203 -98 c 0,36,37 -203 -305 m 256,48,49 - 203 -271 203 -271 226 -248 c 128,-1,50 - 249 -225 249 -225 281 -225 c 256,51,52 - 313 -225 313 -225 337 -249 c 128,-1,53 - 361 -273 361 -273 361 -305 c 256,54,55 - 361 -337 361 -337 337.5 -361 c 128,-1,56 - 314 -385 314 -385 281 -385 c 0,57,58 - 247 -385 247 -385 225 -362 c 128,-1,59 - 203 -339 203 -339 203 -305 c 256,48,49 -3 -385 m 1,60,-1 - 3 -18 l 1,61,-1 - 113 -18 l 1,62,-1 - 113 -385 l 1,63,-1 - 3 -385 l 1,60,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" hatafsegol meteg -EndChar - -StartChar: uni05B205BD -Encoding: 65826 -1 2585 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 14 - 13 - 19 - 7 - 25 - 25 - 31 - 30 - 7 - 7 - 30 - 3 - 2 - 2 - 30 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SHP[rp1] -SRP1 -SHP[rp1] -MDAP[rnd] -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -SRP2 -IP -IP -IUP[y] -IUP[x] -EndTTInstrs -AnchorPoint: "Anchor-13" 300 20 mark 0 -AnchorPoint: "Anchor-11" -340 20 mark 0 -AnchorPoint: "Anchor-5" -60 20 mark 0 -LayerCount: 2 -Fore -SplineSet --494 -162 m 1,0,-1 - -494 -53 l 1,1,-1 - -167 -53 l 1,2,-1 - -167 -162 l 1,3,-1 - -494 -162 l 1,0,-1 -123 -98 m 0,4,5 - 123 -64 123 -64 145.5 -41 c 128,-1,6 - 168 -18 168 -18 203 -18 c 0,7,8 - 235 -18 235 -18 258.5 -41 c 128,-1,9 - 282 -64 282 -64 282 -98 c 0,10,11 - 282 -130 282 -130 258.5 -153 c 128,-1,12 - 235 -176 235 -176 203 -176 c 0,13,14 - 168 -176 168 -176 145.5 -153 c 128,-1,15 - 123 -130 123 -130 123 -98 c 0,4,5 -123 -305 m 0,16,17 - 123 -273 123 -273 145.5 -249 c 128,-1,18 - 168 -225 168 -225 200 -225 c 0,19,20 - 235 -225 235 -225 257.5 -249 c 128,-1,21 - 280 -273 280 -273 280 -305 c 0,22,23 - 280 -339 280 -339 257.5 -362 c 128,-1,24 - 235 -385 235 -385 200 -385 c 0,25,26 - 168 -385 168 -385 145.5 -362 c 128,-1,27 - 123 -339 123 -339 123 -305 c 0,16,17 --77 -385 m 1,28,-1 - -77 -18 l 1,29,-1 - 33 -18 l 1,30,-1 - 33 -385 l 1,31,-1 - -77 -385 l 1,28,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" hatafpatah meteg -EndChar - -StartChar: uni05B305BD -Encoding: 65827 -1 2586 -Width: 0 -GlyphClass: 4 -Flags: W -TtInstrs: -NPUSHB - 15 - 17 - 23 - 11 - 29 - 29 - 35 - 34 - 64 - 11 - 11 - 34 - 1 - 5 - 5 - 7 -PUSHW_1 - -64 -PUSHB_8 - 18 - 22 - 72 - 7 - 128 - 4 - 4 - 34 -SVTCA[y-axis] -MDAP[rnd] -SHP[rp1] -MDAP[rnd] -SMD -MDRP[min,rnd,grey] -CALL -IP -SRP1 -SHP[rp1] -SRP1 -SHP[rp1] -MDAP[rnd] -SMD -SRP0 -MDRP[min,rnd,black] -SHP[rp2] -MDAP[rnd] -SRP2 -IP -IP -IUP[y] -IUP[x] -EndTTInstrs -AnchorPoint: "Anchor-13" 380 20 mark 0 -AnchorPoint: "Anchor-11" -300 20 mark 0 -AnchorPoint: "Anchor-5" 0 20 mark 0 -LayerCount: 2 -Fore -SplineSet --310 -276 m 1,0,-1 - -310 -162 l 1,1,-1 - -420 -162 l 1,2,-1 - -420 -53 l 1,3,-1 - -93 -53 l 1,4,-1 - -93 -162 l 1,5,-1 - -199 -162 l 1,6,-1 - -199 -276 l 1,7,-1 - -310 -276 l 1,0,-1 -197 -98 m 0,8,9 - 197 -64 197 -64 219.5 -41 c 128,-1,10 - 242 -18 242 -18 277 -18 c 0,11,12 - 309 -18 309 -18 332.5 -41 c 128,-1,13 - 356 -64 356 -64 356 -98 c 0,14,15 - 356 -130 356 -130 332.5 -153 c 128,-1,16 - 309 -176 309 -176 277 -176 c 0,17,18 - 242 -176 242 -176 219.5 -153 c 128,-1,19 - 197 -130 197 -130 197 -98 c 0,8,9 -197 -305 m 0,20,21 - 197 -273 197 -273 219.5 -249 c 128,-1,22 - 242 -225 242 -225 274 -225 c 0,23,24 - 309 -225 309 -225 332.5 -249 c 128,-1,25 - 356 -273 356 -273 356 -305 c 0,26,27 - 356 -339 356 -339 332.5 -362 c 128,-1,28 - 309 -385 309 -385 274 -385 c 0,29,30 - 242 -385 242 -385 219.5 -362 c 128,-1,31 - 197 -339 197 -339 197 -305 c 0,20,21 --3 -385 m 1,32,-1 - -3 -18 l 1,33,-1 - 107 -18 l 1,34,-1 - 107 -385 l 1,35,-1 - -3 -385 l 1,32,-1 -EndSplineSet -Ligature2: "'ccmp' Glyph Composition/Decomposition in Hebrew lookup 2 subtable" hatafqamats meteg -EndChar - -StartChar: S_BE -Encoding: 65828 -1 2587 -Width: 1140 -GlyphClass: 2 -Flags: W -LayerCount: 2 -Fore -SplineSet -864 471 m 0,0,1 - 864 556 864 556 839.5 628.5 c 128,-1,2 - 815 701 815 701 780.5 758.5 c 128,-1,3 - 746 816 746 816 708 859 c 128,-1,4 - 670 902 670 902 644 929 c 1,5,6 - 571 903 571 903 504 862.5 c 128,-1,7 - 437 822 437 822 386 765 c 128,-1,8 - 335 708 335 708 305 635 c 128,-1,9 - 275 562 275 562 275 471 c 0,10,11 - 275 395 275 395 292.5 329.5 c 128,-1,12 - 310 264 310 264 346.5 216 c 128,-1,13 - 383 168 383 168 438.5 140.5 c 128,-1,14 - 494 113 494 113 571 113 c 0,15,16 - 652 113 652 113 708 140 c 128,-1,17 - 764 167 764 167 798.5 214.5 c 128,-1,18 - 833 262 833 262 848.5 327.5 c 128,-1,19 - 864 393 864 393 864 471 c 0,0,1 -466 1359 m 1,20,-1 - 769 1036 l 2,21,22 - 859 940 859 940 874 923 c 0,23,24 - 925 865 925 865 964.5 798 c 128,-1,25 - 1004 731 1004 731 1028.5 651.5 c 128,-1,26 - 1053 572 1053 572 1053 475 c 0,27,28 - 1053 365 1053 365 1021 274 c 128,-1,29 - 989 183 989 183 927.5 117.5 c 128,-1,30 - 866 52 866 52 776 16 c 128,-1,31 - 686 -20 686 -20 571 -20 c 0,32,33 - 457 -20 457 -20 367 14 c 128,-1,34 - 277 48 277 48 214.5 111.5 c 128,-1,35 - 152 175 152 175 119 266.5 c 128,-1,36 - 86 358 86 358 86 473 c 0,37,38 - 86 585 86 585 122.5 673 c 128,-1,39 - 159 761 159 761 222.5 828.5 c 128,-1,40 - 286 896 286 896 370.5 944.5 c 128,-1,41 - 455 993 455 993 551 1026 c 1,42,-1 - 265 1340 l 1,43,-1 - 265 1459 l 1,44,45 - 671 1647 671 1647 973 1563 c 1,46,-1 - 973 1431 l 1,47,48 - 741 1514 741 1514 466 1359 c 1,20,-1 -EndSplineSet -EndChar -EndChars -EndSplineFont diff --git a/share/fonts/LiberationSansMonospaceDigits.ttf b/share/fonts/LiberationSansMonospaceDigits.ttf deleted file mode 100644 index b1471c70b780d29399c8c014c4b0aff4dac5726f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 401696 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

tm#8QH@QNQ5?_Kz4x=Glaco~@#z+)D?knGRT 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 diff --git a/share/ui/nix.css b/share/ui/nix.css new file mode 100644 index 0000000000..fb4503c307 --- /dev/null +++ b/share/ui/nix.css @@ -0,0 +1,10 @@ +/* GTK3 WIDGET STYLING */ +/* *nix css specific */ +#monoStrokeWidth, +#fillEmptySpace, +#SelectStatus, +#CoordinateStatusX, +#CoordinateStatusY, +#DesktopMainTable spinbutton{ + font-family:open-sans,monospace; /*TODO: based in Liberation sans and monospaced view licenses...*/ +} diff --git a/share/ui/style.css b/share/ui/style.css index f966631fa2..bc2ee57037 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -182,15 +182,6 @@ spinbutton undershoot { color:rgb(0,0,0); } -#monoStrokeWidth, -#fillEmptySpace, -#SelectStatus, -#CoordinateStatusX, -#CoordinateStatusY, -#DesktopMainTable spinbutton{ - font-family:"Liberation Sans MonoDigits",monospace; /*TODO: based in Liberation sans and monospaced view licenses...*/ -} - #fillEmptySpace, #monoStrokeWidth{ min-width:47px; /*min width to avoid movement on message label*/ diff --git a/src/inkscape.cpp b/src/inkscape.cpp index 6a6310b3d6..15f676f191 100644 --- a/src/inkscape.cpp +++ b/src/inkscape.cpp @@ -402,31 +402,62 @@ Application::add_style_sheet() catch (...) { } #endif - Gtk::StyleContext::add_provider_for_screen(screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); - - // we want a tiny file with 3 or 4 lines, so we can load without removing context - // is more understandable than record previously applied - Glib::ustring style = get_filename(UIS, "style.css"); - if (!style.empty()) { - auto provider = Gtk::CssProvider::create(); - - // From 3.16, throws an error which we must catch. - try { - provider->load_from_path (style); - } + { + Gtk::StyleContext::add_provider_for_screen(screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + + // we want a tiny file with 3 or 4 lines, so we can load without removing context + // is more understandable than record previously applied + Glib::ustring style = get_filename(UIS, "style.css"); + if (!style.empty()) { + auto provider = Gtk::CssProvider::create(); + + // From 3.16, throws an error which we must catch. + try { + provider->load_from_path (style); + } +#if GTK_CHECK_VERSION(3,16,0) + // Gtk::CssProviderError not defined until 3.16. + catch (const Gtk::CssProviderError& ex) + { + g_critical("CSSProviderError::load_from_path(): failed to load '%s'\n(%s)", + style.c_str(), ex.what().c_str()); + } +#else + catch (...) + {} +#endif + Gtk::StyleContext::add_provider_for_screen (screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + } + } +#ifndef _WIN32 + { + Gtk::StyleContext::add_provider_for_screen(screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + + // we want a tiny file with 3 or 4 lines, so we can load without removing context + // is more understandable than record previously applied + Glib::ustring style = get_filename(UIS, "nix.css"); + if (!style.empty()) { + auto provider = Gtk::CssProvider::create(); + + // From 3.16, throws an error which we must catch. + try { + provider->load_from_path (style); + } #if GTK_CHECK_VERSION(3,16,0) - // Gtk::CssProviderError not defined until 3.16. - catch (const Gtk::CssProviderError& ex) - { - g_critical("CSSProviderError::load_from_path(): failed to load '%s'\n(%s)", - style.c_str(), ex.what().c_str()); - } + // Gtk::CssProviderError not defined until 3.16. + catch (const Gtk::CssProviderError& ex) + { + g_critical("CSSProviderError::load_from_path(): failed to load '%s'\n(%s)", + style.c_str(), ex.what().c_str()); + } #else - catch (...) - {} + catch (...) + {} #endif - Gtk::StyleContext::add_provider_for_screen (screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + Gtk::StyleContext::add_provider_for_screen (screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + } } +#endif } /* \brief Constructor for the application. -- GitLab From 338cdc19c99d313d802f20f72cb5b1c7fce004ed Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Date: Sat, 27 Oct 2018 01:10:42 +0200 Subject: [PATCH 09/11] Improve CSS fonts for non monospacde digit default fonts --- share/ui/nix.css | 10 ------- share/ui/style.css | 9 +++++++ src/inkscape.cpp | 65 ++++++++++++---------------------------------- 3 files changed, 26 insertions(+), 58 deletions(-) delete mode 100644 share/ui/nix.css diff --git a/share/ui/nix.css b/share/ui/nix.css deleted file mode 100644 index fb4503c307..0000000000 --- a/share/ui/nix.css +++ /dev/null @@ -1,10 +0,0 @@ -/* GTK3 WIDGET STYLING */ -/* *nix css specific */ -#monoStrokeWidth, -#fillEmptySpace, -#SelectStatus, -#CoordinateStatusX, -#CoordinateStatusY, -#DesktopMainTable spinbutton{ - font-family:open-sans,monospace; /*TODO: based in Liberation sans and monospaced view licenses...*/ -} diff --git a/share/ui/style.css b/share/ui/style.css index bc2ee57037..7ac11cabbf 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -182,6 +182,15 @@ spinbutton undershoot { color:rgb(0,0,0); } +#monoStrokeWidth, +#fillEmptySpace, +#SelectStatus, +#CoordinateStatusX, +#CoordinateStatusY, +#DesktopMainTable spinbutton{ + font-family:sans-serif; +} + #fillEmptySpace, #monoStrokeWidth{ min-width:47px; /*min width to avoid movement on message label*/ diff --git a/src/inkscape.cpp b/src/inkscape.cpp index 15f676f191..b4e0f447d0 100644 --- a/src/inkscape.cpp +++ b/src/inkscape.cpp @@ -402,62 +402,31 @@ Application::add_style_sheet() catch (...) { } #endif - { - Gtk::StyleContext::add_provider_for_screen(screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + Gtk::StyleContext::add_provider_for_screen(screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); - // we want a tiny file with 3 or 4 lines, so we can load without removing context - // is more understandable than record previously applied - Glib::ustring style = get_filename(UIS, "style.css"); - if (!style.empty()) { - auto provider = Gtk::CssProvider::create(); + // we want a tiny file with 3 or 4 lines, so we can load without removing context + // is more understandable than record previously applied + Glib::ustring style = get_filename(UIS, "style.css"); + if (!style.empty()) { + auto provider = Gtk::CssProvider::create(); - // From 3.16, throws an error which we must catch. - try { - provider->load_from_path (style); - } -#if GTK_CHECK_VERSION(3,16,0) - // Gtk::CssProviderError not defined until 3.16. - catch (const Gtk::CssProviderError& ex) - { - g_critical("CSSProviderError::load_from_path(): failed to load '%s'\n(%s)", - style.c_str(), ex.what().c_str()); - } -#else - catch (...) - {} -#endif - Gtk::StyleContext::add_provider_for_screen (screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); - } + // From 3.16, throws an error which we must catch. + try { + provider->load_from_path (style); } -#ifndef _WIN32 - { - Gtk::StyleContext::add_provider_for_screen(screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); - - // we want a tiny file with 3 or 4 lines, so we can load without removing context - // is more understandable than record previously applied - Glib::ustring style = get_filename(UIS, "nix.css"); - if (!style.empty()) { - auto provider = Gtk::CssProvider::create(); - - // From 3.16, throws an error which we must catch. - try { - provider->load_from_path (style); - } #if GTK_CHECK_VERSION(3,16,0) - // Gtk::CssProviderError not defined until 3.16. - catch (const Gtk::CssProviderError& ex) - { - g_critical("CSSProviderError::load_from_path(): failed to load '%s'\n(%s)", - style.c_str(), ex.what().c_str()); - } + // Gtk::CssProviderError not defined until 3.16. + catch (const Gtk::CssProviderError& ex) + { + g_critical("CSSProviderError::load_from_path(): failed to load '%s'\n(%s)", + style.c_str(), ex.what().c_str()); + } #else - catch (...) - {} + catch (...) + {} #endif Gtk::StyleContext::add_provider_for_screen (screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); - } } -#endif } /* \brief Constructor for the application. -- GitLab From e526dec8eaf01787df424d22d461cb1285462f57 Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Date: Sat, 27 Oct 2018 01:49:36 +0200 Subject: [PATCH 10/11] fix wrong commit --- share/ui/style.css | 4 +--- src/inkscape.cpp | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/share/ui/style.css b/share/ui/style.css index 7ac11cabbf..2078a1fcbc 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -135,9 +135,7 @@ combobox window.popup scrolledwindow treeview separator { } /* Hide slider */ -#InkSpinScale s#DesktopMainTable spinbutton { - font-family:"Liberation Sans MonoDigits",monospace; /*TODO: based in Liberation sans and monospaced view licenses...*/ -}lider { +#InkSpinScale slider { background: none; border: none; outline: none; diff --git a/src/inkscape.cpp b/src/inkscape.cpp index b4e0f447d0..6a6310b3d6 100644 --- a/src/inkscape.cpp +++ b/src/inkscape.cpp @@ -408,24 +408,24 @@ Application::add_style_sheet() // is more understandable than record previously applied Glib::ustring style = get_filename(UIS, "style.css"); if (!style.empty()) { - auto provider = Gtk::CssProvider::create(); + auto provider = Gtk::CssProvider::create(); - // From 3.16, throws an error which we must catch. - try { - provider->load_from_path (style); - } + // From 3.16, throws an error which we must catch. + try { + provider->load_from_path (style); + } #if GTK_CHECK_VERSION(3,16,0) - // Gtk::CssProviderError not defined until 3.16. - catch (const Gtk::CssProviderError& ex) - { - g_critical("CSSProviderError::load_from_path(): failed to load '%s'\n(%s)", - style.c_str(), ex.what().c_str()); - } + // Gtk::CssProviderError not defined until 3.16. + catch (const Gtk::CssProviderError& ex) + { + g_critical("CSSProviderError::load_from_path(): failed to load '%s'\n(%s)", + style.c_str(), ex.what().c_str()); + } #else - catch (...) - {} + catch (...) + {} #endif - Gtk::StyleContext::add_provider_for_screen (screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + Gtk::StyleContext::add_provider_for_screen (screen, provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); } } -- GitLab From 68d94b75e581b2fada20f9e2bc80ca66c47fdd22 Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Sat, 27 Oct 2018 16:43:15 +0200 Subject: [PATCH 11/11] Fix a typo gound in MR by Thomas --- src/ui/widget/selected-style.cpp | 6 +++--- src/ui/widget/selected-style.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index cfce3b52bf..ee37c1ddb5 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -146,7 +146,7 @@ SelectedStyle::SelectedStyle(bool /*layout*/) , _stroke() , _stroke_width_place(this) , _stroke_width("") - , _fill_emty_space("") + , _fill_empty_space("") , _opacity_blocked(false) @@ -168,7 +168,7 @@ SelectedStyle::SelectedStyle(bool /*layout*/) _opacity_label.set_margin_top(0); _opacity_label.set_margin_bottom(0); _stroke_width.set_name("monoStrokeWidth"); - _fill_emty_space.set_name("fillEmptySpace"); + _fill_empty_space.set_name("fillEmptySpace"); #if GTK_CHECK_VERSION(3,12,0) @@ -383,7 +383,7 @@ SelectedStyle::SelectedStyle(bool /*layout*/) _fill_place.add(_na[SS_FILL]); _fill_place.set_tooltip_text(__na[SS_FILL]); _fill.pack_start(_fill_place, Gtk::PACK_SHRINK); - _fill.pack_start(_fill_emty_space, Gtk::PACK_SHRINK); + _fill.pack_start(_fill_empty_space, Gtk::PACK_SHRINK); _stroke_place.add(_na[SS_STROKE]); _stroke_place.set_tooltip_text(__na[SS_STROKE]); diff --git a/src/ui/widget/selected-style.h b/src/ui/widget/selected-style.h index 7ad497a568..490f4290a4 100644 --- a/src/ui/widget/selected-style.h +++ b/src/ui/widget/selected-style.h @@ -195,7 +195,7 @@ protected: Gtk::HBox _stroke; RotateableStrokeWidth _stroke_width_place; Gtk::Label _stroke_width; - Gtk::Label _fill_emty_space; + Gtk::Label _fill_empty_space; Glib::ustring _paintserver_id[2]; -- GitLab