diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..97ce5a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +venv +*.swp +*.swo diff --git a/SpartanMB-Black.otf b/LegacyFonts/SpartanMB-Black.otf similarity index 100% rename from SpartanMB-Black.otf rename to LegacyFonts/SpartanMB-Black.otf diff --git a/SpartanMB-Black.vfb b/LegacyFonts/SpartanMB-Black.vfb similarity index 100% rename from SpartanMB-Black.vfb rename to LegacyFonts/SpartanMB-Black.vfb diff --git a/SpartanMB-Bold.otf b/LegacyFonts/SpartanMB-Bold.otf similarity index 100% rename from SpartanMB-Bold.otf rename to LegacyFonts/SpartanMB-Bold.otf diff --git a/SpartanMB-Bold.vfb b/LegacyFonts/SpartanMB-Bold.vfb similarity index 100% rename from SpartanMB-Bold.vfb rename to LegacyFonts/SpartanMB-Bold.vfb diff --git a/SpartanMB-Extra-Bold.otf b/LegacyFonts/SpartanMB-Extra-Bold.otf similarity index 100% rename from SpartanMB-Extra-Bold.otf rename to LegacyFonts/SpartanMB-Extra-Bold.otf diff --git a/SpartanMB-Extra-Bold.vfb b/LegacyFonts/SpartanMB-Extra-Bold.vfb similarity index 100% rename from SpartanMB-Extra-Bold.vfb rename to LegacyFonts/SpartanMB-Extra-Bold.vfb diff --git a/SpartanMB-Light.otf b/LegacyFonts/SpartanMB-Light.otf similarity index 100% rename from SpartanMB-Light.otf rename to LegacyFonts/SpartanMB-Light.otf diff --git a/SpartanMB-Light.vfb b/LegacyFonts/SpartanMB-Light.vfb similarity index 100% rename from SpartanMB-Light.vfb rename to LegacyFonts/SpartanMB-Light.vfb diff --git a/SpartanMB-Regular.otf b/LegacyFonts/SpartanMB-Regular.otf similarity index 100% rename from SpartanMB-Regular.otf rename to LegacyFonts/SpartanMB-Regular.otf diff --git a/SpartanMB-Regular.vfb b/LegacyFonts/SpartanMB-Regular.vfb similarity index 100% rename from SpartanMB-Regular.vfb rename to LegacyFonts/SpartanMB-Regular.vfb diff --git a/SpartanMB-SemiBold.otf b/LegacyFonts/SpartanMB-SemiBold.otf similarity index 100% rename from SpartanMB-SemiBold.otf rename to LegacyFonts/SpartanMB-SemiBold.otf diff --git a/SpartanMB-SemiBold.vfb b/LegacyFonts/SpartanMB-SemiBold.vfb similarity index 100% rename from SpartanMB-SemiBold.vfb rename to LegacyFonts/SpartanMB-SemiBold.vfb diff --git a/SpartanMB-Thin.otf b/LegacyFonts/SpartanMB-Thin.otf similarity index 100% rename from SpartanMB-Thin.otf rename to LegacyFonts/SpartanMB-Thin.otf diff --git a/SpartanMB-Thin.vfb b/LegacyFonts/SpartanMB-Thin.vfb similarity index 100% rename from SpartanMB-Thin.vfb rename to LegacyFonts/SpartanMB-Thin.vfb diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..acf86d7 --- /dev/null +++ b/build.sh @@ -0,0 +1,83 @@ +#!/bin/sh + +# ------------------------------------------------------------------- +# UPDATE THIS VARIABLE ---------------------------------------------- + +# thisFont="Spartan" # must match the name in the font file, e.g. FiraCode-VF.ttf needs the variable "FiraCode" + +# ------------------------------------------------------------------- +# Update the following as needed ------------------------------------ +set -e + + +echo "Generating VFs" +# mkdir -p ./fonts/variable +fontmake -g source/Spartan.glyphs -o variable --round-instances --output-path ./fonts/Spartan\[wght\].ttf + + + +echo "Generating Statics" ##run fixes on statics as well. + +fontmake -g source/Spartan.glyphs -o ttf --round-instances -a --keep-direction -i --output-dir ./fonts/static/ + + +echo "Statics Built" ##run fixes on statics as well. + +echo "Removing Build UFOS" + +rm -rf master_ufo/ instance_ufo/ + +echo "Build UFOS Removed" + +echo "Post processing" + +vfs=$(ls ./fonts/*.ttf) +for vf in $vfs +do + gftools fix-dsig -f $vf; + gftools fix-nonhinting $vf "$vf.fix"; + mv "$vf.fix" $vf; + ttx -f -x "MVAR" $vf; # Drop MVAR. Table has issue in DW + rtrip=$(basename -s .ttf $vf) + new_file=./fonts/$rtrip.ttx; + rm $vf; + ttx $new_file + rm ./fonts/*.ttx +done +rm ./fonts/*backup*.ttf + + +stat=$(ls ./fonts/static/*.ttf) +for st in $stat +do + gftools fix-dsig -f $st; + gftools fix-hinting $st; #if this doesn't work rename as done above and figure diff solution. + mv "$st.fix" $st; + ttx -f -x "MVAR" $st; # Drop MVAR. Table has issue in DW + rtrip=$(basename -s .ttf $st) + new_file=./fonts/static/$rtrip.ttx; + rm $st; + ttx $new_file + rm ./fonts/static/*.ttx +done +# rm ./fonts/vf/static/*backup*.ttf + + + + + +echo "fix vf meta? ok let's try that. I'm trying to fix VF meta" +gftools fix-vf-meta $vfs; +for vf in $vfs +do + mv "$vf.fix" $vf; +done + +echo "Post processing complete" + +# echo "running fb" +# fontbakery check-googlefonts ./fonts/vf/*.ttf --ghmarkdown SpartanChecks.md +# echo "finish vf check" +# echo "show dir now run static fb checks" +# fontbakery check-googlefonts ./fonts/vf/static/*.ttf --ghmarkdown SpartanStaticChecks.md +# echo "fb checks done" diff --git a/fonts/otf/Spartan-Black.otf b/fonts/otf/Spartan-Black.otf new file mode 100644 index 0000000..c5b3639 Binary files /dev/null and b/fonts/otf/Spartan-Black.otf differ diff --git a/fonts/otf/Spartan-Bold.otf b/fonts/otf/Spartan-Bold.otf new file mode 100644 index 0000000..86ac22e Binary files /dev/null and b/fonts/otf/Spartan-Bold.otf differ diff --git a/fonts/otf/Spartan-ExtraBold.otf b/fonts/otf/Spartan-ExtraBold.otf new file mode 100644 index 0000000..2066639 Binary files /dev/null and b/fonts/otf/Spartan-ExtraBold.otf differ diff --git a/fonts/otf/Spartan-ExtraLight.otf b/fonts/otf/Spartan-ExtraLight.otf new file mode 100644 index 0000000..9ac7014 Binary files /dev/null and b/fonts/otf/Spartan-ExtraLight.otf differ diff --git a/fonts/otf/Spartan-Light.otf b/fonts/otf/Spartan-Light.otf new file mode 100644 index 0000000..ba50a2e Binary files /dev/null and b/fonts/otf/Spartan-Light.otf differ diff --git a/fonts/otf/Spartan-Medium.otf b/fonts/otf/Spartan-Medium.otf new file mode 100644 index 0000000..a43d155 Binary files /dev/null and b/fonts/otf/Spartan-Medium.otf differ diff --git a/fonts/otf/Spartan-Regular.otf b/fonts/otf/Spartan-Regular.otf new file mode 100644 index 0000000..3d799fc Binary files /dev/null and b/fonts/otf/Spartan-Regular.otf differ diff --git a/fonts/otf/Spartan-SemiBold.otf b/fonts/otf/Spartan-SemiBold.otf new file mode 100644 index 0000000..f039edf Binary files /dev/null and b/fonts/otf/Spartan-SemiBold.otf differ diff --git a/fonts/otf/Spartan-Thin.otf b/fonts/otf/Spartan-Thin.otf new file mode 100644 index 0000000..571206a Binary files /dev/null and b/fonts/otf/Spartan-Thin.otf differ diff --git a/fonts/ttf/Spartan-Black.ttf b/fonts/ttf/Spartan-Black.ttf new file mode 100644 index 0000000..db14dac Binary files /dev/null and b/fonts/ttf/Spartan-Black.ttf differ diff --git a/fonts/ttf/Spartan-Bold.ttf b/fonts/ttf/Spartan-Bold.ttf new file mode 100644 index 0000000..2ba36e1 Binary files /dev/null and b/fonts/ttf/Spartan-Bold.ttf differ diff --git a/fonts/ttf/Spartan-ExtraBold.ttf b/fonts/ttf/Spartan-ExtraBold.ttf new file mode 100644 index 0000000..8f60787 Binary files /dev/null and b/fonts/ttf/Spartan-ExtraBold.ttf differ diff --git a/fonts/ttf/Spartan-ExtraLight.ttf b/fonts/ttf/Spartan-ExtraLight.ttf new file mode 100644 index 0000000..558b975 Binary files /dev/null and b/fonts/ttf/Spartan-ExtraLight.ttf differ diff --git a/fonts/ttf/Spartan-Light.ttf b/fonts/ttf/Spartan-Light.ttf new file mode 100644 index 0000000..efae785 Binary files /dev/null and b/fonts/ttf/Spartan-Light.ttf differ diff --git a/fonts/ttf/Spartan-Medium.ttf b/fonts/ttf/Spartan-Medium.ttf new file mode 100644 index 0000000..879ace7 Binary files /dev/null and b/fonts/ttf/Spartan-Medium.ttf differ diff --git a/fonts/ttf/Spartan-Regular.ttf b/fonts/ttf/Spartan-Regular.ttf new file mode 100644 index 0000000..7ea6d9a Binary files /dev/null and b/fonts/ttf/Spartan-Regular.ttf differ diff --git a/fonts/ttf/Spartan-SemiBold.ttf b/fonts/ttf/Spartan-SemiBold.ttf new file mode 100644 index 0000000..6bef5f7 Binary files /dev/null and b/fonts/ttf/Spartan-SemiBold.ttf differ diff --git a/fonts/ttf/Spartan-Thin.ttf b/fonts/ttf/Spartan-Thin.ttf new file mode 100644 index 0000000..a6c28cc Binary files /dev/null and b/fonts/ttf/Spartan-Thin.ttf differ diff --git a/fonts/variable/Spartan[wght].ttf b/fonts/variable/Spartan[wght].ttf new file mode 100644 index 0000000..f4421b2 Binary files /dev/null and b/fonts/variable/Spartan[wght].ttf differ diff --git a/fonts/variable/local.log b/fonts/variable/local.log new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/fonts/variable/local.log @@ -0,0 +1 @@ + diff --git a/fonts/webfonts/Spartan-Black.woff2 b/fonts/webfonts/Spartan-Black.woff2 new file mode 100644 index 0000000..8acb998 Binary files /dev/null and b/fonts/webfonts/Spartan-Black.woff2 differ diff --git a/fonts/webfonts/Spartan-Bold.woff2 b/fonts/webfonts/Spartan-Bold.woff2 new file mode 100644 index 0000000..e684dce Binary files /dev/null and b/fonts/webfonts/Spartan-Bold.woff2 differ diff --git a/fonts/webfonts/Spartan-ExtraBold.woff2 b/fonts/webfonts/Spartan-ExtraBold.woff2 new file mode 100644 index 0000000..c799826 Binary files /dev/null and b/fonts/webfonts/Spartan-ExtraBold.woff2 differ diff --git a/fonts/webfonts/Spartan-ExtraLight.woff2 b/fonts/webfonts/Spartan-ExtraLight.woff2 new file mode 100644 index 0000000..207ca7f Binary files /dev/null and b/fonts/webfonts/Spartan-ExtraLight.woff2 differ diff --git a/fonts/webfonts/Spartan-Light.woff2 b/fonts/webfonts/Spartan-Light.woff2 new file mode 100644 index 0000000..47d6b6a Binary files /dev/null and b/fonts/webfonts/Spartan-Light.woff2 differ diff --git a/fonts/webfonts/Spartan-Medium.woff2 b/fonts/webfonts/Spartan-Medium.woff2 new file mode 100644 index 0000000..e1b358f Binary files /dev/null and b/fonts/webfonts/Spartan-Medium.woff2 differ diff --git a/fonts/webfonts/Spartan-Regular.woff2 b/fonts/webfonts/Spartan-Regular.woff2 new file mode 100644 index 0000000..1a782e7 Binary files /dev/null and b/fonts/webfonts/Spartan-Regular.woff2 differ diff --git a/fonts/webfonts/Spartan-SemiBold.woff2 b/fonts/webfonts/Spartan-SemiBold.woff2 new file mode 100644 index 0000000..e81b947 Binary files /dev/null and b/fonts/webfonts/Spartan-SemiBold.woff2 differ diff --git a/fonts/webfonts/Spartan-Thin.woff2 b/fonts/webfonts/Spartan-Thin.woff2 new file mode 100644 index 0000000..2a3cfa2 Binary files /dev/null and b/fonts/webfonts/Spartan-Thin.woff2 differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e9c8365 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +gftools==0.8.8 diff --git a/source/Spartan.glyphs b/source/Spartan.glyphs new file mode 100644 index 0000000..dc3434c --- /dev/null +++ b/source/Spartan.glyphs @@ -0,0 +1,51568 @@ +{ +.appVersion = "3108"; +classes = ( +{ +code = "M Q R a j t u"; +name = salt1; +} +); +copyright = "Copyright 2020 The Spartan Project Authors (https://github.com/bghryct/Spartan-MB)"; +customParameters = ( +{ +name = fsType; +value = ( +); +}, +{ +name = glyphOrder; +value = ( +.notdef, +NULL, +CR, +space, +A, +Aacute, +Abreve, +Acircumflex, +Adieresis, +Agrave, +Amacron, +Aogonek, +Aring, +Atilde, +AE, +B, +C, +Cacute, +Ccaron, +Ccedilla, +Cdotaccent, +D, +Eth, +Dcaron, +Dcroat, +E, +Eacute, +Ecaron, +Ecircumflex, +Edieresis, +Edotaccent, +Egrave, +Emacron, +Eogonek, +F, +G, +Gbreve, +Gcommaaccent, +Gdotaccent, +H, +Hbar, +I, +Iacute, +Icircumflex, +Idieresis, +Idotaccent, +Igrave, +Imacron, +Iogonek, +J, +K, +Kcommaaccent, +L, +Lacute, +Lcaron, +Lcommaaccent, +Lslash, +M, +N, +Nacute, +Ncaron, +Ncommaaccent, +Eng, +Ntilde, +O, +Oacute, +Ocircumflex, +Odieresis, +Ograve, +Ohungarumlaut, +Omacron, +Oslash, +Otilde, +OE, +P, +Thorn, +Q, +R, +Racute, +Rcaron, +Rcommaaccent, +S, +Sacute, +Scaron, +Scedilla, +Scommaaccent, +Germandbls, +T, +Tbar, +Tcaron, +Tcedilla, +Tcommaaccent, +U, +Uacute, +Ucircumflex, +Udieresis, +Ugrave, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +V, +W, +Wacute, +Wcircumflex, +Wdieresis, +Wgrave, +X, +Y, +Yacute, +Ycircumflex, +Ydieresis, +Ygrave, +Z, +Zacute, +Zcaron, +Zdotaccent, +M.alt, +a, +aacute, +abreve, +acircumflex, +adieresis, +agrave, +amacron, +aogonek, +aring, +atilde, +ae, +b, +c, +cacute, +ccaron, +ccedilla, +cdotaccent, +d, +eth, +dcaron, +dcroat, +e, +eacute, +ecaron, +ecircumflex, +edieresis, +edotaccent, +egrave, +emacron, +eogonek, +f, +g, +gbreve, +gcommaaccent, +gdotaccent, +h, +hbar, +i, +idotless, +iacute, +icircumflex, +idieresis, +idotaccent, +igrave, +imacron, +iogonek, +j, +k, +kcommaaccent, +l, +lacute, +lcaron, +lcommaaccent, +lslash, +m, +n, +nacute, +ncaron, +ncommaaccent, +eng, +ntilde, +o, +oacute, +ocircumflex, +odieresis, +ograve, +ohungarumlaut, +omacron, +oslash, +otilde, +oe, +p, +thorn, +q, +r, +racute, +rcaron, +rcommaaccent, +s, +sacute, +scaron, +scedilla, +scommaaccent, +germandbls, +t, +tbar, +tcaron, +tcedilla, +tcommaaccent, +u, +uacute, +ucircumflex, +udieresis, +ugrave, +uhungarumlaut, +umacron, +uogonek, +uring, +v, +w, +wacute, +wcircumflex, +wdieresis, +wgrave, +x, +y, +yacute, +ycircumflex, +ydieresis, +ygrave, +z, +zacute, +zcaron, +zdotaccent, +a.alt, +j.alt, +t.alt, +u.alt, +f_f, +f_f_i, +f_f_j, +f_f_l, +f_f_t, +f_j, +f_t, +fi, +fl, +ordfeminine, +ordmasculine, +Delta, +Omega, +mu, +pi, +zero, +one, +two, +three, +four, +five, +six, +seven, +eight, +nine, +zero.dnom, +one.dnom, +two.dnom, +three.dnom, +four.dnom, +five.dnom, +six.dnom, +seven.dnom, +eight.dnom, +nine.dnom, +zero.numr, +one.numr, +two.numr, +three.numr, +four.numr, +five.numr, +six.numr, +seven.numr, +eight.numr, +nine.numr, +onesuperior, +twosuperior, +threesuperior, +foursuperior, +fraction, +onefraction, +onehalf, +zerothird, +onethird, +twothirds, +onequarter, +threequarters, +onefifth, +twofifths, +threefifths, +fourfifths, +onesixth, +fivesixths, +oneseventh, +oneeighth, +threeeighths, +fiveeighths, +seveneighths, +oneninth, +onetenth, +period, +comma, +colon, +semicolon, +ellipsis, +exclam, +exclamdown, +question, +questiondown, +periodcentered, +bullet, +asterisk, +numbersign, +slash, +backslash, +parenleft, +parenright, +braceleft, +braceright, +bracketleft, +bracketright, +hyphen, +softhyphen, +endash, +emdash, +underscore, +quotesinglbase, +quotedblbase, +quotedblleft, +quotedblright, +quoteleft, +quoteright, +guillemetleft, +guillemetright, +guilsinglleft, +guilsinglright, +quotedbl, +quotesingle, +nbspace, +cent, +currency, +dollar, +euro, +florin, +sterling, +yen, +plus, +minus, +multiply, +divide, +equal, +notequal, +greater, +less, +greaterequal, +lessequal, +plusminus, +approxequal, +asciitilde, +logicalnot, +asciicircum, +infinity, +emptyset, +integral, +product, +summation, +radical, +partialdiff, +micro, +percent, +perthousand, +lozenge, +at, +ampersand, +paragraph, +section, +copyright, +registered, +trademark, +degree, +bar, +brokenbar, +dagger, +daggerdbl, +dieresiscomb, +dotaccentcomb, +gravecomb, +acutecomb, +hungarumlautcomb, +circumflexcomb, +caroncomb, +brevecomb, +ringcomb, +tildecomb, +macroncomb, +commaturnedabovecomb, +commaaccentcomb, +cedillacomb, +ogonekcomb, +dieresis, +dotaccent, +grave, +acute, +hungarumlaut, +circumflex, +caron, +breve, +ring, +tilde, +macron, +cedilla, +ogonek, +DivisionSlash +); +}, +{ +name = blueScale; +value = 0.04; +}, +{ +name = blueShift; +value = 7; +}, +{ +name = blueFuzz; +value = 1; +}, +{ +name = "Use Typo Metrics"; +value = 1; +}, +{ +name = license; +value = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL"; +}, +{ +name = licenseURL; +value = "http://scripts.sil.org/OFL"; +}, +{ +name = Axes; +value = ( +{ +Name = Weight; +Tag = wght; +} +); +} +); +date = "2021-01-18 16:18:31 +0000"; +designer = "Matt Bailey, Mirko Velimirovic"; +designerURL = "http://mtbailey.com"; +familyName = Spartan; +featurePrefixes = ( +{ +code = "languagesystem DFLT dflt;\012\012languagesystem latn dflt;\012languagesystem latn AZE;\012languagesystem latn CRT;\012languagesystem latn KAZ;\012languagesystem latn TAT;\012languagesystem latn TRK;\012languagesystem latn ROM;\012languagesystem latn MOL;\012\012"; +name = Languagesystems; +} +); +features = ( +{ +code = "feature locl;\012feature sups;\012feature numr;\012feature dnom;\012feature frac;\012feature ordn;"; +name = aalt; +}, +{ +code = "lookup ccmp_Other_1 {\012 @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hungarumlautcomb macroncomb ringcomb tildecomb];\012 @CombiningNonTopAccents = [cedillacomb ogonekcomb];\012 sub [i]' @CombiningTopAccents by [idotless];\012 sub [i]' @CombiningNonTopAccents @CombiningTopAccents by [idotless];\012} ccmp_Other_1;"; +name = ccmp; +}, +{ +code = "lookup locl_latn_0 {\012 script latn;\012 language AZE;\012 language CRT;\012 language KAZ;\012 language TAT;\012 language TRK;\012 sub i by idotaccent;\012} locl_latn_0;\012\012lookup locl_latn_1 {\012 script latn;\012 language ROM;\012 language MOL;\012 sub Scedilla by Scommaaccent;\012 sub scedilla by scommaaccent;\012 sub Tcedilla by Tcommaaccent;\012 sub tcedilla by tcommaaccent;\012} locl_latn_1;"; +name = locl; +}, +{ +code = "sub one by onesuperior;\012sub two by twosuperior;\012sub three by threesuperior;\012sub four by foursuperior;"; +name = sups; +}, +{ +code = "sub zero by zero.numr;\012sub one by one.numr;\012sub two by two.numr;\012sub three by three.numr;\012sub four by four.numr;\012sub five by five.numr;\012sub six by six.numr;\012sub seven by seven.numr;\012sub eight by eight.numr;\012sub nine by nine.numr;"; +name = numr; +}, +{ +code = "sub zero by zero.dnom;\012sub one by one.dnom;\012sub two by two.dnom;\012sub three by three.dnom;\012sub four by four.dnom;\012sub five by five.dnom;\012sub six by six.dnom;\012sub seven by seven.dnom;\012sub eight by eight.dnom;\012sub nine by nine.dnom;"; +name = dnom; +}, +{ +code = "lookup FRAC {\012 sub slash by fraction;\012} FRAC;\012lookup UP {\012 sub [zero one two three four five six seven eight nine] by [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr];\012} UP;\012lookup DOWN {\012 sub fraction [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom];\012 sub [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom] [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom];\012} DOWN;"; +name = frac; +}, +{ +code = "sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;\012sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;"; +name = ordn; +}, +{ +code = "lookupflag IgnoreMarks;\012sub f f j by f_f_j;\012sub f f t by f_f_t;\012sub f j by f_j;\012sub f t by f_t;"; +name = dlig; +}, +{ +code = "lookupflag IgnoreMarks;\012sub f f i by f_f_i;\012sub f f l by f_f_l;\012sub f f by f_f;\012sub f i by fi;\012sub f l by fl;"; +name = liga; +} +); +fontMaster = ( +{ +alignmentZones = ( +"{1720, 31}", +"{1650, 31}", +"{1024, 33}", +"{0, -33}", +"{-520, -31}" +); +ascender = 1720; +capHeight = 1650; +custom = Thin; +customParameters = ( +{ +name = typoAscender; +value = 1720; +}, +{ +name = typoDescender; +value = -520; +}, +{ +name = typoLineGap; +value = 130; +}, +{ +name = winAscent; +value = 2398; +}, +{ +name = winDescent; +value = 592; +}, +{ +name = underlineThickness; +value = 100; +}, +{ +name = underlinePosition; +value = -150; +}, +{ +name = strikeoutPosition; +value = 614; +}, +{ +name = strikeoutSize; +value = 100; +}, +{ +name = subscriptXOffset; +value = 0; +}, +{ +name = subscriptXSize; +value = 650; +}, +{ +name = subscriptYOffset; +value = 75; +}, +{ +name = subscriptYSize; +value = 600; +}, +{ +name = superscriptXOffset; +value = 0; +}, +{ +name = superscriptXSize; +value = 650; +}, +{ +name = superscriptYOffset; +value = 350; +}, +{ +name = superscriptYSize; +value = 600; +}, +{ +name = hheaAscender; +value = 1720; +}, +{ +name = hheaDescender; +value = -520; +}, +{ +name = hheaLineGap; +value = 0; +} +); +descender = -520; +guideLines = ( +{ +position = "{0, -550}"; +}, +{ +position = "{0, 1680}"; +}, +{ +position = "{0, 1751}"; +} +); +iconName = Light; +id = "ac360476-f880-49b3-af70-f23fb533da3d"; +weightValue = 56; +xHeight = 1024; +}, +{ +alignmentZones = ( +"{1720, 31}", +"{1650, 31}", +"{1024, 33}", +"{0, -33}", +"{-520, -31}" +); +ascender = 1720; +capHeight = 1650; +custom = Medium; +customParameters = ( +{ +name = typoAscender; +value = 1720; +}, +{ +name = typoDescender; +value = -520; +}, +{ +name = typoLineGap; +value = 130; +}, +{ +name = winAscent; +value = 2398; +}, +{ +name = winDescent; +value = 592; +}, +{ +name = underlineThickness; +value = 100; +}, +{ +name = underlinePosition; +value = -150; +}, +{ +name = strikeoutPosition; +value = 570; +}, +{ +name = strikeoutSize; +value = 100; +}, +{ +name = subscriptXOffset; +value = 0; +}, +{ +name = subscriptXSize; +value = 669; +}, +{ +name = subscriptYOffset; +value = 100; +}, +{ +name = subscriptYSize; +value = 619; +}, +{ +name = superscriptXOffset; +value = 0; +}, +{ +name = superscriptXSize; +value = 669; +}, +{ +name = superscriptYOffset; +value = 399; +}, +{ +name = superscriptYSize; +value = 619; +}, +{ +name = hheaAscender; +value = 1720; +}, +{ +name = hheaDescender; +value = -520; +}, +{ +name = hheaLineGap; +value = 0; +} +); +descender = -520; +id = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +weightValue = 204; +xHeight = 1024; +}, +{ +alignmentZones = ( +"{1720, 31}", +"{1650, 31}", +"{1024, 33}", +"{0, -33}", +"{-520, -31}" +); +ascender = 1720; +capHeight = 1650; +custom = Black; +customParameters = ( +{ +name = typoAscender; +value = 1720; +}, +{ +name = typoDescender; +value = -520; +}, +{ +name = typoLineGap; +value = 130; +}, +{ +name = winAscent; +value = 2398; +}, +{ +name = winDescent; +value = 592; +}, +{ +name = underlineThickness; +value = 100; +}, +{ +name = underlinePosition; +value = -150; +}, +{ +name = strikeoutPosition; +value = 500; +}, +{ +name = strikeoutSize; +value = 100; +}, +{ +name = subscriptXOffset; +value = 0; +}, +{ +name = subscriptXSize; +value = 700; +}, +{ +name = subscriptYOffset; +value = 140; +}, +{ +name = subscriptYSize; +value = 650; +}, +{ +name = superscriptXOffset; +value = 0; +}, +{ +name = superscriptXSize; +value = 700; +}, +{ +name = superscriptYOffset; +value = 477; +}, +{ +name = superscriptYSize; +value = 650; +}, +{ +name = hheaAscender; +value = 1720; +}, +{ +name = hheaDescender; +value = -520; +}, +{ +name = hheaLineGap; +value = 0; +} +); +descender = -520; +guideLines = ( +{ +position = "{0, -550}"; +}, +{ +position = "{0, 1680}"; +} +); +iconName = Bold; +id = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +weightValue = 440; +xHeight = 1024; +} +); +glyphs = ( +{ +color = 5; +glyphname = .notdef; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 684; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 684; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 684; +} +); +}, +{ +color = 5; +glyphname = NULL; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 0; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 0; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 0; +} +); +unicode = 0000; +}, +{ +color = 5; +glyphname = CR; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 556; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 522; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 500; +} +); +unicode = 000D; +}, +{ +color = 5; +glyphname = space; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 556; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 522; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 500; +} +); +rightKerningGroup = _A1; +unicode = 0020; +}, +{ +color = 5; +glyphname = A; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{835, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{274, 386}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"433 0 LINE", +"532 274 LINE", +"1138 274 LINE", +"1237 0 LINE", +"1711 0 LINE", +"1039 1650 LINE", +"631 1650 LINE", +"-41 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"835 1052 LINE", +"988 660 LINE", +"682 660 LINE" +); +} +); +width = 1670; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{829, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{480, 180}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"301 0 LINE", +"484 480 LINE", +"1175 480 LINE", +"1358 0 LINE", +"1578 0 LINE", +"924 1650 LINE", +"735 1650 LINE", +"81 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"829 1378 LINE", +"1105 660 LINE", +"554 660 LINE" +); +} +); +width = 1659; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{610, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"218 0 LINE", +"454 610 LINE", +"1198 610 LINE", +"1434 0 LINE", +"1494 0 LINE", +"852 1650 LINE", +"800 1650 LINE", +"158 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"826 1582 LINE", +"1179 660 LINE", +"473 660 LINE" +); +} +); +width = 1652; +} +); +leftKerningGroup = _A; +rightKerningGroup = _A1; +unicode = 0041; +}, +{ +color = 5; +glyphname = Aacute; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{835, 2324}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 593, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1670; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{869, 2313}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 724, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1659; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 792, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 00C1; +}, +{ +color = 5; +glyphname = Abreve; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{835, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 359, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1670; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{829, 2305}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 406, 625}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1659; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 436, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 0102; +}, +{ +color = 5; +glyphname = Acircumflex; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{835, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 373, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1670; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{829, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 444, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1659; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 490, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 00C2; +}, +{ +color = 5; +glyphname = Adieresis; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{835, 2236}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 387, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1670; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{829, 2135}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 482, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1659; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 2072}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 542, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 00C4; +}, +{ +color = 5; +glyphname = Agrave; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{751, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 425, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1670; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{746, 2292}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 557, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1659; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 2283}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 723, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 00C0; +}, +{ +color = 5; +glyphname = Amacron; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{835, 2154}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 427, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1670; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{829, 2083}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 421, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1659; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 2038}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 418, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 0100; +}, +{ +color = 5; +glyphname = Aogonek; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{835, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 1359, -7}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1844; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{829, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 1297, -21}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1904; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 1258, -29}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1942; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 0104; +}, +{ +color = 5; +glyphname = Aring; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{835, 2398}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 487, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1670; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{829, 2314}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 576, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1659; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 2260}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 632, 624}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 00C5; +}, +{ +color = 5; +glyphname = Atilde; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{835, 0}"; +}, +{ +name = ogonek; +position = "{1711, 0}"; +}, +{ +name = top; +position = "{835, 2208}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 274, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1670; +}, +{ +anchors = ( +{ +name = bottom; +position = "{829, 0}"; +}, +{ +name = ogonek; +position = "{1578, 0}"; +}, +{ +name = top; +position = "{829, 2175}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 319, 625}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1659; +}, +{ +anchors = ( +{ +name = bottom; +position = "{826, 0}"; +}, +{ +name = ogonek; +position = "{1494, 0}"; +}, +{ +name = top; +position = "{826, 2156}"; +} +); +components = ( +{ +alignment = -1; +name = A; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 348, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 00C3; +}, +{ +color = 5; +glyphname = AE; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{274, 386}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1264, 386}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{634, 386}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 386}"; +type = Stem; +}, +{ +place = "{835, 440}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"835 1052 LINE", +"835 660 LINE", +"682 660 LINE" +); +}, +{ +closed = 1; +nodes = ( +"631 1650 LINE", +"-41 0 LINE", +"433 0 LINE", +"532 274 LINE", +"835 274 LINE", +"835 0 LINE", +"1811 0 LINE", +"1811 386 LINE", +"1275 386 LINE", +"1275 634 LINE", +"1787 634 LINE", +"1787 1020 LINE", +"1275 1020 LINE", +"1275 1264 LINE", +"1811 1264 LINE", +"1811 1650 LINE" +); +} +); +width = 1979; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{481, 180}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1471, 180}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{737, 180}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 180}"; +type = Stem; +}, +{ +place = "{829, 204}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"829 1378 LINE", +"829 661 LINE", +"554 661 LINE" +); +}, +{ +closed = 1; +nodes = ( +"735 1651 LINE", +"81 0 LINE", +"301 0 LINE", +"484 481 LINE", +"829 481 LINE", +"829 0 LINE", +"1687 0 LINE", +"1687 180 LINE", +"1033 180 LINE", +"1033 737 LINE", +"1663 737 LINE", +"1663 917 LINE", +"1033 917 LINE", +"1033 1471 LINE", +"1687 1471 LINE", +"1687 1651 LINE" +); +} +); +width = 1860; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{610, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1600, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{802, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 50}"; +type = Stem; +}, +{ +place = "{826, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"826 1582 LINE", +"826 660 LINE", +"473 660 LINE" +); +}, +{ +closed = 1; +nodes = ( +"800 1650 LINE", +"158 0 LINE", +"218 0 LINE", +"454 610 LINE", +"826 610 LINE", +"826 0 LINE", +"1610 0 LINE", +"1610 50 LINE", +"882 50 LINE", +"882 802 LINE", +"1586 802 LINE", +"1586 852 LINE", +"882 852 LINE", +"882 1600 LINE", +"1610 1600 LINE", +"1610 1650 LINE" +); +} +); +width = 1787; +} +); +leftMetricsKey = A; +rightMetricsKey = E; +unicode = 00C6; +}, +{ +color = 5; +glyphname = B; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{671, 0}"; +}, +{ +name = top; +position = "{671, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 338}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{654, 378}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1312, 338}"; +type = Stem; +}, +{ +place = "{98, 440}"; +type = Stem; +}, +{ +place = "{738, 108}"; +type = Stem; +}, +{ +place = "{1164, 146}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"764 0 LINE SMOOTH", +"1096 0 OFFCURVE", +"1310 180 OFFCURVE", +"1310 478 CURVE SMOOTH", +"1310 701 OFFCURVE", +"1191 841 OFFCURVE", +"968 880 CURVE", +"1098 953 OFFCURVE", +"1164 1073 OFFCURVE", +"1164 1236 CURVE SMOOTH", +"1164 1516 OFFCURVE", +"971 1650 OFFCURVE", +"656 1650 CURVE SMOOTH", +"98 1650 LINE", +"98 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"538 1312 LINE", +"548 1312 LINE SMOOTH", +"679 1312 OFFCURVE", +"738 1269 OFFCURVE", +"738 1176 CURVE SMOOTH", +"738 1082 OFFCURVE", +"672 1032 OFFCURVE", +"548 1032 CURVE SMOOTH", +"538 1032 LINE" +); +}, +{ +closed = 1; +nodes = ( +"538 654 LINE", +"606 654 LINE SMOOTH", +"764 654 OFFCURVE", +"846 598 OFFCURVE", +"846 492 CURVE SMOOTH", +"846 386 OFFCURVE", +"771 338 OFFCURVE", +"606 338 CURVE SMOOTH", +"538 338 LINE" +); +} +); +width = 1342; +}, +{ +anchors = ( +{ +name = bottom; +position = "{653, 0}"; +}, +{ +name = top; +position = "{653, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 162}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{752, 179}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1490, 160}"; +type = Stem; +}, +{ +place = "{180, 204}"; +type = Stem; +}, +{ +place = "{879, 132}"; +type = Stem; +}, +{ +place = "{1075, 147}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"699 0 LINE SMOOTH", +"1024 0 OFFCURVE", +"1222 167 OFFCURVE", +"1222 448 CURVE SMOOTH", +"1222 681 OFFCURVE", +"1086 829 OFFCURVE", +"845 864 CURVE", +"996 931 OFFCURVE", +"1075 1058 OFFCURVE", +"1075 1234 CURVE SMOOTH", +"1075 1505 OFFCURVE", +"887 1650 OFFCURVE", +"567 1650 CURVE SMOOTH", +"180 1650 LINE", +"180 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"384 1490 LINE", +"526 1490 LINE SMOOTH", +"755 1490 OFFCURVE", +"879 1392 OFFCURVE", +"879 1211 CURVE SMOOTH", +"879 1031 OFFCURVE", +"753 931 OFFCURVE", +"526 931 CURVE SMOOTH", +"384 931 LINE" +); +}, +{ +closed = 1; +nodes = ( +"384 752 LINE", +"638 752 LINE SMOOTH", +"874 752 OFFCURVE", +"1011 643 OFFCURVE", +"1011 454 CURVE SMOOTH", +"1011 266 OFFCURVE", +"878 162 OFFCURVE", +"638 162 CURVE SMOOTH", +"384 162 LINE" +); +} +); +width = 1305; +}, +{ +anchors = ( +{ +name = bottom; +position = "{641, 0}"; +}, +{ +name = top; +position = "{641, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{814, 53}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1601, 49}"; +type = Stem; +}, +{ +place = "{232, 56}"; +type = Stem; +}, +{ +place = "{968, 52}"; +type = Stem; +}, +{ +place = "{1114, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"658 0 LINE SMOOTH", +"978 0 OFFCURVE", +"1166 159 OFFCURVE", +"1166 430 CURVE SMOOTH", +"1166 668 OFFCURVE", +"1021 822 OFFCURVE", +"768 854 CURVE", +"932 917 OFFCURVE", +"1020 1049 OFFCURVE", +"1020 1232 CURVE SMOOTH", +"1020 1498 OFFCURVE", +"835 1650 OFFCURVE", +"512 1650 CURVE SMOOTH", +"232 1650 LINE", +"232 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"288 1601 LINE", +"512 1601 LINE SMOOTH", +"803 1601 OFFCURVE", +"968 1468 OFFCURVE", +"968 1232 CURVE SMOOTH", +"968 998 OFFCURVE", +"805 867 OFFCURVE", +"512 867 CURVE SMOOTH", +"288 867 LINE" +); +}, +{ +closed = 1; +nodes = ( +"288 814 LINE", +"658 814 LINE SMOOTH", +"944 814 OFFCURVE", +"1114 671 OFFCURVE", +"1114 430 CURVE SMOOTH", +"1114 191 OFFCURVE", +"946 52 OFFCURVE", +"658 52 CURVE SMOOTH", +"288 52 LINE" +); +} +); +width = 1282; +} +); +unicode = 0042; +}, +{ +color = 5; +glyphname = C; +lastChange = "2020-02-27 21:30:50 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{831, 0}"; +}, +{ +name = cedilla; +position = "{871, 0}"; +}, +{ +name = top; +position = "{831, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 432}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1248, 432}"; +type = Stem; +}, +{ +place = "{56, 476}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"56 351 OFFCURVE", +"435 -32 OFFCURVE", +"951 -32 CURVE SMOOTH", +"1151 -32 OFFCURVE", +"1347 30 OFFCURVE", +"1472 114 CURVE", +"1262 474 LINE", +"1190 428 OFFCURVE", +"1084 400 OFFCURVE", +"980 400 CURVE SMOOTH", +"694 400 OFFCURVE", +"532 581 OFFCURVE", +"532 825 CURVE SMOOTH", +"532 1067 OFFCURVE", +"694 1248 OFFCURVE", +"980 1248 CURVE SMOOTH", +"1084 1248 OFFCURVE", +"1190 1220 OFFCURVE", +"1262 1174 CURVE", +"1472 1534 LINE", +"1347 1618 OFFCURVE", +"1151 1680 OFFCURVE", +"951 1680 CURVE SMOOTH", +"435 1680 OFFCURVE", +"56 1297 OFFCURVE", +"56 824 CURVE SMOOTH" +); +} +); +width = 1476; +}, +{ +anchors = ( +{ +name = bottom; +position = "{827, 0}"; +}, +{ +name = cedilla; +position = "{922, 0}"; +}, +{ +name = top; +position = "{902, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 201}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1479, 201}"; +type = Stem; +}, +{ +place = "{113, 222}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"113 342 OFFCURVE", +"480 -32 OFFCURVE", +"983 -32 CURVE SMOOTH", +"1188 -32 OFFCURVE", +"1376 31 OFFCURVE", +"1512 134 CURVE", +"1410 300 LINE", +"1302 215 OFFCURVE", +"1154 169 OFFCURVE", +"996 169 CURVE SMOOTH", +"598 169 OFFCURVE", +"335 455 OFFCURVE", +"335 824 CURVE SMOOTH", +"335 1193 OFFCURVE", +"598 1479 OFFCURVE", +"996 1479 CURVE SMOOTH", +"1154 1479 OFFCURVE", +"1302 1433 OFFCURVE", +"1410 1348 CURVE", +"1512 1514 LINE", +"1376 1617 OFFCURVE", +"1188 1680 OFFCURVE", +"983 1680 CURVE SMOOTH", +"480 1680 OFFCURVE", +"113 1306 OFFCURVE", +"113 824 CURVE SMOOTH" +); +} +); +width = 1584; +}, +{ +anchors = ( +{ +name = bottom; +position = "{961, 0}"; +}, +{ +name = cedilla; +position = "{1001, 0}"; +}, +{ +name = top; +position = "{961, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1624, 56}"; +type = Stem; +}, +{ +place = "{148, 62}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"148 337 OFFCURVE", +"507 -32 OFFCURVE", +"1001 -32 CURVE SMOOTH", +"1210 -32 OFFCURVE", +"1392 31 OFFCURVE", +"1536 146 CURVE", +"1502 190 LINE", +"1370 82 OFFCURVE", +"1196 24 OFFCURVE", +"1005 24 CURVE SMOOTH", +"536 24 OFFCURVE", +"210 376 OFFCURVE", +"210 824 CURVE SMOOTH", +"210 1272 OFFCURVE", +"536 1624 OFFCURVE", +"1005 1624 CURVE SMOOTH", +"1196 1624 OFFCURVE", +"1370 1566 OFFCURVE", +"1502 1458 CURVE", +"1536 1502 LINE", +"1392 1617 OFFCURVE", +"1210 1680 OFFCURVE", +"1001 1680 CURVE SMOOTH", +"507 1680 OFFCURVE", +"148 1311 OFFCURVE", +"148 824 CURVE SMOOTH" +); +} +); +width = 1652; +} +); +unicode = 0043; +}, +{ +color = 5; +glyphname = Cacute; +lastChange = "2020-02-27 21:40:43 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 589, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1476; +}, +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 797, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1584; +}, +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 927, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +unicode = 0106; +}, +{ +color = 5; +glyphname = Ccaron; +lastChange = "2020-02-27 21:40:43 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 369, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1476; +}, +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 517, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1584; +}, +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 625, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +unicode = 010C; +}, +{ +color = 5; +glyphname = Ccedilla; +lastChange = "2020-02-27 21:40:43 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 474, -7}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1476; +}, +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 610, -21}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1584; +}, +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 590.5, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +unicode = 00C7; +}, +{ +color = 5; +glyphname = Cdotaccent; +lastChange = "2020-02-27 21:40:43 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 591, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1476; +}, +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 780, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1584; +}, +{ +components = ( +{ +alignment = -1; +name = C; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 913, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1652; +} +); +unicode = 010A; +}, +{ +color = 5; +glyphname = D; +lastChange = "2020-02-27 21:30:47 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{797, 0}"; +}, +{ +name = center; +position = "{797, 825}"; +}, +{ +name = top; +position = "{797, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 394}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1256, 394}"; +type = Stem; +}, +{ +place = "{1060, 476}"; +type = Stem; +}, +{ +place = "{196, 440}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"704 0 LINE SMOOTH", +"1174 0 OFFCURVE", +"1536 360 OFFCURVE", +"1536 825 CURVE SMOOTH", +"1536 1290 OFFCURVE", +"1172 1650 OFFCURVE", +"704 1650 CURVE SMOOTH", +"196 1650 LINE", +"196 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"636 1256 LINE", +"652 1256 LINE SMOOTH", +"891 1256 OFFCURVE", +"1060 1078 OFFCURVE", +"1060 825 CURVE SMOOTH", +"1060 572 OFFCURVE", +"891 394 OFFCURVE", +"652 394 CURVE SMOOTH", +"636 394 LINE" +); +} +); +width = 1594; +}, +{ +anchors = ( +{ +name = bottom; +position = "{815, 0}"; +}, +{ +name = center; +position = "{815, 825}"; +}, +{ +name = top; +position = "{815, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 183}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1467, 183}"; +type = Stem; +}, +{ +place = "{1267, 217}"; +type = Stem; +}, +{ +place = "{256, 204}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"652 0 LINE SMOOTH", +"1122 0 OFFCURVE", +"1484 360 OFFCURVE", +"1484 825 CURVE SMOOTH", +"1484 1290 OFFCURVE", +"1121 1650 OFFCURVE", +"652 1650 CURVE SMOOTH", +"256 1650 LINE", +"256 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"460 1467 LINE", +"632 1467 LINE SMOOTH", +"992 1467 OFFCURVE", +"1267 1190 OFFCURVE", +"1267 825 CURVE SMOOTH", +"1267 460 OFFCURVE", +"992 183 OFFCURVE", +"632 183 CURVE SMOOTH", +"460 183 LINE" +); +} +); +width = 1630; +}, +{ +anchors = ( +{ +name = bottom; +position = "{827, 0}"; +}, +{ +name = center; +position = "{827, 825}"; +}, +{ +name = top; +position = "{827, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1600, 50}"; +type = Stem; +}, +{ +place = "{1397, 54}"; +type = Stem; +}, +{ +place = "{293, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"619 0 LINE SMOOTH", +"1089 0 OFFCURVE", +"1451 359 OFFCURVE", +"1451 825 CURVE SMOOTH", +"1451 1291 OFFCURVE", +"1089 1650 OFFCURVE", +"619 1650 CURVE SMOOTH", +"293 1650 LINE", +"293 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"349 1600 LINE", +"619 1600 LINE SMOOTH", +"1055 1600 OFFCURVE", +"1397 1260 OFFCURVE", +"1397 825 CURVE SMOOTH", +"1397 390 OFFCURVE", +"1055 50 OFFCURVE", +"619 50 CURVE SMOOTH", +"349 50 LINE" +); +} +); +width = 1653; +} +); +rightKerningGroup = _A1; +unicode = 0044; +}, +{ +color = 5; +glyphname = Eth; +lastChange = "2020-02-27 21:30:47 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = D; +transform = "{1, 0, 0, 1, 51, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{646, 358}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"83 1004 LINE", +"83 646 LINE", +"841 646 LINE", +"841 1004 LINE" +); +} +); +width = 1645; +}, +{ +components = ( +{ +alignment = -1; +name = D; +transform = "{1, 0, 0, 1, 37.479, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{742, 166}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"129 908 LINE", +"129 742 LINE", +"887 742 LINE", +"887 908 LINE" +); +} +); +width = 1668; +}, +{ +components = ( +{ +alignment = -1; +name = D; +transform = "{1, 0, 0, 1, 29, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{802, 46}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"158 848 LINE", +"158 802 LINE", +"916 802 LINE", +"916 848 LINE" +); +} +); +width = 1682; +} +); +rightKerningGroup = _A1; +unicode = 00D0; +}, +{ +color = 5; +glyphname = Dcaron; +lastChange = "2020-02-27 21:30:47 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{797, 0}"; +}, +{ +name = center; +position = "{797, 825}"; +}, +{ +name = top; +position = "{797, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = D; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 335, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1594; +}, +{ +anchors = ( +{ +name = bottom; +position = "{815, 0}"; +}, +{ +name = center; +position = "{815, 825}"; +}, +{ +name = top; +position = "{815, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = D; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 430.438, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1630; +}, +{ +anchors = ( +{ +name = bottom; +position = "{827, 0}"; +}, +{ +name = center; +position = "{827, 825}"; +}, +{ +name = top; +position = "{827, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = D; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 491, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1653; +} +); +unicode = 010E; +}, +{ +color = 5; +glyphname = Dcroat; +lastChange = "2020-02-27 21:30:47 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = Eth; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1645; +}, +{ +components = ( +{ +alignment = -1; +name = Eth; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1668; +}, +{ +components = ( +{ +alignment = -1; +name = Eth; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1682; +} +); +rightKerningGroup = _A1; +unicode = 0110; +}, +{ +color = 5; +glyphname = E; +lastChange = "2020-02-27 21:30:47 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{670, 0}"; +}, +{ +name = ogonek; +position = "{1172, 0}"; +}, +{ +name = top; +position = "{670, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1264, 386}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{634, 386}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 386}"; +type = Stem; +}, +{ +place = "{196, 440}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1172 0 LINE", +"1172 386 LINE", +"636 386 LINE", +"636 634 LINE", +"1148 634 LINE", +"1148 1020 LINE", +"636 1020 LINE", +"636 1264 LINE", +"1172 1264 LINE", +"1172 1650 LINE", +"196 1650 LINE", +"196 0 LINE" +); +} +); +width = 1340; +}, +{ +anchors = ( +{ +name = bottom; +position = "{692, 0}"; +}, +{ +name = ogonek; +position = "{1114, 0}"; +}, +{ +name = top; +position = "{692, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1470, 180}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{737, 180}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 180}"; +type = Stem; +}, +{ +place = "{256, 204}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1114 0 LINE", +"1114 180 LINE", +"460 180 LINE", +"460 737 LINE", +"1090 737 LINE", +"1090 917 LINE", +"460 917 LINE", +"460 1470 LINE", +"1114 1470 LINE", +"1114 1650 LINE", +"256 1650 LINE", +"256 0 LINE" +); +} +); +width = 1287; +}, +{ +anchors = ( +{ +name = bottom; +position = "{706, 0}"; +}, +{ +name = ogonek; +position = "{1077, 0}"; +}, +{ +name = top; +position = "{706, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1600, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{802, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 50}"; +type = Stem; +}, +{ +place = "{293, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1077 0 LINE", +"1077 50 LINE", +"349 50 LINE", +"349 802 LINE", +"1053 802 LINE", +"1053 852 LINE", +"349 852 LINE", +"349 1600 LINE", +"1077 1600 LINE", +"1077 1650 LINE", +"293 1650 LINE", +"293 0 LINE" +); +} +); +width = 1254; +} +); +rightKerningGroup = _E; +unicode = 0045; +}, +{ +color = 5; +glyphname = Eacute; +lastChange = "2020-02-27 21:37:01 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 428, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1340; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 587, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1287; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 672, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1254; +} +); +unicode = 00C9; +}, +{ +color = 5; +glyphname = Ecaron; +lastChange = "2020-02-27 21:37:01 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 208, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1340; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 307, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1287; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 370, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1254; +} +); +unicode = 011A; +}, +{ +color = 5; +glyphname = Ecircumflex; +lastChange = "2020-02-27 21:37:01 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 208, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1340; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 307, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1287; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 370, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1254; +} +); +unicode = 00CA; +}, +{ +color = 5; +glyphname = Edieresis; +lastChange = "2020-02-27 21:37:01 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 222, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1340; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 345, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1287; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 422, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1254; +} +); +unicode = 00CB; +}, +{ +color = 5; +glyphname = Edotaccent; +lastChange = "2020-02-27 21:37:01 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 430, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1340; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 570, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1287; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 658, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1254; +} +); +unicode = 0116; +}, +{ +color = 5; +glyphname = Egrave; +lastChange = "2020-02-27 21:37:01 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 260, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1340; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 420, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1287; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 603, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1254; +} +); +unicode = 00C8; +}, +{ +color = 5; +glyphname = Emacron; +lastChange = "2020-02-27 21:37:01 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 262, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1340; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 284, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1287; +}, +{ +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 298, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1254; +} +); +unicode = 0112; +}, +{ +color = 5; +glyphname = Eogonek; +lastChange = "2020-02-27 21:37:01 +0000"; +layers = ( +{ +anchors = ( +{ +name = ogonek; +position = "{1172, 0}"; +} +); +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 820, -7}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1340; +}, +{ +anchors = ( +{ +name = ogonek; +position = "{1114, 0}"; +} +); +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 833, -21}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1287; +}, +{ +anchors = ( +{ +name = ogonek; +position = "{1077, 0}"; +} +); +components = ( +{ +alignment = -1; +name = E; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 841, -29}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1254; +} +); +unicode = 0118; +}, +{ +color = 5; +glyphname = F; +lastChange = "2020-02-27 21:30:41 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{630, 0}"; +}, +{ +name = top; +position = "{630, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1264, 386}"; +type = Stem; +}, +{ +place = "{196, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{634, 386}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"196 1650 LINE", +"196 0 LINE", +"636 0 LINE", +"636 634 LINE", +"1140 634 LINE", +"1140 1020 LINE", +"636 1020 LINE", +"636 1264 LINE", +"1184 1264 LINE", +"1184 1650 LINE" +); +} +); +width = 1260; +}, +{ +anchors = ( +{ +name = bottom; +position = "{624, 0}"; +}, +{ +name = top; +position = "{624, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1470, 180}"; +type = Stem; +}, +{ +place = "{256, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{736, 180}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"256 1650 LINE", +"256 0 LINE", +"460 0 LINE", +"460 736 LINE", +"1073 736 LINE", +"1073 916 LINE", +"460 916 LINE", +"460 1470 LINE", +"1119 1470 LINE", +"1119 1650 LINE" +); +} +); +width = 1247; +}, +{ +anchors = ( +{ +name = bottom; +position = "{620, 0}"; +}, +{ +name = top; +position = "{620, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1600, 50}"; +type = Stem; +}, +{ +place = "{293, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{802, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"293 1650 LINE", +"293 0 LINE", +"349 0 LINE", +"349 802 LINE", +"1031 802 LINE", +"1031 852 LINE", +"349 852 LINE", +"349 1600 LINE", +"1077 1600 LINE", +"1077 1650 LINE" +); +} +); +width = 1239; +} +); +rightKerningGroup = _A1; +unicode = 0046; +}, +{ +color = 5; +glyphname = G; +lastChange = "2020-02-27 21:30:41 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{842, 0}"; +}, +{ +name = top; +position = "{842, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 406}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{614, 338}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1282, 398}"; +type = Stem; +}, +{ +place = "{64, 476}"; +type = Stem; +}, +{ +place = "{1183, 448}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1279 -32 OFFCURVE", +"1631 225 OFFCURVE", +"1631 699 CURVE SMOOTH", +"1631 952 LINE", +"869 952 LINE", +"869 614 LINE", +"1183 614 LINE", +"1183 612 LINE SMOOTH", +"1183 481 OFFCURVE", +"1057 374 OFFCURVE", +"902 374 CURVE SMOOTH", +"682 374 OFFCURVE", +"540 581 OFFCURVE", +"540 825 CURVE SMOOTH", +"540 1067 OFFCURVE", +"672 1282 OFFCURVE", +"932 1282 CURVE SMOOTH", +"1054 1282 OFFCURVE", +"1173 1234 OFFCURVE", +"1239 1158 CURVE", +"1499 1421 LINE", +"1327 1582 OFFCURVE", +"1143 1680 OFFCURVE", +"898 1680 CURVE SMOOTH", +"413 1680 OFFCURVE", +"64 1297 OFFCURVE", +"64 824 CURVE SMOOTH", +"64 351 OFFCURVE", +"409 -32 OFFCURVE", +"888 -32 CURVE SMOOTH" +); +} +); +width = 1697; +}, +{ +anchors = ( +{ +name = bottom; +position = "{950, 0}"; +}, +{ +name = top; +position = "{950, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 187}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{680, 162}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1496, 184}"; +type = Stem; +}, +{ +place = "{151, 219}"; +type = Stem; +}, +{ +place = "{1510, 208}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1332 -32 OFFCURVE", +"1718 198 OFFCURVE", +"1718 689 CURVE SMOOTH", +"1718 842 LINE", +"955 842 LINE", +"955 680 LINE", +"1510 680 LINE", +"1510 633 LINE SMOOTH", +"1510 343 OFFCURVE", +"1243 155 OFFCURVE", +"972 155 CURVE SMOOTH", +"627 155 OFFCURVE", +"370 456 OFFCURVE", +"370 824 CURVE SMOOTH", +"370 1171 OFFCURVE", +"594 1496 OFFCURVE", +"986 1496 CURVE SMOOTH", +"1183 1496 OFFCURVE", +"1355 1413 OFFCURVE", +"1461 1288 CURVE", +"1590 1407 LINE", +"1442 1570 OFFCURVE", +"1241 1680 OFFCURVE", +"976 1680 CURVE SMOOTH", +"464 1680 OFFCURVE", +"151 1269 OFFCURVE", +"151 823 CURVE SMOOTH", +"151 350 OFFCURVE", +"501 -32 OFFCURVE", +"969 -32 CURVE SMOOTH" +); +} +); +width = 1857; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{1000, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{722, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1630, 50}"; +type = Stem; +}, +{ +place = "{205, 58}"; +type = Stem; +}, +{ +place = "{1715, 58}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1365 -32 OFFCURVE", +"1773 181 OFFCURVE", +"1773 684 CURVE SMOOTH", +"1773 774 LINE", +"1009 774 LINE", +"1009 722 LINE", +"1715 722 LINE", +"1715 646 LINE SMOOTH", +"1715 257 OFFCURVE", +"1359 18 OFFCURVE", +"1015 18 CURVE SMOOTH", +"593 18 OFFCURVE", +"263 378 OFFCURVE", +"263 824 CURVE SMOOTH", +"263 1236 OFFCURVE", +"545 1630 OFFCURVE", +"1019 1630 CURVE SMOOTH", +"1263 1630 OFFCURVE", +"1469 1526 OFFCURVE", +"1600 1369 CURVE", +"1647 1398 LINE", +"1514 1562 OFFCURVE", +"1302 1680 OFFCURVE", +"1024 1680 CURVE SMOOTH", +"496 1680 OFFCURVE", +"205 1252 OFFCURVE", +"205 823 CURVE SMOOTH", +"205 350 OFFCURVE", +"559 -32 OFFCURVE", +"1020 -32 CURVE SMOOTH" +); +} +); +width = 1958; +} +); +rightKerningGroup = _A1; +unicode = 0047; +}, +{ +color = 5; +glyphname = Gbreve; +lastChange = "2020-02-27 21:30:41 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{842, 0}"; +}, +{ +name = top; +position = "{842, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = G; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 366, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1697; +}, +{ +anchors = ( +{ +name = bottom; +position = "{950, 0}"; +}, +{ +name = top; +position = "{950, 2305}"; +} +); +components = ( +{ +alignment = -1; +name = G; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 527, 625}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1857; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{1000, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = G; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 610, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1958; +} +); +leftMetricsKey = G; +rightMetricsKey = G; +unicode = 011E; +}, +{ +color = 5; +glyphname = Gcommaaccent; +lastChange = "2020-02-27 21:30:41 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{842, -806}"; +}, +{ +name = top; +position = "{842, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = G; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 441, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1697; +}, +{ +anchors = ( +{ +name = bottom; +position = "{950, -584}"; +}, +{ +name = top; +position = "{950, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = G; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 584, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1857; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1000, -444}"; +}, +{ +name = top; +position = "{1000, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = G; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 654, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1958; +} +); +leftMetricsKey = G; +rightMetricsKey = G; +unicode = 0122; +}, +{ +color = 5; +glyphname = Gdotaccent; +lastChange = "2020-02-27 21:30:41 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{842, 0}"; +}, +{ +name = top; +position = "{842, 2350}"; +} +); +components = ( +{ +alignment = -1; +name = G; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 602, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1697; +}, +{ +anchors = ( +{ +name = bottom; +position = "{950, 0}"; +}, +{ +name = top; +position = "{949, 2224}"; +} +); +components = ( +{ +alignment = -1; +name = G; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 828, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1857; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{1000, 2146}"; +} +); +components = ( +{ +alignment = -1; +name = G; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 952, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1958; +} +); +leftMetricsKey = G; +rightMetricsKey = G; +unicode = 0120; +}, +{ +color = 5; +glyphname = H; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{848, 0}"; +}, +{ +name = center; +position = "{848, 825}"; +}, +{ +name = top; +position = "{848, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{634, 386}"; +type = Stem; +}, +{ +place = "{196, 440}"; +type = Stem; +}, +{ +place = "{1060, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"636 0 LINE", +"636 634 LINE", +"1060 634 LINE", +"1060 0 LINE", +"1500 0 LINE", +"1500 1650 LINE", +"1060 1650 LINE", +"1060 1020 LINE", +"636 1020 LINE", +"636 1650 LINE", +"196 1650 LINE", +"196 0 LINE" +); +} +); +width = 1696; +}, +{ +anchors = ( +{ +name = bottom; +position = "{867, 0}"; +}, +{ +name = center; +position = "{867, 825}"; +}, +{ +name = top; +position = "{867, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{737, 180}"; +type = Stem; +}, +{ +place = "{256, 204}"; +type = Stem; +}, +{ +place = "{1274, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"460 0 LINE", +"460 737 LINE", +"1274 737 LINE", +"1274 0 LINE", +"1478 0 LINE", +"1478 1650 LINE", +"1274 1650 LINE", +"1274 917 LINE", +"460 917 LINE", +"460 1650 LINE", +"256 1650 LINE", +"256 0 LINE" +); +} +); +width = 1734; +}, +{ +anchors = ( +{ +name = bottom; +position = "{879, 0}"; +}, +{ +name = center; +position = "{879, 825}"; +}, +{ +name = top; +position = "{879, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{802, 50}"; +type = Stem; +}, +{ +place = "{293, 56}"; +type = Stem; +}, +{ +place = "{1409, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"349 0 LINE", +"349 802 LINE", +"1409 802 LINE", +"1409 0 LINE", +"1465 0 LINE", +"1465 1650 LINE", +"1409 1650 LINE", +"1409 852 LINE", +"349 852 LINE", +"349 1650 LINE", +"293 1650 LINE", +"293 0 LINE" +); +} +); +width = 1758; +} +); +rightKerningGroup = _A1; +unicode = 0048; +}, +{ +color = 5; +glyphname = Hbar; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{580, 294}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1064, 294}"; +type = Stem; +}, +{ +place = "{196, 440}"; +type = Stem; +}, +{ +place = "{1060, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"636 0 LINE", +"636 580 LINE", +"1060 580 LINE", +"1060 0 LINE", +"1500 0 LINE", +"1500 1650 LINE", +"1060 1650 LINE", +"1060 874 LINE", +"636 874 LINE", +"636 1650 LINE", +"196 1650 LINE", +"196 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1630 1064 LINE", +"1630 1358 LINE", +"66 1358 LINE", +"66 1064 LINE" +); +} +); +width = 1696; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{698, 144}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1068, 144}"; +type = Stem; +}, +{ +place = "{256, 204}"; +type = Stem; +}, +{ +place = "{1274, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"460 0 LINE", +"460 698 LINE", +"1274 698 LINE", +"1274 0 LINE", +"1478 0 LINE", +"1478 1650 LINE", +"1274 1650 LINE", +"1274 842 LINE", +"460 842 LINE", +"460 1650 LINE", +"256 1650 LINE", +"256 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1611 1068 LINE", +"1611 1212 LINE", +"123 1212 LINE", +"123 1068 LINE" +); +} +); +width = 1733; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{772, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1070, 50}"; +type = Stem; +}, +{ +place = "{293, 56}"; +type = Stem; +}, +{ +place = "{1409, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"349 0 LINE", +"349 772 LINE", +"1409 772 LINE", +"1409 0 LINE", +"1465 0 LINE", +"1465 1650 LINE", +"1409 1650 LINE", +"1409 822 LINE", +"349 822 LINE", +"349 1650 LINE", +"293 1650 LINE", +"293 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1600 1070 LINE", +"1600 1120 LINE", +"158 1120 LINE", +"158 1070 LINE" +); +} +); +width = 1758; +} +); +unicode = 0126; +}, +{ +color = 5; +glyphname = I; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{416, 0}"; +}, +{ +name = ogonek; +position = "{636, 0}"; +}, +{ +name = top; +position = "{416, 1650}"; +} +); +hints = ( +{ +place = "{196, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"636 0 LINE", +"636 1650 LINE", +"196 1650 LINE", +"196 0 LINE" +); +} +); +width = 832; +}, +{ +anchors = ( +{ +name = bottom; +position = "{357, 0}"; +}, +{ +name = ogonek; +position = "{459, 0}"; +}, +{ +name = top; +position = "{357, 1650}"; +} +); +hints = ( +{ +place = "{255, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"459 0 LINE", +"459 1650 LINE", +"255 1650 LINE", +"255 0 LINE" +); +} +); +width = 714; +}, +{ +anchors = ( +{ +name = bottom; +position = "{321, 0}"; +}, +{ +name = ogonek; +position = "{349, 0}"; +}, +{ +name = top; +position = "{321, 1650}"; +} +); +hints = ( +{ +place = "{293, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"349 0 LINE", +"349 1650 LINE", +"293 1650 LINE", +"293 0 LINE" +); +} +); +width = 642; +} +); +leftKerningGroup = _I; +rightKerningGroup = _A1; +unicode = 0049; +}, +{ +color = 5; +glyphname = Iacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{472, 0}"; +}, +{ +name = ogonek; +position = "{692, 0}"; +}, +{ +name = top; +position = "{472, 2324}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 56, 0}"; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 230, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1012; +}, +{ +anchors = ( +{ +name = bottom; +position = "{427, 0}"; +}, +{ +name = ogonek; +position = "{529, 0}"; +}, +{ +name = top; +position = "{467, 2313}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 70, 0}"; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 322, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 971; +}, +{ +anchors = ( +{ +name = bottom; +position = "{414, 0}"; +}, +{ +name = ogonek; +position = "{442, 0}"; +}, +{ +name = top; +position = "{414, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 93, 0}"; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 380, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 947; +} +); +leftMetricsKey = I; +rightMetricsKey = I; +unicode = 00CD; +}, +{ +color = 5; +glyphname = Icircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{658, 0}"; +}, +{ +name = ogonek; +position = "{878, 0}"; +}, +{ +name = top; +position = "{658, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 242, 0}"; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 196, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1316; +}, +{ +anchors = ( +{ +name = bottom; +position = "{640, 0}"; +}, +{ +name = ogonek; +position = "{742, 0}"; +}, +{ +name = top; +position = "{640, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 283, 0}"; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 255, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1280; +}, +{ +anchors = ( +{ +name = bottom; +position = "{629, 0}"; +}, +{ +name = ogonek; +position = "{657, 0}"; +}, +{ +name = top; +position = "{629, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 308, 0}"; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 293, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1258; +} +); +leftMetricsKey = I; +rightMetricsKey = I; +unicode = 00CE; +}, +{ +color = 5; +glyphname = Idieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{644, 0}"; +}, +{ +name = ogonek; +position = "{864, 0}"; +}, +{ +name = top; +position = "{644, 2236}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 228, 0}"; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 196, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1288; +}, +{ +anchors = ( +{ +name = bottom; +position = "{602, 0}"; +}, +{ +name = ogonek; +position = "{704, 0}"; +}, +{ +name = top; +position = "{602, 2135}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 245, 0}"; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 255, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1204; +}, +{ +anchors = ( +{ +name = bottom; +position = "{577, 0}"; +}, +{ +name = ogonek; +position = "{605, 0}"; +}, +{ +name = top; +position = "{577, 2072}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 256, 0}"; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 293, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1154; +} +); +leftMetricsKey = I; +rightMetricsKey = I; +unicode = 00CF; +}, +{ +color = 5; +glyphname = Idotaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{436, 0}"; +}, +{ +name = ogonek; +position = "{656, 0}"; +}, +{ +name = top; +position = "{436, 2350}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 20, 0}"; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 196, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 873; +}, +{ +anchors = ( +{ +name = bottom; +position = "{377, 0}"; +}, +{ +name = ogonek; +position = "{479, 0}"; +}, +{ +name = top; +position = "{376, 2224}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 20, 0}"; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 255, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 754; +}, +{ +anchors = ( +{ +name = bottom; +position = "{341, 0}"; +}, +{ +name = ogonek; +position = "{369, 0}"; +}, +{ +name = top; +position = "{341, 2146}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 20, 0}"; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 293, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 682; +} +); +leftMetricsKey = I; +rightMetricsKey = I; +unicode = 0130; +}, +{ +color = 5; +glyphname = Igrave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{589, 0}"; +}, +{ +name = ogonek; +position = "{809, 0}"; +}, +{ +name = top; +position = "{505, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 173, 0}"; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 179, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1012; +}, +{ +anchors = ( +{ +name = bottom; +position = "{576, 0}"; +}, +{ +name = ogonek; +position = "{678, 0}"; +}, +{ +name = top; +position = "{493, 2292}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 219, 0}"; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 304, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 984; +}, +{ +anchors = ( +{ +name = bottom; +position = "{465, 0}"; +}, +{ +name = ogonek; +position = "{493, 0}"; +}, +{ +name = top; +position = "{465, 2283}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 144, 0}"; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 362, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 947; +} +); +leftMetricsKey = I; +rightMetricsKey = I; +unicode = 00CC; +}, +{ +color = 5; +glyphname = Imacron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{604, 0}"; +}, +{ +name = ogonek; +position = "{824, 0}"; +}, +{ +name = top; +position = "{604, 2154}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 188, 0}"; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 196, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1208; +}, +{ +anchors = ( +{ +name = bottom; +position = "{663, 0}"; +}, +{ +name = ogonek; +position = "{765, 0}"; +}, +{ +name = top; +position = "{663, 2083}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 306, 0}"; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 255, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1326; +}, +{ +anchors = ( +{ +name = bottom; +position = "{701, 0}"; +}, +{ +name = ogonek; +position = "{729, 0}"; +}, +{ +name = top; +position = "{701, 2038}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 380, 0}"; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 293, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1402; +} +); +leftMetricsKey = I; +rightMetricsKey = I; +unicode = 012A; +}, +{ +color = 5; +glyphname = Iogonek; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{416, 0}"; +}, +{ +name = ogonek; +position = "{636, 0}"; +}, +{ +name = top; +position = "{416, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = I; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 284, -7}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1006; +}, +{ +anchors = ( +{ +name = bottom; +position = "{434, 0}"; +}, +{ +name = ogonek; +position = "{536, 0}"; +}, +{ +name = top; +position = "{434, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 77, 0}"; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 255, -21}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1036; +}, +{ +anchors = ( +{ +name = bottom; +position = "{501, 0}"; +}, +{ +name = ogonek; +position = "{529, 0}"; +}, +{ +name = top; +position = "{501, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = I; +transform = "{1, 0, 0, 1, 180, 0}"; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 293, -29}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1112; +} +); +leftMetricsKey = I; +rightMetricsKey = I; +unicode = 012E; +}, +{ +color = 5; +glyphname = J; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{422, -32}"; +}, +{ +name = top; +position = "{699, 1650}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"722 -32 OFFCURVE", +"908 148 OFFCURVE", +"908 464 CURVE SMOOTH", +"908 1650 LINE", +"468 1650 LINE", +"468 574 LINE SMOOTH", +"468 462 OFFCURVE", +"417 390 OFFCURVE", +"338 390 CURVE SMOOTH", +"293 390 OFFCURVE", +"230 413 OFFCURVE", +"170 472 CURVE", +"-70 208 LINE", +"71 41 OFFCURVE", +"218 -32 OFFCURVE", +"415 -32 CURVE SMOOTH" +); +} +); +width = 1085; +}, +{ +anchors = ( +{ +name = bottom; +position = "{515, -12}"; +}, +{ +name = top; +position = "{668, 1650}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"817 -32 OFFCURVE", +"1001 151 OFFCURVE", +"1001 464 CURVE SMOOTH", +"1001 1650 LINE", +"797 1650 LINE", +"797 521 LINE SMOOTH", +"797 295 OFFCURVE", +"681 163 OFFCURVE", +"482 163 CURVE SMOOTH", +"380 163 OFFCURVE", +"288 201 OFFCURVE", +"207 285 CURVE", +"94 154 LINE", +"214 25 OFFCURVE", +"342 -32 OFFCURVE", +"508 -32 CURVE SMOOTH" +); +} +); +width = 1239; +}, +{ +anchors = ( +{ +name = bottom; +position = "{573, 0}"; +}, +{ +name = top; +position = "{648, 1650}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"876 -32 OFFCURVE", +"1059 153 OFFCURVE", +"1059 464 CURVE SMOOTH", +"1059 1650 LINE", +"1003 1650 LINE", +"1003 488 LINE SMOOTH", +"1003 190 OFFCURVE", +"847 20 OFFCURVE", +"573 20 CURVE SMOOTH", +"435 20 OFFCURVE", +"324 68 OFFCURVE", +"231 167 CURVE", +"197 120 LINE", +"304 15 OFFCURVE", +"419 -32 OFFCURVE", +"567 -32 CURVE SMOOTH" +); +} +); +width = 1335; +} +); +rightKerningGroup = _A1; +unicode = 004A; +}, +{ +color = 5; +glyphname = K; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{865, 0}"; +}, +{ +name = top; +position = "{865, 1650}"; +} +); +hints = ( +{ +place = "{196, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"636 0 LINE", +"636 662 LINE", +"1188 0 LINE", +"1794 0 LINE", +"1044 872 LINE", +"1684 1650 LINE", +"1150 1650 LINE", +"636 1008 LINE", +"636 1650 LINE", +"196 1650 LINE", +"196 0 LINE" +); +} +); +width = 1740; +}, +{ +anchors = ( +{ +name = bottom; +position = "{781, 0}"; +}, +{ +name = top; +position = "{782, 1650}"; +} +); +hints = ( +{ +place = "{256, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"460 0 LINE", +"460 733 LINE", +"1217 0 LINE", +"1501 0 LINE", +"641 840 LINE", +"1413 1650 LINE", +"1159 1650 LINE", +"460 915 LINE", +"460 1650 LINE", +"256 1650 LINE", +"256 0 LINE" +); +} +); +width = 1549; +}, +{ +anchors = ( +{ +name = bottom; +position = "{731, 0}"; +}, +{ +name = top; +position = "{731, 1650}"; +} +); +hints = ( +{ +place = "{293, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"349 0 LINE", +"349 778 LINE", +"1235 0 LINE", +"1318 0 LINE", +"389 820 LINE", +"1243 1650 LINE", +"1165 1650 LINE", +"349 856 LINE", +"349 1650 LINE", +"293 1650 LINE", +"293 0 LINE" +); +} +); +width = 1429; +} +); +rightKerningGroup = _A1; +unicode = 004B; +}, +{ +color = 5; +glyphname = Kcommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{865, -806}"; +}, +{ +name = top; +position = "{865, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = K; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 464, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1740; +}, +{ +anchors = ( +{ +name = bottom; +position = "{781, -584}"; +}, +{ +name = top; +position = "{782, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = K; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 415, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1549; +}, +{ +anchors = ( +{ +name = bottom; +position = "{731, -444}"; +}, +{ +name = top; +position = "{731, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = K; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 385, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1429; +} +); +unicode = 0136; +}, +{ +color = 5; +glyphname = L; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{722, 0}"; +}, +{ +name = center; +position = "{579, 825}"; +}, +{ +name = top; +position = "{591, 1650}"; +}, +{ +name = topright; +position = "{1137, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 386}"; +type = Stem; +}, +{ +place = "{196, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1168 0 LINE", +"1168 386 LINE", +"636 386 LINE", +"636 1650 LINE", +"196 1650 LINE", +"196 0 LINE" +); +} +); +width = 1157; +}, +{ +anchors = ( +{ +name = bottom; +position = "{661, 0}"; +}, +{ +name = center; +position = "{606, 825}"; +}, +{ +name = top; +position = "{602, 1650}"; +}, +{ +name = topright; +position = "{1191, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 180}"; +type = Stem; +}, +{ +place = "{256, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1122 0 LINE", +"1122 180 LINE", +"460 180 LINE", +"460 1650 LINE", +"256 1650 LINE", +"256 0 LINE" +); +} +); +width = 1211; +}, +{ +anchors = ( +{ +name = bottom; +position = "{623, 0}"; +}, +{ +name = center; +position = "{623, 825}"; +}, +{ +name = top; +position = "{543, 1650}"; +}, +{ +name = topright; +position = "{1225, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 50}"; +type = Stem; +}, +{ +place = "{293, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1093 0 LINE", +"1093 50 LINE", +"349 50 LINE", +"349 1650 LINE", +"293 1650 LINE", +"293 0 LINE" +); +} +); +width = 1245; +} +); +rightKerningGroup = _L; +unicode = 004C; +}, +{ +color = 5; +glyphname = Lacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{722, 0}"; +}, +{ +name = center; +position = "{579, 825}"; +}, +{ +name = top; +position = "{591, 2324}"; +}, +{ +name = topright; +position = "{1137, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = L; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 349, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1157; +}, +{ +anchors = ( +{ +name = bottom; +position = "{661, 0}"; +}, +{ +name = center; +position = "{606, 825}"; +}, +{ +name = top; +position = "{642, 2313}"; +}, +{ +name = topright; +position = "{1191, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = L; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 497, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1211; +}, +{ +anchors = ( +{ +name = bottom; +position = "{623, 0}"; +}, +{ +name = center; +position = "{623, 825}"; +}, +{ +name = top; +position = "{543, 2306}"; +}, +{ +name = topright; +position = "{1225, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = L; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 509, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1245; +} +); +leftMetricsKey = L; +rightMetricsKey = L; +unicode = 0139; +}, +{ +color = 5; +glyphname = Lcaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{789, 0}"; +}, +{ +name = center; +position = "{646, 825}"; +}, +{ +name = top; +position = "{658, 2306}"; +}, +{ +name = topright; +position = "{1204, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = L; +transform = "{1, 0, 0, 1, 67, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 196, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1224; +}, +{ +anchors = ( +{ +name = bottom; +position = "{700, 0}"; +}, +{ +name = center; +position = "{645, 825}"; +}, +{ +name = top; +position = "{641, 2306}"; +}, +{ +name = topright; +position = "{1230, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = L; +transform = "{1, 0, 0, 1, 39, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 256, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1250; +}, +{ +anchors = ( +{ +name = bottom; +position = "{709, 0}"; +}, +{ +name = center; +position = "{709, 825}"; +}, +{ +name = top; +position = "{629, 2306}"; +}, +{ +name = topright; +position = "{1311, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = L; +transform = "{1, 0, 0, 1, 86, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 293, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1331; +} +); +leftMetricsKey = L; +rightMetricsKey = L; +unicode = 013D; +}, +{ +color = 5; +glyphname = Lcommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{722, -806}"; +}, +{ +name = center; +position = "{579, 825}"; +}, +{ +name = top; +position = "{591, 1650}"; +}, +{ +name = topright; +position = "{1137, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = L; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 321, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1157; +}, +{ +anchors = ( +{ +name = bottom; +position = "{661, -584}"; +}, +{ +name = center; +position = "{606, 825}"; +}, +{ +name = top; +position = "{602, 1650}"; +}, +{ +name = topright; +position = "{1191, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = L; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 295.156, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1211; +}, +{ +anchors = ( +{ +name = bottom; +position = "{623, -444}"; +}, +{ +name = center; +position = "{623, 825}"; +}, +{ +name = top; +position = "{543, 1650}"; +}, +{ +name = topright; +position = "{1225, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = L; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 277, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1245; +} +); +leftMetricsKey = L; +rightMetricsKey = L; +unicode = 013B; +}, +{ +color = 5; +glyphname = Lslash; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = L; +transform = "{1, 0, 0, 1, 45, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"889 1104 LINE", +"889 1462 LINE", +"93 836 LINE", +"93 478 LINE" +); +} +); +width = 1202; +}, +{ +components = ( +{ +alignment = -1; +name = L; +transform = "{1, 0, 0, 1, 37, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"710 1013 LINE", +"710 1179 LINE", +"133 725 LINE", +"133 559 LINE" +); +} +); +width = 1247; +}, +{ +components = ( +{ +alignment = -1; +name = L; +transform = "{1, 0, 0, 1, 33, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"598 956 LINE", +"598 1002 LINE", +"158 656 LINE", +"158 610 LINE" +); +} +); +width = 1276; +} +); +rightKerningGroup = _L; +unicode = 0141; +}, +{ +color = 5; +glyphname = M; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{1061, 0}"; +}, +{ +name = top; +position = "{1061, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"571 0 LINE", +"619 866 LINE", +"931 0 LINE", +"1191 0 LINE", +"1503 866 LINE", +"1551 0 LINE", +"1991 0 LINE", +"1861 1650 LINE", +"1393 1650 LINE", +"1061 794 LINE", +"729 1650 LINE", +"261 1650 LINE", +"131 0 LINE" +); +} +); +width = 2122; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1039, 82}"; +}, +{ +name = top; +position = "{1039, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"370 0 LINE", +"528 1277 LINE", +"971 82 LINE", +"1108 82 LINE", +"1550 1277 LINE", +"1709 0 LINE", +"1913 0 LINE", +"1714 1650 LINE", +"1496 1650 LINE", +"1039 438 LINE", +"582 1650 LINE", +"364 1650 LINE", +"166 0 LINE" +); +} +); +width = 2079; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1027, 134}"; +}, +{ +name = top; +position = "{1027, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"245 0 LINE", +"473 1534 LINE", +"997 134 LINE", +"1057 134 LINE", +"1581 1534 LINE", +"1809 0 LINE", +"1865 0 LINE", +"1623 1650 LINE", +"1563 1650 LINE", +"1027 214 LINE", +"491 1650 LINE", +"431 1650 LINE", +"189 0 LINE" +); +} +); +width = 2054; +} +); +rightKerningGroup = _A1; +unicode = 004D; +}, +{ +color = 5; +glyphname = N; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{932, 0}"; +}, +{ +name = top; +position = "{932, 1650}"; +} +); +hints = ( +{ +place = "{196, 440}"; +type = Stem; +}, +{ +place = "{1228, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"636 0 LINE", +"636 920 LINE", +"1228 0 LINE", +"1668 0 LINE", +"1668 1650 LINE", +"1228 1650 LINE", +"1228 730 LINE", +"636 1650 LINE", +"196 1650 LINE", +"196 0 LINE" +); +} +); +width = 1864; +}, +{ +anchors = ( +{ +name = bottom; +position = "{876, 0}"; +}, +{ +name = top; +position = "{876, 1650}"; +} +); +hints = ( +{ +place = "{255, 204}"; +type = Stem; +}, +{ +place = "{1293, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"459 0 LINE", +"459 1305 LINE", +"1293 0 LINE", +"1497 0 LINE", +"1497 1650 LINE", +"1293 1650 LINE", +"1293 344 LINE", +"459 1650 LINE", +"255 1650 LINE", +"255 0 LINE" +); +} +); +width = 1752; +}, +{ +anchors = ( +{ +name = bottom; +position = "{841, 0}"; +}, +{ +name = top; +position = "{841, 1650}"; +} +); +hints = ( +{ +place = "{293, 56}"; +type = Stem; +}, +{ +place = "{1333, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"349 0 LINE", +"349 1546 LINE", +"1333 0 LINE", +"1389 0 LINE", +"1389 1650 LINE", +"1333 1650 LINE", +"1333 102 LINE", +"349 1650 LINE", +"293 1650 LINE", +"293 0 LINE" +); +} +); +width = 1682; +} +); +rightKerningGroup = _A1; +unicode = 004E; +}, +{ +color = 5; +glyphname = Nacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{932, 0}"; +}, +{ +name = top; +position = "{932, 2324}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 690, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1864; +}, +{ +anchors = ( +{ +name = bottom; +position = "{876, 0}"; +}, +{ +name = top; +position = "{916, 2313}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 771, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1752; +}, +{ +anchors = ( +{ +name = bottom; +position = "{841, 0}"; +}, +{ +name = top; +position = "{841, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 807, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1682; +} +); +leftMetricsKey = N; +rightMetricsKey = N; +unicode = 0143; +}, +{ +color = 5; +glyphname = Ncaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{932, 0}"; +}, +{ +name = top; +position = "{932, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 470, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1864; +}, +{ +anchors = ( +{ +name = bottom; +position = "{876, 0}"; +}, +{ +name = top; +position = "{876, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 491, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1752; +}, +{ +anchors = ( +{ +name = bottom; +position = "{841, 0}"; +}, +{ +name = top; +position = "{841, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 505, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1682; +} +); +leftMetricsKey = N; +rightMetricsKey = N; +unicode = 0147; +}, +{ +color = 5; +glyphname = Ncommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{932, -806}"; +}, +{ +name = top; +position = "{932, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 531, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1864; +}, +{ +anchors = ( +{ +name = bottom; +position = "{876, -584}"; +}, +{ +name = top; +position = "{876, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 510, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1752; +}, +{ +anchors = ( +{ +name = bottom; +position = "{841, -444}"; +}, +{ +name = top; +position = "{841, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 495, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1682; +} +); +leftMetricsKey = N; +rightMetricsKey = N; +unicode = 0145; +}, +{ +color = 5; +glyphname = Eng; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"196 1650 LINE", +"196 0 LINE", +"636 0 LINE", +"636 920 LINE", +"1228 0 LINE", +"1228 -1 LINE", +"1228 -57 OFFCURVE", +"1177 -129 OFFCURVE", +"1098 -129 CURVE SMOOTH", +"1053 -129 OFFCURVE", +"990 -106 OFFCURVE", +"930 -47 CURVE", +"690 -311 LINE", +"831 -478 OFFCURVE", +"978 -551 OFFCURVE", +"1175 -551 CURVE SMOOTH", +"1482 -551 OFFCURVE", +"1668 -371 OFFCURVE", +"1668 -55 CURVE SMOOTH", +"1668 1650 LINE", +"1228 1650 LINE", +"1228 730 LINE", +"636 1650 LINE" +); +} +); +width = 1845; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"255 1650 LINE", +"255 0 LINE", +"459 0 LINE", +"459 1305 LINE", +"1292 0 LINE", +"1292 -19 LINE SMOOTH", +"1292 -220 OFFCURVE", +"1180 -356 OFFCURVE", +"977 -356 CURVE SMOOTH", +"881 -356 OFFCURVE", +"786 -322 OFFCURVE", +"702 -234 CURVE", +"589 -365 LINE", +"706 -495 OFFCURVE", +"832 -551 OFFCURVE", +"1003 -551 CURVE SMOOTH", +"1311 -551 OFFCURVE", +"1496 -368 OFFCURVE", +"1496 -55 CURVE SMOOTH", +"1496 1650 LINE", +"1292 1650 LINE", +"1292 344 LINE", +"459 1650 LINE" +); +} +); +width = 1734; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"293 1650 LINE", +"293 0 LINE", +"349 0 LINE", +"349 1546 LINE", +"1333 0 LINE", +"1333 -31 LINE SMOOTH", +"1333 -322 OFFCURVE", +"1184 -499 OFFCURVE", +"903 -499 CURVE SMOOTH", +"774 -499 OFFCURVE", +"660 -458 OFFCURVE", +"561 -352 CURVE", +"527 -399 LINE", +"629 -505 OFFCURVE", +"742 -551 OFFCURVE", +"897 -551 CURVE SMOOTH", +"1206 -551 OFFCURVE", +"1389 -366 OFFCURVE", +"1389 -55 CURVE SMOOTH", +"1389 1650 LINE", +"1333 1650 LINE", +"1333 102 LINE", +"349 1650 LINE" +); +} +); +width = 1665; +} +); +leftMetricsKey = N; +rightMetricsKey = J; +unicode = 014A; +}, +{ +color = 5; +glyphname = Ntilde; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{932, 0}"; +}, +{ +name = top; +position = "{932, 2208}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 371, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1864; +}, +{ +anchors = ( +{ +name = bottom; +position = "{876, 0}"; +}, +{ +name = top; +position = "{876, 2175}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 366, 625}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1752; +}, +{ +anchors = ( +{ +name = bottom; +position = "{841, 0}"; +}, +{ +name = top; +position = "{841, 2156}"; +} +); +components = ( +{ +alignment = -1; +name = N; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 363, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1682; +} +); +leftMetricsKey = N; +rightMetricsKey = N; +unicode = 00D1; +}, +{ +color = 5; +glyphname = O; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{894, 0}"; +}, +{ +name = center; +position = "{894, 824}"; +}, +{ +name = ogonek; +position = "{1006, 0}"; +}, +{ +name = top; +position = "{894, 1650}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{1768, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 424}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1256, 424}"; +type = Stem; +}, +{ +place = "{62, 474}"; +type = Stem; +}, +{ +place = "{1252, 474}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1355 -32 OFFCURVE", +"1726 349 OFFCURVE", +"1726 824 CURVE SMOOTH", +"1726 1299 OFFCURVE", +"1355 1680 OFFCURVE", +"894 1680 CURVE SMOOTH", +"433 1680 OFFCURVE", +"62 1299 OFFCURVE", +"62 824 CURVE SMOOTH", +"62 349 OFFCURVE", +"433 -32 OFFCURVE", +"894 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"677 392 OFFCURVE", +"536 563 OFFCURVE", +"536 824 CURVE SMOOTH", +"536 1085 OFFCURVE", +"677 1256 OFFCURVE", +"894 1256 CURVE SMOOTH", +"1111 1256 OFFCURVE", +"1252 1085 OFFCURVE", +"1252 824 CURVE SMOOTH", +"1252 563 OFFCURVE", +"1111 392 OFFCURVE", +"894 392 CURVE SMOOTH" +); +} +); +width = 1788; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = center; +position = "{980, 824}"; +}, +{ +name = ogonek; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{980, 1650}"; +}, +{ +name = topleft; +position = "{19, 1650}"; +}, +{ +name = topright; +position = "{1940, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 197}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1483, 197}"; +type = Stem; +}, +{ +place = "{148, 220}"; +type = Stem; +}, +{ +place = "{1592, 220}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1442 -32 OFFCURVE", +"1812 348 OFFCURVE", +"1812 824 CURVE SMOOTH", +"1812 1300 OFFCURVE", +"1442 1680 OFFCURVE", +"980 1680 CURVE SMOOTH", +"518 1680 OFFCURVE", +"148 1300 OFFCURVE", +"148 824 CURVE SMOOTH", +"148 348 OFFCURVE", +"518 -32 OFFCURVE", +"980 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"633 165 OFFCURVE", +"368 451 OFFCURVE", +"368 824 CURVE SMOOTH", +"368 1197 OFFCURVE", +"633 1483 OFFCURVE", +"980 1483 CURVE SMOOTH", +"1327 1483 OFFCURVE", +"1592 1197 OFFCURVE", +"1592 824 CURVE SMOOTH", +"1592 451 OFFCURVE", +"1327 165 OFFCURVE", +"980 165 CURVE SMOOTH" +); +} +); +width = 1960; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1035, 0}"; +}, +{ +name = center; +position = "{1035, 825}"; +}, +{ +name = ogonek; +position = "{1067, 0}"; +}, +{ +name = top; +position = "{1035, 1650}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{2050, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 54}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1626, 54}"; +type = Stem; +}, +{ +place = "{203, 60}"; +type = Stem; +}, +{ +place = "{1807, 60}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1497 -32 OFFCURVE", +"1867 348 OFFCURVE", +"1867 824 CURVE SMOOTH", +"1867 1300 OFFCURVE", +"1497 1680 OFFCURVE", +"1035 1680 CURVE SMOOTH", +"573 1680 OFFCURVE", +"203 1300 OFFCURVE", +"203 824 CURVE SMOOTH", +"203 348 OFFCURVE", +"573 -32 OFFCURVE", +"1035 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"607 22 OFFCURVE", +"263 380 OFFCURVE", +"263 824 CURVE SMOOTH", +"263 1268 OFFCURVE", +"607 1626 OFFCURVE", +"1035 1626 CURVE SMOOTH", +"1463 1626 OFFCURVE", +"1807 1268 OFFCURVE", +"1807 824 CURVE SMOOTH", +"1807 380 OFFCURVE", +"1463 22 OFFCURVE", +"1035 22 CURVE SMOOTH" +); +} +); +width = 2070; +} +); +leftKerningGroup = _O; +rightKerningGroup = _O; +unicode = 004F; +}, +{ +color = 5; +glyphname = Oacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{894, 0}"; +}, +{ +name = center; +position = "{894, 824}"; +}, +{ +name = ogonek; +position = "{1006, 0}"; +}, +{ +name = top; +position = "{894, 2324}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{1768, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 652, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1788; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = center; +position = "{980, 824}"; +}, +{ +name = ogonek; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{1020, 2313}"; +}, +{ +name = topleft; +position = "{19, 1650}"; +}, +{ +name = topright; +position = "{1940, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 875, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1960; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1035, 0}"; +}, +{ +name = center; +position = "{1035, 825}"; +}, +{ +name = ogonek; +position = "{1067, 0}"; +}, +{ +name = top; +position = "{1035, 2306}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{2050, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 1001, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2070; +} +); +leftMetricsKey = O; +rightMetricsKey = O; +unicode = 00D3; +}, +{ +color = 5; +glyphname = Ocircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{894, 0}"; +}, +{ +name = center; +position = "{894, 824}"; +}, +{ +name = ogonek; +position = "{1006, 0}"; +}, +{ +name = top; +position = "{894, 2306}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{1768, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 432, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1788; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = center; +position = "{980, 824}"; +}, +{ +name = ogonek; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{980, 2306}"; +}, +{ +name = topleft; +position = "{19, 1650}"; +}, +{ +name = topright; +position = "{1940, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 595, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1960; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1035, 0}"; +}, +{ +name = center; +position = "{1035, 825}"; +}, +{ +name = ogonek; +position = "{1067, 0}"; +}, +{ +name = top; +position = "{1035, 2306}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{2050, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 699, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2070; +} +); +leftMetricsKey = O; +rightMetricsKey = O; +unicode = 00D4; +}, +{ +color = 5; +glyphname = Odieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{894, 0}"; +}, +{ +name = center; +position = "{894, 824}"; +}, +{ +name = ogonek; +position = "{1006, 0}"; +}, +{ +name = top; +position = "{894, 2236}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{1768, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 446, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1788; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = center; +position = "{980, 824}"; +}, +{ +name = ogonek; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{980, 2135}"; +}, +{ +name = topleft; +position = "{19, 1650}"; +}, +{ +name = topright; +position = "{1940, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 633, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1960; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1035, 0}"; +}, +{ +name = center; +position = "{1035, 825}"; +}, +{ +name = ogonek; +position = "{1067, 0}"; +}, +{ +name = top; +position = "{1035, 2072}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{2050, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 751, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2070; +} +); +leftMetricsKey = O; +rightMetricsKey = O; +unicode = 00D6; +}, +{ +color = 5; +glyphname = Ograve; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{894, 0}"; +}, +{ +name = center; +position = "{894, 824}"; +}, +{ +name = ogonek; +position = "{1006, 0}"; +}, +{ +name = top; +position = "{810, 2306}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{1768, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 484, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1788; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = center; +position = "{980, 824}"; +}, +{ +name = ogonek; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{897, 2292}"; +}, +{ +name = topleft; +position = "{19, 1650}"; +}, +{ +name = topright; +position = "{1940, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 708, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1960; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1035, 0}"; +}, +{ +name = center; +position = "{1035, 825}"; +}, +{ +name = ogonek; +position = "{1067, 0}"; +}, +{ +name = top; +position = "{1035, 2283}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{2050, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 932, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2070; +} +); +leftMetricsKey = O; +rightMetricsKey = O; +unicode = 00D2; +}, +{ +color = 5; +glyphname = Ohungarumlaut; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{894, 0}"; +}, +{ +name = center; +position = "{894, 824}"; +}, +{ +name = ogonek; +position = "{1006, 0}"; +}, +{ +name = top; +position = "{894, 2306}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{1768, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 372, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1788; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = center; +position = "{980, 824}"; +}, +{ +name = ogonek; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{980, 2305}"; +}, +{ +name = topleft; +position = "{19, 1650}"; +}, +{ +name = topright; +position = "{1940, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 655, 625}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1960; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1035, 0}"; +}, +{ +name = center; +position = "{1035, 825}"; +}, +{ +name = ogonek; +position = "{1067, 0}"; +}, +{ +name = top; +position = "{1035, 2306}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{2050, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 833, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2070; +} +); +leftMetricsKey = O; +rightMetricsKey = O; +unicode = 0150; +}, +{ +color = 5; +glyphname = Omacron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{894, 0}"; +}, +{ +name = center; +position = "{894, 824}"; +}, +{ +name = ogonek; +position = "{1006, 0}"; +}, +{ +name = top; +position = "{894, 2154}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{1768, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 486, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1788; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = center; +position = "{980, 824}"; +}, +{ +name = ogonek; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{980, 2083}"; +}, +{ +name = topleft; +position = "{19, 1650}"; +}, +{ +name = topright; +position = "{1940, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 572, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1960; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1035, 0}"; +}, +{ +name = center; +position = "{1035, 825}"; +}, +{ +name = ogonek; +position = "{1067, 0}"; +}, +{ +name = top; +position = "{1035, 2038}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{2050, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 627, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2070; +} +); +leftMetricsKey = O; +rightMetricsKey = O; +unicode = 014C; +}, +{ +color = 5; +glyphname = Oslash; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 424}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1256, 424}"; +type = Stem; +}, +{ +place = "{62, 474}"; +type = Stem; +}, +{ +place = "{1252, 474}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1355 -32 OFFCURVE", +"1726 349 OFFCURVE", +"1726 824 CURVE SMOOTH", +"1726 1299 OFFCURVE", +"1355 1680 OFFCURVE", +"894 1680 CURVE SMOOTH", +"433 1680 OFFCURVE", +"62 1299 OFFCURVE", +"62 824 CURVE SMOOTH", +"62 349 OFFCURVE", +"433 -32 OFFCURVE", +"894 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"677 392 OFFCURVE", +"536 563 OFFCURVE", +"536 824 CURVE SMOOTH", +"536 1085 OFFCURVE", +"677 1256 OFFCURVE", +"894 1256 CURVE SMOOTH", +"1111 1256 OFFCURVE", +"1252 1085 OFFCURVE", +"1252 824 CURVE SMOOTH", +"1252 563 OFFCURVE", +"1111 392 OFFCURVE", +"894 392 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1658 1518 LINE", +"1398 1718 LINE", +"144 155 LINE", +"404 -35 LINE" +); +} +); +width = 1788; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 197}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1483, 197}"; +type = Stem; +}, +{ +place = "{148, 220}"; +type = Stem; +}, +{ +place = "{1592, 220}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1442 -32 OFFCURVE", +"1812 348 OFFCURVE", +"1812 824 CURVE SMOOTH", +"1812 1300 OFFCURVE", +"1442 1680 OFFCURVE", +"980 1680 CURVE SMOOTH", +"518 1680 OFFCURVE", +"148 1300 OFFCURVE", +"148 824 CURVE SMOOTH", +"148 348 OFFCURVE", +"518 -32 OFFCURVE", +"980 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"633 165 OFFCURVE", +"368 451 OFFCURVE", +"368 824 CURVE SMOOTH", +"368 1197 OFFCURVE", +"633 1483 OFFCURVE", +"980 1483 CURVE SMOOTH", +"1327 1483 OFFCURVE", +"1592 1197 OFFCURVE", +"1592 824 CURVE SMOOTH", +"1592 451 OFFCURVE", +"1327 165 OFFCURVE", +"980 165 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1674 1575 LINE", +"1546 1673 LINE", +"297 86 LINE", +"424 -9 LINE" +); +} +); +width = 1960; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 54}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1626, 54}"; +type = Stem; +}, +{ +place = "{203, 60}"; +type = Stem; +}, +{ +place = "{1807, 60}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1497 -32 OFFCURVE", +"1867 348 OFFCURVE", +"1867 824 CURVE SMOOTH", +"1867 1300 OFFCURVE", +"1497 1680 OFFCURVE", +"1035 1680 CURVE SMOOTH", +"573 1680 OFFCURVE", +"203 1300 OFFCURVE", +"203 824 CURVE SMOOTH", +"203 348 OFFCURVE", +"573 -32 OFFCURVE", +"1035 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"607 22 OFFCURVE", +"263 380 OFFCURVE", +"263 824 CURVE SMOOTH", +"263 1268 OFFCURVE", +"607 1626 OFFCURVE", +"1035 1626 CURVE SMOOTH", +"1463 1626 OFFCURVE", +"1807 1268 OFFCURVE", +"1807 824 CURVE SMOOTH", +"1807 380 OFFCURVE", +"1463 22 OFFCURVE", +"1035 22 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1685 1610 LINE", +"1639 1644 LINE", +"393 42 LINE", +"437 8 LINE" +); +} +); +width = 2070; +} +); +leftKerningGroup = _O; +leftMetricsKey = O; +rightKerningGroup = _O; +rightMetricsKey = O; +unicode = 00D8; +}, +{ +color = 5; +glyphname = Otilde; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{894, 0}"; +}, +{ +name = center; +position = "{894, 824}"; +}, +{ +name = ogonek; +position = "{1006, 0}"; +}, +{ +name = top; +position = "{894, 2208}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{1768, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 333, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1788; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = center; +position = "{980, 824}"; +}, +{ +name = ogonek; +position = "{1000, 0}"; +}, +{ +name = top; +position = "{980, 2175}"; +}, +{ +name = topleft; +position = "{19, 1650}"; +}, +{ +name = topright; +position = "{1940, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 470, 625}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1960; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1035, 0}"; +}, +{ +name = center; +position = "{1035, 825}"; +}, +{ +name = ogonek; +position = "{1067, 0}"; +}, +{ +name = top; +position = "{1035, 2156}"; +}, +{ +name = topleft; +position = "{20, 1650}"; +}, +{ +name = topright; +position = "{2050, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = O; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 557, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2070; +} +); +leftMetricsKey = O; +rightMetricsKey = O; +unicode = 00D5; +}, +{ +color = 5; +glyphname = OE; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1258, 392}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 392}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{634, 386}"; +type = Stem; +}, +{ +place = "{1018, 440}"; +type = Stem; +}, +{ +place = "{62, 474}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1994 0 LINE", +"1994 386 LINE", +"1458 386 LINE", +"1458 634 LINE", +"1970 634 LINE", +"1970 1020 LINE", +"1458 1020 LINE", +"1458 1264 LINE", +"1994 1264 LINE", +"1994 1650 LINE", +"1104 1650 LINE SMOOTH", +"401 1650 OFFCURVE", +"62 1312 OFFCURVE", +"62 825 CURVE SMOOTH", +"62 338 OFFCURVE", +"401 0 OFFCURVE", +"1104 0 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1018 392 LINE", +"715 392 OFFCURVE", +"536 550 OFFCURVE", +"536 825 CURVE SMOOTH", +"536 1100 OFFCURVE", +"715 1258 OFFCURVE", +"1018 1258 CURVE" +); +} +); +width = 2162; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1467, 183}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 183}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{737, 180}"; +type = Stem; +}, +{ +place = "{1024, 204}"; +type = Stem; +}, +{ +place = "{148, 220}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1882 0 LINE", +"1882 180 LINE", +"1228 180 LINE", +"1228 737 LINE", +"1858 737 LINE", +"1858 917 LINE", +"1228 917 LINE", +"1228 1471 LINE", +"1882 1471 LINE", +"1882 1650 LINE", +"1058 1650 LINE SMOOTH", +"503 1650 OFFCURVE", +"148 1299 OFFCURVE", +"148 825 CURVE SMOOTH", +"148 351 OFFCURVE", +"503 0 OFFCURVE", +"1058 0 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1024 183 LINE", +"635 183 OFFCURVE", +"368 451 OFFCURVE", +"368 825 CURVE SMOOTH", +"368 1199 OFFCURVE", +"645 1467 OFFCURVE", +"1024 1467 CURVE" +); +} +); +width = 2055; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1598, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{802, 50}"; +type = Stem; +}, +{ +place = "{1029, 56}"; +type = Stem; +}, +{ +place = "{203, 60}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1813 0 LINE", +"1813 50 LINE", +"1085 50 LINE", +"1085 802 LINE", +"1789 802 LINE", +"1789 852 LINE", +"1085 852 LINE", +"1085 1600 LINE", +"1813 1600 LINE", +"1813 1650 LINE", +"1029 1650 LINE SMOOTH", +"557 1650 OFFCURVE", +"203 1291 OFFCURVE", +"203 825 CURVE SMOOTH", +"203 359 OFFCURVE", +"557 0 OFFCURVE", +"1029 0 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1029 52 LINE", +"592 52 OFFCURVE", +"263 388 OFFCURVE", +"263 825 CURVE SMOOTH", +"263 1262 OFFCURVE", +"592 1598 OFFCURVE", +"1029 1598 CURVE" +); +} +); +width = 1990; +} +); +leftMetricsKey = O; +rightKerningGroup = _A1; +rightMetricsKey = E; +unicode = 0152; +}, +{ +color = 5; +glyphname = P; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{588, 350}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1300, 350}"; +type = Stem; +}, +{ +place = "{958, 464}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{196, 440}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"636 0 LINE", +"636 588 LINE", +"848 588 LINE SMOOTH", +"1168 588 OFFCURVE", +"1422 764 OFFCURVE", +"1422 1119 CURVE SMOOTH", +"1422 1474 OFFCURVE", +"1168 1650 OFFCURVE", +"848 1650 CURVE SMOOTH", +"196 1650 LINE", +"196 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"636 1300 LINE", +"704 1300 LINE SMOOTH", +"822 1300 OFFCURVE", +"958 1275 OFFCURVE", +"958 1119 CURVE SMOOTH", +"958 965 OFFCURVE", +"822 938 OFFCURVE", +"704 938 CURVE SMOOTH", +"636 938 LINE" +); +} +); +width = 1448; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{678, 164}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1486, 164}"; +type = Stem; +}, +{ +place = "{1048, 211}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{256, 204}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"460 0 LINE", +"460 678 LINE", +"724 678 LINE SMOOTH", +"1047 678 OFFCURVE", +"1259 862 OFFCURVE", +"1259 1164 CURVE SMOOTH", +"1259 1466 OFFCURVE", +"1047 1650 OFFCURVE", +"724 1650 CURVE SMOOTH", +"256 1650 LINE", +"256 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"460 1486 LINE", +"669 1486 LINE SMOOTH", +"893 1486 OFFCURVE", +"1048 1371 OFFCURVE", +"1048 1164 CURVE SMOOTH", +"1048 957 OFFCURVE", +"893 842 OFFCURVE", +"669 842 CURVE SMOOTH", +"460 842 LINE" +); +} +); +width = 1383; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{736, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1600, 50}"; +type = Stem; +}, +{ +place = "{1105, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{293, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"349 0 LINE", +"349 736 LINE", +"647 736 LINE SMOOTH", +"971 736 OFFCURVE", +"1157 924 OFFCURVE", +"1157 1193 CURVE SMOOTH", +"1157 1462 OFFCURVE", +"971 1650 OFFCURVE", +"647 1650 CURVE SMOOTH", +"293 1650 LINE", +"293 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"349 1600 LINE", +"647 1600 LINE SMOOTH", +"937 1600 OFFCURVE", +"1105 1432 OFFCURVE", +"1105 1193 CURVE SMOOTH", +"1105 954 OFFCURVE", +"937 786 OFFCURVE", +"647 786 CURVE SMOOTH", +"349 786 LINE" +); +} +); +width = 1343; +} +); +rightKerningGroup = _A1; +unicode = 0050; +}, +{ +color = 5; +glyphname = Thorn; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{724, 0}"; +}, +{ +name = top; +position = "{724, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{296, 350}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1008, 350}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{196, 440}"; +type = Stem; +}, +{ +place = "{958, 464}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"636 0 LINE", +"636 296 LINE", +"848 296 LINE SMOOTH", +"1168 296 OFFCURVE", +"1422 472 OFFCURVE", +"1422 827 CURVE SMOOTH", +"1422 1182 OFFCURVE", +"1168 1358 OFFCURVE", +"848 1358 CURVE SMOOTH", +"636 1358 LINE", +"636 1650 LINE", +"196 1650 LINE", +"196 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"636 1008 LINE", +"704 1008 LINE SMOOTH", +"822 1008 OFFCURVE", +"958 983 OFFCURVE", +"958 827 CURVE SMOOTH", +"958 673 OFFCURVE", +"822 646 OFFCURVE", +"704 646 CURVE SMOOTH", +"636 646 LINE" +); +} +); +width = 1448; +}, +{ +anchors = ( +{ +name = bottom; +position = "{692, 0}"; +}, +{ +name = top; +position = "{692, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{333, 164}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1141, 164}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{256, 204}"; +type = Stem; +}, +{ +place = "{1048, 211}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"460 0 LINE", +"460 333 LINE", +"724 333 LINE SMOOTH", +"1047 333 OFFCURVE", +"1259 517 OFFCURVE", +"1259 819 CURVE SMOOTH", +"1259 1121 OFFCURVE", +"1047 1305 OFFCURVE", +"724 1305 CURVE SMOOTH", +"460 1305 LINE", +"460 1650 LINE", +"256 1650 LINE", +"256 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"460 1141 LINE", +"669 1141 LINE SMOOTH", +"893 1141 OFFCURVE", +"1048 1026 OFFCURVE", +"1048 819 CURVE SMOOTH", +"1048 612 OFFCURVE", +"893 497 OFFCURVE", +"669 497 CURVE SMOOTH", +"460 497 LINE" +); +} +); +width = 1383; +}, +{ +anchors = ( +{ +name = bottom; +position = "{672, 0}"; +}, +{ +name = top; +position = "{672, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{358, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1222, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{293, 56}"; +type = Stem; +}, +{ +place = "{1105, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"349 0 LINE", +"349 358 LINE", +"647 358 LINE SMOOTH", +"971 358 OFFCURVE", +"1157 546 OFFCURVE", +"1157 815 CURVE SMOOTH", +"1157 1084 OFFCURVE", +"971 1272 OFFCURVE", +"647 1272 CURVE SMOOTH", +"349 1272 LINE", +"349 1650 LINE", +"293 1650 LINE", +"293 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"349 1222 LINE", +"647 1222 LINE SMOOTH", +"937 1222 OFFCURVE", +"1105 1054 OFFCURVE", +"1105 815 CURVE SMOOTH", +"1105 576 OFFCURVE", +"937 408 OFFCURVE", +"647 408 CURVE SMOOTH", +"349 408 LINE" +); +} +); +width = 1343; +} +); +leftMetricsKey = P; +rightKerningGroup = _A1; +rightMetricsKey = P; +unicode = 00DE; +}, +{ +color = 5; +glyphname = Q; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = O; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"768 614 LINE", +"957 339 OFFCURVE", +"1304 72 OFFCURVE", +"1636 -54 CURVE", +"1830 338 LINE", +"1458 434 OFFCURVE", +"1189 585 OFFCURVE", +"993 807 CURVE" +); +} +); +width = 1871; +}, +{ +components = ( +{ +alignment = -1; +name = O; +transform = "{1, 0, 0, 1, -25, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"975 513 LINE", +"1173 280 OFFCURVE", +"1473 59 OFFCURVE", +"1755 -54 CURVE", +"1846 129 LINE", +"1560 223 OFFCURVE", +"1297 387 OFFCURVE", +"1084 599 CURVE" +); +} +); +width = 1961; +}, +{ +components = ( +{ +alignment = -1; +name = O; +transform = "{1, 0, 0, 1, -41, -1}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1104 450 LINE", +"1300 242 OFFCURVE", +"1564 52 OFFCURVE", +"1830 -54 CURVE", +"1849 0 LINE", +"1595 92 OFFCURVE", +"1324 286 OFFCURVE", +"1134 476 CURVE" +); +} +); +width = 2018; +} +); +rightKerningGroup = _A1; +unicode = 0051; +}, +{ +color = 5; +glyphname = R; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{792, 0}"; +}, +{ +name = top; +position = "{792, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1300, 350}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{572, 385}"; +type = Stem; +}, +{ +place = "{196, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{958, 464}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"636 1300 LINE", +"704 1300 LINE SMOOTH", +"822 1300 OFFCURVE", +"958 1282 OFFCURVE", +"958 1129 CURVE SMOOTH", +"958 978 OFFCURVE", +"822 957 OFFCURVE", +"704 957 CURVE SMOOTH", +"636 957 LINE" +); +}, +{ +closed = 1; +nodes = ( +"636 0 LINE", +"636 572 LINE", +"637 572 LINE", +"1080 0 LINE", +"1638 0 LINE", +"1088 645 LINE", +"1286 713 OFFCURVE", +"1422 874 OFFCURVE", +"1422 1129 CURVE SMOOTH", +"1422 1477 OFFCURVE", +"1168 1650 OFFCURVE", +"848 1650 CURVE SMOOTH", +"196 1650 LINE", +"196 0 LINE" +); +} +); +width = 1584; +}, +{ +anchors = ( +{ +name = bottom; +position = "{716, 0}"; +}, +{ +name = top; +position = "{716, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1486, 164}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{673, 173}"; +type = Stem; +}, +{ +place = "{256, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{1048, 211}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"460 1486 LINE", +"669 1486 LINE SMOOTH", +"907 1486 OFFCURVE", +"1048 1365 OFFCURVE", +"1048 1166 CURVE SMOOTH", +"1048 967 OFFCURVE", +"907 846 OFFCURVE", +"669 846 CURVE SMOOTH", +"460 846 LINE" +); +}, +{ +closed = 1; +nodes = ( +"460 0 LINE", +"460 673 LINE", +"614 673 LINE", +"1125 0 LINE", +"1384 0 LINE", +"840 691 LINE", +"1100 730 OFFCURVE", +"1259 904 OFFCURVE", +"1259 1166 CURVE SMOOTH", +"1259 1465 OFFCURVE", +"1052 1650 OFFCURVE", +"724 1650 CURVE SMOOTH", +"256 1650 LINE", +"256 0 LINE" +); +} +); +width = 1432; +}, +{ +anchors = ( +{ +name = bottom; +position = "{668, 0}"; +}, +{ +name = top; +position = "{668, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1600, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{751, 50}"; +type = Stem; +}, +{ +place = "{293, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{1105, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"349 1600 LINE", +"647 1600 LINE SMOOTH", +"937 1600 OFFCURVE", +"1105 1436 OFFCURVE", +"1105 1201 CURVE SMOOTH", +"1105 966 OFFCURVE", +"937 801 OFFCURVE", +"647 801 CURVE SMOOTH", +"349 801 LINE" +); +}, +{ +closed = 1; +nodes = ( +"349 0 LINE", +"349 751 LINE", +"588 751 LINE", +"1153 0 LINE", +"1225 0 LINE", +"660 751 LINE", +"935 751 OFFCURVE", +"1157 909 OFFCURVE", +"1157 1201 CURVE SMOOTH", +"1157 1465 OFFCURVE", +"971 1650 OFFCURVE", +"647 1650 CURVE SMOOTH", +"293 1650 LINE", +"293 0 LINE" +); +} +); +width = 1336; +} +); +rightKerningGroup = _R; +unicode = 0052; +}, +{ +color = 5; +glyphname = Racute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{792, 0}"; +}, +{ +name = top; +position = "{792, 2324}"; +} +); +components = ( +{ +alignment = -1; +name = R; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 550, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1584; +}, +{ +anchors = ( +{ +name = bottom; +position = "{716, 0}"; +}, +{ +name = top; +position = "{756, 2313}"; +} +); +components = ( +{ +alignment = -1; +name = R; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 610.792, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1432; +}, +{ +anchors = ( +{ +name = bottom; +position = "{668, 0}"; +}, +{ +name = top; +position = "{668, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = R; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 634, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1336; +} +); +leftMetricsKey = R; +rightMetricsKey = R; +unicode = 0154; +}, +{ +color = 5; +glyphname = Rcaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{792, 0}"; +}, +{ +name = top; +position = "{792, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = R; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 330, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1584; +}, +{ +anchors = ( +{ +name = bottom; +position = "{716, 0}"; +}, +{ +name = top; +position = "{716, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = R; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 330.792, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1432; +}, +{ +anchors = ( +{ +name = bottom; +position = "{668, 0}"; +}, +{ +name = top; +position = "{668, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = R; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 332, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1336; +} +); +leftMetricsKey = R; +rightMetricsKey = R; +unicode = 0158; +}, +{ +color = 5; +glyphname = Rcommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{792, -806}"; +}, +{ +name = top; +position = "{792, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = R; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 391, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1584; +}, +{ +anchors = ( +{ +name = bottom; +position = "{716, -584}"; +}, +{ +name = top; +position = "{716, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = R; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 349.792, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1432; +}, +{ +anchors = ( +{ +name = bottom; +position = "{668, -444}"; +}, +{ +name = top; +position = "{668, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = R; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 322, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1336; +} +); +leftMetricsKey = R; +rightMetricsKey = R; +unicode = 0156; +}, +{ +color = 5; +glyphname = S; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{652, 0}"; +}, +{ +name = cedilla; +position = "{684, 0}"; +}, +{ +name = top; +position = "{732, 1680}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 408}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1280, 400}"; +type = Stem; +}, +{ +place = "{804, 484}"; +type = Stem; +}, +{ +place = "{104, 432}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1037 -32 OFFCURVE", +"1288 165 OFFCURVE", +"1288 498 CURVE SMOOTH", +"1288 775 OFFCURVE", +"1071 897 OFFCURVE", +"777 1016 CURVE SMOOTH", +"582 1095 OFFCURVE", +"536 1128 OFFCURVE", +"536 1179 CURVE SMOOTH", +"536 1237 OFFCURVE", +"595 1280 OFFCURVE", +"698 1280 CURVE SMOOTH", +"794 1280 OFFCURVE", +"921 1243 OFFCURVE", +"1026 1184 CURVE", +"1200 1538 LINE", +"1082 1624 OFFCURVE", +"877 1680 OFFCURVE", +"702 1680 CURVE SMOOTH", +"332 1680 OFFCURVE", +"104 1427 OFFCURVE", +"104 1167 CURVE SMOOTH", +"104 957 OFFCURVE", +"228 823 OFFCURVE", +"548 685 CURVE SMOOTH", +"750 598 OFFCURVE", +"804 557 OFFCURVE", +"804 489 CURVE SMOOTH", +"804 427 OFFCURVE", +"749 376 OFFCURVE", +"633 376 CURVE SMOOTH", +"515 376 OFFCURVE", +"369 429 OFFCURVE", +"218 532 CURVE", +"11 178 LINE", +"151 51 OFFCURVE", +"398 -32 OFFCURVE", +"650 -32 CURVE SMOOTH" +); +} +); +width = 1361; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = cedilla; +position = "{730, 0}"; +}, +{ +name = top; +position = "{707, 1668}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 188}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1494, 186}"; +type = Stem; +}, +{ +place = "{1005, 218}"; +type = Stem; +}, +{ +place = "{204, 197}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"986 -32 OFFCURVE", +"1223 141 OFFCURVE", +"1223 445 CURVE SMOOTH", +"1223 693 OFFCURVE", +"1056 822 OFFCURVE", +"724 943 CURVE SMOOTH", +"495 1026 OFFCURVE", +"401 1116 OFFCURVE", +"401 1239 CURVE SMOOTH", +"401 1373 OFFCURVE", +"505 1494 OFFCURVE", +"689 1494 CURVE SMOOTH", +"820 1494 OFFCURVE", +"931 1434 OFFCURVE", +"1001 1364 CURVE", +"1129 1477 LINE", +"1054 1579 OFFCURVE", +"891 1680 OFFCURVE", +"692 1680 CURVE SMOOTH", +"401 1680 OFFCURVE", +"204 1480 OFFCURVE", +"204 1236 CURVE SMOOTH", +"204 1037 OFFCURVE", +"335 892 OFFCURVE", +"620 786 CURVE SMOOTH", +"907 680 OFFCURVE", +"1005 593 OFFCURVE", +"1005 439 CURVE SMOOTH", +"1005 258 OFFCURVE", +"853 156 OFFCURVE", +"677 156 CURVE SMOOTH", +"512 156 OFFCURVE", +"353 243 OFFCURVE", +"249 371 CURVE", +"108 269 LINE", +"204 100 OFFCURVE", +"430 -32 OFFCURVE", +"686 -32 CURVE SMOOTH" +); +} +); +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{695, 0}"; +}, +{ +name = cedilla; +position = "{727, 0}"; +}, +{ +name = top; +position = "{692, 1660}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1628, 52}"; +type = Stem; +}, +{ +place = "{1131, 52}"; +type = Stem; +}, +{ +place = "{267, 50}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"954 -32 OFFCURVE", +"1183 126 OFFCURVE", +"1183 411 CURVE SMOOTH", +"1183 641 OFFCURVE", +"1046 776 OFFCURVE", +"691 898 CURVE SMOOTH", +"440 984 OFFCURVE", +"317 1108 OFFCURVE", +"317 1277 CURVE SMOOTH", +"317 1458 OFFCURVE", +"449 1628 OFFCURVE", +"684 1628 CURVE SMOOTH", +"873 1628 OFFCURVE", +"999 1518 OFFCURVE", +"1039 1416 CURVE", +"1085 1438 LINE", +"1037 1550 OFFCURVE", +"899 1680 OFFCURVE", +"686 1680 CURVE SMOOTH", +"444 1680 OFFCURVE", +"267 1514 OFFCURVE", +"267 1280 CURVE SMOOTH", +"267 1087 OFFCURVE", +"403 939 OFFCURVE", +"665 850 CURVE SMOOTH", +"1007 734 OFFCURVE", +"1131 616 OFFCURVE", +"1131 408 CURVE SMOOTH", +"1131 152 OFFCURVE", +"918 18 OFFCURVE", +"704 18 CURVE SMOOTH", +"480 18 OFFCURVE", +"283 161 OFFCURVE", +"215 345 CURVE", +"169 326 LINE", +"237 131 OFFCURVE", +"450 -32 OFFCURVE", +"708 -32 CURVE SMOOTH" +); +} +); +width = 1369; +} +); +leftKerningGroup = _S; +rightKerningGroup = _A1; +unicode = 0053; +}, +{ +color = 5; +glyphname = Sacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{652, 0}"; +}, +{ +name = cedilla; +position = "{684, 0}"; +}, +{ +name = top; +position = "{732, 2354}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 490, 656}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1361; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = cedilla; +position = "{730, 0}"; +}, +{ +name = top; +position = "{747, 2331}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 602.417, 643.708}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{695, 0}"; +}, +{ +name = cedilla; +position = "{727, 0}"; +}, +{ +name = top; +position = "{692, 2316}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 658, 636}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1369; +} +); +leftMetricsKey = S; +rightMetricsKey = S; +unicode = 015A; +}, +{ +color = 5; +glyphname = Scaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{652, 0}"; +}, +{ +name = cedilla; +position = "{684, 0}"; +}, +{ +name = top; +position = "{732, 2336}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 270, 656}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1361; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = cedilla; +position = "{730, 0}"; +}, +{ +name = top; +position = "{707, 2324}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 322.417, 643.708}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{695, 0}"; +}, +{ +name = cedilla; +position = "{727, 0}"; +}, +{ +name = top; +position = "{692, 2316}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 356, 636}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1369; +} +); +leftMetricsKey = S; +rightMetricsKey = S; +unicode = 0160; +}, +{ +color = 5; +glyphname = Scedilla; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{567, -595}"; +}, +{ +name = cedilla; +position = "{684, 0}"; +}, +{ +name = top; +position = "{732, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 287, -7}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1361; +}, +{ +anchors = ( +{ +name = bottom; +position = "{671, -586}"; +}, +{ +name = cedilla; +position = "{730, 0}"; +}, +{ +name = top; +position = "{707, 1668}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 418, -21}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{705, -580}"; +}, +{ +name = cedilla; +position = "{727, 0}"; +}, +{ +name = top; +position = "{692, 1660}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 469, -29}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1369; +} +); +leftMetricsKey = S; +rightMetricsKey = S; +unicode = 015E; +}, +{ +color = 5; +glyphname = Scommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{652, -806}"; +}, +{ +name = cedilla; +position = "{684, 0}"; +}, +{ +name = top; +position = "{732, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 251, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1361; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, -584}"; +}, +{ +name = cedilla; +position = "{730, 0}"; +}, +{ +name = top; +position = "{707, 1668}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 332.094, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{695, -444}"; +}, +{ +name = cedilla; +position = "{727, 0}"; +}, +{ +name = top; +position = "{692, 1660}"; +} +); +components = ( +{ +alignment = -1; +name = S; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 349, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1369; +} +); +leftMetricsKey = S; +rightMetricsKey = S; +unicode = 0218; +}, +{ +color = 5; +glyphname = Germandbls; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{-23, 424}"; +type = Stem; +}, +{ +place = "{1261, 428}"; +type = Stem; +}, +{ +place = "{1067, 444}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1257, 424}"; +type = Stem; +}, +{ +place = "{196, 442}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1439 -23 OFFCURVE", +"1689 136 OFFCURVE", +"1689 432 CURVE SMOOTH", +"1689 766 OFFCURVE", +"1371 756 OFFCURVE", +"1371 838 CURVE SMOOTH", +"1371 893 OFFCURVE", +"1511 922 OFFCURVE", +"1511 1171 CURVE SMOOTH", +"1511 1503 OFFCURVE", +"1246 1681 OFFCURVE", +"900 1681 CURVE SMOOTH", +"459 1681 OFFCURVE", +"196 1402 OFFCURVE", +"196 888 CURVE SMOOTH", +"196 1 LINE", +"638 1 LINE", +"638 935 LINE SMOOTH", +"638 1153 OFFCURVE", +"713 1257 OFFCURVE", +"868 1257 CURVE SMOOTH", +"977 1257 OFFCURVE", +"1067 1205 OFFCURVE", +"1067 1082 CURVE SMOOTH", +"1067 913 OFFCURVE", +"897 907 OFFCURVE", +"897 764 CURVE SMOOTH", +"897 555 OFFCURVE", +"1261 614 OFFCURVE", +"1261 474 CURVE SMOOTH", +"1261 426 OFFCURVE", +"1218 401 OFFCURVE", +"1134 401 CURVE SMOOTH", +"1060 401 OFFCURVE", +"981 420 OFFCURVE", +"868 466 CURVE", +"746 59 LINE", +"888 9 OFFCURVE", +"1051 -23 OFFCURVE", +"1164 -23 CURVE SMOOTH" +); +} +); +width = 1762; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-29, 196}"; +type = Stem; +}, +{ +place = "{1247, 202}"; +type = Stem; +}, +{ +place = "{1046, 208}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1481, 200}"; +type = Stem; +}, +{ +place = "{256, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1245 -29 OFFCURVE", +"1449 140 OFFCURVE", +"1449 403 CURVE SMOOTH", +"1449 766 OFFCURVE", +"1062 777 OFFCURVE", +"1062 881 CURVE SMOOTH", +"1062 955 OFFCURVE", +"1254 1001 OFFCURVE", +"1254 1264 CURVE SMOOTH", +"1254 1533 OFFCURVE", +"1055 1681 OFFCURVE", +"792 1681 CURVE SMOOTH", +"451 1681 OFFCURVE", +"256 1433 OFFCURVE", +"256 1031 CURVE SMOOTH", +"256 0 LINE", +"460 0 LINE", +"460 1046 LINE SMOOTH", +"460 1321 OFFCURVE", +"571 1481 OFFCURVE", +"778 1481 CURVE SMOOTH", +"930 1481 OFFCURVE", +"1046 1394 OFFCURVE", +"1046 1228 CURVE SMOOTH", +"1046 1010 OFFCURVE", +"844 1013 OFFCURVE", +"844 859 CURVE SMOOTH", +"844 643 OFFCURVE", +"1247 691 OFFCURVE", +"1247 417 CURVE SMOOTH", +"1247 263 OFFCURVE", +"1131 167 OFFCURVE", +"975 167 CURVE SMOOTH", +"881 167 OFFCURVE", +"798 200 OFFCURVE", +"702 258 CURVE", +"600 94 LINE", +"736 12 OFFCURVE", +"861 -29 OFFCURVE", +"985 -29 CURVE SMOOTH" +); +} +); +width = 1592; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-33, 54}"; +type = Stem; +}, +{ +place = "{1239, 60}"; +type = Stem; +}, +{ +place = "{1033, 60}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1621, 60}"; +type = Stem; +}, +{ +place = "{293, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1124 -33 OFFCURVE", +"1299 142 OFFCURVE", +"1299 385 CURVE SMOOTH", +"1299 766 OFFCURVE", +"869 742 OFFCURVE", +"869 917 CURVE SMOOTH", +"869 1043 OFFCURVE", +"1093 1050 OFFCURVE", +"1093 1322 CURVE SMOOTH", +"1093 1551 OFFCURVE", +"935 1681 OFFCURVE", +"725 1681 CURVE SMOOTH", +"446 1681 OFFCURVE", +"293 1452 OFFCURVE", +"293 1121 CURVE SMOOTH", +"293 0 LINE", +"349 0 LINE", +"349 1115 LINE SMOOTH", +"349 1427 OFFCURVE", +"482 1621 OFFCURVE", +"721 1621 CURVE SMOOTH", +"900 1621 OFFCURVE", +"1033 1513 OFFCURVE", +"1033 1320 CURVE SMOOTH", +"1033 1071 OFFCURVE", +"811 1079 OFFCURVE", +"811 919 CURVE SMOOTH", +"811 698 OFFCURVE", +"1239 740 OFFCURVE", +"1239 382 CURVE SMOOTH", +"1239 161 OFFCURVE", +"1076 21 OFFCURVE", +"876 21 CURVE SMOOTH", +"751 21 OFFCURVE", +"651 75 OFFCURVE", +"539 165 CURVE", +"508 116 LINE", +"640 14 OFFCURVE", +"742 -33 OFFCURVE", +"872 -33 CURVE SMOOTH" +); +} +); +width = 1485; +} +); +leftMetricsKey = H; +rightMetricsKey = S; +unicode = 1E9E; +}, +{ +color = 5; +glyphname = T; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{569, 0}"; +}, +{ +name = top; +position = "{569, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1264, 386}"; +type = Stem; +}, +{ +place = "{349, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"789 0 LINE", +"789 1264 LINE", +"1149 1264 LINE", +"1149 1650 LINE", +"-11 1650 LINE", +"-11 1264 LINE", +"349 1264 LINE", +"349 0 LINE" +); +} +); +width = 1138; +}, +{ +anchors = ( +{ +name = bottom; +position = "{669, 0}"; +}, +{ +name = top; +position = "{669, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1467, 183}"; +type = Stem; +}, +{ +place = "{567, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"771 0 LINE", +"771 1467 LINE", +"1249 1467 LINE", +"1249 1650 LINE", +"89 1650 LINE", +"89 1467 LINE", +"567 1467 LINE", +"567 0 LINE" +); +} +); +width = 1338; +}, +{ +anchors = ( +{ +name = bottom; +position = "{732, 0}"; +}, +{ +name = top; +position = "{732, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1594, 56}"; +type = Stem; +}, +{ +place = "{704, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"760 0 LINE", +"760 1594 LINE", +"1312 1594 LINE", +"1312 1650 LINE", +"152 1650 LINE", +"152 1594 LINE", +"704 1594 LINE", +"704 0 LINE" +); +} +); +width = 1464; +} +); +leftKerningGroup = _T; +rightKerningGroup = _T; +unicode = 0054; +}, +{ +color = 5; +glyphname = Tbar; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = T; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"959 764 LINE", +"959 1058 LINE", +"179 1058 LINE", +"179 764 LINE" +); +} +); +width = 1138; +}, +{ +components = ( +{ +alignment = -1; +name = T; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1044 913 LINE", +"1044 1057 LINE", +"295 1057 LINE", +"295 913 LINE" +); +} +); +width = 1338; +}, +{ +components = ( +{ +alignment = -1; +name = T; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1097 1007 LINE", +"1097 1057 LINE", +"368 1057 LINE", +"368 1007 LINE" +); +} +); +width = 1464; +} +); +unicode = 0166; +}, +{ +color = 5; +glyphname = Tcaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{569, 0}"; +}, +{ +name = top; +position = "{569, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = T; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 107, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1138; +}, +{ +anchors = ( +{ +name = bottom; +position = "{669, 0}"; +}, +{ +name = top; +position = "{669, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = T; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 284, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1338; +}, +{ +anchors = ( +{ +name = bottom; +position = "{732, 0}"; +}, +{ +name = top; +position = "{732, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = T; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 396, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1464; +} +); +leftMetricsKey = T; +rightMetricsKey = T; +unicode = 0164; +}, +{ +color = 5; +glyphname = Tcedilla; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{569, -806}"; +}, +{ +name = top; +position = "{569, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = T; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 168, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1138; +}, +{ +anchors = ( +{ +name = bottom; +position = "{669, -584}"; +}, +{ +name = top; +position = "{669, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = T; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 303, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1338; +}, +{ +anchors = ( +{ +name = bottom; +position = "{732, -444}"; +}, +{ +name = top; +position = "{732, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = T; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 386, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1464; +} +); +leftMetricsKey = T; +rightMetricsKey = T; +unicode = 0162; +}, +{ +color = 5; +glyphname = Tcommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{569, -806}"; +}, +{ +name = top; +position = "{569, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = T; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 168, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1138; +}, +{ +anchors = ( +{ +name = bottom; +position = "{669, -584}"; +}, +{ +name = top; +position = "{669, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = T; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 303, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1338; +}, +{ +anchors = ( +{ +name = bottom; +position = "{732, -444}"; +}, +{ +name = top; +position = "{732, 1650}"; +} +); +components = ( +{ +alignment = -1; +name = T; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 386, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1464; +} +); +leftMetricsKey = T; +rightMetricsKey = T; +unicode = 021A; +}, +{ +color = 5; +glyphname = U; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{831, 0}"; +}, +{ +name = ogonek; +position = "{953, 0}"; +}, +{ +name = top; +position = "{831, 1650}"; +} +); +hints = ( +{ +place = "{165, 440}"; +type = Stem; +}, +{ +place = "{1057, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 432}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1269 -32 OFFCURVE", +"1497 178 OFFCURVE", +"1497 582 CURVE SMOOTH", +"1497 1650 LINE", +"1057 1650 LINE", +"1057 714 LINE SMOOTH", +"1057 476 OFFCURVE", +"1002 400 OFFCURVE", +"831 400 CURVE SMOOTH", +"660 400 OFFCURVE", +"605 476 OFFCURVE", +"605 714 CURVE SMOOTH", +"605 1650 LINE", +"165 1650 LINE", +"165 582 LINE SMOOTH", +"165 178 OFFCURVE", +"393 -32 OFFCURVE", +"831 -32 CURVE SMOOTH" +); +} +); +width = 1662; +}, +{ +anchors = ( +{ +name = bottom; +position = "{818, 0}"; +}, +{ +name = ogonek; +position = "{890, 0}"; +}, +{ +name = top; +position = "{818, 1650}"; +} +); +hints = ( +{ +place = "{230, 204}"; +type = Stem; +}, +{ +place = "{1203, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 201}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1209 -32 OFFCURVE", +"1407 177 OFFCURVE", +"1407 589 CURVE SMOOTH", +"1407 1650 LINE", +"1203 1650 LINE", +"1203 640 LINE SMOOTH", +"1203 319 OFFCURVE", +"1079 169 OFFCURVE", +"818 169 CURVE SMOOTH", +"558 169 OFFCURVE", +"434 319 OFFCURVE", +"434 640 CURVE SMOOTH", +"434 1650 LINE", +"230 1650 LINE", +"230 589 LINE SMOOTH", +"230 177 OFFCURVE", +"428 -32 OFFCURVE", +"818 -32 CURVE SMOOTH" +); +} +); +width = 1637; +}, +{ +anchors = ( +{ +name = bottom; +position = "{811, 0}"; +}, +{ +name = ogonek; +position = "{851, 0}"; +}, +{ +name = top; +position = "{811, 1650}"; +} +); +hints = ( +{ +place = "{271, 56}"; +type = Stem; +}, +{ +place = "{1295, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1159 -32 OFFCURVE", +"1351 191 OFFCURVE", +"1351 594 CURVE SMOOTH", +"1351 1650 LINE", +"1295 1650 LINE", +"1295 594 LINE SMOOTH", +"1295 221 OFFCURVE", +"1128 24 OFFCURVE", +"811 24 CURVE SMOOTH", +"494 24 OFFCURVE", +"327 221 OFFCURVE", +"327 594 CURVE SMOOTH", +"327 1650 LINE", +"271 1650 LINE", +"271 594 LINE SMOOTH", +"271 191 OFFCURVE", +"463 -32 OFFCURVE", +"811 -32 CURVE SMOOTH" +); +} +); +width = 1622; +} +); +rightKerningGroup = _A1; +unicode = 0055; +}, +{ +color = 5; +glyphname = Uacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{831, 0}"; +}, +{ +name = ogonek; +position = "{953, 0}"; +}, +{ +name = top; +position = "{831, 2324}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 589, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1662; +}, +{ +anchors = ( +{ +name = bottom; +position = "{818, 0}"; +}, +{ +name = ogonek; +position = "{890, 0}"; +}, +{ +name = top; +position = "{858, 2313}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 713, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1637; +}, +{ +anchors = ( +{ +name = bottom; +position = "{811, 0}"; +}, +{ +name = ogonek; +position = "{851, 0}"; +}, +{ +name = top; +position = "{811, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 777, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1622; +} +); +leftMetricsKey = U; +rightMetricsKey = U; +unicode = 00DA; +}, +{ +color = 5; +glyphname = Ucircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{831, 0}"; +}, +{ +name = ogonek; +position = "{953, 0}"; +}, +{ +name = top; +position = "{831, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 369, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1662; +}, +{ +anchors = ( +{ +name = bottom; +position = "{818, 0}"; +}, +{ +name = ogonek; +position = "{890, 0}"; +}, +{ +name = top; +position = "{818, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 433, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1637; +}, +{ +anchors = ( +{ +name = bottom; +position = "{811, 0}"; +}, +{ +name = ogonek; +position = "{851, 0}"; +}, +{ +name = top; +position = "{811, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 475, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1622; +} +); +leftMetricsKey = U; +rightMetricsKey = U; +unicode = 00DB; +}, +{ +color = 5; +glyphname = Udieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{831, 0}"; +}, +{ +name = ogonek; +position = "{953, 0}"; +}, +{ +name = top; +position = "{831, 2236}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 383, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1662; +}, +{ +anchors = ( +{ +name = bottom; +position = "{818, 0}"; +}, +{ +name = ogonek; +position = "{890, 0}"; +}, +{ +name = top; +position = "{818, 2135}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 471, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1637; +}, +{ +anchors = ( +{ +name = bottom; +position = "{811, 0}"; +}, +{ +name = ogonek; +position = "{851, 0}"; +}, +{ +name = top; +position = "{811, 2072}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 527, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1622; +} +); +leftMetricsKey = U; +rightMetricsKey = U; +unicode = 00DC; +}, +{ +color = 5; +glyphname = Ugrave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{831, 0}"; +}, +{ +name = ogonek; +position = "{953, 0}"; +}, +{ +name = top; +position = "{747, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 421, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1662; +}, +{ +anchors = ( +{ +name = bottom; +position = "{818, 0}"; +}, +{ +name = ogonek; +position = "{890, 0}"; +}, +{ +name = top; +position = "{735, 2292}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 546, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1637; +}, +{ +anchors = ( +{ +name = bottom; +position = "{811, 0}"; +}, +{ +name = ogonek; +position = "{851, 0}"; +}, +{ +name = top; +position = "{811, 2283}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 708, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1622; +} +); +leftMetricsKey = U; +rightMetricsKey = U; +unicode = 00D9; +}, +{ +color = 5; +glyphname = Uhungarumlaut; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{831, 0}"; +}, +{ +name = ogonek; +position = "{953, 0}"; +}, +{ +name = top; +position = "{831, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 309, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1717; +}, +{ +anchors = ( +{ +name = bottom; +position = "{818, 0}"; +}, +{ +name = ogonek; +position = "{890, 0}"; +}, +{ +name = top; +position = "{818, 2305}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 493, 625}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1637; +}, +{ +anchors = ( +{ +name = bottom; +position = "{811, 0}"; +}, +{ +name = ogonek; +position = "{851, 0}"; +}, +{ +name = top; +position = "{811, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 609, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1622; +} +); +leftMetricsKey = U; +rightMetricsKey = U; +unicode = 0170; +}, +{ +color = 5; +glyphname = Umacron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{831, 0}"; +}, +{ +name = ogonek; +position = "{953, 0}"; +}, +{ +name = top; +position = "{831, 2154}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 423, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1662; +}, +{ +anchors = ( +{ +name = bottom; +position = "{818, 0}"; +}, +{ +name = ogonek; +position = "{890, 0}"; +}, +{ +name = top; +position = "{818, 2083}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 410, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1637; +}, +{ +anchors = ( +{ +name = bottom; +position = "{811, 0}"; +}, +{ +name = ogonek; +position = "{851, 0}"; +}, +{ +name = top; +position = "{811, 2038}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 403, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1622; +} +); +leftMetricsKey = U; +rightMetricsKey = U; +unicode = 016A; +}, +{ +color = 5; +glyphname = Uogonek; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{165, 440}"; +type = Stem; +}, +{ +place = "{1057, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 432}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"930 -32 OFFCURVE", +"1018 -21 OFFCURVE", +"1096 0 CURVE", +"1008 0 LINE", +"900 -124 OFFCURVE", +"841 -241 OFFCURVE", +"841 -332 CURVE SMOOTH", +"841 -456 OFFCURVE", +"949 -557 OFFCURVE", +"1093 -557 CURVE SMOOTH", +"1200 -557 OFFCURVE", +"1306 -502 OFFCURVE", +"1367 -413 CURVE", +"1201 -289 LINE", +"1185 -318 OFFCURVE", +"1156 -337 OFFCURVE", +"1128 -337 CURVE SMOOTH", +"1095 -337 OFFCURVE", +"1077 -312 OFFCURVE", +"1077 -267 CURVE SMOOTH", +"1077 -167 OFFCURVE", +"1168 4 OFFCURVE", +"1282 86 CURVE SMOOTH", +"1424 188 OFFCURVE", +"1497 354 OFFCURVE", +"1497 582 CURVE SMOOTH", +"1497 1650 LINE", +"1057 1650 LINE", +"1057 714 LINE SMOOTH", +"1057 476 OFFCURVE", +"1002 400 OFFCURVE", +"831 400 CURVE SMOOTH", +"660 400 OFFCURVE", +"605 476 OFFCURVE", +"605 714 CURVE SMOOTH", +"605 1650 LINE", +"165 1650 LINE", +"165 582 LINE SMOOTH", +"165 178 OFFCURVE", +"393 -32 OFFCURVE", +"831 -32 CURVE SMOOTH" +); +} +); +width = 1662; +}, +{ +hints = ( +{ +place = "{230, 204}"; +type = Stem; +}, +{ +place = "{1203, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 201}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"906 -32 OFFCURVE", +"985 -21 OFFCURVE", +"1054 0 CURVE", +"1030 0 LINE", +"915 -125 OFFCURVE", +"851 -242 OFFCURVE", +"851 -334 CURVE SMOOTH", +"851 -458 OFFCURVE", +"956 -559 OFFCURVE", +"1102 -559 CURVE SMOOTH", +"1210 -559 OFFCURVE", +"1316 -504 OFFCURVE", +"1377 -415 CURVE", +"1292 -352 LINE", +"1240 -413 OFFCURVE", +"1184 -442 OFFCURVE", +"1119 -442 CURVE SMOOTH", +"1023 -442 OFFCURVE", +"974 -382 OFFCURVE", +"974 -309 CURVE SMOOTH", +"974 -206 OFFCURVE", +"1073 -39 OFFCURVE", +"1228 94 CURVE SMOOTH", +"1347 197 OFFCURVE", +"1407 362 OFFCURVE", +"1407 589 CURVE SMOOTH", +"1407 1650 LINE", +"1203 1650 LINE", +"1203 640 LINE SMOOTH", +"1203 319 OFFCURVE", +"1079 169 OFFCURVE", +"818 169 CURVE SMOOTH", +"558 169 OFFCURVE", +"434 319 OFFCURVE", +"434 640 CURVE SMOOTH", +"434 1650 LINE", +"230 1650 LINE", +"230 589 LINE SMOOTH", +"230 177 OFFCURVE", +"428 -32 OFFCURVE", +"818 -32 CURVE SMOOTH" +); +} +); +width = 1637; +}, +{ +hints = ( +{ +place = "{271, 56}"; +type = Stem; +}, +{ +place = "{1295, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"909 -32 OFFCURVE", +"994 -14 OFFCURVE", +"1067 20 CURVE", +"1047 20 LINE", +"915 -113 OFFCURVE", +"841 -230 OFFCURVE", +"841 -335 CURVE SMOOTH", +"841 -458 OFFCURVE", +"944 -559 OFFCURVE", +"1091 -559 CURVE SMOOTH", +"1200 -559 OFFCURVE", +"1306 -504 OFFCURVE", +"1367 -415 CURVE", +"1333 -391 LINE", +"1259 -472 OFFCURVE", +"1185 -507 OFFCURVE", +"1097 -507 CURVE SMOOTH", +"962 -507 OFFCURVE", +"893 -429 OFFCURVE", +"893 -332 CURVE SMOOTH", +"893 -216 OFFCURVE", +"992 -69 OFFCURVE", +"1169 87 CURVE SMOOTH", +"1288 192 OFFCURVE", +"1351 363 OFFCURVE", +"1351 594 CURVE SMOOTH", +"1351 1650 LINE", +"1295 1650 LINE", +"1295 594 LINE SMOOTH", +"1295 221 OFFCURVE", +"1128 24 OFFCURVE", +"811 24 CURVE SMOOTH", +"494 24 OFFCURVE", +"327 221 OFFCURVE", +"327 594 CURVE SMOOTH", +"327 1650 LINE", +"271 1650 LINE", +"271 594 LINE SMOOTH", +"271 191 OFFCURVE", +"463 -32 OFFCURVE", +"811 -32 CURVE SMOOTH" +); +} +); +width = 1638; +} +); +leftMetricsKey = U; +rightMetricsKey = U; +unicode = 0172; +}, +{ +color = 5; +glyphname = Uring; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{831, 0}"; +}, +{ +name = ogonek; +position = "{953, 0}"; +}, +{ +name = top; +position = "{831, 2398}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 483, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1662; +}, +{ +anchors = ( +{ +name = bottom; +position = "{818, 0}"; +}, +{ +name = ogonek; +position = "{890, 0}"; +}, +{ +name = top; +position = "{818, 2314}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 565, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1637; +}, +{ +anchors = ( +{ +name = bottom; +position = "{811, 0}"; +}, +{ +name = ogonek; +position = "{851, 0}"; +}, +{ +name = top; +position = "{811, 2260}"; +} +); +components = ( +{ +alignment = -1; +name = U; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 617, 624}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1622; +} +); +leftMetricsKey = U; +rightMetricsKey = U; +unicode = 016E; +}, +{ +color = 5; +glyphname = V; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{821, 0}"; +}, +{ +name = top; +position = "{821, 1650}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"993 0 LINE", +"1685 1650 LINE", +"1189 1650 LINE", +"821 662 LINE", +"453 1650 LINE", +"-43 1650 LINE", +"649 0 LINE" +); +} +); +width = 1642; +}, +{ +anchors = ( +{ +name = bottom; +position = "{852, 0}"; +}, +{ +name = top; +position = "{852, 1650}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"932 0 LINE", +"1624 1650 LINE", +"1393 1650 LINE", +"852 307 LINE", +"310 1650 LINE", +"80 1650 LINE", +"772 0 LINE" +); +} +); +width = 1703; +}, +{ +anchors = ( +{ +name = bottom; +position = "{871, 0}"; +}, +{ +name = top; +position = "{871, 1650}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"893 0 LINE", +"1585 1650 LINE", +"1521 1650 LINE", +"871 84 LINE", +"221 1650 LINE", +"157 1650 LINE", +"849 0 LINE" +); +} +); +width = 1742; +} +); +leftKerningGroup = _V; +rightKerningGroup = _V; +unicode = 0056; +}, +{ +color = 5; +glyphname = W; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{1150, 0}"; +}, +{ +name = top; +position = "{1150, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"944 0 LINE", +"1150 804 LINE", +"1356 0 LINE", +"1844 0 LINE", +"2310 1650 LINE", +"1820 1650 LINE", +"1576 610 LINE", +"1314 1650 LINE", +"986 1650 LINE", +"724 610 LINE", +"480 1650 LINE", +"-10 1650 LINE", +"456 0 LINE" +); +} +); +width = 2300; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1227, 0}"; +}, +{ +name = top; +position = "{1227, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"810 0 LINE", +"1227 1253 LINE", +"1644 0 LINE", +"1872 0 LINE", +"2358 1650 LINE", +"2131 1650 LINE", +"1749 272 LINE", +"1305 1650 LINE", +"1149 1650 LINE", +"705 272 LINE", +"323 1650 LINE", +"96 1650 LINE", +"582 0 LINE" +); +} +); +width = 2455; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1276, 0}"; +}, +{ +name = top; +position = "{1276, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"728 0 LINE", +"1276 1550 LINE", +"1824 0 LINE", +"1890 0 LINE", +"2388 1650 LINE", +"2326 1650 LINE", +"1857 74 LINE", +"1300 1650 LINE", +"1252 1650 LINE", +"695 74 LINE", +"226 1650 LINE", +"164 1650 LINE", +"662 0 LINE" +); +} +); +width = 2552; +} +); +leftKerningGroup = _V; +rightKerningGroup = _V; +unicode = 0057; +}, +{ +color = 5; +glyphname = Wacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{1150, 0}"; +}, +{ +name = top; +position = "{1150, 2324}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 908, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2300; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1227, 0}"; +}, +{ +name = top; +position = "{1267, 2313}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 1122, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2455; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1276, 0}"; +}, +{ +name = top; +position = "{1276, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 1242, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2552; +} +); +leftMetricsKey = W; +rightMetricsKey = W; +unicode = 1E82; +}, +{ +color = 5; +glyphname = Wcircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{1150, 0}"; +}, +{ +name = top; +position = "{1150, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 688, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2300; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1227, 0}"; +}, +{ +name = top; +position = "{1227, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 842, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2455; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1276, 0}"; +}, +{ +name = top; +position = "{1276, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 940, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2552; +} +); +leftMetricsKey = W; +rightMetricsKey = W; +unicode = 0174; +}, +{ +color = 5; +glyphname = Wdieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{1150, 0}"; +}, +{ +name = top; +position = "{1150, 2236}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 702, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2300; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1227, 0}"; +}, +{ +name = top; +position = "{1227, 2135}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 880, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2455; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1276, 0}"; +}, +{ +name = top; +position = "{1276, 2072}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 992, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2552; +} +); +leftMetricsKey = W; +rightMetricsKey = W; +unicode = 1E84; +}, +{ +color = 5; +glyphname = Wgrave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{1150, 0}"; +}, +{ +name = top; +position = "{1066, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 740, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2300; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1227, 0}"; +}, +{ +name = top; +position = "{1144, 2292}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 955, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2455; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1276, 0}"; +}, +{ +name = top; +position = "{1276, 2283}"; +} +); +components = ( +{ +alignment = -1; +name = W; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 1173, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2552; +} +); +leftMetricsKey = W; +rightMetricsKey = W; +unicode = 1E80; +}, +{ +color = 5; +glyphname = X; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"492 0 LINE", +"840 506 LINE", +"1188 0 LINE", +"1732 0 LINE", +"1110 888 LINE", +"1628 1650 LINE", +"1104 1650 LINE", +"840 1252 LINE", +"576 1650 LINE", +"52 1650 LINE", +"570 888 LINE", +"-52 0 LINE" +); +} +); +width = 1680; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"327 0 LINE", +"828 713 LINE", +"1329 0 LINE", +"1583 0 LINE", +"955 890 LINE", +"1485 1650 LINE", +"1240 1650 LINE", +"828 1061 LINE", +"416 1650 LINE", +"171 1650 LINE", +"701 890 LINE", +"73 0 LINE" +); +} +); +width = 1657; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"223 0 LINE", +"821 842 LINE", +"1419 0 LINE", +"1491 0 LINE", +"857 892 LINE", +"1395 1650 LINE", +"1325 1650 LINE", +"821 942 LINE", +"317 1650 LINE", +"247 1650 LINE", +"785 892 LINE", +"151 0 LINE" +); +} +); +width = 1642; +} +); +rightKerningGroup = _A1; +unicode = 0058; +}, +{ +color = 5; +glyphname = Y; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{770, 0}"; +}, +{ +name = top; +position = "{770, 1650}"; +} +); +hints = ( +{ +place = "{550, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"990 0 LINE", +"990 748 LINE", +"1610 1650 LINE", +"1080 1650 LINE", +"770 1192 LINE", +"460 1650 LINE", +"-70 1650 LINE", +"550 748 LINE", +"550 0 LINE" +); +} +); +width = 1540; +}, +{ +anchors = ( +{ +name = bottom; +position = "{745, 0}"; +}, +{ +name = top; +position = "{745, 1650}"; +} +); +hints = ( +{ +place = "{643, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"847 0 LINE", +"847 721 LINE", +"1424 1650 LINE", +"1178 1650 LINE", +"745 934 LINE", +"312 1650 LINE", +"66 1650 LINE", +"643 721 LINE", +"643 0 LINE" +); +} +); +width = 1490; +}, +{ +anchors = ( +{ +name = bottom; +position = "{730, 0}"; +}, +{ +name = top; +position = "{730, 1650}"; +} +); +hints = ( +{ +place = "{702, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"758 0 LINE", +"758 704 LINE", +"1308 1650 LINE", +"1240 1650 LINE", +"730 772 LINE", +"220 1650 LINE", +"152 1650 LINE", +"702 704 LINE", +"702 0 LINE" +); +} +); +width = 1460; +} +); +leftKerningGroup = _Y; +rightKerningGroup = _Y; +unicode = 0059; +}, +{ +color = 5; +glyphname = Yacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{770, 0}"; +}, +{ +name = top; +position = "{770, 2324}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 528, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1540; +}, +{ +anchors = ( +{ +name = bottom; +position = "{745, 0}"; +}, +{ +name = top; +position = "{785, 2313}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 640, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1490; +}, +{ +anchors = ( +{ +name = bottom; +position = "{730, 0}"; +}, +{ +name = top; +position = "{730, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 696, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1460; +} +); +leftMetricsKey = Y; +rightMetricsKey = Y; +unicode = 00DD; +}, +{ +color = 5; +glyphname = Ycircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{770, 0}"; +}, +{ +name = top; +position = "{770, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 308, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1540; +}, +{ +anchors = ( +{ +name = bottom; +position = "{745, 0}"; +}, +{ +name = top; +position = "{745, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 360, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1490; +}, +{ +anchors = ( +{ +name = bottom; +position = "{730, 0}"; +}, +{ +name = top; +position = "{730, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 394, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1460; +} +); +leftMetricsKey = Y; +rightMetricsKey = Y; +unicode = 0176; +}, +{ +color = 5; +glyphname = Ydieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{770, 0}"; +}, +{ +name = top; +position = "{770, 2236}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 322, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1540; +}, +{ +anchors = ( +{ +name = bottom; +position = "{745, 0}"; +}, +{ +name = top; +position = "{745, 2135}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 398, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1490; +}, +{ +anchors = ( +{ +name = bottom; +position = "{730, 0}"; +}, +{ +name = top; +position = "{730, 2072}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 446, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1460; +} +); +leftMetricsKey = Y; +rightMetricsKey = Y; +unicode = 0178; +}, +{ +color = 5; +glyphname = Ygrave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{770, 0}"; +}, +{ +name = top; +position = "{686, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 360, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1540; +}, +{ +anchors = ( +{ +name = bottom; +position = "{745, 0}"; +}, +{ +name = top; +position = "{662, 2292}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 473, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1490; +}, +{ +anchors = ( +{ +name = bottom; +position = "{730, 0}"; +}, +{ +name = top; +position = "{730, 2283}"; +} +); +components = ( +{ +alignment = -1; +name = Y; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 627, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1460; +} +); +leftMetricsKey = Y; +rightMetricsKey = Y; +unicode = 1EF2; +}, +{ +color = 5; +glyphname = Z; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{758, 0}"; +}, +{ +name = center; +position = "{758, 825}"; +}, +{ +name = top; +position = "{758, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1266, 384}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 384}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1448 0 LINE", +"1448 384 LINE", +"758 384 LINE", +"1500 1650 LINE", +"110 1650 LINE", +"110 1266 LINE", +"734 1266 LINE", +"-8 0 LINE" +); +} +); +width = 1516; +}, +{ +anchors = ( +{ +name = bottom; +position = "{787, 0}"; +}, +{ +name = center; +position = "{787, 825}"; +}, +{ +name = top; +position = "{787, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1468, 182}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 182}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1417 0 LINE", +"1417 182 LINE", +"454 182 LINE", +"1471 1650 LINE", +"204 1650 LINE", +"204 1468 LINE", +"1107 1468 LINE", +"90 0 LINE" +); +} +); +width = 1573; +}, +{ +anchors = ( +{ +name = bottom; +position = "{805, 0}"; +}, +{ +name = center; +position = "{805, 825}"; +}, +{ +name = top; +position = "{805, 1650}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1594, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1397 0 LINE", +"1397 56 LINE", +"263 56 LINE", +"1453 1650 LINE", +"263 1650 LINE", +"263 1594 LINE", +"1341 1594 LINE", +"151 0 LINE" +); +} +); +width = 1609; +} +); +rightKerningGroup = _A1; +unicode = 005A; +}, +{ +color = 5; +glyphname = Zacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{758, 0}"; +}, +{ +name = center; +position = "{758, 825}"; +}, +{ +name = top; +position = "{758, 2324}"; +} +); +components = ( +{ +alignment = -1; +name = Z; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 516, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1516; +}, +{ +anchors = ( +{ +name = bottom; +position = "{787, 0}"; +}, +{ +name = center; +position = "{787, 825}"; +}, +{ +name = top; +position = "{827, 2313}"; +} +); +components = ( +{ +alignment = -1; +name = Z; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 681.885, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1573; +}, +{ +anchors = ( +{ +name = bottom; +position = "{805, 0}"; +}, +{ +name = center; +position = "{805, 825}"; +}, +{ +name = top; +position = "{805, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = Z; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 771, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1609; +} +); +leftMetricsKey = Z; +rightMetricsKey = Z; +unicode = 0179; +}, +{ +color = 5; +glyphname = Zcaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{758, 0}"; +}, +{ +name = center; +position = "{758, 825}"; +}, +{ +name = top; +position = "{758, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = Z; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 296, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1516; +}, +{ +anchors = ( +{ +name = bottom; +position = "{787, 0}"; +}, +{ +name = center; +position = "{787, 825}"; +}, +{ +name = top; +position = "{787, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = Z; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 401.885, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1573; +}, +{ +anchors = ( +{ +name = bottom; +position = "{805, 0}"; +}, +{ +name = center; +position = "{805, 825}"; +}, +{ +name = top; +position = "{805, 2306}"; +} +); +components = ( +{ +alignment = -1; +name = Z; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 469, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1609; +} +); +leftMetricsKey = Z; +rightMetricsKey = Z; +unicode = 017D; +}, +{ +color = 5; +glyphname = Zdotaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{758, 0}"; +}, +{ +name = center; +position = "{758, 825}"; +}, +{ +name = top; +position = "{758, 2350}"; +} +); +components = ( +{ +alignment = -1; +name = Z; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 518, 626}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1516; +}, +{ +anchors = ( +{ +name = bottom; +position = "{787, 0}"; +}, +{ +name = center; +position = "{787, 825}"; +}, +{ +name = top; +position = "{786, 2224}"; +} +); +components = ( +{ +alignment = -1; +name = Z; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 664.885, 626}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1573; +}, +{ +anchors = ( +{ +name = bottom; +position = "{805, 0}"; +}, +{ +name = center; +position = "{805, 825}"; +}, +{ +name = top; +position = "{805, 2146}"; +} +); +components = ( +{ +alignment = -1; +name = Z; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 757, 626}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1609; +} +); +leftMetricsKey = Z; +rightMetricsKey = Z; +unicode = 017B; +}, +{ +color = 5; +glyphname = M.alt; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{1068, 0}"; +}, +{ +name = top; +position = "{1068, 1650}"; +} +); +hints = ( +{ +place = "{196, 440}"; +type = Stem; +}, +{ +place = "{1500, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"636 0 LINE", +"636 730 LINE", +"940 0 LINE", +"1196 0 LINE", +"1500 730 LINE", +"1500 0 LINE", +"1940 0 LINE", +"1940 1650 LINE", +"1436 1650 LINE", +"1068 794 LINE", +"700 1650 LINE", +"196 1650 LINE", +"196 0 LINE" +); +} +); +width = 2136; +}, +{ +anchors = ( +{ +name = bottom; +position = "{995, 82}"; +}, +{ +name = top; +position = "{995, 1650}"; +} +); +hints = ( +{ +place = "{256, 204}"; +type = Stem; +}, +{ +place = "{1530, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"460 0 LINE", +"460 1203 LINE", +"927 82 LINE", +"1063 82 LINE", +"1530 1203 LINE", +"1530 0 LINE", +"1734 0 LINE", +"1734 1650 LINE", +"1503 1650 LINE", +"995 438 LINE", +"487 1650 LINE", +"256 1650 LINE", +"256 0 LINE" +); +} +); +width = 1990; +}, +{ +anchors = ( +{ +name = bottom; +position = "{979, 134}"; +}, +{ +name = top; +position = "{949, 1650}"; +} +); +hints = ( +{ +place = "{293, 56}"; +type = Stem; +}, +{ +place = "{1549, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"349 0 LINE", +"349 1500 LINE", +"919 134 LINE", +"979 134 LINE", +"1549 1500 LINE", +"1549 0 LINE", +"1605 0 LINE", +"1605 1650 LINE", +"1545 1650 LINE", +"949 214 LINE", +"353 1650 LINE", +"293 1650 LINE", +"293 0 LINE" +); +} +); +width = 1898; +} +); +}, +{ +color = 5; +glyphname = a; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{699, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 352}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{704, 352}"; +type = Stem; +}, +{ +place = "{73, 440}"; +type = Stem; +}, +{ +place = "{891, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"513 623 OFFCURVE", +"596 704 OFFCURVE", +"707 704 CURVE SMOOTH", +"818 704 OFFCURVE", +"899 623 OFFCURVE", +"899 512 CURVE SMOOTH", +"899 401 OFFCURVE", +"818 320 OFFCURVE", +"707 320 CURVE SMOOTH", +"596 320 OFFCURVE", +"513 401 OFFCURVE", +"513 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"73 209 OFFCURVE", +"281 -32 OFFCURVE", +"579 -32 CURVE SMOOTH", +"697 -32 OFFCURVE", +"800 5 OFFCURVE", +"891 80 CURVE", +"891 0 LINE", +"1307 0 LINE", +"1307 1024 LINE", +"891 1024 LINE", +"891 944 LINE", +"800 1019 OFFCURVE", +"697 1056 OFFCURVE", +"579 1056 CURVE SMOOTH", +"281 1056 OFFCURVE", +"73 819 OFFCURVE", +"73 514 CURVE SMOOTH" +); +} +); +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{699, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{888, 168}"; +type = Stem; +}, +{ +place = "{130, 202}"; +type = Stem; +}, +{ +place = "{1042, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"332 731 OFFCURVE", +"483 888 OFFCURVE", +"691 888 CURVE SMOOTH", +"900 888 OFFCURVE", +"1049 732 OFFCURVE", +"1049 512 CURVE SMOOTH", +"1049 293 OFFCURVE", +"900 136 OFFCURVE", +"691 136 CURVE SMOOTH", +"483 136 OFFCURVE", +"332 293 OFFCURVE", +"332 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"130 201 OFFCURVE", +"345 -32 OFFCURVE", +"639 -32 CURVE SMOOTH", +"808 -32 OFFCURVE", +"953 50 OFFCURVE", +"1042 192 CURVE", +"1042 0 LINE", +"1236 0 LINE", +"1236 1024 LINE", +"1042 1024 LINE", +"1042 832 LINE", +"953 974 OFFCURVE", +"808 1056 OFFCURVE", +"639 1056 CURVE SMOOTH", +"345 1056 OFFCURVE", +"130 823 OFFCURVE", +"130 512 CURVE SMOOTH" +); +} +); +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{165, 54}"; +type = Stem; +}, +{ +place = "{1137, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"219 799 OFFCURVE", +"412 1004 OFFCURVE", +"681 1004 CURVE SMOOTH", +"950 1004 OFFCURVE", +"1143 800 OFFCURVE", +"1143 512 CURVE SMOOTH", +"1143 225 OFFCURVE", +"950 20 OFFCURVE", +"681 20 CURVE SMOOTH", +"412 20 OFFCURVE", +"219 225 OFFCURVE", +"219 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"165 197 OFFCURVE", +"385 -32 OFFCURVE", +"677 -32 CURVE SMOOTH", +"881 -32 OFFCURVE", +"1053 79 OFFCURVE", +"1137 262 CURVE", +"1137 0 LINE", +"1193 0 LINE", +"1193 1024 LINE", +"1137 1024 LINE", +"1137 762 LINE", +"1053 945 OFFCURVE", +"881 1056 OFFCURVE", +"677 1056 CURVE SMOOTH", +"385 1056 OFFCURVE", +"165 827 OFFCURVE", +"165 512 CURVE SMOOTH" +); +} +); +width = 1428; +} +); +leftKerningGroup = _a; +rightKerningGroup = _a; +unicode = 0061; +}, +{ +color = 5; +glyphname = aacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{699, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 457, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{739, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 594, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 673, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1428; +} +); +leftMetricsKey = a; +rightMetricsKey = a; +unicode = 00E1; +}, +{ +color = 5; +glyphname = abreve; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{699, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 223, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{699, 1679}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 276, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 317, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1428; +} +); +leftMetricsKey = a; +rightMetricsKey = a; +unicode = 0103; +}, +{ +color = 5; +glyphname = acircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{699, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 237, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{699, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 314, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 371, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1428; +} +); +leftMetricsKey = a; +rightMetricsKey = a; +unicode = 00E2; +}, +{ +color = 5; +glyphname = adieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{699, 1610}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 251, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{699, 1509}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 352, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1446}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 423, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1428; +} +); +leftMetricsKey = a; +rightMetricsKey = a; +unicode = 00E4; +}, +{ +color = 5; +glyphname = agrave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{615, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 289, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{616, 1666}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 427, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1657}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 604, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1428; +} +); +leftMetricsKey = a; +rightMetricsKey = a; +unicode = 00E0; +}, +{ +color = 5; +glyphname = amacron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{699, 1528}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 291, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{699, 1457}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 291, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1412}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 299, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1428; +} +); +leftMetricsKey = a; +rightMetricsKey = a; +unicode = 0101; +}, +{ +color = 5; +glyphname = aogonek; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{699, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 955, -7}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1638; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{699, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 955, -21}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1687; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 957, -29}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1718; +} +); +leftMetricsKey = a; +rightMetricsKey = a; +unicode = 0105; +}, +{ +color = 5; +glyphname = aring; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{699, 1772}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 351, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{699, 1688}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 446, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1634}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 513, -2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1428; +} +); +leftMetricsKey = a; +rightMetricsKey = a; +unicode = 00E5; +}, +{ +color = 5; +glyphname = atilde; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{579, -10}"; +}, +{ +name = ogonek; +position = "{1307, 0}"; +}, +{ +name = top; +position = "{699, 1582}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = tildecomb; +transform = "{1, 0, 0, 1, 138, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{639, 0}"; +}, +{ +name = ogonek; +position = "{1236, 0}"; +}, +{ +name = top; +position = "{699, 1549}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = tildecomb; +transform = "{1, 0, 0, 1, 189, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{677, 0}"; +}, +{ +name = ogonek; +position = "{1193, 0}"; +}, +{ +name = top; +position = "{707, 1530}"; +} +); +components = ( +{ +alignment = -1; +name = a; +}, +{ +alignment = -1; +name = tildecomb; +transform = "{1, 0, 0, 1, 229, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1428; +} +); +leftMetricsKey = a; +rightMetricsKey = a; +unicode = 00E3; +}, +{ +color = 5; +glyphname = ae; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 246}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{380, 216}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{728, 328}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 328}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{454, 216}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{780, 276}"; +type = Stem; +}, +{ +place = "{0, 412}"; +type = Stem; +}, +{ +place = "{1376, 406}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"488 -32 OFFCURVE", +"604 -1 OFFCURVE", +"848 94 CURVE", +"969 7 OFFCURVE", +"1092 -32 OFFCURVE", +"1242 -32 CURVE SMOOTH", +"1478 -32 OFFCURVE", +"1665 65 OFFCURVE", +"1766 240 CURVE", +"1468 388 LINE", +"1395 317 OFFCURVE", +"1352 296 OFFCURVE", +"1277 296 CURVE SMOOTH", +"1154 296 OFFCURVE", +"1084 353 OFFCURVE", +"1084 454 CURVE", +"1778 454 LINE", +"1781 485 OFFCURVE", +"1782 508 OFFCURVE", +"1782 528 CURVE SMOOTH", +"1782 846 OFFCURVE", +"1563 1056 OFFCURVE", +"1233 1056 CURVE SMOOTH", +"1109 1056 OFFCURVE", +"994 1027 OFFCURVE", +"888 968 CURVE", +"788 1024 OFFCURVE", +"635 1056 OFFCURVE", +"475 1056 CURVE SMOOTH", +"318 1056 OFFCURVE", +"173 1025 OFFCURVE", +"68 968 CURVE", +"194 684 LINE", +"253 707 OFFCURVE", +"376 728 OFFCURVE", +"449 728 CURVE SMOOTH", +"570 728 OFFCURVE", +"664 670 OFFCURVE", +"664 594 CURVE SMOOTH", +"664 534 LINE", +"583 572 OFFCURVE", +"472 596 OFFCURVE", +"378 596 CURVE SMOOTH", +"154 596 OFFCURVE", +"0 466 OFFCURVE", +"0 277 CURVE SMOOTH", +"0 82 OFFCURVE", +"137 -32 OFFCURVE", +"374 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"470 214 OFFCURVE", +"412 253 OFFCURVE", +"412 302 CURVE SMOOTH", +"412 348 OFFCURVE", +"465 380 OFFCURVE", +"539 380 CURVE SMOOTH", +"616 380 OFFCURVE", +"678 343 OFFCURVE", +"678 296 CURVE SMOOTH", +"678 250 OFFCURVE", +"619 214 OFFCURVE", +"545 214 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1096 670 LINE", +"1098 739 OFFCURVE", +"1150 780 OFFCURVE", +"1238 780 CURVE SMOOTH", +"1320 780 OFFCURVE", +"1363 745 OFFCURVE", +"1376 670 CURVE" +); +} +); +width = 1859; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 127}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{504, 115}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{899, 157}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 158}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{490, 114}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{918, 138}"; +type = Stem; +}, +{ +place = "{0, 191}"; +type = Stem; +}, +{ +place = "{1607, 191}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"567 -32 OFFCURVE", +"709 49 OFFCURVE", +"828 195 CURVE", +"929 50 OFFCURVE", +"1089 -32 OFFCURVE", +"1279 -32 CURVE SMOOTH", +"1491 -32 OFFCURVE", +"1667 60 OFFCURVE", +"1766 223 CURVE", +"1625 297 LINE", +"1544 184 OFFCURVE", +"1432 126 OFFCURVE", +"1293 126 CURVE SMOOTH", +"1069 126 OFFCURVE", +"915 276 OFFCURVE", +"915 490 CURVE", +"1797 490 LINE", +"1798 507 OFFCURVE", +"1798 512 OFFCURVE", +"1798 522 CURVE", +"1797 828 OFFCURVE", +"1568 1056 OFFCURVE", +"1264 1056 CURVE SMOOTH", +"1085 1056 OFFCURVE", +"930 965 OFFCURVE", +"837 828 CURVE", +"773 977 OFFCURVE", +"637 1056 OFFCURVE", +"442 1056 CURVE SMOOTH", +"287 1056 OFFCURVE", +"161 1006 OFFCURVE", +"65 921 CURVE", +"161 811 LINE", +"237 869 OFFCURVE", +"333 899 OFFCURVE", +"427 899 CURVE SMOOTH", +"605 899 OFFCURVE", +"722 790 OFFCURVE", +"722 611 CURVE SMOOTH", +"722 500 LINE", +"648 573 OFFCURVE", +"526 619 OFFCURVE", +"397 619 CURVE SMOOTH", +"169 619 OFFCURVE", +"0 486 OFFCURVE", +"0 291 CURVE SMOOTH", +"0 92 OFFCURVE", +"165 -32 OFFCURVE", +"394 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"312 95 OFFCURVE", +"191 179 OFFCURVE", +"191 302 CURVE SMOOTH", +"191 424 OFFCURVE", +"310 504 OFFCURVE", +"459 504 CURVE SMOOTH", +"609 504 OFFCURVE", +"731 422 OFFCURVE", +"731 300 CURVE SMOOTH", +"731 177 OFFCURVE", +"610 95 OFFCURVE", +"461 95 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"921 604 LINE", +"936 784 OFFCURVE", +"1081 918 OFFCURVE", +"1265 918 CURVE SMOOTH", +"1448 918 OFFCURVE", +"1588 786 OFFCURVE", +"1607 604 CURVE" +); +} +); +width = 1916; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{582, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1006, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{512, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{0, 52}"; +type = Stem; +}, +{ +place = "{1752, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"616 -32 OFFCURVE", +"775 81 OFFCURVE", +"814 258 CURVE", +"903 77 OFFCURVE", +"1086 -32 OFFCURVE", +"1302 -32 CURVE SMOOTH", +"1498 -32 OFFCURVE", +"1668 57 OFFCURVE", +"1766 212 CURVE", +"1722 240 LINE", +"1636 101 OFFCURVE", +"1482 20 OFFCURVE", +"1302 20 CURVE SMOOTH", +"1015 20 OFFCURVE", +"808 227 OFFCURVE", +"808 512 CURVE", +"1808 512 LINE", +"1808 514 OFFCURVE", +"1808 515 OFFCURVE", +"1808 518 CURVE SMOOTH", +"1808 816 OFFCURVE", +"1570 1056 OFFCURVE", +"1282 1056 CURVE SMOOTH", +"1070 1056 OFFCURVE", +"890 926 OFFCURVE", +"804 740 CURVE", +"777 915 OFFCURVE", +"649 1056 OFFCURVE", +"415 1056 CURVE SMOOTH", +"282 1056 OFFCURVE", +"157 1010 OFFCURVE", +"62 892 CURVE", +"102 860 LINE", +"180 945 OFFCURVE", +"270 1006 OFFCURVE", +"412 1006 CURVE SMOOTH", +"627 1006 OFFCURVE", +"758 866 OFFCURVE", +"758 622 CURVE SMOOTH", +"758 478 LINE", +"688 574 OFFCURVE", +"560 634 OFFCURVE", +"408 634 CURVE SMOOTH", +"178 634 OFFCURVE", +"0 498 OFFCURVE", +"0 300 CURVE SMOOTH", +"0 99 OFFCURVE", +"182 -32 OFFCURVE", +"406 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"212 20 OFFCURVE", +"52 132 OFFCURVE", +"52 302 CURVE SMOOTH", +"52 472 OFFCURVE", +"212 582 OFFCURVE", +"408 582 CURVE SMOOTH", +"604 582 OFFCURVE", +"764 472 OFFCURVE", +"764 302 CURVE SMOOTH", +"764 132 OFFCURVE", +"604 20 OFFCURVE", +"408 20 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"810 562 LINE", +"834 812 OFFCURVE", +"1037 1004 OFFCURVE", +"1282 1004 CURVE SMOOTH", +"1527 1004 OFFCURVE", +"1728 812 OFFCURVE", +"1752 562 CURVE" +); +} +); +width = 1952; +} +); +rightKerningGroup = _A1; +rightMetricsKey = e; +unicode = 00E6; +}, +{ +color = 5; +glyphname = b; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{733, 0}"; +}, +{ +name = top; +position = "{733, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 352}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{704, 352}"; +type = Stem; +}, +{ +place = "{157, 416}"; +type = Stem; +}, +{ +place = "{951, 440}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"565 623 OFFCURVE", +"646 704 OFFCURVE", +"757 704 CURVE SMOOTH", +"868 704 OFFCURVE", +"951 623 OFFCURVE", +"951 512 CURVE SMOOTH", +"951 401 OFFCURVE", +"868 320 OFFCURVE", +"757 320 CURVE SMOOTH", +"646 320 OFFCURVE", +"565 401 OFFCURVE", +"565 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"157 1720 LINE", +"157 0 LINE", +"573 0 LINE", +"573 80 LINE", +"664 5 OFFCURVE", +"767 -32 OFFCURVE", +"885 -32 CURVE SMOOTH", +"1183 -32 OFFCURVE", +"1391 209 OFFCURVE", +"1391 514 CURVE SMOOTH", +"1391 819 OFFCURVE", +"1183 1056 OFFCURVE", +"885 1056 CURVE SMOOTH", +"767 1056 OFFCURVE", +"664 1019 OFFCURVE", +"573 944 CURVE", +"573 1720 LINE" +); +} +); +width = 1465; +}, +{ +anchors = ( +{ +name = bottom; +position = "{721, 0}"; +}, +{ +name = top; +position = "{721, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{888, 168}"; +type = Stem; +}, +{ +place = "{206, 194}"; +type = Stem; +}, +{ +place = "{1110, 202}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"393 732 OFFCURVE", +"542 888 OFFCURVE", +"751 888 CURVE SMOOTH", +"959 888 OFFCURVE", +"1110 731 OFFCURVE", +"1110 512 CURVE SMOOTH", +"1110 293 OFFCURVE", +"959 136 OFFCURVE", +"751 136 CURVE SMOOTH", +"542 136 OFFCURVE", +"393 293 OFFCURVE", +"393 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"206 1720 LINE", +"206 0 LINE", +"400 0 LINE", +"400 192 LINE", +"489 50 OFFCURVE", +"634 -32 OFFCURVE", +"803 -32 CURVE SMOOTH", +"1097 -32 OFFCURVE", +"1312 201 OFFCURVE", +"1312 512 CURVE SMOOTH", +"1312 823 OFFCURVE", +"1097 1056 OFFCURVE", +"803 1056 CURVE SMOOTH", +"634 1056 OFFCURVE", +"489 974 OFFCURVE", +"400 832 CURVE", +"400 1720 LINE" +); +} +); +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{714, 0}"; +}, +{ +name = top; +position = "{714, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{235, 56}"; +type = Stem; +}, +{ +place = "{1209, 54}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"285 800 OFFCURVE", +"478 1004 OFFCURVE", +"747 1004 CURVE SMOOTH", +"1016 1004 OFFCURVE", +"1209 799 OFFCURVE", +"1209 512 CURVE SMOOTH", +"1209 225 OFFCURVE", +"1016 20 OFFCURVE", +"747 20 CURVE SMOOTH", +"478 20 OFFCURVE", +"285 225 OFFCURVE", +"285 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"235 1720 LINE", +"235 0 LINE", +"291 0 LINE", +"291 262 LINE", +"375 79 OFFCURVE", +"547 -32 OFFCURVE", +"751 -32 CURVE SMOOTH", +"1043 -32 OFFCURVE", +"1263 197 OFFCURVE", +"1263 512 CURVE SMOOTH", +"1263 827 OFFCURVE", +"1043 1056 OFFCURVE", +"751 1056 CURVE SMOOTH", +"547 1056 OFFCURVE", +"375 945 OFFCURVE", +"291 762 CURVE", +"291 1720 LINE" +); +} +); +width = 1428; +} +); +rightKerningGroup = _b; +unicode = 0062; +}, +{ +color = 5; +glyphname = c; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{567, 0}"; +}, +{ +name = cedilla; +position = "{599, 0}"; +}, +{ +name = top; +position = "{567, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 338}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{718, 338}"; +type = Stem; +}, +{ +place = "{55, 440}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"779 -32 OFFCURVE", +"902 10 OFFCURVE", +"969 60 CURVE", +"833 340 LINE", +"802 319 OFFCURVE", +"754 306 OFFCURVE", +"705 306 CURVE SMOOTH", +"583 306 OFFCURVE", +"495 393 OFFCURVE", +"495 512 CURVE SMOOTH", +"495 631 OFFCURVE", +"583 718 OFFCURVE", +"705 718 CURVE SMOOTH", +"754 718 OFFCURVE", +"802 705 OFFCURVE", +"833 684 CURVE", +"969 964 LINE", +"902 1014 OFFCURVE", +"779 1056 OFFCURVE", +"639 1056 CURVE SMOOTH", +"307 1056 OFFCURVE", +"55 820 OFFCURVE", +"55 512 CURVE SMOOTH", +"55 204 OFFCURVE", +"307 -32 OFFCURVE", +"639 -32 CURVE SMOOTH" +); +} +); +width = 1010; +}, +{ +anchors = ( +{ +name = bottom; +position = "{614, 0}"; +}, +{ +name = cedilla; +position = "{646, 0}"; +}, +{ +name = top; +position = "{614, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 162}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{894, 162}"; +type = Stem; +}, +{ +place = "{121, 202}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"815 -32 OFFCURVE", +"943 11 OFFCURVE", +"1027 77 CURVE", +"940 199 LINE", +"876 154 OFFCURVE", +"795 130 OFFCURVE", +"707 130 CURVE SMOOTH", +"475 130 OFFCURVE", +"323 302 OFFCURVE", +"323 512 CURVE SMOOTH", +"323 722 OFFCURVE", +"475 894 OFFCURVE", +"707 894 CURVE SMOOTH", +"795 894 OFFCURVE", +"876 870 OFFCURVE", +"940 825 CURVE", +"1027 947 LINE", +"943 1013 OFFCURVE", +"815 1056 OFFCURVE", +"681 1056 CURVE SMOOTH", +"363 1056 OFFCURVE", +"121 815 OFFCURVE", +"121 512 CURVE SMOOTH", +"121 209 OFFCURVE", +"363 -32 OFFCURVE", +"681 -32 CURVE SMOOTH" +); +} +); +width = 1119; +}, +{ +anchors = ( +{ +name = bottom; +position = "{649, 0}"; +}, +{ +name = cedilla; +position = "{681, 0}"; +}, +{ +name = top; +position = "{649, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{163, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"845 -32 OFFCURVE", +"967 12 OFFCURVE", +"1063 88 CURVE", +"1027 126 LINE", +"941 56 OFFCURVE", +"831 20 OFFCURVE", +"710 20 CURVE SMOOTH", +"420 20 OFFCURVE", +"215 229 OFFCURVE", +"215 512 CURVE SMOOTH", +"215 798 OFFCURVE", +"423 1004 OFFCURVE", +"709 1004 CURVE SMOOTH", +"831 1004 OFFCURVE", +"941 968 OFFCURVE", +"1029 898 CURVE", +"1063 936 LINE", +"969 1012 OFFCURVE", +"845 1056 OFFCURVE", +"709 1056 CURVE SMOOTH", +"401 1056 OFFCURVE", +"163 832 OFFCURVE", +"163 512 CURVE SMOOTH", +"163 194 OFFCURVE", +"401 -32 OFFCURVE", +"709 -32 CURVE SMOOTH" +); +} +); +width = 1187; +} +); +leftKerningGroup = _c; +rightKerningGroup = _c; +unicode = 0063; +}, +{ +color = 5; +glyphname = cacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{567, 0}"; +}, +{ +name = cedilla; +position = "{599, 0}"; +}, +{ +name = top; +position = "{567, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 325, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1010; +}, +{ +anchors = ( +{ +name = bottom; +position = "{614, 0}"; +}, +{ +name = cedilla; +position = "{646, 0}"; +}, +{ +name = top; +position = "{654, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 509, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1119; +}, +{ +anchors = ( +{ +name = bottom; +position = "{649, 0}"; +}, +{ +name = cedilla; +position = "{681, 0}"; +}, +{ +name = top; +position = "{649, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 615, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1187; +} +); +leftMetricsKey = c; +rightMetricsKey = c; +unicode = 0107; +}, +{ +color = 5; +glyphname = ccaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{567, 0}"; +}, +{ +name = cedilla; +position = "{599, 0}"; +}, +{ +name = top; +position = "{567, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 105, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1070; +}, +{ +anchors = ( +{ +name = bottom; +position = "{614, 0}"; +}, +{ +name = cedilla; +position = "{646, 0}"; +}, +{ +name = top; +position = "{614, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 229, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1119; +}, +{ +anchors = ( +{ +name = bottom; +position = "{649, 0}"; +}, +{ +name = cedilla; +position = "{681, 0}"; +}, +{ +name = top; +position = "{649, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 313, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1187; +} +); +leftMetricsKey = c; +rightMetricsKey = c; +unicode = 010D; +}, +{ +color = 5; +glyphname = ccedilla; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{482, -595}"; +}, +{ +name = cedilla; +position = "{599, 0}"; +}, +{ +name = top; +position = "{567, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 202, -7}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1010; +}, +{ +anchors = ( +{ +name = bottom; +position = "{587, -586}"; +}, +{ +name = cedilla; +position = "{646, 0}"; +}, +{ +name = top; +position = "{614, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 334, -21}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1119; +}, +{ +anchors = ( +{ +name = bottom; +position = "{659, -580}"; +}, +{ +name = cedilla; +position = "{681, 0}"; +}, +{ +name = top; +position = "{649, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 423, -29}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1187; +} +); +leftMetricsKey = c; +rightMetricsKey = c; +unicode = 00E7; +}, +{ +color = 5; +glyphname = cdotaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{567, 0}"; +}, +{ +name = cedilla; +position = "{599, 0}"; +}, +{ +name = top; +position = "{567, 1724}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 327, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1010; +}, +{ +anchors = ( +{ +name = bottom; +position = "{614, 0}"; +}, +{ +name = cedilla; +position = "{646, 0}"; +}, +{ +name = top; +position = "{613, 1598}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 492, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1119; +}, +{ +anchors = ( +{ +name = bottom; +position = "{649, 0}"; +}, +{ +name = cedilla; +position = "{681, 0}"; +}, +{ +name = top; +position = "{649, 1520}"; +} +); +components = ( +{ +alignment = -1; +name = c; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 601, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1187; +} +); +leftMetricsKey = c; +rightMetricsKey = c; +unicode = 010B; +}, +{ +color = 5; +glyphname = d; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{591, 0}"; +}, +{ +name = top; +position = "{632, 1547}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 352}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{704, 352}"; +type = Stem; +}, +{ +place = "{73, 440}"; +type = Stem; +}, +{ +place = "{891, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"513 623 OFFCURVE", +"596 704 OFFCURVE", +"707 704 CURVE SMOOTH", +"818 704 OFFCURVE", +"899 623 OFFCURVE", +"899 512 CURVE SMOOTH", +"899 401 OFFCURVE", +"818 320 OFFCURVE", +"707 320 CURVE SMOOTH", +"596 320 OFFCURVE", +"513 401 OFFCURVE", +"513 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"73 209 OFFCURVE", +"281 -32 OFFCURVE", +"579 -32 CURVE SMOOTH", +"697 -32 OFFCURVE", +"800 5 OFFCURVE", +"891 80 CURVE", +"891 0 LINE", +"1307 0 LINE", +"1307 1720 LINE", +"891 1720 LINE", +"891 944 LINE", +"800 1019 OFFCURVE", +"697 1056 OFFCURVE", +"579 1056 CURVE SMOOTH", +"281 1056 OFFCURVE", +"73 819 OFFCURVE", +"73 514 CURVE SMOOTH" +); +} +); +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{641, 0}"; +}, +{ +name = top; +position = "{647, 1374}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{888, 168}"; +type = Stem; +}, +{ +place = "{130, 202}"; +type = Stem; +}, +{ +place = "{1042, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"332 731 OFFCURVE", +"483 888 OFFCURVE", +"691 888 CURVE SMOOTH", +"900 888 OFFCURVE", +"1049 732 OFFCURVE", +"1049 512 CURVE SMOOTH", +"1049 293 OFFCURVE", +"900 136 OFFCURVE", +"691 136 CURVE SMOOTH", +"483 136 OFFCURVE", +"332 293 OFFCURVE", +"332 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"130 201 OFFCURVE", +"345 -32 OFFCURVE", +"639 -32 CURVE SMOOTH", +"808 -32 OFFCURVE", +"953 50 OFFCURVE", +"1042 192 CURVE", +"1042 0 LINE", +"1236 0 LINE", +"1236 1720 LINE", +"1042 1720 LINE", +"1042 832 LINE", +"953 974 OFFCURVE", +"808 1056 OFFCURVE", +"639 1056 CURVE SMOOTH", +"345 1056 OFFCURVE", +"130 823 OFFCURVE", +"130 512 CURVE SMOOTH" +); +} +); +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{673, 0}"; +}, +{ +name = top; +position = "{657, 1266}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{165, 54}"; +type = Stem; +}, +{ +place = "{1137, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"219 799 OFFCURVE", +"412 1004 OFFCURVE", +"681 1004 CURVE SMOOTH", +"950 1004 OFFCURVE", +"1143 800 OFFCURVE", +"1143 512 CURVE SMOOTH", +"1143 225 OFFCURVE", +"950 20 OFFCURVE", +"681 20 CURVE SMOOTH", +"412 20 OFFCURVE", +"219 225 OFFCURVE", +"219 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"165 197 OFFCURVE", +"385 -32 OFFCURVE", +"677 -32 CURVE SMOOTH", +"881 -32 OFFCURVE", +"1053 79 OFFCURVE", +"1137 262 CURVE", +"1137 0 LINE", +"1193 0 LINE", +"1193 1720 LINE", +"1137 1720 LINE", +"1137 762 LINE", +"1053 945 OFFCURVE", +"881 1056 OFFCURVE", +"677 1056 CURVE SMOOTH", +"385 1056 OFFCURVE", +"165 827 OFFCURVE", +"165 512 CURVE SMOOTH" +); +} +); +width = 1428; +} +); +leftKerningGroup = _d; +rightKerningGroup = _A1; +unicode = 0064; +}, +{ +color = 5; +glyphname = eth; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 354}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{704, 368}"; +type = Stem; +}, +{ +place = "{63, 442}"; +type = Stem; +}, +{ +place = "{879, 442}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1059 -32 OFFCURVE", +"1321 196 OFFCURVE", +"1321 512 CURVE SMOOTH", +"1321 1002 OFFCURVE", +"1033 1296 OFFCURVE", +"767 1476 CURVE", +"861 1570 LINE", +"687 1750 LINE", +"543 1608 LINE", +"407 1677 OFFCURVE", +"257 1725 OFFCURVE", +"149 1750 CURVE", +"53 1402 LINE", +"100 1392 OFFCURVE", +"182 1368 OFFCURVE", +"265 1330 CURVE", +"145 1212 LINE", +"323 1034 LINE", +"491 1200 LINE", +"558 1160 OFFCURVE", +"625 1118 OFFCURVE", +"695 1070 CURVE", +"687 1071 OFFCURVE", +"673 1072 OFFCURVE", +"663 1072 CURVE SMOOTH", +"413 1072 OFFCURVE", +"63 898 OFFCURVE", +"63 512 CURVE SMOOTH", +"63 196 OFFCURVE", +"313 -32 OFFCURVE", +"695 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"579 322 OFFCURVE", +"505 402 OFFCURVE", +"505 512 CURVE SMOOTH", +"505 626 OFFCURVE", +"591 704 OFFCURVE", +"693 704 CURVE SMOOTH", +"793 704 OFFCURVE", +"879 626 OFFCURVE", +"879 512 CURVE SMOOTH", +"879 402 OFFCURVE", +"801 322 OFFCURVE", +"693 322 CURVE SMOOTH" +); +} +); +width = 1410; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{888, 174}"; +type = Stem; +}, +{ +place = "{124, 203}"; +type = Stem; +}, +{ +place = "{1081, 202}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1036 -32 OFFCURVE", +"1283 194 OFFCURVE", +"1283 512 CURVE SMOOTH", +"1283 981 OFFCURVE", +"1085 1317 OFFCURVE", +"810 1529 CURVE", +"938 1656 LINE", +"847 1750 LINE", +"697 1601 LINE", +"591 1667 OFFCURVE", +"475 1716 OFFCURVE", +"367 1750 CURVE", +"317 1584 LINE", +"396 1558 OFFCURVE", +"484 1520 OFFCURVE", +"565 1469 CURVE", +"428 1332 LINE", +"521 1239 LINE", +"680 1398 LINE", +"826 1284 OFFCURVE", +"938 1120 OFFCURVE", +"996 903 CURVE", +"935 1002 OFFCURVE", +"823 1062 OFFCURVE", +"693 1062 CURVE SMOOTH", +"406 1062 OFFCURVE", +"124 859 OFFCURVE", +"124 512 CURVE SMOOTH", +"124 194 OFFCURVE", +"367 -32 OFFCURVE", +"705 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"483 136 OFFCURVE", +"327 294 OFFCURVE", +"327 512 CURVE SMOOTH", +"327 732 OFFCURVE", +"488 888 OFFCURVE", +"704 888 CURVE SMOOTH", +"918 888 OFFCURVE", +"1081 732 OFFCURVE", +"1081 512 CURVE SMOOTH", +"1081 294 OFFCURVE", +"921 136 OFFCURVE", +"704 136 CURVE SMOOTH" +); +} +); +width = 1432; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{163, 52}"; +type = Stem; +}, +{ +place = "{1207, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1021 -32 OFFCURVE", +"1259 192 OFFCURVE", +"1259 512 CURVE SMOOTH", +"1259 968 OFFCURVE", +"1117 1330 OFFCURVE", +"837 1562 CURVE", +"987 1710 LINE", +"947 1750 LINE", +"793 1596 LINE", +"707 1660 OFFCURVE", +"611 1710 OFFCURVE", +"503 1750 CURVE", +"483 1698 LINE", +"581 1662 OFFCURVE", +"673 1616 OFFCURVE", +"753 1556 CURVE", +"605 1408 LINE", +"645 1368 LINE", +"799 1522 LINE", +"997 1362 OFFCURVE", +"1135 1122 OFFCURVE", +"1185 798 CURVE", +"1091 958 OFFCURVE", +"917 1056 OFFCURVE", +"711 1056 CURVE SMOOTH", +"401 1056 OFFCURVE", +"163 834 OFFCURVE", +"163 512 CURVE SMOOTH", +"163 192 OFFCURVE", +"401 -32 OFFCURVE", +"711 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"423 20 OFFCURVE", +"215 226 OFFCURVE", +"215 512 CURVE SMOOTH", +"215 798 OFFCURVE", +"423 1004 OFFCURVE", +"711 1004 CURVE SMOOTH", +"997 1004 OFFCURVE", +"1207 798 OFFCURVE", +"1207 512 CURVE SMOOTH", +"1207 226 OFFCURVE", +"997 20 OFFCURVE", +"711 20 CURVE SMOOTH" +); +} +); +width = 1446; +} +); +rightKerningGroup = _A1; +unicode = 00F0; +}, +{ +color = 5; +glyphname = dcaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{591, 0}"; +}, +{ +name = top; +position = "{632, 2203}"; +} +); +components = ( +{ +alignment = -1; +name = d; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 170, 523}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{641, 0}"; +}, +{ +name = top; +position = "{647, 2030}"; +} +); +components = ( +{ +alignment = -1; +name = d; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 262.365, 350.302}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{673, 0}"; +}, +{ +name = top; +position = "{657, 1922}"; +} +); +components = ( +{ +alignment = -1; +name = d; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 321, 242}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1428; +} +); +leftMetricsKey = d; +rightMetricsKey = d; +unicode = 010F; +}, +{ +color = 5; +glyphname = dcroat; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = d; +} +); +hints = ( +{ +horizontal = 1; +place = "{1238, 264}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +rightMetricsKey = "=d"; +paths = ( +{ +closed = 1; +nodes = ( +"685 1502 LINE", +"685 1238 LINE", +"1409 1238 LINE", +"1409 1502 LINE" +); +} +); +width = 1566; +}, +{ +components = ( +{ +alignment = -1; +name = d; +} +); +hints = ( +{ +horizontal = 1; +place = "{1306, 130}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +rightMetricsKey = "=d-75"; +paths = ( +{ +closed = 1; +nodes = ( +"675 1436 LINE", +"675 1306 LINE", +"1399 1306 LINE", +"1399 1436 LINE" +); +} +); +width = 1530; +}, +{ +components = ( +{ +alignment = -1; +name = d; +} +); +hints = ( +{ +horizontal = 1; +place = "{1348, 46}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +rightMetricsKey = "=d-150"; +paths = ( +{ +closed = 1; +nodes = ( +"669 1394 LINE", +"669 1348 LINE", +"1393 1348 LINE", +"1393 1394 LINE" +); +} +); +width = 1478; +} +); +leftMetricsKey = d; +rightKerningGroup = _A1; +unicode = 0111; +}, +{ +color = 5; +glyphname = e; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{682, 0}"; +}, +{ +name = ogonek; +position = "{713, 0}"; +}, +{ +name = top; +position = "{639, 1056}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 328}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{770, 286}"; +type = Stem; +}, +{ +place = "{59, 442}"; +type = Stem; +}, +{ +place = "{781, 406}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{454, 196}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"882 -32 OFFCURVE", +"1075 71 OFFCURVE", +"1171 240 CURVE", +"873 388 LINE", +"801 318 OFFCURVE", +"756 296 OFFCURVE", +"682 296 CURVE SMOOTH", +"561 296 OFFCURVE", +"489 355 OFFCURVE", +"489 454 CURVE", +"1183 454 LINE", +"1186 488 OFFCURVE", +"1187 508 OFFCURVE", +"1187 529 CURVE SMOOTH", +"1187 842 OFFCURVE", +"969 1056 OFFCURVE", +"650 1056 CURVE SMOOTH", +"315 1056 OFFCURVE", +"59 821 OFFCURVE", +"59 514 CURVE SMOOTH", +"59 204 OFFCURVE", +"318 -32 OFFCURVE", +"658 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"501 650 LINE", +"502 727 OFFCURVE", +"551 770 OFFCURVE", +"639 770 CURVE SMOOTH", +"722 770 OFFCURVE", +"768 732 OFFCURVE", +"781 650 CURVE" +); +} +); +width = 1264; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{669, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 158}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{914, 142}"; +type = Stem; +}, +{ +place = "{122, 204}"; +type = Stem; +}, +{ +place = "{1013, 191}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{490, 106}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"896 -32 OFFCURVE", +"1074 62 OFFCURVE", +"1172 223 CURVE", +"1030 297 LINE", +"949 185 OFFCURVE", +"837 126 OFFCURVE", +"698 126 CURVE SMOOTH", +"475 126 OFFCURVE", +"320 276 OFFCURVE", +"320 490 CURVE", +"1202 490 LINE", +"1203 504 OFFCURVE", +"1204 516 OFFCURVE", +"1204 535 CURVE SMOOTH", +"1204 820 OFFCURVE", +"968 1056 OFFCURVE", +"673 1056 CURVE SMOOTH", +"368 1056 OFFCURVE", +"122 819 OFFCURVE", +"122 508 CURVE SMOOTH", +"122 203 OFFCURVE", +"360 -32 OFFCURVE", +"689 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"326 596 LINE", +"341 780 OFFCURVE", +"485 914 OFFCURVE", +"669 914 CURVE SMOOTH", +"850 914 OFFCURVE", +"993 782 OFFCURVE", +"1013 596 CURVE" +); +} +); +width = 1322; +}, +{ +anchors = ( +{ +name = bottom; +position = "{708, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{688, 1026}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{160, 56}"; +type = Stem; +}, +{ +place = "{1158, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{512, 50}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"905 -32 OFFCURVE", +"1074 57 OFFCURVE", +"1172 212 CURVE", +"1128 240 LINE", +"1042 101 OFFCURVE", +"888 20 OFFCURVE", +"708 20 CURVE SMOOTH", +"421 20 OFFCURVE", +"214 227 OFFCURVE", +"214 512 CURVE", +"1213 512 LINE", +"1214 519 OFFCURVE", +"1214 524 OFFCURVE", +"1214 529 CURVE SMOOTH", +"1210 798 OFFCURVE", +"995 1056 OFFCURVE", +"687 1056 CURVE SMOOTH", +"402 1056 OFFCURVE", +"160 817 OFFCURVE", +"160 505 CURVE SMOOTH", +"160 203 OFFCURVE", +"387 -32 OFFCURVE", +"708 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"216 562 LINE", +"240 813 OFFCURVE", +"444 1004 OFFCURVE", +"688 1004 CURVE SMOOTH", +"931 1004 OFFCURVE", +"1134 814 OFFCURVE", +"1158 562 CURVE" +); +} +); +width = 1358; +} +); +leftKerningGroup = _c; +rightKerningGroup = _c; +unicode = 0065; +}, +{ +color = 5; +glyphname = eacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{682, 0}"; +}, +{ +name = ogonek; +position = "{713, 0}"; +}, +{ +name = top; +position = "{639, 1730}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 397, 32}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1264; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{709, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 564, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1322; +}, +{ +anchors = ( +{ +name = bottom; +position = "{708, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{688, 1682}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 654, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1358; +} +); +leftMetricsKey = e; +rightMetricsKey = e; +unicode = 00E9; +}, +{ +color = 5; +glyphname = ecaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{682, 0}"; +}, +{ +name = ogonek; +position = "{713, 0}"; +}, +{ +name = top; +position = "{639, 1712}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 177, 32}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1264; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{669, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 284, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1322; +}, +{ +anchors = ( +{ +name = bottom; +position = "{708, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{688, 1682}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 352, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1358; +} +); +leftMetricsKey = e; +rightMetricsKey = e; +unicode = 011B; +}, +{ +color = 5; +glyphname = ecircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{682, 0}"; +}, +{ +name = ogonek; +position = "{713, 0}"; +}, +{ +name = top; +position = "{639, 1712}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 177, 32}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1264; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{669, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 284, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1322; +}, +{ +anchors = ( +{ +name = bottom; +position = "{708, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{688, 1682}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 352, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1358; +} +); +leftMetricsKey = e; +rightMetricsKey = e; +unicode = 00EA; +}, +{ +color = 5; +glyphname = edieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{682, 0}"; +}, +{ +name = ogonek; +position = "{713, 0}"; +}, +{ +name = top; +position = "{639, 1642}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 191, 32}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1264; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{669, 1509}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 322, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1322; +}, +{ +anchors = ( +{ +name = bottom; +position = "{708, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{688, 1448}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 404, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1358; +} +); +leftMetricsKey = e; +rightMetricsKey = e; +unicode = 00EB; +}, +{ +color = 5; +glyphname = edotaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{682, 0}"; +}, +{ +name = ogonek; +position = "{713, 0}"; +}, +{ +name = top; +position = "{639, 1756}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 399, 32}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1264; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{668, 1598}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 547, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1322; +}, +{ +anchors = ( +{ +name = bottom; +position = "{708, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{688, 1522}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 640, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1358; +} +); +leftMetricsKey = e; +rightMetricsKey = e; +unicode = 0117; +}, +{ +color = 5; +glyphname = egrave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{682, 0}"; +}, +{ +name = ogonek; +position = "{713, 0}"; +}, +{ +name = top; +position = "{555, 1712}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 229, 32}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1264; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{586, 1666}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 397, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1322; +}, +{ +anchors = ( +{ +name = bottom; +position = "{708, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{688, 1659}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 585, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1358; +} +); +leftMetricsKey = e; +rightMetricsKey = e; +unicode = 00E8; +}, +{ +color = 5; +glyphname = emacron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{682, 0}"; +}, +{ +name = ogonek; +position = "{713, 0}"; +}, +{ +name = top; +position = "{639, 1560}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 231, 32}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1264; +}, +{ +anchors = ( +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{669, 1457}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 261, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1322; +}, +{ +anchors = ( +{ +name = bottom; +position = "{708, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{688, 1414}"; +} +); +components = ( +{ +alignment = -1; +name = e; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 280, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1358; +} +); +leftMetricsKey = e; +rightMetricsKey = e; +unicode = 0113; +}, +{ +color = 5; +glyphname = eogonek; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +position = "{713, 0}"; +}, +{ +name = bottom; +position = "{682, 0}"; +}, +{ +name = ogonek; +position = "{713, 0}"; +}, +{ +name = top; +position = "{639, 1056}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 328}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{770, 286}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{454, 196}"; +type = Stem; +}, +{ +place = "{781, 406}"; +type = Stem; +}, +{ +place = "{59, 442}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +rightMetricsKey = "=e"; +paths = ( +{ +closed = 1; +nodes = ( +"732 -32 OFFCURVE", +"802 -21 OFFCURVE", +"866 0 CURVE", +"760 0 LINE", +"652 -124 OFFCURVE", +"593 -241 OFFCURVE", +"593 -332 CURVE SMOOTH", +"593 -456 OFFCURVE", +"701 -557 OFFCURVE", +"845 -557 CURVE SMOOTH", +"952 -557 OFFCURVE", +"1058 -502 OFFCURVE", +"1119 -413 CURVE", +"953 -289 LINE", +"937 -318 OFFCURVE", +"908 -337 OFFCURVE", +"880 -337 CURVE SMOOTH", +"847 -337 OFFCURVE", +"829 -312 OFFCURVE", +"829 -267 CURVE SMOOTH", +"829 -168 OFFCURVE", +"918 1 OFFCURVE", +"1031 84 CURVE SMOOTH", +"1089 126 OFFCURVE", +"1136 178 OFFCURVE", +"1171 240 CURVE", +"873 388 LINE", +"801 318 OFFCURVE", +"756 296 OFFCURVE", +"682 296 CURVE SMOOTH", +"561 296 OFFCURVE", +"489 355 OFFCURVE", +"489 454 CURVE", +"1183 454 LINE", +"1186 488 OFFCURVE", +"1187 508 OFFCURVE", +"1187 529 CURVE SMOOTH", +"1187 842 OFFCURVE", +"969 1056 OFFCURVE", +"650 1056 CURVE SMOOTH", +"315 1056 OFFCURVE", +"59 821 OFFCURVE", +"59 514 CURVE SMOOTH", +"59 204 OFFCURVE", +"318 -32 OFFCURVE", +"658 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"501 650 LINE", +"502 727 OFFCURVE", +"551 770 OFFCURVE", +"639 770 CURVE SMOOTH", +"722 770 OFFCURVE", +"768 732 OFFCURVE", +"781 650 CURVE" +); +} +); +width = 1264; +}, +{ +anchors = ( +{ +name = _ogonek; +position = "{718, 0}"; +}, +{ +name = bottom; +position = "{698, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{669, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 158}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{914, 142}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{490, 106}"; +type = Stem; +}, +{ +place = "{1013, 191}"; +type = Stem; +}, +{ +place = "{122, 204}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +rightMetricsKey = "=e-6"; +paths = ( +{ +closed = 1; +nodes = ( +"760 -32 OFFCURVE", +"827 -21 OFFCURVE", +"889 0 CURVE", +"863 0 LINE", +"748 -125 OFFCURVE", +"684 -242 OFFCURVE", +"684 -334 CURVE SMOOTH", +"684 -458 OFFCURVE", +"789 -559 OFFCURVE", +"935 -559 CURVE SMOOTH", +"1043 -559 OFFCURVE", +"1149 -504 OFFCURVE", +"1210 -415 CURVE", +"1125 -352 LINE", +"1073 -413 OFFCURVE", +"1017 -442 OFFCURVE", +"952 -442 CURVE SMOOTH", +"856 -442 OFFCURVE", +"807 -382 OFFCURVE", +"807 -309 CURVE SMOOTH", +"807 -205 OFFCURVE", +"907 -36 OFFCURVE", +"1064 97 CURVE SMOOTH", +"1106 132 OFFCURVE", +"1143 175 OFFCURVE", +"1172 223 CURVE", +"1030 297 LINE", +"949 185 OFFCURVE", +"837 126 OFFCURVE", +"698 126 CURVE SMOOTH", +"475 126 OFFCURVE", +"320 276 OFFCURVE", +"320 490 CURVE", +"1202 490 LINE", +"1203 504 OFFCURVE", +"1204 516 OFFCURVE", +"1204 535 CURVE SMOOTH", +"1204 820 OFFCURVE", +"968 1056 OFFCURVE", +"673 1056 CURVE SMOOTH", +"368 1056 OFFCURVE", +"122 819 OFFCURVE", +"122 508 CURVE SMOOTH", +"122 203 OFFCURVE", +"360 -32 OFFCURVE", +"689 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"326 596 LINE", +"341 780 OFFCURVE", +"485 914 OFFCURVE", +"669 914 CURVE SMOOTH", +"850 914 OFFCURVE", +"993 782 OFFCURVE", +"1013 596 CURVE" +); +} +); +width = 1322; +}, +{ +anchors = ( +{ +name = _ogonek; +position = "{718, 0}"; +}, +{ +name = bottom; +position = "{708, 0}"; +}, +{ +name = ogonek; +position = "{718, 0}"; +}, +{ +name = top; +position = "{688, 1026}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{512, 50}"; +type = Stem; +}, +{ +place = "{1158, 56}"; +type = Stem; +}, +{ +place = "{160, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +rightMetricsKey = "=e-49"; +paths = ( +{ +closed = 1; +nodes = ( +"813 -32 OFFCURVE", +"910 -7 OFFCURVE", +"992 40 CURVE", +"963 40 LINE", +"819 -100 OFFCURVE", +"737 -232 OFFCURVE", +"737 -335 CURVE SMOOTH", +"737 -458 OFFCURVE", +"840 -559 OFFCURVE", +"987 -559 CURVE SMOOTH", +"1096 -559 OFFCURVE", +"1202 -504 OFFCURVE", +"1263 -415 CURVE", +"1229 -391 LINE", +"1155 -472 OFFCURVE", +"1081 -507 OFFCURVE", +"993 -507 CURVE SMOOTH", +"858 -507 OFFCURVE", +"789 -425 OFFCURVE", +"789 -334 CURVE SMOOTH", +"789 -237 OFFCURVE", +"874 -91 OFFCURVE", +"1093 115 CURVE SMOOTH", +"1123 143 OFFCURVE", +"1149 176 OFFCURVE", +"1172 212 CURVE", +"1128 240 LINE", +"1042 101 OFFCURVE", +"888 20 OFFCURVE", +"708 20 CURVE SMOOTH", +"421 20 OFFCURVE", +"214 227 OFFCURVE", +"214 512 CURVE", +"1213 512 LINE", +"1214 519 OFFCURVE", +"1214 524 OFFCURVE", +"1214 529 CURVE", +"1210 798 OFFCURVE", +"995 1056 OFFCURVE", +"687 1056 CURVE SMOOTH", +"402 1056 OFFCURVE", +"160 817 OFFCURVE", +"160 505 CURVE SMOOTH", +"160 203 OFFCURVE", +"387 -32 OFFCURVE", +"708 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"216 562 LINE", +"240 813 OFFCURVE", +"444 1004 OFFCURVE", +"688 1004 CURVE SMOOTH", +"931 1004 OFFCURVE", +"1134 814 OFFCURVE", +"1158 562 CURVE" +); +} +); +width = 1358; +} +); +leftMetricsKey = e; +unicode = 0119; +}, +{ +color = 5; +glyphname = f; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{426, 0}"; +}, +{ +name = top; +position = "{662, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +place = "{218, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1376, 374}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"634 0 LINE", +"634 708 LINE", +"862 708 LINE", +"862 1024 LINE", +"634 1024 LINE", +"634 1208 LINE SMOOTH", +"634 1319 OFFCURVE", +"658 1376 OFFCURVE", +"726 1376 CURVE SMOOTH", +"748 1376 OFFCURVE", +"772 1370 OFFCURVE", +"796 1348 CURVE", +"992 1622 LINE", +"917 1697 OFFCURVE", +"784 1750 OFFCURVE", +"649 1750 CURVE SMOOTH", +"396 1750 OFFCURVE", +"218 1563 OFFCURVE", +"218 1202 CURVE SMOOTH", +"218 1024 LINE", +"58 1024 LINE", +"58 708 LINE", +"218 708 LINE", +"218 0 LINE" +); +} +); +width = 887; +}, +{ +anchors = ( +{ +name = bottom; +position = "{330, 0}"; +}, +{ +name = top; +position = "{546, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +place = "{233, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1576, 174}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"427 0 LINE", +"427 876 LINE", +"683 876 LINE", +"683 1024 LINE", +"427 1024 LINE", +"427 1365 LINE SMOOTH", +"427 1505 OFFCURVE", +"480 1576 OFFCURVE", +"570 1576 CURVE SMOOTH", +"608 1576 OFFCURVE", +"651 1563 OFFCURVE", +"683 1523 CURVE", +"781 1644 LINE", +"720 1716 OFFCURVE", +"629 1750 OFFCURVE", +"537 1750 CURVE SMOOTH", +"355 1750 OFFCURVE", +"233 1618 OFFCURVE", +"233 1357 CURVE SMOOTH", +"233 1024 LINE", +"119 1024 LINE", +"119 876 LINE", +"233 876 LINE", +"233 0 LINE" +); +} +); +width = 754; +}, +{ +anchors = ( +{ +name = bottom; +position = "{270, 0}"; +}, +{ +name = top; +position = "{474, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +place = "{242, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"298 0 LINE", +"298 982 LINE", +"570 982 LINE", +"570 1024 LINE", +"298 1024 LINE", +"298 1464 LINE SMOOTH", +"298 1621 OFFCURVE", +"368 1702 OFFCURVE", +"472 1702 CURVE SMOOTH", +"521 1702 OFFCURVE", +"575 1684 OFFCURVE", +"612 1632 CURVE", +"648 1658 LINE", +"597 1728 OFFCURVE", +"532 1750 OFFCURVE", +"467 1750 CURVE SMOOTH", +"330 1750 OFFCURVE", +"242 1652 OFFCURVE", +"242 1454 CURVE SMOOTH", +"242 1024 LINE", +"158 1024 LINE", +"158 982 LINE", +"242 982 LINE", +"242 0 LINE" +); +} +); +width = 670; +} +); +rightKerningGroup = _A1; +unicode = 0066; +}, +{ +color = 5; +glyphname = g; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{707, -520}"; +}, +{ +name = top; +position = "{707, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-550, 360}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 352}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{704, 352}"; +type = Stem; +}, +{ +place = "{73, 440}"; +type = Stem; +}, +{ +place = "{891, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"73 209 OFFCURVE", +"281 -32 OFFCURVE", +"579 -32 CURVE SMOOTH", +"697 -32 OFFCURVE", +"800 5 OFFCURVE", +"891 80 CURVE", +"891 8 LINE SMOOTH", +"891 -101 OFFCURVE", +"809 -190 OFFCURVE", +"677 -190 CURVE SMOOTH", +"588 -190 OFFCURVE", +"495 -150 OFFCURVE", +"445 -86 CURVE", +"109 -252 LINE", +"193 -448 OFFCURVE", +"391 -550 OFFCURVE", +"679 -550 CURVE SMOOTH", +"1125 -550 OFFCURVE", +"1307 -305 OFFCURVE", +"1307 -28 CURVE SMOOTH", +"1307 1024 LINE", +"891 1024 LINE", +"891 944 LINE", +"800 1019 OFFCURVE", +"697 1056 OFFCURVE", +"579 1056 CURVE SMOOTH", +"281 1056 OFFCURVE", +"73 819 OFFCURVE", +"73 514 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"513 623 OFFCURVE", +"596 704 OFFCURVE", +"707 704 CURVE SMOOTH", +"818 704 OFFCURVE", +"899 623 OFFCURVE", +"899 512 CURVE SMOOTH", +"899 401 OFFCURVE", +"818 320 OFFCURVE", +"707 320 CURVE SMOOTH", +"596 320 OFFCURVE", +"513 401 OFFCURVE", +"513 512 CURVE SMOOTH" +); +} +); +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{692, -520}"; +}, +{ +name = top; +position = "{692, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-550, 167}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{888, 168}"; +type = Stem; +}, +{ +place = "{131, 202}"; +type = Stem; +}, +{ +place = "{1043, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"131 201 OFFCURVE", +"346 -32 OFFCURVE", +"640 -32 CURVE SMOOTH", +"809 -32 OFFCURVE", +"954 50 OFFCURVE", +"1043 192 CURVE", +"1043 -26 LINE SMOOTH", +"1043 -249 OFFCURVE", +"885 -383 OFFCURVE", +"669 -383 CURVE SMOOTH", +"501 -383 OFFCURVE", +"357 -302 OFFCURVE", +"296 -176 CURVE", +"134 -252 LINE", +"221 -447 OFFCURVE", +"405 -550 OFFCURVE", +"669 -550 CURVE SMOOTH", +"1031 -550 OFFCURVE", +"1237 -356 OFFCURVE", +"1237 -28 CURVE SMOOTH", +"1237 1024 LINE", +"1043 1024 LINE", +"1043 832 LINE", +"954 974 OFFCURVE", +"809 1056 OFFCURVE", +"640 1056 CURVE SMOOTH", +"346 1056 OFFCURVE", +"131 823 OFFCURVE", +"131 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"333 731 OFFCURVE", +"484 888 OFFCURVE", +"692 888 CURVE SMOOTH", +"901 888 OFFCURVE", +"1050 732 OFFCURVE", +"1050 512 CURVE SMOOTH", +"1050 293 OFFCURVE", +"901 136 OFFCURVE", +"692 136 CURVE SMOOTH", +"484 136 OFFCURVE", +"333 293 OFFCURVE", +"333 512 CURVE SMOOTH" +); +} +); +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{682, -520}"; +}, +{ +name = top; +position = "{682, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-550, 46}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{166, 54}"; +type = Stem; +}, +{ +place = "{1138, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"166 197 OFFCURVE", +"386 -32 OFFCURVE", +"678 -32 CURVE SMOOTH", +"882 -32 OFFCURVE", +"1054 79 OFFCURVE", +"1138 262 CURVE", +"1138 -48 LINE SMOOTH", +"1138 -341 OFFCURVE", +"932 -504 OFFCURVE", +"664 -504 CURVE SMOOTH", +"447 -504 OFFCURVE", +"270 -398 OFFCURVE", +"202 -232 CURVE", +"150 -252 LINE", +"238 -446 OFFCURVE", +"414 -550 OFFCURVE", +"662 -550 CURVE SMOOTH", +"972 -550 OFFCURVE", +"1194 -388 OFFCURVE", +"1194 -28 CURVE SMOOTH", +"1194 1024 LINE", +"1138 1024 LINE", +"1138 762 LINE", +"1054 945 OFFCURVE", +"882 1056 OFFCURVE", +"678 1056 CURVE SMOOTH", +"386 1056 OFFCURVE", +"166 827 OFFCURVE", +"166 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"220 799 OFFCURVE", +"413 1004 OFFCURVE", +"682 1004 CURVE SMOOTH", +"951 1004 OFFCURVE", +"1144 800 OFFCURVE", +"1144 512 CURVE SMOOTH", +"1144 225 OFFCURVE", +"951 20 OFFCURVE", +"682 20 CURVE SMOOTH", +"413 20 OFFCURVE", +"220 225 OFFCURVE", +"220 512 CURVE SMOOTH" +); +} +); +width = 1429; +} +); +leftKerningGroup = _g; +rightKerningGroup = _g; +unicode = 0067; +}, +{ +color = 5; +glyphname = gbreve; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{707, -520}"; +}, +{ +name = top; +position = "{707, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = g; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 231, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{692, -520}"; +}, +{ +name = top; +position = "{692, 1679}"; +} +); +components = ( +{ +alignment = -1; +name = g; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 269, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{682, -520}"; +}, +{ +name = top; +position = "{682, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = g; +}, +{ +alignment = -1; +name = breve; +transform = "{1, 0, 0, 1, 292, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1429; +} +); +leftMetricsKey = g; +rightMetricsKey = g; +unicode = 011F; +}, +{ +color = 5; +glyphname = gcommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{707, -520}"; +}, +{ +name = top; +position = "{707, 1747}"; +} +); +components = ( +{ +alignment = -1; +name = g; +}, +{ +alignment = -1; +name = commaturnedabovecomb; +transform = "{1, 0, 0, 1, 322, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{692, -520}"; +}, +{ +name = top; +position = "{692, 1665}"; +} +); +components = ( +{ +alignment = -1; +name = g; +}, +{ +alignment = -1; +name = commaturnedabovecomb; +transform = "{1, 0, 0, 1, 328, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{682, -520}"; +}, +{ +name = top; +position = "{682, 1614}"; +} +); +components = ( +{ +alignment = -1; +name = g; +}, +{ +alignment = -1; +name = commaturnedabovecomb; +transform = "{1, 0, 0, 1, 330, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1429; +} +); +leftMetricsKey = g; +rightMetricsKey = g; +unicode = 0123; +}, +{ +color = 5; +glyphname = gdotaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{707, -520}"; +}, +{ +name = top; +position = "{707, 1724}"; +} +); +components = ( +{ +alignment = -1; +name = g; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 467, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{692, -520}"; +}, +{ +name = top; +position = "{691, 1598}"; +} +); +components = ( +{ +alignment = -1; +name = g; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 570, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{682, -520}"; +}, +{ +name = top; +position = "{682, 1520}"; +} +); +components = ( +{ +alignment = -1; +name = g; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 634, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1429; +} +); +leftMetricsKey = g; +rightMetricsKey = g; +unicode = 0121; +}, +{ +color = 5; +glyphname = h; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{731, 0}"; +}, +{ +name = center; +position = "{731, 860}"; +}, +{ +name = top; +position = "{731, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{734, 322}"; +type = Stem; +}, +{ +place = "{157, 416}"; +type = Stem; +}, +{ +place = "{909, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"573 0 LINE", +"573 564 LINE SMOOTH", +"573 667 OFFCURVE", +"640 734 OFFCURVE", +"741 734 CURVE SMOOTH", +"842 734 OFFCURVE", +"909 667 OFFCURVE", +"909 564 CURVE SMOOTH", +"909 0 LINE", +"1325 0 LINE", +"1325 654 LINE SMOOTH", +"1325 883 OFFCURVE", +"1148 1056 OFFCURVE", +"915 1056 CURVE SMOOTH", +"792 1056 OFFCURVE", +"667 1009 OFFCURVE", +"573 928 CURVE", +"573 1720 LINE", +"157 1720 LINE", +"157 0 LINE" +); +} +); +width = 1461; +}, +{ +anchors = ( +{ +name = bottom; +position = "{659, 0}"; +}, +{ +name = center; +position = "{659, 860}"; +}, +{ +name = top; +position = "{659, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{901, 155}"; +type = Stem; +}, +{ +place = "{206, 194}"; +type = Stem; +}, +{ +place = "{937, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"400 0 LINE", +"400 649 LINE SMOOTH", +"400 784 OFFCURVE", +"502 901 OFFCURVE", +"675 901 CURVE SMOOTH", +"840 901 OFFCURVE", +"937 794 OFFCURVE", +"937 603 CURVE SMOOTH", +"937 0 LINE", +"1131 0 LINE", +"1131 642 LINE SMOOTH", +"1131 900 OFFCURVE", +"980 1056 OFFCURVE", +"744 1056 CURVE SMOOTH", +"583 1056 OFFCURVE", +"462 985 OFFCURVE", +"400 892 CURVE", +"400 1720 LINE", +"206 1720 LINE", +"206 0 LINE" +); +} +); +width = 1318; +}, +{ +anchors = ( +{ +name = bottom; +position = "{614, 0}"; +}, +{ +name = center; +position = "{614, 860}"; +}, +{ +name = top; +position = "{614, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1006, 50}"; +type = Stem; +}, +{ +place = "{235, 56}"; +type = Stem; +}, +{ +place = "{955, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"291 0 LINE", +"291 702 LINE SMOOTH", +"291 858 OFFCURVE", +"416 1006 OFFCURVE", +"633 1006 CURVE SMOOTH", +"838 1006 OFFCURVE", +"955 874 OFFCURVE", +"955 627 CURVE SMOOTH", +"955 0 LINE", +"1011 0 LINE", +"1011 634 LINE SMOOTH", +"1011 910 OFFCURVE", +"875 1056 OFFCURVE", +"636 1056 CURVE SMOOTH", +"452 1056 OFFCURVE", +"333 970 OFFCURVE", +"291 870 CURVE", +"291 1720 LINE", +"235 1720 LINE", +"235 0 LINE" +); +} +); +width = 1228; +} +); +rightKerningGroup = _b; +unicode = 0068; +}, +{ +color = 9; +glyphname = hbar; +lastChange = "2022-01-28 15:18:56 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = h; +} +); +hints = ( +{ +horizontal = 1; +place = "{1218, 246}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +leftMetricsKey = "=h-137"; +paths = ( +{ +closed = 1; +nodes = ( +"800 1218 LINE", +"800 1464 LINE", +"20 1464 LINE", +"20 1218 LINE" +); +} +); +width = 1461; +}, +{ +components = ( +{ +alignment = -1; +name = h; +} +); +hints = ( +{ +horizontal = 1; +place = "{1292, 127}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +leftMetricsKey = "=h-142"; +paths = ( +{ +closed = 1; +nodes = ( +"619 1292 LINE", +"619 1419 LINE", +"64 1419 LINE", +"64 1292 LINE" +); +} +); +width = 1318; +}, +{ +components = ( +{ +alignment = -1; +name = h; +} +); +hints = ( +{ +horizontal = 1; +place = "{1338, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +leftMetricsKey = "=h-143"; +paths = ( +{ +closed = 1; +nodes = ( +"506 1338 LINE", +"506 1390 LINE", +"92 1390 LINE", +"92 1338 LINE" +); +} +); +width = 1228; +} +); +rightMetricsKey = h; +unicode = 0127; +}, +{ +color = 5; +glyphname = i; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{365, 0}"; +}, +{ +name = ogonek; +position = "{573, 0}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +} +); +hints = ( +{ +horizontal = 1; +place = "{1244, 480}"; +type = Stem; +}, +{ +place = "{124, 481}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"498 1244 OFFCURVE", +"605 1352 OFFCURVE", +"605 1484 CURVE SMOOTH", +"605 1617 OFFCURVE", +"498 1724 OFFCURVE", +"365 1724 CURVE SMOOTH", +"232 1724 OFFCURVE", +"124 1617 OFFCURVE", +"124 1484 CURVE SMOOTH", +"124 1351 OFFCURVE", +"232 1244 OFFCURVE", +"365 1244 CURVE SMOOTH" +); +} +); +width = 729; +}, +{ +anchors = ( +{ +name = bottom; +position = "{302, 0}"; +}, +{ +name = ogonek; +position = "{398, 0}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, -0.615, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1232, 243}"; +type = Stem; +}, +{ +place = "{179, 244}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"370 1232 OFFCURVE", +"423 1286 OFFCURVE", +"423 1354 CURVE SMOOTH", +"423 1422 OFFCURVE", +"370 1475 OFFCURVE", +"302 1475 CURVE SMOOTH", +"234 1475 OFFCURVE", +"179 1422 OFFCURVE", +"179 1354 CURVE SMOOTH", +"179 1286 OFFCURVE", +"234 1232 OFFCURVE", +"302 1232 CURVE SMOOTH" +); +} +); +width = 602; +}, +{ +anchors = ( +{ +name = bottom; +position = "{263, 0}"; +}, +{ +name = ogonek; +position = "{290, 0}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, -1, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1224, 95}"; +type = Stem; +}, +{ +place = "{214, 95}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"289 1224 OFFCURVE", +"309 1245 OFFCURVE", +"309 1272 CURVE SMOOTH", +"309 1299 OFFCURVE", +"289 1319 OFFCURVE", +"262 1319 CURVE SMOOTH", +"235 1319 OFFCURVE", +"214 1299 OFFCURVE", +"214 1272 CURVE SMOOTH", +"214 1245 OFFCURVE", +"235 1224 OFFCURVE", +"262 1224 CURVE SMOOTH" +); +} +); +width = 523; +} +); +leftKerningGroup = _I; +rightKerningGroup = _A1; +unicode = 0069; +}, +{ +color = 5; +glyphname = idotless; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{365, 0}"; +}, +{ +name = ogonek; +position = "{573, 0}"; +}, +{ +name = top; +position = "{365, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{157, 416}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"573 0 LINE", +"573 1024 LINE", +"157 1024 LINE", +"157 0 LINE" +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +position = "{303, 0}"; +}, +{ +name = ogonek; +position = "{399, 0}"; +}, +{ +name = top; +position = "{302, 1025}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{205, 194}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"399 0 LINE", +"399 1024 LINE", +"205 1024 LINE", +"205 0 LINE" +); +} +); +width = 604; +}, +{ +anchors = ( +{ +name = bottom; +position = "{263, 0}"; +}, +{ +name = ogonek; +position = "{291, 0}"; +}, +{ +name = top; +position = "{263, 1026}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{235, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"291 0 LINE", +"291 1024 LINE", +"235 1024 LINE", +"235 0 LINE" +); +} +); +width = 526; +} +); +leftKerningGroup = _I; +rightKerningGroup = _A1; +unicode = 0131; +}, +{ +color = 9; +glyphname = iacute; +lastChange = "2022-01-28 15:04:25 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{400, 0}"; +}, +{ +name = ogonek; +position = "{608, 0}"; +}, +{ +name = top; +position = "{400, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 35, 0}"; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 158, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 770; +}, +{ +anchors = ( +{ +name = bottom; +position = "{352, 0}"; +}, +{ +name = ogonek; +position = "{448, 0}"; +}, +{ +name = top; +position = "{391, 1688}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 49, 0}"; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 246, 1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 676; +}, +{ +anchors = ( +{ +name = bottom; +position = "{335, 0}"; +}, +{ +name = ogonek; +position = "{363, 0}"; +}, +{ +name = top; +position = "{335, 1682}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 72, 0}"; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 301, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 623; +} +); +unicode = 00ED; +}, +{ +color = 9; +glyphname = icircumflex; +lastChange = "2022-01-28 15:04:25 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{462, 0}"; +}, +{ +name = ogonek; +position = "{670, 0}"; +}, +{ +name = top; +position = "{462, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 97, 0}"; +}, +{ +alignment = -1; +name = circumflex; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 924; +}, +{ +anchors = ( +{ +name = bottom; +position = "{386, 0}"; +}, +{ +name = ogonek; +position = "{482, 0}"; +}, +{ +name = top; +position = "{385, 1681}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 83, 0}"; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 0, 1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 770; +}, +{ +anchors = ( +{ +name = bottom; +position = "{336, 0}"; +}, +{ +name = ogonek; +position = "{364, 0}"; +}, +{ +name = top; +position = "{336, 1682}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 73, 0}"; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 0, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 672; +} +); +unicode = 00EE; +}, +{ +color = 9; +glyphname = idieresis; +lastChange = "2022-01-28 15:07:35 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{428, 0}"; +}, +{ +name = ogonek; +position = "{636, 0}"; +}, +{ +name = top; +position = "{428, 1610}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 63, 0}"; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, -20, 52}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 856; +}, +{ +anchors = ( +{ +name = bottom; +position = "{360, 0}"; +}, +{ +name = ogonek; +position = "{456, 0}"; +}, +{ +name = top; +position = "{359, 1510}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 57, 0}"; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 12, -49}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 718; +}, +{ +anchors = ( +{ +name = bottom; +position = "{356, 0}"; +}, +{ +name = ogonek; +position = "{384, 0}"; +}, +{ +name = top; +position = "{356, 1448}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 93, 0}"; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 72, -118}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 712; +} +); +unicode = 00EF; +}, +{ +color = 5; +glyphname = idotaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{364, 0}"; +}, +{ +name = ogonek; +position = "{572, 0}"; +}, +{ +name = top; +position = "{364, 1724}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, -1, 0}"; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 124, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 729; +}, +{ +anchors = ( +{ +name = bottom; +position = "{302, 0}"; +}, +{ +name = ogonek; +position = "{398, 0}"; +}, +{ +name = top; +position = "{300, 1599}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, -1, 0}"; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 179, 1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 602; +}, +{ +anchors = ( +{ +name = bottom; +position = "{262, 0}"; +}, +{ +name = ogonek; +position = "{290, 0}"; +}, +{ +name = top; +position = "{262, 1522}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, -1, 0}"; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 214, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 524; +} +); +leftMetricsKey = i; +rightMetricsKey = i; +}, +{ +color = 9; +glyphname = igrave; +lastChange = "2022-01-28 15:04:33 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{405, 0}"; +}, +{ +name = ogonek; +position = "{613, 0}"; +}, +{ +name = top; +position = "{321, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 40, 0}"; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, -5, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 756; +}, +{ +anchors = ( +{ +name = bottom; +position = "{334, 0}"; +}, +{ +name = ogonek; +position = "{430, 0}"; +}, +{ +name = top; +position = "{250, 1667}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 31, 0}"; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 61, 1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 665; +}, +{ +anchors = ( +{ +name = bottom; +position = "{244, 0}"; +}, +{ +name = ogonek; +position = "{272, 0}"; +}, +{ +name = top; +position = "{244, 1659}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, -19, 0}"; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 141, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 529; +} +); +unicode = 00EC; +}, +{ +color = 9; +glyphname = imacron; +lastChange = "2022-01-28 15:04:33 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{396, 0}"; +}, +{ +name = ogonek; +position = "{604, 0}"; +}, +{ +name = top; +position = "{396, 1528}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 31, 0}"; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, -12, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 792; +}, +{ +anchors = ( +{ +name = bottom; +position = "{313, 0}"; +}, +{ +name = ogonek; +position = "{409, 0}"; +}, +{ +name = top; +position = "{312, 1458}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 10, 0}"; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, -96, 1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 624; +}, +{ +anchors = ( +{ +name = bottom; +position = "{264, 0}"; +}, +{ +name = ogonek; +position = "{292, 0}"; +}, +{ +name = top; +position = "{264, 1414}"; +} +); +components = ( +{ +alignment = -1; +name = idotless; +transform = "{1, 0, 0, 1, 1, 0}"; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, -144, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 528; +} +); +unicode = 012B; +}, +{ +color = 9; +glyphname = iogonek; +lastChange = "2022-01-28 15:04:33 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{365, 0}"; +}, +{ +name = ogonek; +position = "{573, 0}"; +} +); +components = ( +{ +alignment = -1; +name = i; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 221, -7}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 747; +}, +{ +anchors = ( +{ +name = bottom; +position = "{341, 0}"; +}, +{ +name = ogonek; +position = "{437, 0}"; +} +); +components = ( +{ +alignment = -1; +name = i; +transform = "{1, 0, 0, 1, 39, 0}"; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 156, -21}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 682; +}, +{ +anchors = ( +{ +name = bottom; +position = "{353, 0}"; +}, +{ +name = ogonek; +position = "{380, 0}"; +} +); +components = ( +{ +alignment = -1; +name = i; +transform = "{1, 0, 0, 1, 90, 0}"; +}, +{ +alignment = -1; +name = ogonek; +transform = "{1, 0, 0, 1, 144, -29}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 730; +} +); +unicode = 012F; +}, +{ +color = 5; +glyphname = j; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{157, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 374}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{124, 481}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1243, 481}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"418 -550 OFFCURVE", +"573 -386 OFFCURVE", +"573 -138 CURVE SMOOTH", +"573 1024 LINE", +"157 1024 LINE", +"157 -56 LINE SMOOTH", +"157 -119 OFFCURVE", +"133 -176 OFFCURVE", +"65 -176 CURVE SMOOTH", +"43 -176 OFFCURVE", +"19 -170 OFFCURVE", +"-5 -148 CURVE", +"-201 -422 LINE", +"-126 -497 OFFCURVE", +"7 -550 OFFCURVE", +"156 -550 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"497 1243 OFFCURVE", +"605 1352 OFFCURVE", +"605 1484 CURVE SMOOTH", +"605 1616 OFFCURVE", +"497 1724 OFFCURVE", +"365 1724 CURVE SMOOTH", +"232 1724 OFFCURVE", +"124 1616 OFFCURVE", +"124 1484 CURVE SMOOTH", +"124 1351 OFFCURVE", +"232 1243 OFFCURVE", +"365 1243 CURVE SMOOTH" +); +} +); +width = 730; +}, +{ +hints = ( +{ +place = "{206, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 174}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{181, 244}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1233, 244}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"286 -550 OFFCURVE", +"400 -427 OFFCURVE", +"400 -209 CURVE SMOOTH", +"400 1024 LINE", +"206 1024 LINE", +"206 -184 LINE SMOOTH", +"206 -305 OFFCURVE", +"153 -376 OFFCURVE", +"63 -376 CURVE SMOOTH", +"25 -376 OFFCURVE", +"-18 -363 OFFCURVE", +"-50 -323 CURVE", +"-148 -444 LINE", +"-87 -516 OFFCURVE", +"4 -550 OFFCURVE", +"101 -550 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"370 1233 OFFCURVE", +"425 1288 OFFCURVE", +"425 1355 CURVE SMOOTH", +"425 1422 OFFCURVE", +"370 1477 OFFCURVE", +"303 1477 CURVE SMOOTH", +"236 1477 OFFCURVE", +"181 1422 OFFCURVE", +"181 1355 CURVE SMOOTH", +"181 1288 OFFCURVE", +"236 1233 OFFCURVE", +"303 1233 CURVE SMOOTH" +); +} +); +width = 605; +}, +{ +hints = ( +{ +place = "{236, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{216, 96}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1226, 96}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"204 -550 OFFCURVE", +"292 -452 OFFCURVE", +"292 -254 CURVE SMOOTH", +"292 1024 LINE", +"236 1024 LINE", +"236 -264 LINE SMOOTH", +"236 -421 OFFCURVE", +"166 -502 OFFCURVE", +"62 -502 CURVE SMOOTH", +"13 -502 OFFCURVE", +"-41 -484 OFFCURVE", +"-78 -432 CURVE", +"-114 -458 LINE", +"-63 -528 OFFCURVE", +"2 -550 OFFCURVE", +"67 -550 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"290 1226 OFFCURVE", +"312 1248 OFFCURVE", +"312 1274 CURVE SMOOTH", +"312 1300 OFFCURVE", +"290 1322 OFFCURVE", +"264 1322 CURVE SMOOTH", +"238 1322 OFFCURVE", +"216 1300 OFFCURVE", +"216 1274 CURVE SMOOTH", +"216 1248 OFFCURVE", +"238 1226 OFFCURVE", +"264 1226 CURVE SMOOTH" +); +} +); +width = 527; +} +); +rightKerningGroup = _A1; +unicode = 006A; +}, +{ +color = 5; +glyphname = k; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{713, 0}"; +}, +{ +name = top; +position = "{713, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{157, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"573 0 LINE", +"573 350 LINE", +"957 0 LINE", +"1491 0 LINE", +"945 508 LINE", +"1469 1024 LINE", +"931 1024 LINE", +"573 680 LINE", +"573 1720 LINE", +"157 1720 LINE", +"157 0 LINE" +); +} +); +width = 1426; +}, +{ +anchors = ( +{ +name = bottom; +position = "{580, 0}"; +}, +{ +name = top; +position = "{580, 1720}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{205, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"400 0 LINE", +"400 461 LINE", +"827 0 LINE", +"1077 0 LINE", +"576 536 LINE", +"1053 1024 LINE", +"800 1024 LINE", +"400 619 LINE", +"400 1720 LINE", +"205 1720 LINE", +"205 0 LINE" +); +} +); +width = 1161; +}, +{ +anchors = ( +{ +name = bottom; +position = "{497, 0}"; +}, +{ +name = top; +position = "{497, 1720}"; +} +); +guideLines = ( +{ +position = "{0, 512}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{235, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"291 0 LINE", +"291 531 LINE", +"745 0 LINE", +"817 0 LINE", +"344 554 LINE", +"791 1024 LINE", +"717 1024 LINE", +"291 580 LINE", +"291 1720 LINE", +"235 1720 LINE", +"235 0 LINE" +); +} +); +width = 994; +} +); +rightKerningGroup = _A1; +unicode = 006B; +}, +{ +color = 5; +glyphname = kcommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{713, -806}"; +}, +{ +name = top; +position = "{713, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = k; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 312, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1426; +}, +{ +anchors = ( +{ +name = bottom; +position = "{580, -584}"; +}, +{ +name = top; +position = "{580, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = k; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 214.25, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1161; +}, +{ +anchors = ( +{ +name = bottom; +position = "{497, -444}"; +}, +{ +name = top; +position = "{497, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = k; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 151, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 994; +} +); +leftMetricsKey = k; +rightMetricsKey = k; +unicode = 0137; +}, +{ +color = 5; +glyphname = l; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{365, 0}"; +}, +{ +name = center; +position = "{365, 860}"; +}, +{ +name = top; +position = "{365, 1720}"; +}, +{ +name = topright; +position = "{573, 1720}"; +} +); +hints = ( +{ +place = "{157, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"573 0 LINE", +"573 1720 LINE", +"157 1720 LINE", +"157 0 LINE" +); +} +); +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +position = "{302, 0}"; +}, +{ +name = center; +position = "{302, 860}"; +}, +{ +name = top; +position = "{302, 1720}"; +}, +{ +name = topright; +position = "{399, 1720}"; +} +); +hints = ( +{ +place = "{205, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"399 0 LINE", +"399 1720 LINE", +"205 1720 LINE", +"205 0 LINE" +); +} +); +width = 604; +}, +{ +anchors = ( +{ +name = bottom; +position = "{263, 0}"; +}, +{ +name = center; +position = "{263, 860}"; +}, +{ +name = top; +position = "{263, 1720}"; +}, +{ +name = topright; +position = "{291, 1720}"; +} +); +hints = ( +{ +place = "{235, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"291 0 LINE", +"291 1720 LINE", +"235 1720 LINE", +"235 0 LINE" +); +} +); +width = 526; +} +); +leftKerningGroup = _I; +rightKerningGroup = _A1; +unicode = 006C; +}, +{ +color = 9; +glyphname = lacute; +lastChange = "2022-01-28 14:59:26 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{396, 0}"; +}, +{ +name = center; +position = "{396, 860}"; +}, +{ +name = top; +position = "{396, 2394}"; +}, +{ +name = topright; +position = "{604, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 31, 0}"; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 154, 696}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 752; +}, +{ +anchors = ( +{ +name = bottom; +position = "{340, 0}"; +}, +{ +name = center; +position = "{340, 860}"; +}, +{ +name = top; +position = "{380, 2383}"; +}, +{ +name = topright; +position = "{437, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 38, 0}"; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 235, 696}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 641; +}, +{ +anchors = ( +{ +name = bottom; +position = "{325, 0}"; +}, +{ +name = center; +position = "{325, 860}"; +}, +{ +name = top; +position = "{325, 2376}"; +}, +{ +name = topright; +position = "{353, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 62, 0}"; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 291, 696}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 625; +} +); +unicode = 013A; +}, +{ +color = 9; +glyphname = lcaron; +lastChange = "2022-01-28 14:59:26 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{366, 0}"; +}, +{ +name = center; +position = "{366, 860}"; +}, +{ +name = top; +position = "{366, 2376}"; +}, +{ +name = topright; +position = "{574, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 1, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, -96, 696}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 732; +}, +{ +anchors = ( +{ +name = bottom; +position = "{343, 0}"; +}, +{ +name = center; +position = "{343, 860}"; +}, +{ +name = top; +position = "{343, 2376}"; +}, +{ +name = topright; +position = "{440, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 41, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, -42, 696}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 686; +}, +{ +anchors = ( +{ +name = bottom; +position = "{312, 0}"; +}, +{ +name = center; +position = "{312, 860}"; +}, +{ +name = top; +position = "{312, 2376}"; +}, +{ +name = topright; +position = "{340, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 49, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, -24, 696}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 624; +} +); +unicode = 013E; +}, +{ +color = 5; +glyphname = lcommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{365, -806}"; +}, +{ +name = center; +position = "{365, 860}"; +}, +{ +name = top; +position = "{365, 1720}"; +}, +{ +name = topright; +position = "{573, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = l; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, -36, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 730; +}, +{ +anchors = ( +{ +name = bottom; +position = "{302, -584}"; +}, +{ +name = center; +position = "{302, 860}"; +}, +{ +name = top; +position = "{302, 1720}"; +}, +{ +name = topright; +position = "{399, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = l; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, -64, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 604; +}, +{ +anchors = ( +{ +name = bottom; +position = "{295, -444}"; +}, +{ +name = center; +position = "{295, 860}"; +}, +{ +name = top; +position = "{295, 1720}"; +}, +{ +name = topright; +position = "{323, 1720}"; +} +); +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 32, 0}"; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, -51, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 594; +} +); +leftMetricsKey = l; +rightMetricsKey = l; +unicode = 013C; +}, +{ +color = 9; +glyphname = lslash; +lastChange = "2022-01-28 14:59:26 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 83, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"800 1006 LINE", +"800 1364 LINE", +"96 812 LINE", +"96 454 LINE" +); +} +); +width = 872; +}, +{ +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 89, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"662 1050 LINE", +"662 1223 LINE", +"120 797 LINE", +"120 625 LINE" +); +} +); +width = 770; +}, +{ +components = ( +{ +alignment = -1; +name = l; +transform = "{1, 0, 0, 1, 161, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"644 1078 LINE", +"644 1134 LINE", +"204 788 LINE", +"204 732 LINE" +); +} +); +width = 836; +} +); +rightKerningGroup = _A1; +unicode = 0142; +}, +{ +color = 5; +glyphname = m; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{1265, 0}"; +}, +{ +name = top; +position = "{1139, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{726, 330}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{726, 330}"; +type = Stem; +}, +{ +place = "{849, 416}"; +type = Stem; +}, +{ +place = "{1541, 416}"; +type = Stem; +}, +{ +place = "{157, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"157 1024 LINE", +"157 0 LINE", +"573 0 LINE", +"573 574 LINE SMOOTH", +"573 670 OFFCURVE", +"624 726 OFFCURVE", +"710 726 CURVE SMOOTH", +"800 726 OFFCURVE", +"849 664 OFFCURVE", +"849 572 CURVE SMOOTH", +"849 0 LINE", +"1265 0 LINE", +"1265 588 LINE SMOOTH", +"1265 674 OFFCURVE", +"1316 726 OFFCURVE", +"1402 726 CURVE SMOOTH", +"1488 726 OFFCURVE", +"1541 668 OFFCURVE", +"1541 572 CURVE SMOOTH", +"1541 0 LINE", +"1957 0 LINE", +"1957 684 LINE SMOOTH", +"1957 904 OFFCURVE", +"1795 1056 OFFCURVE", +"1571 1056 CURVE SMOOTH", +"1438 1056 OFFCURVE", +"1334 1002 OFFCURVE", +"1221 876 CURVE", +"1161 984 OFFCURVE", +"1021 1056 OFFCURVE", +"872 1056 CURVE SMOOTH", +"754 1056 OFFCURVE", +"664 1010 OFFCURVE", +"573 903 CURVE", +"573 1024 LINE" +); +} +); +width = 2093; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1111, 0}"; +}, +{ +name = top; +position = "{1056, 1025}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{898, 158}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{898, 158}"; +type = Stem; +}, +{ +place = "{916, 195}"; +type = Stem; +}, +{ +place = "{1627, 195}"; +type = Stem; +}, +{ +place = "{206, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"206 1024 LINE", +"206 0 LINE", +"401 0 LINE", +"401 600 LINE SMOOTH", +"401 786 OFFCURVE", +"522 898 OFFCURVE", +"675 898 CURVE SMOOTH", +"822 898 OFFCURVE", +"916 795 OFFCURVE", +"916 633 CURVE SMOOTH", +"916 0 LINE", +"1111 0 LINE", +"1111 600 LINE SMOOTH", +"1111 786 OFFCURVE", +"1227 898 OFFCURVE", +"1382 898 CURVE SMOOTH", +"1530 898 OFFCURVE", +"1627 792 OFFCURVE", +"1627 621 CURVE SMOOTH", +"1627 0 LINE", +"1822 0 LINE", +"1822 675 LINE SMOOTH", +"1822 916 OFFCURVE", +"1662 1056 OFFCURVE", +"1444 1056 CURVE SMOOTH", +"1281 1056 OFFCURVE", +"1164 977 OFFCURVE", +"1079 847 CURVE", +"1029 975 OFFCURVE", +"894 1056 OFFCURVE", +"730 1056 CURVE SMOOTH", +"596 1056 OFFCURVE", +"487 1003 OFFCURVE", +"401 871 CURVE", +"401 1024 LINE" +); +} +); +width = 2009; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1013, 0}"; +}, +{ +name = top; +position = "{1003, 1026}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1006, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1006, 50}"; +type = Stem; +}, +{ +place = "{877, 56}"; +type = Stem; +}, +{ +place = "{1519, 56}"; +type = Stem; +}, +{ +place = "{235, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"235 1024 LINE", +"235 0 LINE", +"291 0 LINE", +"291 642 LINE SMOOTH", +"291 859 OFFCURVE", +"430 1006 OFFCURVE", +"605 1006 CURVE SMOOTH", +"768 1006 OFFCURVE", +"877 877 OFFCURVE", +"877 672 CURVE SMOOTH", +"877 0 LINE", +"933 0 LINE", +"933 642 LINE SMOOTH", +"933 859 OFFCURVE", +"1072 1006 OFFCURVE", +"1247 1006 CURVE SMOOTH", +"1410 1006 OFFCURVE", +"1519 877 OFFCURVE", +"1519 652 CURVE SMOOTH", +"1519 0 LINE", +"1575 0 LINE", +"1575 670 LINE SMOOTH", +"1575 914 OFFCURVE", +"1439 1056 OFFCURVE", +"1250 1056 CURVE SMOOTH", +"1083 1056 OFFCURVE", +"951 946 OFFCURVE", +"918 789 CURVE", +"885 955 OFFCURVE", +"767 1056 OFFCURVE", +"608 1056 CURVE SMOOTH", +"460 1056 OFFCURVE", +"339 969 OFFCURVE", +"291 840 CURVE", +"291 1024 LINE" +); +} +); +width = 1792; +} +); +leftKerningGroup = _m; +leftMetricsKey = n; +rightKerningGroup = _b; +rightMetricsKey = n; +unicode = 006D; +}, +{ +color = 5; +glyphname = n; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{741, 0}"; +}, +{ +name = top; +position = "{741, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{734, 322}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{909, 416}"; +type = Stem; +}, +{ +place = "{157, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"573 0 LINE", +"573 564 LINE SMOOTH", +"573 667 OFFCURVE", +"640 734 OFFCURVE", +"741 734 CURVE SMOOTH", +"842 734 OFFCURVE", +"909 667 OFFCURVE", +"909 564 CURVE SMOOTH", +"909 0 LINE", +"1325 0 LINE", +"1325 654 LINE SMOOTH", +"1325 883 OFFCURVE", +"1148 1056 OFFCURVE", +"915 1056 CURVE SMOOTH", +"792 1056 OFFCURVE", +"667 1009 OFFCURVE", +"573 888 CURVE", +"573 1024 LINE", +"157 1024 LINE", +"157 0 LINE" +); +} +); +width = 1461; +}, +{ +anchors = ( +{ +name = bottom; +position = "{675, 0}"; +}, +{ +name = top; +position = "{675, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{900, 156}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{937, 194}"; +type = Stem; +}, +{ +place = "{206, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"400 0 LINE", +"400 579 LINE SMOOTH", +"400 784 OFFCURVE", +"502 900 OFFCURVE", +"675 900 CURVE SMOOTH", +"840 900 OFFCURVE", +"937 794 OFFCURVE", +"937 603 CURVE SMOOTH", +"937 0 LINE", +"1131 0 LINE", +"1131 642 LINE SMOOTH", +"1131 900 OFFCURVE", +"980 1056 OFFCURVE", +"743 1056 CURVE SMOOTH", +"583 1056 OFFCURVE", +"462 985 OFFCURVE", +"400 882 CURVE", +"400 1024 LINE", +"206 1024 LINE", +"206 0 LINE" +); +} +); +width = 1318; +}, +{ +anchors = ( +{ +name = bottom; +position = "{633, 0}"; +}, +{ +name = top; +position = "{633, 1014}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{955, 56}"; +type = Stem; +}, +{ +place = "{235, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"291 0 LINE", +"291 622 LINE SMOOTH", +"291 828 OFFCURVE", +"416 1004 OFFCURVE", +"643 1004 CURVE SMOOTH", +"843 1004 OFFCURVE", +"955 868 OFFCURVE", +"955 627 CURVE SMOOTH", +"955 0 LINE", +"1011 0 LINE", +"1011 634 LINE SMOOTH", +"1011 903 OFFCURVE", +"881 1056 OFFCURVE", +"651 1056 CURVE SMOOTH", +"452 1056 OFFCURVE", +"333 940 OFFCURVE", +"291 820 CURVE", +"291 1024 LINE", +"235 1024 LINE", +"235 0 LINE" +); +} +); +width = 1228; +} +); +leftKerningGroup = _m; +rightKerningGroup = _b; +unicode = 006E; +}, +{ +color = 5; +glyphname = nacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{741, 0}"; +}, +{ +name = top; +position = "{741, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 499, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1461; +}, +{ +anchors = ( +{ +name = bottom; +position = "{675, 0}"; +}, +{ +name = top; +position = "{715, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 570, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1318; +}, +{ +anchors = ( +{ +name = bottom; +position = "{633, 0}"; +}, +{ +name = top; +position = "{633, 1670}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 599, -10}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1228; +} +); +leftMetricsKey = n; +rightMetricsKey = n; +unicode = 0144; +}, +{ +color = 5; +glyphname = ncaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{741, 0}"; +}, +{ +name = top; +position = "{741, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 279, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1461; +}, +{ +anchors = ( +{ +name = bottom; +position = "{675, 0}"; +}, +{ +name = top; +position = "{675, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 290, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1318; +}, +{ +anchors = ( +{ +name = bottom; +position = "{633, 0}"; +}, +{ +name = top; +position = "{633, 1670}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 297, -10}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1228; +} +); +leftMetricsKey = n; +rightMetricsKey = n; +unicode = 0148; +}, +{ +color = 5; +glyphname = ncommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{741, -806}"; +}, +{ +name = top; +position = "{741, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 340, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1461; +}, +{ +anchors = ( +{ +name = bottom; +position = "{675, -584}"; +}, +{ +name = top; +position = "{675, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 309, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1318; +}, +{ +anchors = ( +{ +name = bottom; +position = "{633, -444}"; +}, +{ +name = top; +position = "{633, 1014}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 287, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1228; +} +); +leftMetricsKey = n; +rightMetricsKey = n; +unicode = 0146; +}, +{ +color = 5; +glyphname = eng; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{734, 322}"; +type = Stem; +}, +{ +place = "{909, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 374}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{157, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"157 1024 LINE", +"157 0 LINE", +"573 0 LINE", +"573 564 LINE SMOOTH", +"573 667 OFFCURVE", +"640 734 OFFCURVE", +"741 734 CURVE SMOOTH", +"842 734 OFFCURVE", +"909 667 OFFCURVE", +"909 564 CURVE SMOOTH", +"909 -56 LINE SMOOTH", +"909 -119 OFFCURVE", +"885 -176 OFFCURVE", +"817 -176 CURVE SMOOTH", +"795 -176 OFFCURVE", +"771 -170 OFFCURVE", +"747 -148 CURVE", +"551 -422 LINE", +"626 -497 OFFCURVE", +"759 -550 OFFCURVE", +"908 -550 CURVE SMOOTH", +"1170 -550 OFFCURVE", +"1325 -386 OFFCURVE", +"1325 -138 CURVE SMOOTH", +"1325 654 LINE SMOOTH", +"1325 883 OFFCURVE", +"1148 1056 OFFCURVE", +"915 1056 CURVE SMOOTH", +"792 1056 OFFCURVE", +"667 1009 OFFCURVE", +"573 928 CURVE", +"573 1024 LINE" +); +} +); +width = 1450; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{900, 156}"; +type = Stem; +}, +{ +place = "{937, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 174}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{206, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"206 1024 LINE", +"206 0 LINE", +"400 0 LINE", +"400 579 LINE SMOOTH", +"400 784 OFFCURVE", +"502 900 OFFCURVE", +"675 900 CURVE SMOOTH", +"840 900 OFFCURVE", +"937 794 OFFCURVE", +"937 603 CURVE SMOOTH", +"937 -184 LINE SMOOTH", +"937 -305 OFFCURVE", +"885 -376 OFFCURVE", +"795 -376 CURVE SMOOTH", +"756 -376 OFFCURVE", +"714 -363 OFFCURVE", +"682 -323 CURVE", +"584 -444 LINE", +"644 -516 OFFCURVE", +"736 -550 OFFCURVE", +"833 -550 CURVE SMOOTH", +"1018 -550 OFFCURVE", +"1131 -427 OFFCURVE", +"1131 -209 CURVE SMOOTH", +"1131 642 LINE SMOOTH", +"1131 900 OFFCURVE", +"980 1056 OFFCURVE", +"743 1056 CURVE SMOOTH", +"583 1056 OFFCURVE", +"462 985 OFFCURVE", +"400 882 CURVE", +"400 1024 LINE" +); +} +); +width = 1311; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1006, 50}"; +type = Stem; +}, +{ +place = "{955, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{235, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1025, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"235 1025 LINE", +"235 0 LINE", +"291 0 LINE", +"291 702 LINE SMOOTH", +"291 890 OFFCURVE", +"453 1006 OFFCURVE", +"626 1006 CURVE SMOOTH", +"841 1006 OFFCURVE", +"955 826 OFFCURVE", +"955 622 CURVE SMOOTH", +"955 -264 LINE SMOOTH", +"955 -421 OFFCURVE", +"885 -502 OFFCURVE", +"781 -502 CURVE SMOOTH", +"732 -502 OFFCURVE", +"678 -484 OFFCURVE", +"641 -432 CURVE", +"605 -458 LINE", +"656 -528 OFFCURVE", +"721 -550 OFFCURVE", +"786 -550 CURVE SMOOTH", +"923 -550 OFFCURVE", +"1011 -452 OFFCURVE", +"1011 -254 CURVE SMOOTH", +"1011 640 LINE SMOOTH", +"1011 880 OFFCURVE", +"859 1056 OFFCURVE", +"624 1056 CURVE SMOOTH", +"469 1056 OFFCURVE", +"335 979 OFFCURVE", +"291 870 CURVE", +"291 1025 LINE" +); +} +); +width = 1226; +} +); +leftMetricsKey = n; +rightMetricsKey = j; +unicode = 014B; +}, +{ +color = 5; +glyphname = ntilde; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{741, 0}"; +}, +{ +name = top; +position = "{741, 1582}"; +} +); +components = ( +{ +alignment = -1; +name = n; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 180, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1461; +}, +{ +anchors = ( +{ +name = bottom; +position = "{716, 0}"; +}, +{ +name = top; +position = "{716, 1549}"; +} +); +components = ( +{ +alignment = -1; +name = n; +transform = "{1, 0, 0, 1, 41, 0}"; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 206, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1413; +}, +{ +anchors = ( +{ +name = bottom; +position = "{713, 0}"; +}, +{ +name = top; +position = "{713, 1520}"; +} +); +components = ( +{ +alignment = -1; +name = n; +transform = "{1, 0, 0, 1, 80, 0}"; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 235, -10}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1408; +} +); +leftMetricsKey = n; +rightMetricsKey = n; +unicode = 00F1; +}, +{ +color = 5; +glyphname = o; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{683, 0}"; +}, +{ +name = center; +position = "{683, 512}"; +}, +{ +name = ogonek; +position = "{723, 0}"; +}, +{ +name = top; +position = "{683, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 352}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{704, 352}"; +type = Stem; +}, +{ +place = "{59, 436}"; +type = Stem; +}, +{ +place = "{871, 436}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1035 -32 OFFCURVE", +"1307 192 OFFCURVE", +"1307 512 CURVE SMOOTH", +"1307 832 OFFCURVE", +"1035 1056 OFFCURVE", +"683 1056 CURVE SMOOTH", +"331 1056 OFFCURVE", +"59 832 OFFCURVE", +"59 512 CURVE SMOOTH", +"59 192 OFFCURVE", +"331 -32 OFFCURVE", +"683 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"581 320 OFFCURVE", +"495 398 OFFCURVE", +"495 512 CURVE SMOOTH", +"495 626 OFFCURVE", +"581 704 OFFCURVE", +"683 704 CURVE SMOOTH", +"785 704 OFFCURVE", +"871 626 OFFCURVE", +"871 512 CURVE SMOOTH", +"871 398 OFFCURVE", +"785 320 OFFCURVE", +"683 320 CURVE SMOOTH" +); +} +); +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{700, 0}"; +}, +{ +name = center; +position = "{700, 512}"; +}, +{ +name = ogonek; +position = "{720, 0}"; +}, +{ +name = top; +position = "{700, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 170}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{886, 170}"; +type = Stem; +}, +{ +place = "{123, 202}"; +type = Stem; +}, +{ +place = "{1075, 202}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1026 -32 OFFCURVE", +"1277 191 OFFCURVE", +"1277 512 CURVE SMOOTH", +"1277 833 OFFCURVE", +"1026 1056 OFFCURVE", +"700 1056 CURVE SMOOTH", +"374 1056 OFFCURVE", +"123 833 OFFCURVE", +"123 512 CURVE SMOOTH", +"123 191 OFFCURVE", +"374 -32 OFFCURVE", +"700 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"485 138 OFFCURVE", +"325 294 OFFCURVE", +"325 512 CURVE SMOOTH", +"325 730 OFFCURVE", +"485 886 OFFCURVE", +"700 886 CURVE SMOOTH", +"915 886 OFFCURVE", +"1075 730 OFFCURVE", +"1075 512 CURVE SMOOTH", +"1075 294 OFFCURVE", +"915 138 OFFCURVE", +"700 138 CURVE SMOOTH" +); +} +); +width = 1400; +}, +{ +anchors = ( +{ +name = bottom; +position = "{711, 0}"; +}, +{ +name = center; +position = "{711, 512}"; +}, +{ +name = ogonek; +position = "{721, 0}"; +}, +{ +name = top; +position = "{711, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1000, 56}"; +type = Stem; +}, +{ +place = "{163, 56}"; +type = Stem; +}, +{ +place = "{1203, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1021 -32 OFFCURVE", +"1259 190 OFFCURVE", +"1259 512 CURVE SMOOTH", +"1259 834 OFFCURVE", +"1021 1056 OFFCURVE", +"711 1056 CURVE SMOOTH", +"401 1056 OFFCURVE", +"163 834 OFFCURVE", +"163 512 CURVE SMOOTH", +"163 190 OFFCURVE", +"401 -32 OFFCURVE", +"711 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"425 24 OFFCURVE", +"219 228 OFFCURVE", +"219 512 CURVE SMOOTH", +"219 796 OFFCURVE", +"425 1000 OFFCURVE", +"711 1000 CURVE SMOOTH", +"997 1000 OFFCURVE", +"1203 796 OFFCURVE", +"1203 512 CURVE SMOOTH", +"1203 228 OFFCURVE", +"997 24 OFFCURVE", +"711 24 CURVE SMOOTH" +); +} +); +width = 1422; +} +); +leftKerningGroup = _c; +rightKerningGroup = _c; +unicode = 006F; +}, +{ +color = 5; +glyphname = oacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{683, 0}"; +}, +{ +name = center; +position = "{683, 512}"; +}, +{ +name = ogonek; +position = "{723, 0}"; +}, +{ +name = top; +position = "{683, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 441, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{700, 0}"; +}, +{ +name = center; +position = "{700, 512}"; +}, +{ +name = ogonek; +position = "{720, 0}"; +}, +{ +name = top; +position = "{740, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 595, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1400; +}, +{ +anchors = ( +{ +name = bottom; +position = "{711, 0}"; +}, +{ +name = center; +position = "{711, 512}"; +}, +{ +name = ogonek; +position = "{721, 0}"; +}, +{ +name = top; +position = "{711, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 677, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1422; +} +); +leftMetricsKey = o; +rightMetricsKey = o; +unicode = 00F3; +}, +{ +color = 5; +glyphname = ocircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{683, 0}"; +}, +{ +name = center; +position = "{683, 512}"; +}, +{ +name = ogonek; +position = "{723, 0}"; +}, +{ +name = top; +position = "{683, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 221, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{700, 0}"; +}, +{ +name = center; +position = "{700, 512}"; +}, +{ +name = ogonek; +position = "{720, 0}"; +}, +{ +name = top; +position = "{700, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 315, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1400; +}, +{ +anchors = ( +{ +name = bottom; +position = "{711, 0}"; +}, +{ +name = center; +position = "{711, 512}"; +}, +{ +name = ogonek; +position = "{721, 0}"; +}, +{ +name = top; +position = "{711, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 375, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1422; +} +); +leftMetricsKey = o; +rightMetricsKey = o; +unicode = 00F4; +}, +{ +color = 5; +glyphname = odieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{683, 0}"; +}, +{ +name = center; +position = "{683, 512}"; +}, +{ +name = ogonek; +position = "{723, 0}"; +}, +{ +name = top; +position = "{683, 1610}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 235, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{700, 0}"; +}, +{ +name = center; +position = "{700, 512}"; +}, +{ +name = ogonek; +position = "{720, 0}"; +}, +{ +name = top; +position = "{700, 1509}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 353, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1400; +}, +{ +anchors = ( +{ +name = bottom; +position = "{711, 0}"; +}, +{ +name = center; +position = "{711, 512}"; +}, +{ +name = ogonek; +position = "{721, 0}"; +}, +{ +name = top; +position = "{711, 1446}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 427, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1422; +} +); +leftMetricsKey = o; +rightMetricsKey = o; +unicode = 00F6; +}, +{ +color = 5; +glyphname = ograve; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{683, 0}"; +}, +{ +name = center; +position = "{683, 512}"; +}, +{ +name = ogonek; +position = "{723, 0}"; +}, +{ +name = top; +position = "{599, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 273, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{700, 0}"; +}, +{ +name = center; +position = "{700, 512}"; +}, +{ +name = ogonek; +position = "{720, 0}"; +}, +{ +name = top; +position = "{617, 1666}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 428, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1400; +}, +{ +anchors = ( +{ +name = bottom; +position = "{711, 0}"; +}, +{ +name = center; +position = "{711, 512}"; +}, +{ +name = ogonek; +position = "{721, 0}"; +}, +{ +name = top; +position = "{711, 1657}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 608, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1422; +} +); +leftMetricsKey = o; +rightMetricsKey = o; +unicode = 00F2; +}, +{ +color = 5; +glyphname = ohungarumlaut; +lastChange = "2022-01-28 15:01:47 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{683, 0}"; +}, +{ +name = center; +position = "{683, 512}"; +}, +{ +name = ogonek; +position = "{723, 0}"; +}, +{ +name = top; +position = "{683, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 161, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1356; +}, +{ +anchors = ( +{ +name = bottom; +position = "{700, 0}"; +}, +{ +name = center; +position = "{700, 512}"; +}, +{ +name = ogonek; +position = "{720, 0}"; +}, +{ +name = top; +position = "{700, 1679}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 375, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1400; +}, +{ +anchors = ( +{ +name = bottom; +position = "{711, 0}"; +}, +{ +name = center; +position = "{711, 512}"; +}, +{ +name = ogonek; +position = "{721, 0}"; +}, +{ +name = top; +position = "{711, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 509, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1422; +} +); +leftMetricsKey = o; +unicode = 0151; +}, +{ +color = 5; +glyphname = omacron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{683, 0}"; +}, +{ +name = center; +position = "{683, 512}"; +}, +{ +name = ogonek; +position = "{723, 0}"; +}, +{ +name = top; +position = "{683, 1528}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 275, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{700, 0}"; +}, +{ +name = center; +position = "{700, 512}"; +}, +{ +name = ogonek; +position = "{720, 0}"; +}, +{ +name = top; +position = "{700, 1457}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 292, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1400; +}, +{ +anchors = ( +{ +name = bottom; +position = "{711, 0}"; +}, +{ +name = center; +position = "{711, 512}"; +}, +{ +name = ogonek; +position = "{721, 0}"; +}, +{ +name = top; +position = "{711, 1412}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 303, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1422; +} +); +leftMetricsKey = o; +rightMetricsKey = o; +unicode = 014D; +}, +{ +color = 5; +glyphname = oslash; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = o; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"323 -32 LINE", +"1215 1056 LINE", +"1043 1056 LINE", +"151 -32 LINE" +); +} +); +width = 1366; +}, +{ +components = ( +{ +alignment = -1; +name = o; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"309 -32 LINE", +"1201 1056 LINE", +"1091 1056 LINE", +"199 -32 LINE" +); +} +); +width = 1400; +}, +{ +components = ( +{ +alignment = -1; +name = o; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"301 -32 LINE", +"1193 1056 LINE", +"1121 1056 LINE", +"229 -32 LINE" +); +} +); +width = 1422; +} +); +leftMetricsKey = o; +rightMetricsKey = o; +unicode = 00F8; +}, +{ +color = 5; +glyphname = otilde; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{683, 0}"; +}, +{ +name = center; +position = "{683, 512}"; +}, +{ +name = ogonek; +position = "{723, 0}"; +}, +{ +name = top; +position = "{683, 1582}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 122, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1366; +}, +{ +anchors = ( +{ +name = bottom; +position = "{700, 0}"; +}, +{ +name = center; +position = "{700, 512}"; +}, +{ +name = ogonek; +position = "{720, 0}"; +}, +{ +name = top; +position = "{700, 1549}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 190, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1400; +}, +{ +anchors = ( +{ +name = bottom; +position = "{711, 0}"; +}, +{ +name = center; +position = "{711, 512}"; +}, +{ +name = ogonek; +position = "{721, 0}"; +}, +{ +name = top; +position = "{711, 1530}"; +} +); +components = ( +{ +alignment = -1; +name = o; +}, +{ +alignment = -1; +name = tilde; +transform = "{1, 0, 0, 1, 233, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1422; +} +); +leftMetricsKey = o; +rightMetricsKey = o; +unicode = 00F5; +}, +{ +color = 5; +glyphname = oe; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{1028, 0}"; +}, +{ +name = top; +position = "{1028, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 352}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{704, 352}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 328}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{780, 276}"; +type = Stem; +}, +{ +place = "{59, 436}"; +type = Stem; +}, +{ +place = "{1577, 406}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{454, 216}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"827 -32 OFFCURVE", +"957 16 OFFCURVE", +"1045 108 CURVE", +"1162 11 OFFCURVE", +"1283 -32 OFFCURVE", +"1441 -32 CURVE SMOOTH", +"1678 -32 OFFCURVE", +"1865 65 OFFCURVE", +"1967 240 CURVE", +"1669 388 LINE", +"1596 317 OFFCURVE", +"1553 296 OFFCURVE", +"1478 296 CURVE SMOOTH", +"1355 296 OFFCURVE", +"1285 353 OFFCURVE", +"1285 454 CURVE", +"1979 454 LINE", +"1983 508 OFFCURVE", +"1983 511 OFFCURVE", +"1983 528 CURVE SMOOTH", +"1983 844 OFFCURVE", +"1764 1056 OFFCURVE", +"1437 1056 CURVE SMOOTH", +"1286 1056 OFFCURVE", +"1160 1011 OFFCURVE", +"1045 916 CURVE", +"952 1009 OFFCURVE", +"823 1056 OFFCURVE", +"662 1056 CURVE SMOOTH", +"309 1056 OFFCURVE", +"59 830 OFFCURVE", +"59 512 CURVE SMOOTH", +"59 193 OFFCURVE", +"309 -32 OFFCURVE", +"663 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"576 320 OFFCURVE", +"495 403 OFFCURVE", +"495 512 CURVE SMOOTH", +"495 621 OFFCURVE", +"576 704 OFFCURVE", +"683 704 CURVE SMOOTH", +"790 704 OFFCURVE", +"871 621 OFFCURVE", +"871 512 CURVE SMOOTH", +"871 403 OFFCURVE", +"790 320 OFFCURVE", +"683 320 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1297 670 LINE", +"1299 739 OFFCURVE", +"1351 780 OFFCURVE", +"1439 780 CURVE SMOOTH", +"1521 780 OFFCURVE", +"1564 745 OFFCURVE", +"1577 670 CURVE" +); +} +); +width = 2060; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1133, 0}"; +}, +{ +name = top; +position = "{1133, 1025}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{888, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 158}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{918, 138}"; +type = Stem; +}, +{ +place = "{123, 200}"; +type = Stem; +}, +{ +place = "{1957, 191}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{490, 114}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"906 -32 OFFCURVE", +"1080 71 OFFCURVE", +"1159 240 CURVE", +"1249 69 OFFCURVE", +"1419 -32 OFFCURVE", +"1628 -32 CURVE SMOOTH", +"1840 -32 OFFCURVE", +"2017 61 OFFCURVE", +"2116 223 CURVE", +"1974 297 LINE", +"1893 184 OFFCURVE", +"1782 126 OFFCURVE", +"1643 126 CURVE SMOOTH", +"1419 126 OFFCURVE", +"1265 276 OFFCURVE", +"1265 490 CURVE", +"2147 490 LINE", +"2148 512 OFFCURVE", +"2148 515 OFFCURVE", +"2148 524 CURVE SMOOTH", +"2148 827 OFFCURVE", +"1917 1056 OFFCURVE", +"1615 1056 CURVE SMOOTH", +"1417 1056 OFFCURVE", +"1248 948 OFFCURVE", +"1160 782 CURVE", +"1080 953 OFFCURVE", +"905 1056 OFFCURVE", +"693 1056 CURVE SMOOTH", +"366 1056 OFFCURVE", +"123 832 OFFCURVE", +"123 512 CURVE SMOOTH", +"123 192 OFFCURVE", +"366 -32 OFFCURVE", +"693 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"483 136 OFFCURVE", +"323 294 OFFCURVE", +"323 512 CURVE SMOOTH", +"323 730 OFFCURVE", +"483 888 OFFCURVE", +"701 888 CURVE SMOOTH", +"918 888 OFFCURVE", +"1078 730 OFFCURVE", +"1078 512 CURVE SMOOTH", +"1078 294 OFFCURVE", +"918 136 OFFCURVE", +"701 136 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1271 604 LINE", +"1286 784 OFFCURVE", +"1431 918 OFFCURVE", +"1615 918 CURVE SMOOTH", +"1797 918 OFFCURVE", +"1938 786 OFFCURVE", +"1957 604 CURVE" +); +} +); +width = 2266; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1198, 0}"; +}, +{ +name = top; +position = "{1198, 1026}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{163, 52}"; +type = Stem; +}, +{ +place = "{2195, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{512, 50}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"954 -32 OFFCURVE", +"1156 106 OFFCURVE", +"1229 322 CURVE", +"1303 105 OFFCURVE", +"1504 -32 OFFCURVE", +"1745 -32 CURVE SMOOTH", +"1941 -32 OFFCURVE", +"2111 58 OFFCURVE", +"2209 212 CURVE", +"2165 240 LINE", +"2079 101 OFFCURVE", +"1925 20 OFFCURVE", +"1745 20 CURVE SMOOTH", +"1458 20 OFFCURVE", +"1251 227 OFFCURVE", +"1251 512 CURVE", +"2251 512 LINE", +"2251 515 OFFCURVE", +"2251 517 OFFCURVE", +"2251 522 CURVE SMOOTH", +"2251 817 OFFCURVE", +"2012 1056 OFFCURVE", +"1725 1056 CURVE SMOOTH", +"1499 1056 OFFCURVE", +"1303 908 OFFCURVE", +"1231 698 CURVE", +"1159 918 OFFCURVE", +"955 1056 OFFCURVE", +"711 1056 CURVE SMOOTH", +"401 1056 OFFCURVE", +"163 833 OFFCURVE", +"163 512 CURVE SMOOTH", +"163 191 OFFCURVE", +"401 -32 OFFCURVE", +"711 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"424 20 OFFCURVE", +"215 226 OFFCURVE", +"215 512 CURVE SMOOTH", +"215 798 OFFCURVE", +"424 1004 OFFCURVE", +"711 1004 CURVE SMOOTH", +"998 1004 OFFCURVE", +"1207 798 OFFCURVE", +"1207 512 CURVE SMOOTH", +"1207 226 OFFCURVE", +"998 20 OFFCURVE", +"711 20 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1253 562 LINE", +"1277 812 OFFCURVE", +"1480 1004 OFFCURVE", +"1725 1004 CURVE SMOOTH", +"1970 1004 OFFCURVE", +"2171 812 OFFCURVE", +"2195 562 CURVE" +); +} +); +width = 2395; +} +); +leftKerningGroup = _c; +leftMetricsKey = o; +rightKerningGroup = _c; +rightMetricsKey = e; +unicode = 0153; +}, +{ +color = 5; +glyphname = p; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{733, 0}"; +}, +{ +name = top; +position = "{733, 1024}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"951 401 OFFCURVE", +"868 320 OFFCURVE", +"757 320 CURVE SMOOTH", +"646 320 OFFCURVE", +"565 401 OFFCURVE", +"565 512 CURVE SMOOTH", +"565 623 OFFCURVE", +"646 704 OFFCURVE", +"757 704 CURVE SMOOTH", +"868 704 OFFCURVE", +"951 623 OFFCURVE", +"951 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1391 819 OFFCURVE", +"1183 1056 OFFCURVE", +"885 1056 CURVE SMOOTH", +"767 1056 OFFCURVE", +"664 1019 OFFCURVE", +"573 944 CURVE", +"573 1024 LINE", +"157 1024 LINE", +"157 -520 LINE", +"573 -520 LINE", +"573 80 LINE", +"664 5 OFFCURVE", +"767 -32 OFFCURVE", +"885 -32 CURVE SMOOTH", +"1183 -32 OFFCURVE", +"1391 209 OFFCURVE", +"1391 514 CURVE SMOOTH" +); +} +); +width = 1465; +}, +{ +anchors = ( +{ +name = bottom; +position = "{744, 0}"; +}, +{ +name = top; +position = "{744, 1024}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1110 293 OFFCURVE", +"959 136 OFFCURVE", +"751 136 CURVE SMOOTH", +"542 136 OFFCURVE", +"393 293 OFFCURVE", +"393 512 CURVE SMOOTH", +"393 732 OFFCURVE", +"542 888 OFFCURVE", +"751 888 CURVE SMOOTH", +"959 888 OFFCURVE", +"1110 731 OFFCURVE", +"1110 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1312 823 OFFCURVE", +"1097 1056 OFFCURVE", +"803 1056 CURVE SMOOTH", +"634 1056 OFFCURVE", +"489 974 OFFCURVE", +"400 832 CURVE", +"400 1024 LINE", +"206 1024 LINE", +"206 -520 LINE", +"400 -520 LINE", +"400 192 LINE", +"489 50 OFFCURVE", +"634 -32 OFFCURVE", +"803 -32 CURVE SMOOTH", +"1097 -32 OFFCURVE", +"1312 201 OFFCURVE", +"1312 512 CURVE SMOOTH" +); +} +); +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{749, 0}"; +}, +{ +name = top; +position = "{749, 1024}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1209 225 OFFCURVE", +"1016 20 OFFCURVE", +"747 20 CURVE SMOOTH", +"478 20 OFFCURVE", +"285 225 OFFCURVE", +"285 512 CURVE SMOOTH", +"285 800 OFFCURVE", +"478 1004 OFFCURVE", +"747 1004 CURVE SMOOTH", +"1016 1004 OFFCURVE", +"1209 799 OFFCURVE", +"1209 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1263 827 OFFCURVE", +"1043 1056 OFFCURVE", +"751 1056 CURVE SMOOTH", +"547 1056 OFFCURVE", +"375 945 OFFCURVE", +"291 762 CURVE", +"291 1024 LINE", +"235 1024 LINE", +"235 -520 LINE", +"291 -520 LINE", +"291 262 LINE", +"375 79 OFFCURVE", +"547 -32 OFFCURVE", +"751 -32 CURVE SMOOTH", +"1043 -32 OFFCURVE", +"1263 197 OFFCURVE", +"1263 512 CURVE SMOOTH" +); +} +); +width = 1428; +} +); +leftKerningGroup = _m; +leftMetricsKey = b; +rightKerningGroup = _b; +rightMetricsKey = b; +unicode = 0070; +}, +{ +color = 5; +glyphname = thorn; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{744, 0}"; +}, +{ +name = top; +position = "{744, 1024}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"565 623 OFFCURVE", +"646 704 OFFCURVE", +"757 704 CURVE SMOOTH", +"868 704 OFFCURVE", +"951 623 OFFCURVE", +"951 512 CURVE SMOOTH", +"951 401 OFFCURVE", +"868 320 OFFCURVE", +"757 320 CURVE SMOOTH", +"646 320 OFFCURVE", +"565 401 OFFCURVE", +"565 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"157 1720 LINE", +"157 -520 LINE", +"573 -520 LINE", +"573 80 LINE", +"664 5 OFFCURVE", +"767 -32 OFFCURVE", +"885 -32 CURVE SMOOTH", +"1183 -32 OFFCURVE", +"1391 209 OFFCURVE", +"1391 514 CURVE SMOOTH", +"1391 819 OFFCURVE", +"1183 1056 OFFCURVE", +"885 1056 CURVE SMOOTH", +"767 1056 OFFCURVE", +"664 1019 OFFCURVE", +"573 944 CURVE", +"573 1720 LINE" +); +} +); +width = 1465; +}, +{ +anchors = ( +{ +name = bottom; +position = "{726, 0}"; +}, +{ +name = top; +position = "{726, 1025}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"393 732 OFFCURVE", +"542 888 OFFCURVE", +"751 888 CURVE SMOOTH", +"959 888 OFFCURVE", +"1110 731 OFFCURVE", +"1110 512 CURVE SMOOTH", +"1110 293 OFFCURVE", +"959 136 OFFCURVE", +"751 136 CURVE SMOOTH", +"542 136 OFFCURVE", +"393 293 OFFCURVE", +"393 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"206 1720 LINE", +"206 -520 LINE", +"400 -520 LINE", +"400 192 LINE", +"489 50 OFFCURVE", +"634 -32 OFFCURVE", +"803 -32 CURVE SMOOTH", +"1097 -32 OFFCURVE", +"1312 201 OFFCURVE", +"1312 512 CURVE SMOOTH", +"1312 823 OFFCURVE", +"1097 1056 OFFCURVE", +"803 1056 CURVE SMOOTH", +"634 1056 OFFCURVE", +"489 974 OFFCURVE", +"400 832 CURVE", +"400 1720 LINE" +); +} +); +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{714, 0}"; +}, +{ +name = top; +position = "{714, 1026}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"285 800 OFFCURVE", +"478 1004 OFFCURVE", +"747 1004 CURVE SMOOTH", +"1016 1004 OFFCURVE", +"1209 799 OFFCURVE", +"1209 512 CURVE SMOOTH", +"1209 225 OFFCURVE", +"1016 20 OFFCURVE", +"747 20 CURVE SMOOTH", +"478 20 OFFCURVE", +"285 225 OFFCURVE", +"285 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"235 1720 LINE", +"235 -520 LINE", +"291 -520 LINE", +"291 262 LINE", +"375 79 OFFCURVE", +"547 -32 OFFCURVE", +"751 -32 CURVE SMOOTH", +"1043 -32 OFFCURVE", +"1263 197 OFFCURVE", +"1263 512 CURVE SMOOTH", +"1263 827 OFFCURVE", +"1043 1056 OFFCURVE", +"751 1056 CURVE SMOOTH", +"547 1056 OFFCURVE", +"375 945 OFFCURVE", +"291 762 CURVE", +"291 1720 LINE" +); +} +); +width = 1428; +} +); +leftMetricsKey = b; +rightKerningGroup = _b; +rightMetricsKey = b; +unicode = 00FE; +}, +{ +color = 5; +glyphname = q; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{732, 0}"; +}, +{ +name = top; +position = "{732, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 352}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{704, 352}"; +type = Stem; +}, +{ +place = "{73, 440}"; +type = Stem; +}, +{ +place = "{891, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{-520, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"513 623 OFFCURVE", +"596 704 OFFCURVE", +"707 704 CURVE SMOOTH", +"818 704 OFFCURVE", +"899 623 OFFCURVE", +"899 512 CURVE SMOOTH", +"899 401 OFFCURVE", +"818 320 OFFCURVE", +"707 320 CURVE SMOOTH", +"596 320 OFFCURVE", +"513 401 OFFCURVE", +"513 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"73 209 OFFCURVE", +"281 -32 OFFCURVE", +"579 -32 CURVE SMOOTH", +"697 -32 OFFCURVE", +"800 5 OFFCURVE", +"891 80 CURVE", +"891 -520 LINE", +"1307 -520 LINE", +"1307 1024 LINE", +"891 1024 LINE", +"891 944 LINE", +"800 1019 OFFCURVE", +"697 1056 OFFCURVE", +"579 1056 CURVE SMOOTH", +"281 1056 OFFCURVE", +"73 819 OFFCURVE", +"73 514 CURVE SMOOTH" +); +} +); +width = 1464; +}, +{ +anchors = ( +{ +name = bottom; +position = "{721, 0}"; +}, +{ +name = top; +position = "{699, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{888, 168}"; +type = Stem; +}, +{ +place = "{130, 202}"; +type = Stem; +}, +{ +place = "{1042, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{-520, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"332 731 OFFCURVE", +"483 888 OFFCURVE", +"691 888 CURVE SMOOTH", +"900 888 OFFCURVE", +"1049 732 OFFCURVE", +"1049 512 CURVE SMOOTH", +"1049 293 OFFCURVE", +"900 136 OFFCURVE", +"691 136 CURVE SMOOTH", +"483 136 OFFCURVE", +"332 293 OFFCURVE", +"332 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"130 201 OFFCURVE", +"345 -32 OFFCURVE", +"639 -32 CURVE SMOOTH", +"808 -32 OFFCURVE", +"953 50 OFFCURVE", +"1042 192 CURVE", +"1042 -520 LINE", +"1236 -520 LINE", +"1236 1024 LINE", +"1042 1024 LINE", +"1042 832 LINE", +"953 974 OFFCURVE", +"808 1056 OFFCURVE", +"639 1056 CURVE SMOOTH", +"345 1056 OFFCURVE", +"130 823 OFFCURVE", +"130 512 CURVE SMOOTH" +); +} +); +width = 1442; +}, +{ +anchors = ( +{ +name = bottom; +position = "{714, 0}"; +}, +{ +name = top; +position = "{679, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1004, 52}"; +type = Stem; +}, +{ +place = "{165, 54}"; +type = Stem; +}, +{ +place = "{1137, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{-520, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"219 799 OFFCURVE", +"412 1004 OFFCURVE", +"681 1004 CURVE SMOOTH", +"950 1004 OFFCURVE", +"1143 800 OFFCURVE", +"1143 512 CURVE SMOOTH", +"1143 225 OFFCURVE", +"950 20 OFFCURVE", +"681 20 CURVE SMOOTH", +"412 20 OFFCURVE", +"219 225 OFFCURVE", +"219 512 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"165 197 OFFCURVE", +"385 -32 OFFCURVE", +"677 -32 CURVE SMOOTH", +"881 -32 OFFCURVE", +"1053 79 OFFCURVE", +"1137 262 CURVE", +"1137 -520 LINE", +"1193 -520 LINE", +"1193 1024 LINE", +"1137 1024 LINE", +"1137 762 LINE", +"1053 945 OFFCURVE", +"881 1056 OFFCURVE", +"677 1056 CURVE SMOOTH", +"385 1056 OFFCURVE", +"165 827 OFFCURVE", +"165 512 CURVE SMOOTH" +); +} +); +width = 1428; +} +); +leftKerningGroup = _d; +leftMetricsKey = a; +rightKerningGroup = _A1; +rightMetricsKey = a; +unicode = 0071; +}, +{ +color = 5; +glyphname = r; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{573, 0}"; +}, +{ +name = top; +position = "{632, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{696, 360}"; +type = Stem; +}, +{ +place = "{157, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"573 0 LINE", +"573 482 LINE SMOOTH", +"573 615 OFFCURVE", +"659 696 OFFCURVE", +"779 696 CURVE SMOOTH", +"845 696 OFFCURVE", +"909 671 OFFCURVE", +"959 634 CURVE", +"1133 984 LINE", +"1075 1026 OFFCURVE", +"988 1056 OFFCURVE", +"903 1056 CURVE SMOOTH", +"778 1056 OFFCURVE", +"658 991 OFFCURVE", +"573 871 CURVE", +"573 1024 LINE", +"157 1024 LINE", +"157 0 LINE" +); +} +); +width = 1108; +}, +{ +anchors = ( +{ +name = bottom; +position = "{478, 0}"; +}, +{ +name = top; +position = "{518, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{887, 169}"; +type = Stem; +}, +{ +place = "{206, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"401 0 LINE", +"401 545 LINE SMOOTH", +"401 769 OFFCURVE", +"526 887 OFFCURVE", +"663 887 CURVE SMOOTH", +"712 887 OFFCURVE", +"770 872 OFFCURVE", +"813 849 CURVE", +"893 1014 LINE", +"845 1039 OFFCURVE", +"778 1056 OFFCURVE", +"709 1056 CURVE SMOOTH", +"576 1056 OFFCURVE", +"458 993 OFFCURVE", +"401 844 CURVE", +"401 1024 LINE", +"206 1024 LINE", +"206 0 LINE" +); +} +); +width = 928; +}, +{ +anchors = ( +{ +name = bottom; +position = "{416, 0}"; +}, +{ +name = top; +position = "{469, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1006, 50}"; +type = Stem; +}, +{ +place = "{235, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"291 0 LINE", +"291 734 LINE SMOOTH", +"291 873 OFFCURVE", +"410 1006 OFFCURVE", +"589 1006 CURVE SMOOTH", +"633 1006 OFFCURVE", +"682 998 OFFCURVE", +"719 984 CURVE", +"741 1032 LINE", +"699 1047 OFFCURVE", +"644 1056 OFFCURVE", +"589 1056 CURVE SMOOTH", +"447 1056 OFFCURVE", +"348 994 OFFCURVE", +"291 870 CURVE", +"291 1024 LINE", +"235 1024 LINE", +"235 0 LINE" +); +} +); +width = 832; +} +); +leftKerningGroup = _m; +leftMetricsKey = n; +rightKerningGroup = _r; +unicode = 0072; +}, +{ +color = 5; +glyphname = racute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{573, 0}"; +}, +{ +name = top; +position = "{632, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = r; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 390, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1108; +}, +{ +anchors = ( +{ +name = bottom; +position = "{478, 0}"; +}, +{ +name = top; +position = "{558, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = r; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 413, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 928; +}, +{ +anchors = ( +{ +name = bottom; +position = "{416, 0}"; +}, +{ +name = top; +position = "{469, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = r; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 435, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 832; +} +); +leftMetricsKey = r; +rightMetricsKey = r; +unicode = 0155; +}, +{ +color = 5; +glyphname = rcaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{573, 0}"; +}, +{ +name = top; +position = "{632, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = r; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 170, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1108; +}, +{ +anchors = ( +{ +name = bottom; +position = "{551, 0}"; +}, +{ +name = top; +position = "{591, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = r; +transform = "{1, 0, 0, 1, 73, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 206, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1011; +}, +{ +anchors = ( +{ +name = bottom; +position = "{518, 0}"; +}, +{ +name = top; +position = "{571, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = r; +transform = "{1, 0, 0, 1, 102, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 235, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 998; +} +); +leftMetricsKey = r; +rightMetricsKey = r; +unicode = 0159; +}, +{ +color = 5; +glyphname = rcommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{573, -806}"; +}, +{ +name = top; +position = "{632, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = r; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 172, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1108; +}, +{ +anchors = ( +{ +name = bottom; +position = "{478, -584}"; +}, +{ +name = top; +position = "{518, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = r; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 112, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 928; +}, +{ +anchors = ( +{ +name = bottom; +position = "{416, -444}"; +}, +{ +name = top; +position = "{469, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = r; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 70, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 832; +} +); +leftMetricsKey = r; +rightMetricsKey = r; +unicode = 0157; +}, +{ +color = 5; +glyphname = s; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{544, 0}"; +}, +{ +name = top; +position = "{523, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{778, 276}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 304}"; +type = Stem; +}, +{ +place = "{524, 438}"; +type = Stem; +}, +{ +place = "{92, 396}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"786 -32 OFFCURVE", +"962 92 OFFCURVE", +"962 303 CURVE SMOOTH", +"962 459 OFFCURVE", +"866 561 OFFCURVE", +"665 632 CURVE SMOOTH", +"537 677 OFFCURVE", +"488 706 OFFCURVE", +"488 737 CURVE SMOOTH", +"488 760 OFFCURVE", +"515 778 OFFCURVE", +"579 778 CURVE SMOOTH", +"651 778 OFFCURVE", +"737 756 OFFCURVE", +"802 720 CURVE", +"919 967 LINE", +"804 1024 OFFCURVE", +"674 1054 OFFCURVE", +"547 1054 CURVE SMOOTH", +"272 1054 OFFCURVE", +"92 905 OFFCURVE", +"92 712 CURVE SMOOTH", +"92 511 OFFCURVE", +"289 433 OFFCURVE", +"419 386 CURVE SMOOTH", +"501 356 OFFCURVE", +"524 336 OFFCURVE", +"524 312 CURVE SMOOTH", +"524 286 OFFCURVE", +"497 272 OFFCURVE", +"451 272 CURVE SMOOTH", +"377 272 OFFCURVE", +"286 307 OFFCURVE", +"206 366 CURVE", +"56 103 LINE", +"185 12 OFFCURVE", +"317 -32 OFFCURVE", +"492 -32 CURVE SMOOTH" +); +} +); +width = 1046; +}, +{ +anchors = ( +{ +name = bottom; +position = "{495, 0}"; +}, +{ +name = top; +position = "{488, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{918, 137}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 148}"; +type = Stem; +}, +{ +place = "{678, 199}"; +type = Stem; +}, +{ +place = "{135, 184}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"725 -32 OFFCURVE", +"877 77 OFFCURVE", +"877 273 CURVE SMOOTH", +"877 449 OFFCURVE", +"733 534 OFFCURVE", +"537 607 CURVE SMOOTH", +"401 657 OFFCURVE", +"319 693 OFFCURVE", +"319 781 CURVE SMOOTH", +"319 861 OFFCURVE", +"387 918 OFFCURVE", +"500 918 CURVE SMOOTH", +"576 918 OFFCURVE", +"650 892 OFFCURVE", +"710 833 CURVE", +"805 917 LINE", +"727 1006 OFFCURVE", +"616 1055 OFFCURVE", +"488 1055 CURVE SMOOTH", +"277 1055 OFFCURVE", +"135 933 OFFCURVE", +"135 772 CURVE SMOOTH", +"135 598 OFFCURVE", +"299 531 OFFCURVE", +"432 481 CURVE SMOOTH", +"573 428 OFFCURVE", +"678 383 OFFCURVE", +"678 279 CURVE SMOOTH", +"678 169 OFFCURVE", +"584 116 OFFCURVE", +"473 116 CURVE SMOOTH", +"379 116 OFFCURVE", +"283 152 OFFCURVE", +"210 238 CURVE", +"100 157 LINE", +"194 22 OFFCURVE", +"332 -32 OFFCURVE", +"491 -32 CURVE SMOOTH" +); +} +); +width = 1001; +}, +{ +anchors = ( +{ +name = bottom; +position = "{490, 0}"; +}, +{ +name = top; +position = "{473, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1006, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 50}"; +type = Stem; +}, +{ +place = "{774, 50}"; +type = Stem; +}, +{ +place = "{184, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"687 -32 OFFCURVE", +"824 67 OFFCURVE", +"824 251 CURVE SMOOTH", +"824 443 OFFCURVE", +"672 518 OFFCURVE", +"479 592 CURVE SMOOTH", +"339 646 OFFCURVE", +"236 685 OFFCURVE", +"236 808 CURVE SMOOTH", +"236 925 OFFCURVE", +"329 1006 OFFCURVE", +"473 1006 CURVE SMOOTH", +"585 1006 OFFCURVE", +"664 957 OFFCURVE", +"710 864 CURVE", +"754 885 LINE", +"705 994 OFFCURVE", +"602 1056 OFFCURVE", +"473 1056 CURVE SMOOTH", +"303 1056 OFFCURVE", +"184 950 OFFCURVE", +"184 809 CURVE SMOOTH", +"184 653 OFFCURVE", +"328 591 OFFCURVE", +"462 540 CURVE SMOOTH", +"640 472 OFFCURVE", +"774 410 OFFCURVE", +"774 252 CURVE SMOOTH", +"774 93 OFFCURVE", +"641 18 OFFCURVE", +"490 18 CURVE SMOOTH", +"352 18 OFFCURVE", +"235 76 OFFCURVE", +"174 212 CURVE", +"130 192 LINE", +"201 29 OFFCURVE", +"341 -32 OFFCURVE", +"491 -32 CURVE SMOOTH" +); +} +); +width = 973; +} +); +leftKerningGroup = _s; +rightKerningGroup = _s; +unicode = 0073; +}, +{ +color = 5; +glyphname = sacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{544, 0}"; +}, +{ +name = top; +position = "{523, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 281, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1046; +}, +{ +anchors = ( +{ +name = bottom; +position = "{495, 0}"; +}, +{ +name = top; +position = "{528, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 383, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1001; +}, +{ +anchors = ( +{ +name = bottom; +position = "{490, 0}"; +}, +{ +name = top; +position = "{473, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 439, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 973; +} +); +leftMetricsKey = s; +rightMetricsKey = s; +unicode = 015B; +}, +{ +color = 9; +glyphname = scaron; +lastChange = "2022-01-28 15:09:41 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{544, 0}"; +}, +{ +name = top; +position = "{523, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 61, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1045; +}, +{ +anchors = ( +{ +name = bottom; +position = "{495, 0}"; +}, +{ +name = top; +position = "{488, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 103, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 973; +}, +{ +anchors = ( +{ +name = bottom; +position = "{490, 0}"; +}, +{ +name = top; +position = "{473, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 137, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 973; +} +); +leftMetricsKey = s; +unicode = 0161; +}, +{ +color = 5; +glyphname = scedilla; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{505, -588}"; +}, +{ +name = top; +position = "{523, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 224.5, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1046; +}, +{ +anchors = ( +{ +name = bottom; +position = "{494, -565}"; +}, +{ +name = top; +position = "{488, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 240.5, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1001; +}, +{ +anchors = ( +{ +name = bottom; +position = "{487, -551}"; +}, +{ +name = top; +position = "{473, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 251, -21}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 973; +} +); +leftMetricsKey = s; +rightMetricsKey = s; +unicode = 015F; +}, +{ +color = 5; +glyphname = scommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{544, -806}"; +}, +{ +name = top; +position = "{523, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 143, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1046; +}, +{ +anchors = ( +{ +name = bottom; +position = "{495, -584}"; +}, +{ +name = top; +position = "{488, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 129, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1001; +}, +{ +anchors = ( +{ +name = bottom; +position = "{490, -444}"; +}, +{ +name = top; +position = "{473, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = s; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 144, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 973; +} +); +leftMetricsKey = s; +rightMetricsKey = s; +unicode = 0219; +}, +{ +color = 5; +glyphname = germandbls; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{703, 0}"; +}, +{ +name = top; +position = "{703, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1404, 346}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{756, 312}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 378}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{628, 314}"; +type = Stem; +}, +{ +place = "{213, 414}"; +type = Stem; +}, +{ +place = "{877, 16}"; +type = Stem; +}, +{ +place = "{1267, 66}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"737 -32 LINE", +"1090 -24 OFFCURVE", +"1333 201 OFFCURVE", +"1333 520 CURVE SMOOTH", +"1333 704 OFFCURVE", +"1249 837 OFFCURVE", +"1081 920 CURVE", +"1207 998 OFFCURVE", +"1267 1105 OFFCURVE", +"1267 1253 CURVE SMOOTH", +"1267 1537 OFFCURVE", +"1043 1750 OFFCURVE", +"743 1750 CURVE SMOOTH", +"439 1750 OFFCURVE", +"213 1527 OFFCURVE", +"213 1228 CURVE SMOOTH", +"213 942 LINE", +"81 942 LINE", +"81 628 LINE", +"213 628 LINE", +"213 0 LINE", +"627 0 LINE", +"627 1244 LINE SMOOTH", +"627 1348 OFFCURVE", +"666 1404 OFFCURVE", +"738 1404 CURVE SMOOTH", +"820 1404 OFFCURVE", +"877 1338 OFFCURVE", +"877 1243 CURVE SMOOTH", +"877 1140 OFFCURVE", +"820 1068 OFFCURVE", +"737 1068 CURVE", +"736 1068 LINE", +"736 756 LINE", +"737 756 LINE", +"832 756 OFFCURVE", +"893 675 OFFCURVE", +"893 551 CURVE SMOOTH", +"893 429 OFFCURVE", +"830 346 OFFCURVE", +"737 346 CURVE", +"736 346 LINE", +"736 -32 LINE" +); +} +); +width = 1399; +}, +{ +anchors = ( +{ +name = bottom; +position = "{681, 0}"; +}, +{ +name = top; +position = "{681, 1025}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1582, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{838, 155}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 180}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{707, 156}"; +type = Stem; +}, +{ +place = "{241, 194}"; +type = Stem; +}, +{ +place = "{991, 42}"; +type = Stem; +}, +{ +place = "{1176, 61}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"708 -32 LINE", +"1009 -29 OFFCURVE", +"1237 192 OFFCURVE", +"1237 481 CURVE SMOOTH", +"1237 681 OFFCURVE", +"1124 846 OFFCURVE", +"937 920 CURVE", +"1087 989 OFFCURVE", +"1176 1128 OFFCURVE", +"1176 1294 CURVE SMOOTH", +"1176 1550 OFFCURVE", +"972 1750 OFFCURVE", +"710 1750 CURVE SMOOTH", +"446 1750 OFFCURVE", +"241 1546 OFFCURVE", +"241 1285 CURVE SMOOTH", +"241 863 LINE", +"109 863 LINE", +"109 707 LINE", +"241 707 LINE", +"241 0 LINE", +"435 0 LINE", +"435 1291 LINE SMOOTH", +"435 1457 OFFCURVE", +"554 1582 OFFCURVE", +"708 1582 CURVE SMOOTH", +"866 1582 OFFCURVE", +"991 1454 OFFCURVE", +"991 1290 CURVE SMOOTH", +"991 1124 OFFCURVE", +"866 993 OFFCURVE", +"708 993 CURVE SMOOTH", +"573 993 LINE", +"573 838 LINE", +"708 838 LINE SMOOTH", +"890 838 OFFCURVE", +"1033 688 OFFCURVE", +"1033 493 CURVE SMOOTH", +"1033 299 OFFCURVE", +"890 148 OFFCURVE", +"708 148 CURVE SMOOTH", +"573 148 LINE", +"573 -32 LINE" +); +} +); +width = 1358; +}, +{ +anchors = ( +{ +name = bottom; +position = "{667, 0}"; +}, +{ +name = top; +position = "{667, 1026}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1694, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{890, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{756, 58}"; +type = Stem; +}, +{ +place = "{259, 56}"; +type = Stem; +}, +{ +place = "{1063, 56}"; +type = Stem; +}, +{ +place = "{1121, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"689 -32 LINE SMOOTH", +"959 -32 OFFCURVE", +"1177 186 OFFCURVE", +"1177 456 CURVE SMOOTH", +"1177 666 OFFCURVE", +"1045 852 OFFCURVE", +"847 920 CURVE", +"1011 984 OFFCURVE", +"1119 1142 OFFCURVE", +"1119 1320 CURVE SMOOTH", +"1119 1558 OFFCURVE", +"927 1750 OFFCURVE", +"689 1750 CURVE SMOOTH", +"451 1750 OFFCURVE", +"259 1558 OFFCURVE", +"259 1320 CURVE SMOOTH", +"259 814 LINE", +"127 814 LINE", +"127 756 LINE", +"259 756 LINE", +"259 0 LINE", +"315 0 LINE", +"315 1320 LINE SMOOTH", +"315 1526 OFFCURVE", +"483 1694 OFFCURVE", +"689 1694 CURVE SMOOTH", +"895 1694 OFFCURVE", +"1063 1526 OFFCURVE", +"1063 1320 CURVE SMOOTH", +"1063 1114 OFFCURVE", +"895 946 OFFCURVE", +"689 946 CURVE SMOOTH", +"471 946 LINE", +"471 890 LINE", +"689 890 LINE SMOOTH", +"927 890 OFFCURVE", +"1121 696 OFFCURVE", +"1121 456 CURVE SMOOTH", +"1121 218 OFFCURVE", +"927 24 OFFCURVE", +"689 24 CURVE SMOOTH", +"471 24 LINE", +"471 -32 LINE" +); +} +); +width = 1333; +} +); +rightKerningGroup = _A1; +unicode = 00DF; +}, +{ +color = 5; +glyphname = t; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{597, 0}"; +}, +{ +name = center; +position = "{470, 512}"; +}, +{ +name = top; +position = "{503, 1408}"; +}, +{ +name = topright; +position = "{820, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +place = "{200, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 372}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"679 -32 OFFCURVE", +"795 -3 OFFCURVE", +"882 45 CURVE", +"742 357 LINE", +"722 346 OFFCURVE", +"702 340 OFFCURVE", +"681 340 CURVE SMOOTH", +"638 340 OFFCURVE", +"616 367 OFFCURVE", +"616 420 CURVE SMOOTH", +"616 708 LINE", +"820 708 LINE", +"820 1024 LINE", +"616 1024 LINE", +"616 1408 LINE", +"200 1408 LINE", +"200 1024 LINE", +"40 1024 LINE", +"40 708 LINE", +"200 708 LINE", +"200 388 LINE SMOOTH", +"200 124 OFFCURVE", +"340 -32 OFFCURVE", +"577 -32 CURVE SMOOTH" +); +} +); +width = 940; +}, +{ +anchors = ( +{ +name = bottom; +position = "{492, 0}"; +}, +{ +name = center; +position = "{391, 513}"; +}, +{ +name = top; +position = "{410, 1407}"; +}, +{ +name = topright; +position = "{722, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +place = "{223, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 173}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"567 -32 OFFCURVE", +"653 -7 OFFCURVE", +"703 33 CURVE", +"620 165 LINE", +"595 150 OFFCURVE", +"564 141 OFFCURVE", +"534 141 CURVE SMOOTH", +"459 141 OFFCURVE", +"418 196 OFFCURVE", +"418 298 CURVE SMOOTH", +"418 876 LINE", +"664 876 LINE", +"664 1024 LINE", +"418 1024 LINE", +"418 1407 LINE", +"223 1407 LINE", +"223 1024 LINE", +"109 1024 LINE", +"109 876 LINE", +"223 876 LINE", +"223 286 LINE SMOOTH", +"223 85 OFFCURVE", +"321 -32 OFFCURVE", +"489 -32 CURVE SMOOTH" +); +} +); +width = 781; +}, +{ +anchors = ( +{ +name = bottom; +position = "{426, 0}"; +}, +{ +name = center; +position = "{341, 513}"; +}, +{ +name = top; +position = "{351, 1406}"; +}, +{ +name = topright; +position = "{661, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +place = "{238, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"491 -32 OFFCURVE", +"546 -11 OFFCURVE", +"578 17 CURVE", +"552 50 LINE", +"524 29 OFFCURVE", +"481 16 OFFCURVE", +"441 16 CURVE SMOOTH", +"346 16 OFFCURVE", +"294 89 OFFCURVE", +"294 222 CURVE SMOOTH", +"294 982 LINE", +"566 982 LINE", +"566 1024 LINE", +"294 1024 LINE", +"294 1406 LINE", +"238 1406 LINE", +"238 1024 LINE", +"152 1024 LINE", +"152 982 LINE", +"238 982 LINE", +"238 222 LINE SMOOTH", +"238 60 OFFCURVE", +"309 -32 OFFCURVE", +"432 -32 CURVE SMOOTH" +); +} +); +width = 681; +} +); +leftKerningGroup = _t; +rightKerningGroup = _t; +unicode = 0074; +}, +{ +color = 5; +glyphname = tbar; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{608, 216}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{908, 216}"; +type = Stem; +}, +{ +place = "{200, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 372}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"679 -32 OFFCURVE", +"795 -3 OFFCURVE", +"882 45 CURVE", +"742 357 LINE", +"722 346 OFFCURVE", +"702 340 OFFCURVE", +"681 340 CURVE SMOOTH", +"638 340 OFFCURVE", +"616 367 OFFCURVE", +"616 420 CURVE SMOOTH", +"616 608 LINE", +"820 608 LINE", +"820 824 LINE", +"616 824 LINE", +"616 908 LINE", +"820 908 LINE", +"820 1124 LINE", +"616 1124 LINE", +"616 1408 LINE", +"200 1408 LINE", +"200 1124 LINE", +"40 1124 LINE", +"40 908 LINE", +"200 908 LINE", +"200 824 LINE", +"40 824 LINE", +"40 608 LINE", +"200 608 LINE", +"200 388 LINE SMOOTH", +"200 124 OFFCURVE", +"340 -32 OFFCURVE", +"577 -32 CURVE SMOOTH" +); +} +); +width = 940; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{715, 109}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{954, 109}"; +type = Stem; +}, +{ +place = "{223, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 173}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"567 -32 OFFCURVE", +"653 -7 OFFCURVE", +"703 33 CURVE", +"620 165 LINE", +"595 150 OFFCURVE", +"564 141 OFFCURVE", +"534 141 CURVE SMOOTH", +"459 141 OFFCURVE", +"418 196 OFFCURVE", +"418 298 CURVE SMOOTH", +"418 715 LINE", +"664 715 LINE", +"664 824 LINE", +"418 824 LINE", +"418 954 LINE", +"664 954 LINE", +"664 1063 LINE", +"418 1063 LINE", +"418 1407 LINE", +"223 1407 LINE", +"223 1063 LINE", +"109 1063 LINE", +"109 954 LINE", +"223 954 LINE", +"223 824 LINE", +"109 824 LINE", +"109 715 LINE", +"223 715 LINE", +"223 286 LINE SMOOTH", +"223 85 OFFCURVE", +"321 -32 OFFCURVE", +"489 -32 CURVE SMOOTH" +); +} +); +width = 781; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{782, 42}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{983, 42}"; +type = Stem; +}, +{ +place = "{238, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"491 -32 OFFCURVE", +"546 -11 OFFCURVE", +"578 17 CURVE", +"552 50 LINE", +"524 29 OFFCURVE", +"481 16 OFFCURVE", +"441 16 CURVE SMOOTH", +"346 16 OFFCURVE", +"294 89 OFFCURVE", +"294 222 CURVE SMOOTH", +"294 782 LINE", +"566 782 LINE", +"566 824 LINE", +"294 824 LINE", +"294 983 LINE", +"566 983 LINE", +"566 1025 LINE", +"294 1025 LINE", +"294 1406 LINE", +"238 1406 LINE", +"238 1025 LINE", +"152 1025 LINE", +"152 983 LINE", +"238 983 LINE", +"238 824 LINE", +"152 824 LINE", +"152 782 LINE", +"238 782 LINE", +"238 222 LINE SMOOTH", +"238 60 OFFCURVE", +"309 -32 OFFCURVE", +"432 -32 CURVE SMOOTH" +); +} +); +width = 681; +} +); +leftMetricsKey = t; +rightMetricsKey = t; +unicode = 0167; +}, +{ +color = 9; +glyphname = tcaron; +lastChange = "2022-01-28 15:09:19 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{597, 0}"; +}, +{ +name = center; +position = "{470, 512}"; +}, +{ +name = top; +position = "{503, 2064}"; +}, +{ +name = topright; +position = "{820, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = t; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 41, 384}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 953; +}, +{ +anchors = ( +{ +name = bottom; +position = "{539, 0}"; +}, +{ +name = center; +position = "{438, 513}"; +}, +{ +name = top; +position = "{457, 2063}"; +}, +{ +name = topright; +position = "{769, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = t; +transform = "{1, 0, 0, 1, 47, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 72, 383}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 842; +}, +{ +anchors = ( +{ +name = bottom; +position = "{423, 0}"; +}, +{ +name = center; +position = "{338, 513}"; +}, +{ +name = top; +position = "{348, 2062}"; +}, +{ +name = topright; +position = "{658, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = t; +transform = "{1, 0, 0, 1, -3, 0}"; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 12, 382}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 684; +} +); +unicode = 0165; +}, +{ +color = 5; +glyphname = tcedilla; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{452, -588}"; +}, +{ +name = center; +position = "{470, 512}"; +}, +{ +name = top; +position = "{503, 1408}"; +}, +{ +name = topright; +position = "{820, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = t; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 171.5, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 940; +}, +{ +anchors = ( +{ +name = bottom; +position = "{384, -565}"; +}, +{ +name = center; +position = "{391, 513}"; +}, +{ +name = top; +position = "{410, 1407}"; +}, +{ +name = topright; +position = "{722, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = t; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 130.5, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 781; +}, +{ +anchors = ( +{ +name = bottom; +position = "{388, -551}"; +}, +{ +name = center; +position = "{388, 513}"; +}, +{ +name = top; +position = "{398, 1406}"; +}, +{ +name = topright; +position = "{708, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = t; +transform = "{1, 0, 0, 1, 47, 0}"; +}, +{ +alignment = -1; +name = cedilla; +transform = "{1, 0, 0, 1, 152, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 728; +} +); +leftMetricsKey = t; +rightMetricsKey = t; +unicode = 0163; +}, +{ +color = 5; +glyphname = tcommaaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{597, -806}"; +}, +{ +name = center; +position = "{470, 512}"; +}, +{ +name = top; +position = "{503, 1408}"; +}, +{ +name = topright; +position = "{820, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = t; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 196, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 940; +}, +{ +anchors = ( +{ +name = bottom; +position = "{492, -584}"; +}, +{ +name = center; +position = "{391, 513}"; +}, +{ +name = top; +position = "{410, 1407}"; +}, +{ +name = topright; +position = "{722, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = t; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 125.906, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 781; +}, +{ +anchors = ( +{ +name = bottom; +position = "{426, -444}"; +}, +{ +name = center; +position = "{341, 513}"; +}, +{ +name = top; +position = "{351, 1406}"; +}, +{ +name = topright; +position = "{661, 1024}"; +} +); +components = ( +{ +alignment = -1; +name = t; +}, +{ +alignment = -1; +name = commaaccentcomb; +transform = "{1, 0, 0, 1, 80, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 681; +} +); +leftMetricsKey = t; +rightMetricsKey = t; +unicode = 021B; +}, +{ +color = 5; +glyphname = u; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{720, 0}"; +}, +{ +name = ogonek; +position = "{760, 0}"; +}, +{ +name = top; +position = "{720, 1024}"; +} +); +hints = ( +{ +place = "{128, 416}"; +type = Stem; +}, +{ +place = "{896, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 336}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1137 -32 OFFCURVE", +"1312 132 OFFCURVE", +"1312 474 CURVE SMOOTH", +"1312 1024 LINE", +"896 1024 LINE", +"896 578 LINE SMOOTH", +"896 390 OFFCURVE", +"850 304 OFFCURVE", +"720 304 CURVE SMOOTH", +"590 304 OFFCURVE", +"544 390 OFFCURVE", +"544 578 CURVE SMOOTH", +"544 1024 LINE", +"128 1024 LINE", +"128 474 LINE SMOOTH", +"128 132 OFFCURVE", +"303 -32 OFFCURVE", +"720 -32 CURVE SMOOTH" +); +} +); +width = 1440; +}, +{ +anchors = ( +{ +name = bottom; +position = "{646, 0}"; +}, +{ +name = ogonek; +position = "{666, 0}"; +}, +{ +name = top; +position = "{646, 1024}"; +} +); +hints = ( +{ +place = "{185, 194}"; +type = Stem; +}, +{ +place = "{913, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 161}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"952 -32 OFFCURVE", +"1107 140 OFFCURVE", +"1107 479 CURVE SMOOTH", +"1107 1024 LINE", +"913 1024 LINE", +"913 520 LINE SMOOTH", +"913 244 OFFCURVE", +"834 129 OFFCURVE", +"646 129 CURVE SMOOTH", +"458 129 OFFCURVE", +"379 244 OFFCURVE", +"379 520 CURVE SMOOTH", +"379 1024 LINE", +"185 1024 LINE", +"185 479 LINE SMOOTH", +"185 140 OFFCURVE", +"340 -32 OFFCURVE", +"646 -32 CURVE SMOOTH" +); +} +); +width = 1292; +}, +{ +anchors = ( +{ +name = bottom; +position = "{599, 0}"; +}, +{ +name = ogonek; +position = "{609, 0}"; +}, +{ +name = top; +position = "{599, 1024}"; +} +); +hints = ( +{ +place = "{219, 56}"; +type = Stem; +}, +{ +place = "{923, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"867 -32 OFFCURVE", +"979 100 OFFCURVE", +"979 414 CURVE SMOOTH", +"979 1024 LINE", +"923 1024 LINE", +"923 414 LINE SMOOTH", +"923 131 OFFCURVE", +"832 20 OFFCURVE", +"599 20 CURVE SMOOTH", +"366 20 OFFCURVE", +"275 131 OFFCURVE", +"275 414 CURVE SMOOTH", +"275 1024 LINE", +"219 1024 LINE", +"219 414 LINE SMOOTH", +"219 100 OFFCURVE", +"331 -32 OFFCURVE", +"599 -32 CURVE SMOOTH" +); +} +); +width = 1198; +} +); +leftKerningGroup = _u; +rightKerningGroup = _u; +unicode = 0075; +}, +{ +color = 5; +glyphname = uacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{720, 0}"; +}, +{ +name = ogonek; +position = "{760, 0}"; +}, +{ +name = top; +position = "{720, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 478, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1440; +}, +{ +anchors = ( +{ +name = bottom; +position = "{646, 0}"; +}, +{ +name = ogonek; +position = "{666, 0}"; +}, +{ +name = top; +position = "{686, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 541, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1292; +}, +{ +anchors = ( +{ +name = bottom; +position = "{599, 0}"; +}, +{ +name = ogonek; +position = "{609, 0}"; +}, +{ +name = top; +position = "{599, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 565, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1198; +} +); +leftMetricsKey = u; +rightMetricsKey = u; +unicode = 00FA; +}, +{ +color = 5; +glyphname = ucircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{720, 0}"; +}, +{ +name = ogonek; +position = "{760, 0}"; +}, +{ +name = top; +position = "{720, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 258, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1440; +}, +{ +anchors = ( +{ +name = bottom; +position = "{646, 0}"; +}, +{ +name = ogonek; +position = "{666, 0}"; +}, +{ +name = top; +position = "{646, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 261, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1292; +}, +{ +anchors = ( +{ +name = bottom; +position = "{599, 0}"; +}, +{ +name = ogonek; +position = "{609, 0}"; +}, +{ +name = top; +position = "{599, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 263, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1198; +} +); +leftMetricsKey = u; +rightMetricsKey = u; +unicode = 00FB; +}, +{ +color = 5; +glyphname = udieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{720, 0}"; +}, +{ +name = ogonek; +position = "{760, 0}"; +}, +{ +name = top; +position = "{720, 1610}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 272, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1440; +}, +{ +anchors = ( +{ +name = bottom; +position = "{646, 0}"; +}, +{ +name = ogonek; +position = "{666, 0}"; +}, +{ +name = top; +position = "{646, 1509}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 299, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1292; +}, +{ +anchors = ( +{ +name = bottom; +position = "{599, 0}"; +}, +{ +name = ogonek; +position = "{609, 0}"; +}, +{ +name = top; +position = "{599, 1446}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 315, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1198; +} +); +leftMetricsKey = u; +rightMetricsKey = u; +unicode = 00FC; +}, +{ +color = 5; +glyphname = ugrave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{720, 0}"; +}, +{ +name = ogonek; +position = "{760, 0}"; +}, +{ +name = top; +position = "{636, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 310, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1440; +}, +{ +anchors = ( +{ +name = bottom; +position = "{646, 0}"; +}, +{ +name = ogonek; +position = "{666, 0}"; +}, +{ +name = top; +position = "{563, 1666}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 374, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1292; +}, +{ +anchors = ( +{ +name = bottom; +position = "{599, 0}"; +}, +{ +name = ogonek; +position = "{609, 0}"; +}, +{ +name = top; +position = "{599, 1657}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 496, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1198; +} +); +leftMetricsKey = u; +rightMetricsKey = u; +unicode = 00F9; +}, +{ +color = 5; +glyphname = uhungarumlaut; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{720, 0}"; +}, +{ +name = ogonek; +position = "{760, 0}"; +}, +{ +name = top; +position = "{720, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 198, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1569; +}, +{ +anchors = ( +{ +name = bottom; +position = "{646, 0}"; +}, +{ +name = ogonek; +position = "{666, 0}"; +}, +{ +name = top; +position = "{646, 1679}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 321, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1294; +}, +{ +anchors = ( +{ +name = bottom; +position = "{599, 0}"; +}, +{ +name = ogonek; +position = "{609, 0}"; +}, +{ +name = top; +position = "{599, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 397, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1198; +} +); +leftMetricsKey = u; +rightMetricsKey = u; +unicode = 0171; +}, +{ +color = 5; +glyphname = umacron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{720, 0}"; +}, +{ +name = ogonek; +position = "{760, 0}"; +}, +{ +name = top; +position = "{720, 1528}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 312, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1440; +}, +{ +anchors = ( +{ +name = bottom; +position = "{646, 0}"; +}, +{ +name = ogonek; +position = "{666, 0}"; +}, +{ +name = top; +position = "{646, 1457}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 238, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1292; +}, +{ +anchors = ( +{ +name = bottom; +position = "{627, 0}"; +}, +{ +name = ogonek; +position = "{637, 0}"; +}, +{ +name = top; +position = "{627, 1412}"; +} +); +components = ( +{ +alignment = -1; +name = u; +transform = "{1, 0, 0, 1, 28, 0}"; +}, +{ +alignment = -1; +name = macron; +transform = "{1, 0, 0, 1, 219, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1254; +} +); +leftMetricsKey = u; +rightMetricsKey = u; +unicode = 016B; +}, +{ +color = 5; +glyphname = uogonek; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{128, 416}"; +type = Stem; +}, +{ +place = "{896, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{-32, 336}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +rightMetricsKey = "=u"; +paths = ( +{ +closed = 1; +nodes = ( +"826 -32 OFFCURVE", +"916 -21 OFFCURVE", +"992 0 CURVE", +"892 0 LINE", +"784 -124 OFFCURVE", +"725 -241 OFFCURVE", +"725 -332 CURVE SMOOTH", +"725 -456 OFFCURVE", +"833 -557 OFFCURVE", +"977 -557 CURVE SMOOTH", +"1084 -557 OFFCURVE", +"1190 -502 OFFCURVE", +"1251 -413 CURVE", +"1085 -289 LINE", +"1069 -318 OFFCURVE", +"1040 -337 OFFCURVE", +"1012 -337 CURVE SMOOTH", +"979 -337 OFFCURVE", +"961 -312 OFFCURVE", +"961 -267 CURVE SMOOTH", +"961 -170 OFFCURVE", +"1047 -5 OFFCURVE", +"1156 79 CURVE SMOOTH", +"1263 163 OFFCURVE", +"1312 293 OFFCURVE", +"1312 474 CURVE SMOOTH", +"1312 1024 LINE", +"896 1024 LINE", +"896 578 LINE SMOOTH", +"896 390 OFFCURVE", +"850 304 OFFCURVE", +"720 304 CURVE SMOOTH", +"590 304 OFFCURVE", +"544 390 OFFCURVE", +"544 578 CURVE SMOOTH", +"544 1024 LINE", +"128 1024 LINE", +"128 474 LINE SMOOTH", +"128 132 OFFCURVE", +"303 -32 OFFCURVE", +"720 -32 CURVE SMOOTH" +); +} +); +width = 1440; +}, +{ +hints = ( +{ +place = "{185, 194}"; +type = Stem; +}, +{ +place = "{913, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{-32, 161}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +rightMetricsKey = "=u-34"; +paths = ( +{ +closed = 1; +nodes = ( +"722 -32 OFFCURVE", +"789 -21 OFFCURVE", +"847 0 CURVE", +"794 0 LINE", +"679 -125 OFFCURVE", +"615 -229 OFFCURVE", +"615 -330 CURVE SMOOTH", +"615 -458 OFFCURVE", +"720 -559 OFFCURVE", +"866 -559 CURVE SMOOTH", +"974 -559 OFFCURVE", +"1080 -504 OFFCURVE", +"1141 -415 CURVE", +"1056 -352 LINE", +"1004 -413 OFFCURVE", +"948 -442 OFFCURVE", +"883 -442 CURVE SMOOTH", +"787 -442 OFFCURVE", +"738 -382 OFFCURVE", +"738 -304 CURVE SMOOTH", +"738 -200 OFFCURVE", +"826 -56 OFFCURVE", +"966 71 CURVE SMOOTH", +"1060 156 OFFCURVE", +"1107 292 OFFCURVE", +"1107 479 CURVE SMOOTH", +"1107 1024 LINE", +"913 1024 LINE", +"913 520 LINE SMOOTH", +"913 244 OFFCURVE", +"834 129 OFFCURVE", +"646 129 CURVE SMOOTH", +"458 129 OFFCURVE", +"379 244 OFFCURVE", +"379 520 CURVE SMOOTH", +"379 1024 LINE", +"185 1024 LINE", +"185 479 LINE SMOOTH", +"185 140 OFFCURVE", +"340 -32 OFFCURVE", +"646 -32 CURVE SMOOTH" +); +} +); +width = 1292; +}, +{ +hints = ( +{ +place = "{219, 56}"; +type = Stem; +}, +{ +place = "{923, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +rightMetricsKey = "=u-128"; +paths = ( +{ +closed = 1; +nodes = ( +"674 -32 OFFCURVE", +"737 -22 OFFCURVE", +"788 0 CURVE", +"767 0 LINE", +"648 -125 OFFCURVE", +"581 -242 OFFCURVE", +"581 -335 CURVE SMOOTH", +"581 -458 OFFCURVE", +"684 -559 OFFCURVE", +"831 -559 CURVE SMOOTH", +"940 -559 OFFCURVE", +"1046 -504 OFFCURVE", +"1107 -415 CURVE", +"1073 -391 LINE", +"999 -472 OFFCURVE", +"925 -507 OFFCURVE", +"837 -507 CURVE SMOOTH", +"702 -507 OFFCURVE", +"633 -425 OFFCURVE", +"633 -334 CURVE SMOOTH", +"633 -237 OFFCURVE", +"718 -91 OFFCURVE", +"869 52 CURVE SMOOTH", +"944 124 OFFCURVE", +"979 241 OFFCURVE", +"979 414 CURVE SMOOTH", +"979 1024 LINE", +"923 1024 LINE", +"923 414 LINE SMOOTH", +"923 131 OFFCURVE", +"832 20 OFFCURVE", +"599 20 CURVE SMOOTH", +"366 20 OFFCURVE", +"275 131 OFFCURVE", +"275 414 CURVE SMOOTH", +"275 1024 LINE", +"219 1024 LINE", +"219 414 LINE SMOOTH", +"219 100 OFFCURVE", +"331 -32 OFFCURVE", +"599 -32 CURVE SMOOTH" +); +} +); +width = 1198; +} +); +leftMetricsKey = u; +unicode = 0173; +}, +{ +color = 5; +glyphname = uring; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{720, 0}"; +}, +{ +name = ogonek; +position = "{760, 0}"; +}, +{ +name = top; +position = "{720, 1772}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 372, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1440; +}, +{ +anchors = ( +{ +name = bottom; +position = "{646, 0}"; +}, +{ +name = ogonek; +position = "{666, 0}"; +}, +{ +name = top; +position = "{646, 1688}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 393, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1292; +}, +{ +anchors = ( +{ +name = bottom; +position = "{599, 0}"; +}, +{ +name = ogonek; +position = "{609, 0}"; +}, +{ +name = top; +position = "{599, 1634}"; +} +); +components = ( +{ +alignment = -1; +name = u; +}, +{ +alignment = -1; +name = ring; +transform = "{1, 0, 0, 1, 405, -2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1198; +} +); +leftMetricsKey = u; +rightMetricsKey = u; +unicode = 016F; +}, +{ +color = 5; +glyphname = v; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{640, 0}"; +}, +{ +name = top; +position = "{640, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"780 0 LINE", +"1346 1024 LINE", +"854 1024 LINE", +"640 540 LINE", +"426 1024 LINE", +"-66 1024 LINE", +"500 0 LINE" +); +} +); +width = 1280; +}, +{ +anchors = ( +{ +name = bottom; +position = "{615, 0}"; +}, +{ +name = top; +position = "{615, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"680 0 LINE", +"1189 1024 LINE", +"960 1024 LINE", +"615 268 LINE", +"270 1024 LINE", +"41 1024 LINE", +"550 0 LINE" +); +} +); +width = 1230; +}, +{ +anchors = ( +{ +name = bottom; +position = "{599, 0}"; +}, +{ +name = top; +position = "{599, 1026}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"617 0 LINE", +"1090 1024 LINE", +"1026 1024 LINE", +"599 98 LINE", +"172 1024 LINE", +"108 1024 LINE", +"581 0 LINE" +); +} +); +width = 1198; +} +); +leftKerningGroup = _v; +rightKerningGroup = _v; +unicode = 0076; +}, +{ +color = 5; +glyphname = w; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{992, 0}"; +}, +{ +name = top; +position = "{992, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"780 0 LINE", +"992 452 LINE", +"1204 0 LINE", +"1484 0 LINE", +"2050 1024 LINE", +"1574 1024 LINE", +"1358 544 LINE", +"1134 1024 LINE", +"850 1024 LINE", +"626 544 LINE", +"410 1024 LINE", +"-66 1024 LINE", +"500 0 LINE" +); +} +); +width = 1984; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = top; +position = "{980, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"680 0 LINE", +"980 735 LINE", +"1280 0 LINE", +"1410 0 LINE", +"1919 1024 LINE", +"1696 1024 LINE", +"1350 270 LINE", +"1045 1024 LINE", +"915 1024 LINE", +"610 270 LINE", +"264 1024 LINE", +"41 1024 LINE", +"550 0 LINE" +); +} +); +width = 1961; +}, +{ +anchors = ( +{ +name = bottom; +position = "{973, 0}"; +}, +{ +name = top; +position = "{973, 1026}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"617 0 LINE", +"973 913 LINE", +"1329 0 LINE", +"1365 0 LINE", +"1838 1024 LINE", +"1774 1024 LINE", +"1347 98 LINE", +"991 1024 LINE", +"955 1024 LINE", +"599 98 LINE", +"172 1024 LINE", +"108 1024 LINE", +"581 0 LINE" +); +} +); +width = 1946; +} +); +leftKerningGroup = _v; +rightKerningGroup = _v; +unicode = 0077; +}, +{ +color = 5; +glyphname = wacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{992, 0}"; +}, +{ +name = top; +position = "{992, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 750, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1984; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = top; +position = "{1020, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 875, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1961; +}, +{ +anchors = ( +{ +name = bottom; +position = "{973, 0}"; +}, +{ +name = top; +position = "{973, 1682}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 939, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1946; +} +); +leftMetricsKey = w; +rightMetricsKey = w; +unicode = 1E83; +}, +{ +color = 5; +glyphname = wcircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{992, 0}"; +}, +{ +name = top; +position = "{992, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 530, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1984; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = top; +position = "{980, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 595, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1961; +}, +{ +anchors = ( +{ +name = bottom; +position = "{973, 0}"; +}, +{ +name = top; +position = "{973, 1682}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 637, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1946; +} +); +leftMetricsKey = w; +rightMetricsKey = w; +unicode = 0175; +}, +{ +color = 5; +glyphname = wdieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{992, 0}"; +}, +{ +name = top; +position = "{992, 1610}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 544, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1984; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = top; +position = "{980, 1509}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 633, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1961; +}, +{ +anchors = ( +{ +name = bottom; +position = "{973, 0}"; +}, +{ +name = top; +position = "{973, 1448}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 689, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1946; +} +); +leftMetricsKey = w; +rightMetricsKey = w; +unicode = 1E85; +}, +{ +color = 5; +glyphname = wgrave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{992, 0}"; +}, +{ +name = top; +position = "{908, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 582, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1984; +}, +{ +anchors = ( +{ +name = bottom; +position = "{980, 0}"; +}, +{ +name = top; +position = "{897, 1666}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 708, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1961; +}, +{ +anchors = ( +{ +name = bottom; +position = "{973, 0}"; +}, +{ +name = top; +position = "{973, 1659}"; +} +); +components = ( +{ +alignment = -1; +name = w; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 870, 2}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1946; +} +); +leftMetricsKey = w; +rightMetricsKey = w; +unicode = 1E81; +}, +{ +color = 5; +glyphname = x; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{633, 0}"; +}, +{ +name = top; +position = "{633, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"443 0 LINE", +"633 248 LINE", +"823 0 LINE", +"1323 0 LINE", +"883 540 LINE", +"1259 1024 LINE", +"775 1024 LINE", +"633 830 LINE", +"491 1024 LINE", +"7 1024 LINE", +"383 540 LINE", +"-57 0 LINE" +); +} +); +width = 1266; +}, +{ +anchors = ( +{ +name = bottom; +position = "{597, 0}"; +}, +{ +name = top; +position = "{597, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"273 0 LINE", +"597 402 LINE", +"921 0 LINE", +"1153 0 LINE", +"719 533 LINE", +"1093 1024 LINE", +"869 1024 LINE", +"597 665 LINE", +"325 1024 LINE", +"101 1024 LINE", +"475 533 LINE", +"41 0 LINE" +); +} +); +width = 1193; +}, +{ +anchors = ( +{ +name = bottom; +position = "{574, 0}"; +}, +{ +name = top; +position = "{574, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"166 0 LINE", +"574 498 LINE", +"982 0 LINE", +"1046 0 LINE", +"616 524 LINE", +"989 1024 LINE", +"927 1024 LINE", +"574 557 LINE", +"221 1024 LINE", +"159 1024 LINE", +"532 524 LINE", +"102 0 LINE" +); +} +); +width = 1148; +} +); +rightKerningGroup = _A1; +unicode = 0078; +}, +{ +color = 5; +glyphname = y; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{641, 0}"; +}, +{ +name = top; +position = "{641, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{-520, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"509 -520 LINE", +"1345 1024 LINE", +"867 1024 LINE", +"659 592 LINE", +"407 1024 LINE", +"-71 1024 LINE", +"415 198 LINE", +"31 -520 LINE" +); +} +); +width = 1281; +}, +{ +anchors = ( +{ +name = bottom; +position = "{621, 0}"; +}, +{ +name = top; +position = "{621, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{-520, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"471 -520 LINE", +"1198 1024 LINE", +"975 1024 LINE", +"638 250 LINE", +"262 1024 LINE", +"39 1024 LINE", +"526 57 LINE", +"250 -520 LINE" +); +} +); +width = 1241; +}, +{ +anchors = ( +{ +name = bottom; +position = "{609, 0}"; +}, +{ +name = top; +position = "{608, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{-520, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"447 -520 LINE", +"1107 1024 LINE", +"1045 1024 LINE", +"625 36 LINE", +"170 1024 LINE", +"108 1024 LINE", +"595 -32 LINE", +"387 -520 LINE" +); +} +); +width = 1216; +} +); +leftKerningGroup = _v; +rightKerningGroup = _v; +unicode = 0079; +}, +{ +color = 5; +glyphname = yacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{641, 0}"; +}, +{ +name = top; +position = "{641, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 399, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1281; +}, +{ +anchors = ( +{ +name = bottom; +position = "{621, 0}"; +}, +{ +name = top; +position = "{661, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 516, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1241; +}, +{ +anchors = ( +{ +name = bottom; +position = "{609, 0}"; +}, +{ +name = top; +position = "{608, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 574, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1216; +} +); +leftMetricsKey = y; +rightMetricsKey = y; +unicode = 00FD; +}, +{ +color = 5; +glyphname = ycircumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{641, 0}"; +}, +{ +name = top; +position = "{641, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 179, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1281; +}, +{ +anchors = ( +{ +name = bottom; +position = "{621, 0}"; +}, +{ +name = top; +position = "{621, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 236, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1241; +}, +{ +anchors = ( +{ +name = bottom; +position = "{609, 0}"; +}, +{ +name = top; +position = "{608, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = circumflex; +transform = "{1, 0, 0, 1, 272, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1216; +} +); +leftMetricsKey = y; +rightMetricsKey = y; +unicode = 0177; +}, +{ +color = 5; +glyphname = ydieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{641, 0}"; +}, +{ +name = top; +position = "{641, 1610}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 193, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1281; +}, +{ +anchors = ( +{ +name = bottom; +position = "{621, 0}"; +}, +{ +name = top; +position = "{621, 1509}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 274, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1241; +}, +{ +anchors = ( +{ +name = bottom; +position = "{609, 0}"; +}, +{ +name = top; +position = "{608, 1446}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = dieresis; +transform = "{1, 0, 0, 1, 324, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1216; +} +); +leftMetricsKey = y; +rightMetricsKey = y; +unicode = 00FF; +}, +{ +color = 5; +glyphname = ygrave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{641, 0}"; +}, +{ +name = top; +position = "{557, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 231, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1281; +}, +{ +anchors = ( +{ +name = bottom; +position = "{621, 0}"; +}, +{ +name = top; +position = "{538, 1666}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 349, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1241; +}, +{ +anchors = ( +{ +name = bottom; +position = "{609, 0}"; +}, +{ +name = top; +position = "{608, 1657}"; +} +); +components = ( +{ +alignment = -1; +name = y; +}, +{ +alignment = -1; +name = grave; +transform = "{1, 0, 0, 1, 505, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1216; +} +); +leftMetricsKey = y; +rightMetricsKey = y; +unicode = 1EF3; +}, +{ +color = 5; +glyphname = z; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{590, 0}"; +}, +{ +name = top; +position = "{590, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{712, 312}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 312}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1096 0 LINE", +"1096 312 LINE", +"704 312 LINE", +"1140 1024 LINE", +"102 1024 LINE", +"102 712 LINE", +"452 712 LINE", +"16 0 LINE" +); +} +); +width = 1180; +}, +{ +anchors = ( +{ +name = bottom; +position = "{597, 0}"; +}, +{ +name = top; +position = "{597, 1023}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{869, 155}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 155}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1084 0 LINE", +"1084 155 LINE", +"410 155 LINE", +"1111 1024 LINE", +"147 1024 LINE", +"147 869 LINE", +"768 869 LINE", +"69 0 LINE" +); +} +); +width = 1195; +}, +{ +anchors = ( +{ +name = bottom; +position = "{602, 0}"; +}, +{ +name = top; +position = "{602, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{968, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1076 0 LINE", +"1076 56 LINE", +"226 56 LINE", +"1092 1024 LINE", +"176 1024 LINE", +"176 968 LINE", +"966 968 LINE", +"102 0 LINE" +); +} +); +width = 1204; +} +); +rightKerningGroup = _A1; +unicode = 007A; +}, +{ +color = 5; +glyphname = zacute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{590, 0}"; +}, +{ +name = top; +position = "{590, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = z; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 348, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1180; +}, +{ +anchors = ( +{ +name = bottom; +position = "{597, 0}"; +}, +{ +name = top; +position = "{637, 1686}"; +} +); +components = ( +{ +alignment = -1; +name = z; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 492, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1195; +}, +{ +anchors = ( +{ +name = bottom; +position = "{602, 0}"; +}, +{ +name = top; +position = "{602, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = z; +}, +{ +alignment = -1; +name = acute; +transform = "{1, 0, 0, 1, 568, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1204; +} +); +leftMetricsKey = z; +rightMetricsKey = z; +unicode = 017A; +}, +{ +color = 5; +glyphname = zcaron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{590, 0}"; +}, +{ +name = top; +position = "{590, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = z; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 128, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1180; +}, +{ +anchors = ( +{ +name = bottom; +position = "{597, 0}"; +}, +{ +name = top; +position = "{597, 1679}"; +} +); +components = ( +{ +alignment = -1; +name = z; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 212, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1195; +}, +{ +anchors = ( +{ +name = bottom; +position = "{602, 0}"; +}, +{ +name = top; +position = "{602, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = z; +}, +{ +alignment = -1; +name = caron; +transform = "{1, 0, 0, 1, 266, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1204; +} +); +leftMetricsKey = z; +rightMetricsKey = z; +unicode = 017E; +}, +{ +color = 5; +glyphname = zdotaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{590, 0}"; +}, +{ +name = top; +position = "{590, 1724}"; +} +); +components = ( +{ +alignment = -1; +name = z; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 350, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1180; +}, +{ +anchors = ( +{ +name = bottom; +position = "{597, 0}"; +}, +{ +name = top; +position = "{596, 1597}"; +} +); +components = ( +{ +alignment = -1; +name = z; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 475, -1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1195; +}, +{ +anchors = ( +{ +name = bottom; +position = "{602, 0}"; +}, +{ +name = top; +position = "{602, 1520}"; +} +); +components = ( +{ +alignment = -1; +name = z; +}, +{ +alignment = -1; +name = dotaccent; +transform = "{1, 0, 0, 1, 554, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1204; +} +); +leftMetricsKey = z; +rightMetricsKey = z; +unicode = 017C; +}, +{ +color = 5; +glyphname = a.alt; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{616, 0}"; +}, +{ +name = ogonek; +position = "{1122, 10}"; +}, +{ +name = top; +position = "{616, 1024}"; +} +); +hints = ( +{ +place = "{728, 422}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 246}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{380, 216}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{728, 328}"; +type = Stem; +}, +{ +place = "{64, 412}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"538 -32 OFFCURVE", +"632 -13 OFFCURVE", +"728 26 CURVE", +"728 0 LINE", +"1150 0 LINE", +"1150 578 LINE SMOOTH", +"1150 860 OFFCURVE", +"898 1056 OFFCURVE", +"535 1056 CURVE SMOOTH", +"384 1056 OFFCURVE", +"228 1022 OFFCURVE", +"132 968 CURVE", +"258 684 LINE", +"317 707 OFFCURVE", +"441 728 OFFCURVE", +"512 728 CURVE SMOOTH", +"635 728 OFFCURVE", +"728 664 OFFCURVE", +"728 594 CURVE SMOOTH", +"728 534 LINE", +"645 572 OFFCURVE", +"532 596 OFFCURVE", +"434 596 CURVE SMOOTH", +"206 596 OFFCURVE", +"64 463 OFFCURVE", +"64 277 CURVE SMOOTH", +"64 88 OFFCURVE", +"212 -32 OFFCURVE", +"445 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"533 214 OFFCURVE", +"476 252 OFFCURVE", +"476 302 CURVE SMOOTH", +"476 348 OFFCURVE", +"528 380 OFFCURVE", +"603 380 CURVE SMOOTH", +"681 380 OFFCURVE", +"742 343 OFFCURVE", +"742 296 CURVE SMOOTH", +"742 251 OFFCURVE", +"681 214 OFFCURVE", +"608 214 CURVE SMOOTH" +); +} +); +width = 1268; +}, +{ +anchors = ( +{ +name = bottom; +position = "{599, 0}"; +}, +{ +name = ogonek; +position = "{1083, 10}"; +}, +{ +name = top; +position = "{599, 1025}"; +} +); +hints = ( +{ +place = "{836, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 127}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{504, 115}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{899, 157}"; +type = Stem; +}, +{ +place = "{114, 191}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"639 -32 OFFCURVE", +"755 11 OFFCURVE", +"836 86 CURVE", +"836 0 LINE", +"1030 0 LINE", +"1030 616 LINE SMOOTH", +"1030 884 OFFCURVE", +"844 1056 OFFCURVE", +"556 1056 CURVE SMOOTH", +"401 1056 OFFCURVE", +"275 1006 OFFCURVE", +"179 921 CURVE", +"275 811 LINE", +"351 869 OFFCURVE", +"447 899 OFFCURVE", +"540 899 CURVE SMOOTH", +"721 899 OFFCURVE", +"836 786 OFFCURVE", +"836 611 CURVE SMOOTH", +"836 500 LINE", +"760 574 OFFCURVE", +"636 619 OFFCURVE", +"507 619 CURVE SMOOTH", +"275 619 OFFCURVE", +"114 481 OFFCURVE", +"114 291 CURVE SMOOTH", +"114 101 OFFCURVE", +"277 -32 OFFCURVE", +"511 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"420 95 OFFCURVE", +"305 183 OFFCURVE", +"305 302 CURVE SMOOTH", +"305 419 OFFCURVE", +"417 504 OFFCURVE", +"573 504 CURVE SMOOTH", +"730 504 OFFCURVE", +"845 417 OFFCURVE", +"845 300 CURVE SMOOTH", +"845 182 OFFCURVE", +"729 95 OFFCURVE", +"575 95 CURVE SMOOTH" +); +} +); +width = 1211; +}, +{ +anchors = ( +{ +name = bottom; +position = "{588, 0}"; +}, +{ +name = ogonek; +position = "{1058, 10}"; +}, +{ +name = top; +position = "{588, 1026}"; +} +); +guideLines = ( +{ +angle = 90; +position = "{-1184, 0}"; +} +); +hints = ( +{ +place = "{904, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{582, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1006, 50}"; +type = Stem; +}, +{ +place = "{146, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"702 -32 OFFCURVE", +"832 26 OFFCURVE", +"904 124 CURVE", +"904 0 LINE", +"960 0 LINE", +"960 640 LINE SMOOTH", +"960 899 OFFCURVE", +"810 1056 OFFCURVE", +"562 1056 CURVE SMOOTH", +"415 1056 OFFCURVE", +"296 1001 OFFCURVE", +"208 892 CURVE", +"248 860 LINE", +"340 961 OFFCURVE", +"436 1006 OFFCURVE", +"558 1006 CURVE SMOOTH", +"775 1006 OFFCURVE", +"904 863 OFFCURVE", +"904 622 CURVE SMOOTH", +"904 478 LINE", +"832 576 OFFCURVE", +"702 634 OFFCURVE", +"553 634 CURVE SMOOTH", +"318 634 OFFCURVE", +"146 493 OFFCURVE", +"146 300 CURVE SMOOTH", +"146 109 OFFCURVE", +"318 -32 OFFCURVE", +"553 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"349 20 OFFCURVE", +"198 139 OFFCURVE", +"198 302 CURVE SMOOTH", +"198 464 OFFCURVE", +"348 582 OFFCURVE", +"554 582 CURVE SMOOTH", +"760 582 OFFCURVE", +"910 464 OFFCURVE", +"910 302 CURVE SMOOTH", +"910 139 OFFCURVE", +"759 20 OFFCURVE", +"554 20 CURVE SMOOTH" +); +} +); +width = 1175; +} +); +}, +{ +color = 5; +glyphname = j.alt; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{157, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-520, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{1243, 481}"; +type = Stem; +}, +{ +place = "{124, 481}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"497 1243 OFFCURVE", +"605 1352 OFFCURVE", +"605 1484 CURVE SMOOTH", +"605 1616 OFFCURVE", +"497 1724 OFFCURVE", +"365 1724 CURVE SMOOTH", +"232 1724 OFFCURVE", +"124 1616 OFFCURVE", +"124 1484 CURVE SMOOTH", +"124 1351 OFFCURVE", +"232 1243 OFFCURVE", +"365 1243 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"573 -520 LINE", +"573 1024 LINE", +"157 1024 LINE", +"157 -520 LINE" +); +} +); +width = 730; +}, +{ +hints = ( +{ +place = "{205, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-520, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{1233, 244}"; +type = Stem; +}, +{ +place = "{180, 244}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"369 1233 OFFCURVE", +"424 1288 OFFCURVE", +"424 1355 CURVE SMOOTH", +"424 1422 OFFCURVE", +"369 1477 OFFCURVE", +"302 1477 CURVE SMOOTH", +"235 1477 OFFCURVE", +"180 1422 OFFCURVE", +"180 1355 CURVE SMOOTH", +"180 1288 OFFCURVE", +"235 1233 OFFCURVE", +"302 1233 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"399 -520 LINE", +"399 1024 LINE", +"205 1024 LINE", +"205 -520 LINE" +); +} +); +width = 605; +}, +{ +hints = ( +{ +place = "{235, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-520, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{1226, 96}"; +type = Stem; +}, +{ +place = "{215, 96}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"289 1226 OFFCURVE", +"311 1248 OFFCURVE", +"311 1274 CURVE SMOOTH", +"311 1300 OFFCURVE", +"289 1322 OFFCURVE", +"263 1322 CURVE SMOOTH", +"237 1322 OFFCURVE", +"215 1300 OFFCURVE", +"215 1274 CURVE SMOOTH", +"215 1248 OFFCURVE", +"237 1226 OFFCURVE", +"263 1226 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"291 -520 LINE", +"291 1024 LINE", +"235 1024 LINE", +"235 -520 LINE" +); +} +); +width = 526; +} +); +}, +{ +color = 5; +glyphname = t.alt; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{414, 0}"; +}, +{ +name = center; +position = "{414, 512}"; +}, +{ +name = top; +position = "{414, 1024}"; +}, +{ +name = topright; +position = "{691, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +place = "{215, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"631 0 LINE", +"631 708 LINE", +"843 708 LINE", +"843 1024 LINE", +"631 1024 LINE", +"631 1408 LINE", +"215 1408 LINE", +"215 1024 LINE", +"63 1024 LINE", +"63 708 LINE", +"215 708 LINE", +"215 0 LINE" +); +} +); +width = 875; +}, +{ +anchors = ( +{ +name = bottom; +position = "{354, 0}"; +}, +{ +name = center; +position = "{354, 513}"; +}, +{ +name = top; +position = "{354, 1024}"; +}, +{ +name = topright; +position = "{644, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +place = "{235, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"429 0 LINE", +"429 876 LINE", +"654 876 LINE", +"654 1024 LINE", +"429 1024 LINE", +"429 1407 LINE", +"235 1407 LINE", +"235 1024 LINE", +"99 1024 LINE", +"99 876 LINE", +"235 876 LINE", +"235 0 LINE" +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = bottom; +position = "{317, 0}"; +}, +{ +name = center; +position = "{317, 513}"; +}, +{ +name = top; +position = "{317, 1024}"; +}, +{ +name = topright; +position = "{614, 1024}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +place = "{247, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"303 0 LINE", +"303 982 LINE", +"535 982 LINE", +"535 1024 LINE", +"303 1024 LINE", +"303 1406 LINE", +"247 1406 LINE", +"247 1024 LINE", +"121 1024 LINE", +"121 982 LINE", +"247 982 LINE", +"247 0 LINE" +); +} +); +width = 634; +} +); +}, +{ +color = 5; +glyphname = u.alt; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{731, 0}"; +}, +{ +name = ogonek; +position = "{1269, 10}"; +} +); +hints = ( +{ +place = "{136, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 322}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{888, 416}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"708 -32 OFFCURVE", +"818 26 OFFCURVE", +"888 96 CURVE", +"888 0 LINE", +"1304 0 LINE", +"1304 1024 LINE", +"888 1024 LINE", +"888 468 LINE SMOOTH", +"888 376 OFFCURVE", +"806 290 OFFCURVE", +"704 290 CURVE SMOOTH", +"610 290 OFFCURVE", +"552 362 OFFCURVE", +"552 452 CURVE SMOOTH", +"552 1024 LINE", +"136 1024 LINE", +"136 340 LINE SMOOTH", +"136 46 OFFCURVE", +"430 -32 OFFCURVE", +"596 -32 CURVE SMOOTH" +); +} +); +width = 1461; +}, +{ +anchors = ( +{ +name = bottom; +position = "{659, 0}"; +}, +{ +name = ogonek; +position = "{1168, 10}"; +} +); +hints = ( +{ +place = "{186, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 155}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{918, 195}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"717 -32 OFFCURVE", +"858 24 OFFCURVE", +"918 132 CURVE", +"918 0 LINE", +"1113 0 LINE", +"1113 1024 LINE", +"918 1024 LINE", +"918 378 LINE SMOOTH", +"918 253 OFFCURVE", +"813 123 OFFCURVE", +"646 123 CURVE SMOOTH", +"467 123 OFFCURVE", +"381 237 OFFCURVE", +"381 421 CURVE SMOOTH", +"381 1024 LINE", +"186 1024 LINE", +"186 367 LINE SMOOTH", +"186 106 OFFCURVE", +"362 -32 OFFCURVE", +"604 -32 CURVE SMOOTH" +); +} +); +width = 1318; +}, +{ +anchors = ( +{ +name = bottom; +position = "{614, 0}"; +}, +{ +name = ogonek; +position = "{1105, 10}"; +} +); +hints = ( +{ +place = "{217, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{937, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"723 -32 OFFCURVE", +"883 22 OFFCURVE", +"937 154 CURVE", +"937 0 LINE", +"993 0 LINE", +"993 1024 LINE", +"937 1024 LINE", +"937 322 LINE SMOOTH", +"937 176 OFFCURVE", +"817 18 OFFCURVE", +"609 18 CURVE SMOOTH", +"377 18 OFFCURVE", +"273 158 OFFCURVE", +"273 402 CURVE SMOOTH", +"273 1024 LINE", +"217 1024 LINE", +"217 384 LINE SMOOTH", +"217 144 OFFCURVE", +"319 -32 OFFCURVE", +"609 -32 CURVE SMOOTH" +); +} +); +width = 1228; +} +); +}, +{ +color = 5; +glyphname = f_f; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +position = "{767, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +place = "{179, 416}"; +type = Stem; +}, +{ +place = "{953, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1382, 368}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"595 0 LINE", +"595 708 LINE", +"953 708 LINE", +"953 0 LINE", +"1369 0 LINE", +"1369 708 LINE", +"1597 708 LINE", +"1597 1024 LINE", +"1369 1024 LINE", +"1369 1188 LINE SMOOTH", +"1369 1324 OFFCURVE", +"1379 1382 OFFCURVE", +"1465 1382 CURVE SMOOTH", +"1508 1382 OFFCURVE", +"1545 1369 OFFCURVE", +"1567 1358 CURVE", +"1711 1648 LINE", +"1651 1695 OFFCURVE", +"1537 1750 OFFCURVE", +"1391 1750 CURVE SMOOTH", +"1111 1750 OFFCURVE", +"953 1518 OFFCURVE", +"953 1202 CURVE SMOOTH", +"953 1024 LINE", +"595 1024 LINE", +"595 1188 LINE SMOOTH", +"595 1324 OFFCURVE", +"605 1382 OFFCURVE", +"691 1382 CURVE SMOOTH", +"736 1382 OFFCURVE", +"777 1365 OFFCURVE", +"797 1354 CURVE", +"941 1646 LINE", +"879 1694 OFFCURVE", +"763 1750 OFFCURVE", +"617 1750 CURVE SMOOTH", +"337 1750 OFFCURVE", +"179 1518 OFFCURVE", +"179 1202 CURVE SMOOTH", +"179 1024 LINE", +"19 1024 LINE", +"19 708 LINE", +"179 708 LINE", +"179 0 LINE" +); +} +); +width = 1679; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{672, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +place = "{250, 194}"; +type = Stem; +}, +{ +place = "{786, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1579, 171}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"444 0 LINE", +"444 876 LINE", +"786 876 LINE", +"786 0 LINE", +"981 0 LINE", +"981 876 LINE", +"1236 876 LINE", +"1236 1024 LINE", +"981 1024 LINE", +"981 1358 LINE SMOOTH", +"981 1516 OFFCURVE", +"1026 1579 OFFCURVE", +"1129 1579 CURVE SMOOTH", +"1181 1579 OFFCURVE", +"1220 1564 OFFCURVE", +"1246 1545 CURVE", +"1313 1682 LINE", +"1273 1714 OFFCURVE", +"1202 1750 OFFCURVE", +"1098 1750 CURVE SMOOTH", +"906 1750 OFFCURVE", +"786 1614 OFFCURVE", +"786 1357 CURVE SMOOTH", +"786 1024 LINE", +"444 1024 LINE", +"444 1358 LINE SMOOTH", +"444 1516 OFFCURVE", +"489 1579 OFFCURVE", +"592 1579 CURVE SMOOTH", +"634 1579 OFFCURVE", +"669 1567 OFFCURVE", +"693 1554 CURVE", +"763 1691 LINE", +"722 1720 OFFCURVE", +"653 1750 OFFCURVE", +"561 1750 CURVE SMOOTH", +"370 1750 OFFCURVE", +"250 1614 OFFCURVE", +"250 1357 CURVE SMOOTH", +"250 1024 LINE", +"136 1024 LINE", +"136 876 LINE", +"250 876 LINE", +"250 0 LINE" +); +} +); +width = 1399; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{612, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +place = "{294, 56}"; +type = Stem; +}, +{ +place = "{682, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"350 0 LINE", +"350 982 LINE", +"682 982 LINE", +"682 0 LINE", +"738 0 LINE", +"738 982 LINE", +"1010 982 LINE", +"1010 1024 LINE", +"738 1024 LINE", +"738 1464 LINE SMOOTH", +"738 1636 OFFCURVE", +"804 1702 OFFCURVE", +"918 1702 CURVE SMOOTH", +"976 1702 OFFCURVE", +"1016 1686 OFFCURVE", +"1044 1662 CURVE", +"1064 1704 LINE", +"1036 1726 OFFCURVE", +"992 1750 OFFCURVE", +"914 1750 CURVE SMOOTH", +"778 1750 OFFCURVE", +"682 1674 OFFCURVE", +"682 1454 CURVE SMOOTH", +"682 1024 LINE", +"350 1024 LINE", +"350 1464 LINE SMOOTH", +"350 1636 OFFCURVE", +"416 1702 OFFCURVE", +"530 1702 CURVE SMOOTH", +"570 1702 OFFCURVE", +"602 1694 OFFCURVE", +"628 1680 CURVE", +"652 1720 LINE", +"624 1736 OFFCURVE", +"584 1750 OFFCURVE", +"526 1750 CURVE SMOOTH", +"390 1750 OFFCURVE", +"294 1674 OFFCURVE", +"294 1454 CURVE SMOOTH", +"294 1024 LINE", +"210 1024 LINE", +"210 982 LINE", +"294 982 LINE", +"294 0 LINE" +); +} +); +width = 1224; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = f_f_i; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +position = "{752, 0}"; +}, +{ +name = caret_2; +position = "{1504, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{218, 416}"; +type = Stem; +}, +{ +place = "{994, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1382, 368}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"634 0 LINE", +"634 708 LINE", +"994 708 LINE", +"994 0 LINE", +"1410 0 LINE", +"1410 708 LINE", +"1746 708 LINE", +"1746 0 LINE", +"2162 0 LINE", +"2162 1024 LINE", +"1410 1024 LINE", +"1410 1188 LINE SMOOTH", +"1410 1324 OFFCURVE", +"1442 1386 OFFCURVE", +"1562 1386 CURVE SMOOTH", +"1657 1386 OFFCURVE", +"1764 1329 OFFCURVE", +"1832 1280 CURVE", +"1970 1576 LINE", +"1867 1655 OFFCURVE", +"1674 1750 OFFCURVE", +"1434 1750 CURVE SMOOTH", +"1154 1750 OFFCURVE", +"994 1518 OFFCURVE", +"994 1202 CURVE SMOOTH", +"994 1024 LINE", +"634 1024 LINE", +"634 1188 LINE SMOOTH", +"634 1324 OFFCURVE", +"644 1382 OFFCURVE", +"730 1382 CURVE SMOOTH", +"775 1382 OFFCURVE", +"816 1365 OFFCURVE", +"836 1354 CURVE", +"980 1646 LINE", +"918 1694 OFFCURVE", +"802 1750 OFFCURVE", +"656 1750 CURVE SMOOTH", +"376 1750 OFFCURVE", +"218 1518 OFFCURVE", +"218 1202 CURVE SMOOTH", +"218 1024 LINE", +"58 1024 LINE", +"58 708 LINE", +"218 708 LINE", +"218 0 LINE" +); +} +); +width = 2268; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{564, 0}"; +}, +{ +name = caret_2; +position = "{1128, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{258, 195}"; +type = Stem; +}, +{ +place = "{795, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1579, 171}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"453 0 LINE", +"453 876 LINE", +"795 876 LINE", +"795 0 LINE", +"990 0 LINE", +"990 876 LINE", +"1314 876 LINE", +"1314 0 LINE", +"1509 0 LINE", +"1509 1024 LINE", +"990 1024 LINE", +"990 1358 LINE SMOOTH", +"990 1516 OFFCURVE", +"1043 1580 OFFCURVE", +"1159 1580 CURVE SMOOTH", +"1232 1580 OFFCURVE", +"1315 1536 OFFCURVE", +"1353 1482 CURVE", +"1435 1607 LINE", +"1373 1686 OFFCURVE", +"1248 1750 OFFCURVE", +"1108 1750 CURVE SMOOTH", +"916 1750 OFFCURVE", +"795 1614 OFFCURVE", +"795 1357 CURVE SMOOTH", +"795 1024 LINE", +"453 1024 LINE", +"453 1358 LINE SMOOTH", +"453 1516 OFFCURVE", +"497 1579 OFFCURVE", +"600 1579 CURVE SMOOTH", +"642 1579 OFFCURVE", +"678 1567 OFFCURVE", +"701 1554 CURVE", +"772 1691 LINE", +"731 1720 OFFCURVE", +"661 1750 OFFCURVE", +"569 1750 CURVE SMOOTH", +"378 1750 OFFCURVE", +"258 1614 OFFCURVE", +"258 1357 CURVE SMOOTH", +"258 1024 LINE", +"145 1024 LINE", +"145 876 LINE", +"258 876 LINE", +"258 0 LINE" +); +} +); +width = 1696; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{446, 0}"; +}, +{ +name = caret_2; +position = "{892, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{283, 56}"; +type = Stem; +}, +{ +place = "{671, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"339 0 LINE", +"339 982 LINE", +"671 982 LINE", +"671 0 LINE", +"727 0 LINE", +"727 982 LINE", +"1043 982 LINE", +"1043 0 LINE", +"1099 0 LINE", +"1099 1024 LINE", +"727 1024 LINE", +"727 1464 LINE SMOOTH", +"727 1636 OFFCURVE", +"793 1702 OFFCURVE", +"907 1702 CURVE SMOOTH", +"965 1702 OFFCURVE", +"1033 1666 OFFCURVE", +"1053 1608 CURVE", +"1099 1626 LINE", +"1063 1706 OFFCURVE", +"981 1750 OFFCURVE", +"903 1750 CURVE SMOOTH", +"767 1750 OFFCURVE", +"671 1674 OFFCURVE", +"671 1454 CURVE SMOOTH", +"671 1024 LINE", +"339 1024 LINE", +"339 1464 LINE SMOOTH", +"339 1636 OFFCURVE", +"405 1702 OFFCURVE", +"519 1702 CURVE SMOOTH", +"559 1702 OFFCURVE", +"591 1694 OFFCURVE", +"617 1680 CURVE", +"641 1720 LINE", +"613 1736 OFFCURVE", +"573 1750 OFFCURVE", +"515 1750 CURVE SMOOTH", +"379 1750 OFFCURVE", +"283 1674 OFFCURVE", +"283 1454 CURVE SMOOTH", +"283 1024 LINE", +"199 1024 LINE", +"199 982 LINE", +"283 982 LINE", +"283 0 LINE" +); +} +); +width = 1338; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = f_f_j; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +place = "{144, 416}"; +type = Stem; +}, +{ +place = "{920, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 374}"; +type = Stem; +}, +{ +place = "{1672, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1382, 368}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"2000 -550 OFFCURVE", +"2088 -314 OFFCURVE", +"2088 -138 CURVE SMOOTH", +"2088 1024 LINE", +"1336 1024 LINE", +"1336 1188 LINE SMOOTH", +"1336 1324 OFFCURVE", +"1368 1386 OFFCURVE", +"1488 1386 CURVE SMOOTH", +"1583 1386 OFFCURVE", +"1690 1329 OFFCURVE", +"1758 1280 CURVE", +"1896 1576 LINE", +"1793 1655 OFFCURVE", +"1600 1750 OFFCURVE", +"1360 1750 CURVE SMOOTH", +"1080 1750 OFFCURVE", +"920 1518 OFFCURVE", +"920 1202 CURVE SMOOTH", +"920 1024 LINE", +"560 1024 LINE", +"560 1188 LINE SMOOTH", +"560 1324 OFFCURVE", +"570 1382 OFFCURVE", +"656 1382 CURVE SMOOTH", +"701 1382 OFFCURVE", +"742 1365 OFFCURVE", +"762 1354 CURVE", +"906 1646 LINE", +"844 1694 OFFCURVE", +"728 1750 OFFCURVE", +"582 1750 CURVE SMOOTH", +"302 1750 OFFCURVE", +"144 1518 OFFCURVE", +"144 1202 CURVE SMOOTH", +"144 1024 LINE", +"-16 1024 LINE", +"-16 708 LINE", +"144 708 LINE", +"144 0 LINE", +"560 0 LINE", +"560 708 LINE", +"920 708 LINE", +"920 0 LINE", +"1336 0 LINE", +"1336 708 LINE", +"1672 708 LINE", +"1672 -56 LINE SMOOTH", +"1672 -138 OFFCURVE", +"1642 -176 OFFCURVE", +"1592 -176 CURVE SMOOTH", +"1564 -176 OFFCURVE", +"1529 -159 OFFCURVE", +"1510 -148 CURVE", +"1382 -482 LINE", +"1431 -511 OFFCURVE", +"1538 -550 OFFCURVE", +"1690 -550 CURVE SMOOTH" +); +} +); +width = 2165; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +place = "{191, 194}"; +type = Stem; +}, +{ +place = "{728, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 174}"; +type = Stem; +}, +{ +place = "{1247, 194}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1579, 171}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1349 -550 OFFCURVE", +"1441 -412 OFFCURVE", +"1441 -209 CURVE SMOOTH", +"1441 1024 LINE", +"923 1024 LINE", +"923 1358 LINE SMOOTH", +"923 1516 OFFCURVE", +"976 1580 OFFCURVE", +"1092 1580 CURVE SMOOTH", +"1164 1580 OFFCURVE", +"1248 1536 OFFCURVE", +"1286 1482 CURVE", +"1367 1607 LINE", +"1306 1686 OFFCURVE", +"1181 1750 OFFCURVE", +"1040 1750 CURVE SMOOTH", +"849 1750 OFFCURVE", +"728 1614 OFFCURVE", +"728 1357 CURVE SMOOTH", +"728 1024 LINE", +"385 1024 LINE", +"385 1358 LINE SMOOTH", +"385 1516 OFFCURVE", +"430 1579 OFFCURVE", +"533 1579 CURVE SMOOTH", +"575 1579 OFFCURVE", +"610 1567 OFFCURVE", +"634 1554 CURVE", +"704 1691 LINE", +"663 1720 OFFCURVE", +"594 1750 OFFCURVE", +"502 1750 CURVE SMOOTH", +"311 1750 OFFCURVE", +"191 1614 OFFCURVE", +"191 1357 CURVE SMOOTH", +"191 1024 LINE", +"77 1024 LINE", +"77 876 LINE", +"191 876 LINE", +"191 0 LINE", +"385 0 LINE", +"385 876 LINE", +"728 876 LINE", +"728 0 LINE", +"923 0 LINE", +"923 876 LINE", +"1247 876 LINE", +"1247 -184 LINE SMOOTH", +"1247 -316 OFFCURVE", +"1195 -376 OFFCURVE", +"1105 -376 CURVE SMOOTH", +"1058 -376 OFFCURVE", +"1018 -360 OFFCURVE", +"994 -340 CURVE", +"935 -496 LINE", +"971 -521 OFFCURVE", +"1039 -550 OFFCURVE", +"1145 -550 CURVE SMOOTH" +); +} +); +width = 1592; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +place = "{220, 56}"; +type = Stem; +}, +{ +place = "{608, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 48}"; +type = Stem; +}, +{ +place = "{980, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"940 -550 OFFCURVE", +"1036 -474 OFFCURVE", +"1036 -254 CURVE SMOOTH", +"1036 1024 LINE", +"664 1024 LINE", +"664 1464 LINE SMOOTH", +"664 1636 OFFCURVE", +"730 1702 OFFCURVE", +"844 1702 CURVE SMOOTH", +"902 1702 OFFCURVE", +"970 1666 OFFCURVE", +"990 1608 CURVE", +"1036 1626 LINE", +"1000 1706 OFFCURVE", +"918 1750 OFFCURVE", +"840 1750 CURVE SMOOTH", +"704 1750 OFFCURVE", +"608 1674 OFFCURVE", +"608 1454 CURVE SMOOTH", +"608 1024 LINE", +"276 1024 LINE", +"276 1464 LINE SMOOTH", +"276 1636 OFFCURVE", +"342 1702 OFFCURVE", +"456 1702 CURVE SMOOTH", +"496 1702 OFFCURVE", +"528 1694 OFFCURVE", +"554 1680 CURVE", +"578 1720 LINE", +"550 1736 OFFCURVE", +"510 1750 OFFCURVE", +"452 1750 CURVE SMOOTH", +"316 1750 OFFCURVE", +"220 1674 OFFCURVE", +"220 1454 CURVE SMOOTH", +"220 1024 LINE", +"136 1024 LINE", +"136 982 LINE", +"220 982 LINE", +"220 0 LINE", +"276 0 LINE", +"276 982 LINE", +"608 982 LINE", +"608 0 LINE", +"664 0 LINE", +"664 982 LINE", +"980 982 LINE", +"980 -264 LINE SMOOTH", +"980 -428 OFFCURVE", +"914 -502 OFFCURVE", +"800 -502 CURVE SMOOTH", +"740 -502 OFFCURVE", +"698 -486 OFFCURVE", +"670 -460 CURVE", +"654 -504 LINE", +"682 -528 OFFCURVE", +"726 -550 OFFCURVE", +"804 -550 CURVE SMOOTH" +); +} +); +width = 1233; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = f_f_l; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +position = "{710, 0}"; +}, +{ +name = caret_2; +position = "{1460, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1382, 368}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +place = "{179, 416}"; +type = Stem; +}, +{ +place = "{953, 416}"; +type = Stem; +}, +{ +place = "{1695, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"595 0 LINE", +"595 708 LINE", +"953 708 LINE", +"953 0 LINE", +"1369 0 LINE", +"1369 708 LINE", +"1597 708 LINE", +"1597 1024 LINE", +"1369 1024 LINE", +"1369 1188 LINE SMOOTH", +"1369 1324 OFFCURVE", +"1379 1382 OFFCURVE", +"1465 1382 CURVE SMOOTH", +"1490 1382 OFFCURVE", +"1516 1377 OFFCURVE", +"1543 1367 CURVE", +"1633 1696 LINE", +"1589 1720 OFFCURVE", +"1502 1750 OFFCURVE", +"1391 1750 CURVE SMOOTH", +"1111 1750 OFFCURVE", +"953 1518 OFFCURVE", +"953 1202 CURVE SMOOTH", +"953 1024 LINE", +"595 1024 LINE", +"595 1188 LINE SMOOTH", +"595 1324 OFFCURVE", +"605 1382 OFFCURVE", +"691 1382 CURVE SMOOTH", +"736 1382 OFFCURVE", +"777 1365 OFFCURVE", +"797 1354 CURVE", +"941 1646 LINE", +"879 1694 OFFCURVE", +"763 1750 OFFCURVE", +"617 1750 CURVE SMOOTH", +"337 1750 OFFCURVE", +"179 1518 OFFCURVE", +"179 1202 CURVE SMOOTH", +"179 1024 LINE", +"19 1024 LINE", +"19 708 LINE", +"179 708 LINE", +"179 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"2111 0 LINE", +"2111 1720 LINE", +"1695 1720 LINE", +"1695 0 LINE" +); +} +); +width = 2267; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{569, 0}"; +}, +{ +name = caret_2; +position = "{1153, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1579, 171}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +place = "{243, 195}"; +type = Stem; +}, +{ +place = "{780, 194}"; +type = Stem; +}, +{ +place = "{1331, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"438 0 LINE", +"438 876 LINE", +"780 876 LINE", +"780 0 LINE", +"974 0 LINE", +"974 876 LINE", +"1229 876 LINE", +"1229 1024 LINE", +"974 1024 LINE", +"974 1358 LINE SMOOTH", +"974 1516 OFFCURVE", +"1019 1579 OFFCURVE", +"1122 1579 CURVE SMOOTH", +"1156 1579 OFFCURVE", +"1186 1572 OFFCURVE", +"1212 1559 CURVE", +"1262 1711 LINE", +"1228 1730 OFFCURVE", +"1170 1750 OFFCURVE", +"1091 1750 CURVE SMOOTH", +"900 1750 OFFCURVE", +"780 1614 OFFCURVE", +"780 1357 CURVE SMOOTH", +"780 1024 LINE", +"438 1024 LINE", +"438 1358 LINE SMOOTH", +"438 1516 OFFCURVE", +"482 1579 OFFCURVE", +"585 1579 CURVE SMOOTH", +"627 1579 OFFCURVE", +"663 1567 OFFCURVE", +"686 1554 CURVE", +"757 1691 LINE", +"716 1720 OFFCURVE", +"646 1750 OFFCURVE", +"554 1750 CURVE SMOOTH", +"363 1750 OFFCURVE", +"243 1614 OFFCURVE", +"243 1357 CURVE SMOOTH", +"243 1024 LINE", +"130 1024 LINE", +"130 876 LINE", +"243 876 LINE", +"243 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1526 0 LINE", +"1526 1720 LINE", +"1331 1720 LINE", +"1331 0 LINE" +); +} +); +width = 1759; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{480, 0}"; +}, +{ +name = caret_2; +position = "{960, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +place = "{283, 56}"; +type = Stem; +}, +{ +place = "{671, 56}"; +type = Stem; +}, +{ +place = "{1103, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"339 0 LINE", +"339 982 LINE", +"671 982 LINE", +"671 0 LINE", +"727 0 LINE", +"727 982 LINE", +"999 982 LINE", +"999 1024 LINE", +"727 1024 LINE", +"727 1464 LINE SMOOTH", +"727 1636 OFFCURVE", +"793 1702 OFFCURVE", +"907 1702 CURVE SMOOTH", +"947 1702 OFFCURVE", +"979 1694 OFFCURVE", +"1005 1680 CURVE", +"1029 1720 LINE", +"1001 1736 OFFCURVE", +"961 1750 OFFCURVE", +"903 1750 CURVE SMOOTH", +"767 1750 OFFCURVE", +"671 1674 OFFCURVE", +"671 1454 CURVE SMOOTH", +"671 1024 LINE", +"339 1024 LINE", +"339 1464 LINE SMOOTH", +"339 1636 OFFCURVE", +"405 1702 OFFCURVE", +"519 1702 CURVE SMOOTH", +"559 1702 OFFCURVE", +"591 1694 OFFCURVE", +"617 1680 CURVE", +"641 1720 LINE", +"613 1736 OFFCURVE", +"573 1750 OFFCURVE", +"515 1750 CURVE SMOOTH", +"379 1750 OFFCURVE", +"283 1674 OFFCURVE", +"283 1454 CURVE SMOOTH", +"283 1024 LINE", +"199 1024 LINE", +"199 982 LINE", +"283 982 LINE", +"283 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1159 0 LINE", +"1159 1720 LINE", +"1103 1720 LINE", +"1103 0 LINE" +); +} +); +width = 1440; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = f_f_t; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1382, 368}"; +type = Stem; +}, +{ +place = "{218, 416}"; +type = Stem; +}, +{ +place = "{992, 416}"; +type = Stem; +}, +{ +place = "{1734, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 372}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"2230 -32 OFFCURVE", +"2338 5 OFFCURVE", +"2402 38 CURVE", +"2298 372 LINE", +"2278 357 OFFCURVE", +"2247 340 OFFCURVE", +"2218 340 CURVE SMOOTH", +"2172 340 OFFCURVE", +"2150 380 OFFCURVE", +"2150 470 CURVE SMOOTH", +"2150 708 LINE", +"2354 708 LINE", +"2354 1024 LINE", +"2150 1024 LINE", +"2150 1408 LINE", +"1734 1408 LINE", +"1734 1024 LINE", +"1408 1024 LINE", +"1408 1188 LINE SMOOTH", +"1408 1324 OFFCURVE", +"1418 1382 OFFCURVE", +"1504 1382 CURVE SMOOTH", +"1547 1382 OFFCURVE", +"1584 1369 OFFCURVE", +"1606 1358 CURVE", +"1750 1648 LINE", +"1690 1695 OFFCURVE", +"1576 1750 OFFCURVE", +"1430 1750 CURVE SMOOTH", +"1150 1750 OFFCURVE", +"992 1518 OFFCURVE", +"992 1202 CURVE SMOOTH", +"992 1024 LINE", +"634 1024 LINE", +"634 1188 LINE SMOOTH", +"634 1324 OFFCURVE", +"644 1382 OFFCURVE", +"730 1382 CURVE SMOOTH", +"775 1382 OFFCURVE", +"816 1365 OFFCURVE", +"836 1354 CURVE", +"980 1646 LINE", +"918 1694 OFFCURVE", +"802 1750 OFFCURVE", +"656 1750 CURVE SMOOTH", +"376 1750 OFFCURVE", +"218 1518 OFFCURVE", +"218 1202 CURVE SMOOTH", +"218 1024 LINE", +"58 1024 LINE", +"58 708 LINE", +"218 708 LINE", +"218 0 LINE", +"634 0 LINE", +"634 708 LINE", +"992 708 LINE", +"992 0 LINE", +"1408 0 LINE", +"1408 708 LINE", +"1734 708 LINE", +"1734 388 LINE SMOOTH", +"1734 194 OFFCURVE", +"1810 -32 OFFCURVE", +"2116 -32 CURVE SMOOTH" +); +} +); +width = 2448; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1579, 171}"; +type = Stem; +}, +{ +place = "{265, 194}"; +type = Stem; +}, +{ +place = "{801, 195}"; +type = Stem; +}, +{ +place = "{1353, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 173}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1704 -32 OFFCURVE", +"1774 -5 OFFCURVE", +"1812 18 CURVE", +"1763 174 LINE", +"1743 159 OFFCURVE", +"1707 141 OFFCURVE", +"1664 141 CURVE SMOOTH", +"1580 141 OFFCURVE", +"1548 201 OFFCURVE", +"1548 318 CURVE SMOOTH", +"1548 876 LINE", +"1794 876 LINE", +"1794 1024 LINE", +"1548 1024 LINE", +"1548 1407 LINE", +"1353 1407 LINE", +"1353 1024 LINE", +"996 1024 LINE", +"996 1358 LINE SMOOTH", +"996 1516 OFFCURVE", +"1041 1579 OFFCURVE", +"1144 1579 CURVE SMOOTH", +"1185 1579 OFFCURVE", +"1219 1569 OFFCURVE", +"1243 1556 CURVE", +"1314 1692 LINE", +"1273 1720 OFFCURVE", +"1205 1750 OFFCURVE", +"1113 1750 CURVE SMOOTH", +"921 1750 OFFCURVE", +"801 1614 OFFCURVE", +"801 1357 CURVE SMOOTH", +"801 1024 LINE", +"459 1024 LINE", +"459 1358 LINE SMOOTH", +"459 1516 OFFCURVE", +"504 1579 OFFCURVE", +"607 1579 CURVE SMOOTH", +"649 1579 OFFCURVE", +"684 1567 OFFCURVE", +"708 1554 CURVE", +"778 1691 LINE", +"737 1720 OFFCURVE", +"668 1750 OFFCURVE", +"576 1750 CURVE SMOOTH", +"385 1750 OFFCURVE", +"265 1614 OFFCURVE", +"265 1357 CURVE SMOOTH", +"265 1024 LINE", +"151 1024 LINE", +"151 876 LINE", +"265 876 LINE", +"265 0 LINE", +"459 0 LINE", +"459 876 LINE", +"801 876 LINE", +"801 0 LINE", +"996 0 LINE", +"996 876 LINE", +"1353 876 LINE", +"1353 286 LINE SMOOTH", +"1353 134 OFFCURVE", +"1397 -32 OFFCURVE", +"1619 -32 CURVE SMOOTH" +); +} +); +width = 1933; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +}, +{ +place = "{294, 56}"; +type = Stem; +}, +{ +place = "{682, 56}"; +type = Stem; +}, +{ +place = "{1114, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1374 -32 OFFCURVE", +"1420 -12 OFFCURVE", +"1442 6 CURVE", +"1428 50 LINE", +"1408 35 OFFCURVE", +"1368 16 OFFCURVE", +"1316 16 CURVE SMOOTH", +"1208 16 OFFCURVE", +"1170 88 OFFCURVE", +"1170 222 CURVE SMOOTH", +"1170 982 LINE", +"1442 982 LINE", +"1442 1024 LINE", +"1170 1024 LINE", +"1170 1406 LINE", +"1114 1406 LINE", +"1114 1024 LINE", +"738 1024 LINE", +"738 1464 LINE SMOOTH", +"738 1636 OFFCURVE", +"804 1702 OFFCURVE", +"918 1702 CURVE SMOOTH", +"958 1702 OFFCURVE", +"990 1694 OFFCURVE", +"1016 1680 CURVE", +"1040 1720 LINE", +"1012 1736 OFFCURVE", +"972 1750 OFFCURVE", +"914 1750 CURVE SMOOTH", +"778 1750 OFFCURVE", +"682 1674 OFFCURVE", +"682 1454 CURVE SMOOTH", +"682 1024 LINE", +"350 1024 LINE", +"350 1464 LINE SMOOTH", +"350 1636 OFFCURVE", +"416 1702 OFFCURVE", +"530 1702 CURVE SMOOTH", +"570 1702 OFFCURVE", +"602 1694 OFFCURVE", +"628 1680 CURVE", +"652 1720 LINE", +"624 1736 OFFCURVE", +"584 1750 OFFCURVE", +"526 1750 CURVE SMOOTH", +"390 1750 OFFCURVE", +"294 1674 OFFCURVE", +"294 1454 CURVE SMOOTH", +"294 1024 LINE", +"210 1024 LINE", +"210 982 LINE", +"294 982 LINE", +"294 0 LINE", +"350 0 LINE", +"350 982 LINE", +"682 982 LINE", +"682 0 LINE", +"738 0 LINE", +"738 982 LINE", +"1114 982 LINE", +"1114 222 LINE SMOOTH", +"1114 96 OFFCURVE", +"1138 -32 OFFCURVE", +"1308 -32 CURVE SMOOTH" +); +} +); +width = 1610; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = f_j; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +place = "{143, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1386, 364}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 374}"; +type = Stem; +}, +{ +place = "{895, 416}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1223 -550 OFFCURVE", +"1311 -314 OFFCURVE", +"1311 -138 CURVE SMOOTH", +"1311 1024 LINE", +"559 1024 LINE", +"559 1188 LINE SMOOTH", +"559 1324 OFFCURVE", +"591 1386 OFFCURVE", +"711 1386 CURVE SMOOTH", +"806 1386 OFFCURVE", +"913 1329 OFFCURVE", +"981 1280 CURVE", +"1119 1576 LINE", +"1016 1655 OFFCURVE", +"823 1750 OFFCURVE", +"583 1750 CURVE SMOOTH", +"303 1750 OFFCURVE", +"143 1518 OFFCURVE", +"143 1202 CURVE SMOOTH", +"143 1024 LINE", +"-17 1024 LINE", +"-17 708 LINE", +"143 708 LINE", +"143 0 LINE", +"559 0 LINE", +"559 708 LINE", +"895 708 LINE", +"895 -56 LINE SMOOTH", +"895 -138 OFFCURVE", +"865 -176 OFFCURVE", +"815 -176 CURVE SMOOTH", +"787 -176 OFFCURVE", +"752 -159 OFFCURVE", +"733 -148 CURVE", +"605 -482 LINE", +"654 -511 OFFCURVE", +"761 -550 OFFCURVE", +"913 -550 CURVE SMOOTH" +); +} +); +width = 1388; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +place = "{190, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1580, 170}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 174}"; +type = Stem; +}, +{ +place = "{709, 195}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"811 -550 OFFCURVE", +"904 -412 OFFCURVE", +"904 -209 CURVE SMOOTH", +"904 1024 LINE", +"385 1024 LINE", +"385 1358 LINE SMOOTH", +"385 1516 OFFCURVE", +"438 1580 OFFCURVE", +"554 1580 CURVE SMOOTH", +"627 1580 OFFCURVE", +"710 1536 OFFCURVE", +"748 1482 CURVE", +"830 1607 LINE", +"768 1686 OFFCURVE", +"643 1750 OFFCURVE", +"502 1750 CURVE SMOOTH", +"311 1750 OFFCURVE", +"190 1614 OFFCURVE", +"190 1357 CURVE SMOOTH", +"190 1024 LINE", +"77 1024 LINE", +"77 876 LINE", +"190 876 LINE", +"190 0 LINE", +"385 0 LINE", +"385 876 LINE", +"709 876 LINE", +"709 -184 LINE SMOOTH", +"709 -316 OFFCURVE", +"657 -376 OFFCURVE", +"567 -376 CURVE SMOOTH", +"520 -376 OFFCURVE", +"480 -360 OFFCURVE", +"456 -340 CURVE", +"397 -496 LINE", +"433 -521 OFFCURVE", +"501 -550 OFFCURVE", +"608 -550 CURVE SMOOTH" +); +} +); +width = 1054; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +place = "{220, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-550, 48}"; +type = Stem; +}, +{ +place = "{592, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"552 -550 OFFCURVE", +"648 -474 OFFCURVE", +"648 -254 CURVE SMOOTH", +"648 1024 LINE", +"276 1024 LINE", +"276 1464 LINE SMOOTH", +"276 1636 OFFCURVE", +"342 1702 OFFCURVE", +"456 1702 CURVE SMOOTH", +"514 1702 OFFCURVE", +"582 1666 OFFCURVE", +"602 1608 CURVE", +"648 1626 LINE", +"612 1706 OFFCURVE", +"530 1750 OFFCURVE", +"452 1750 CURVE SMOOTH", +"316 1750 OFFCURVE", +"220 1674 OFFCURVE", +"220 1454 CURVE SMOOTH", +"220 1024 LINE", +"136 1024 LINE", +"136 982 LINE", +"220 982 LINE", +"220 0 LINE", +"276 0 LINE", +"276 982 LINE", +"592 982 LINE", +"592 -264 LINE SMOOTH", +"592 -428 OFFCURVE", +"526 -502 OFFCURVE", +"412 -502 CURVE SMOOTH", +"352 -502 OFFCURVE", +"310 -486 OFFCURVE", +"282 -460 CURVE", +"266 -504 LINE", +"294 -528 OFFCURVE", +"338 -550 OFFCURVE", +"416 -550 CURVE SMOOTH" +); +} +); +width = 845; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = f_t; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +place = "{179, 416}"; +type = Stem; +}, +{ +place = "{921, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 372}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1382, 368}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1400 -32 OFFCURVE", +"1516 -3 OFFCURVE", +"1603 45 CURVE", +"1463 357 LINE", +"1443 346 OFFCURVE", +"1423 340 OFFCURVE", +"1402 340 CURVE SMOOTH", +"1359 340 OFFCURVE", +"1337 367 OFFCURVE", +"1337 420 CURVE SMOOTH", +"1337 708 LINE", +"1541 708 LINE", +"1541 1024 LINE", +"1337 1024 LINE", +"1337 1408 LINE", +"921 1408 LINE", +"921 1024 LINE", +"595 1024 LINE", +"595 1188 LINE SMOOTH", +"595 1324 OFFCURVE", +"605 1382 OFFCURVE", +"691 1382 CURVE SMOOTH", +"734 1382 OFFCURVE", +"771 1369 OFFCURVE", +"793 1358 CURVE", +"937 1648 LINE", +"877 1695 OFFCURVE", +"763 1750 OFFCURVE", +"617 1750 CURVE SMOOTH", +"337 1750 OFFCURVE", +"179 1518 OFFCURVE", +"179 1202 CURVE SMOOTH", +"179 1024 LINE", +"19 1024 LINE", +"19 708 LINE", +"179 708 LINE", +"179 0 LINE", +"595 0 LINE", +"595 708 LINE", +"921 708 LINE", +"921 388 LINE SMOOTH", +"921 124 OFFCURVE", +"1061 -32 OFFCURVE", +"1298 -32 CURVE SMOOTH" +); +} +); +width = 1596; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +place = "{250, 194}"; +type = Stem; +}, +{ +place = "{801, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 173}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1579, 171}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1145 -32 OFFCURVE", +"1231 -7 OFFCURVE", +"1281 33 CURVE", +"1198 165 LINE", +"1173 150 OFFCURVE", +"1142 141 OFFCURVE", +"1112 141 CURVE SMOOTH", +"1037 141 OFFCURVE", +"996 196 OFFCURVE", +"996 298 CURVE SMOOTH", +"996 876 LINE", +"1242 876 LINE", +"1242 1024 LINE", +"996 1024 LINE", +"996 1407 LINE", +"801 1407 LINE", +"801 1024 LINE", +"444 1024 LINE", +"444 1358 LINE SMOOTH", +"444 1516 OFFCURVE", +"489 1579 OFFCURVE", +"592 1579 CURVE SMOOTH", +"633 1579 OFFCURVE", +"667 1569 OFFCURVE", +"692 1556 CURVE", +"762 1692 LINE", +"722 1720 OFFCURVE", +"653 1750 OFFCURVE", +"561 1750 CURVE SMOOTH", +"370 1750 OFFCURVE", +"250 1614 OFFCURVE", +"250 1357 CURVE SMOOTH", +"250 1024 LINE", +"136 1024 LINE", +"136 876 LINE", +"250 876 LINE", +"250 0 LINE", +"444 0 LINE", +"444 876 LINE", +"801 876 LINE", +"801 286 LINE SMOOTH", +"801 85 OFFCURVE", +"899 -32 OFFCURVE", +"1067 -32 CURVE SMOOTH" +); +} +); +width = 1366; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +place = "{294, 56}"; +type = Stem; +}, +{ +place = "{726, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"979 -32 OFFCURVE", +"1034 -11 OFFCURVE", +"1066 17 CURVE", +"1040 50 LINE", +"1012 29 OFFCURVE", +"969 16 OFFCURVE", +"929 16 CURVE SMOOTH", +"834 16 OFFCURVE", +"782 89 OFFCURVE", +"782 222 CURVE SMOOTH", +"782 982 LINE", +"1054 982 LINE", +"1054 1024 LINE", +"782 1024 LINE", +"782 1406 LINE", +"726 1406 LINE", +"726 1024 LINE", +"350 1024 LINE", +"350 1464 LINE SMOOTH", +"350 1636 OFFCURVE", +"416 1702 OFFCURVE", +"530 1702 CURVE SMOOTH", +"570 1702 OFFCURVE", +"602 1694 OFFCURVE", +"628 1680 CURVE", +"652 1720 LINE", +"624 1736 OFFCURVE", +"584 1750 OFFCURVE", +"526 1750 CURVE SMOOTH", +"390 1750 OFFCURVE", +"294 1674 OFFCURVE", +"294 1454 CURVE SMOOTH", +"294 1024 LINE", +"210 1024 LINE", +"210 982 LINE", +"294 982 LINE", +"294 0 LINE", +"350 0 LINE", +"350 982 LINE", +"726 982 LINE", +"726 222 LINE SMOOTH", +"726 60 OFFCURVE", +"797 -32 OFFCURVE", +"920 -32 CURVE SMOOTH" +); +} +); +width = 1222; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = fi; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +position = "{765, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1386, 364}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{218, 416}"; +type = Stem; +}, +{ +place = "{970, 416}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"634 0 LINE", +"634 708 LINE", +"970 708 LINE", +"970 0 LINE", +"1386 0 LINE", +"1386 1024 LINE", +"634 1024 LINE", +"634 1188 LINE SMOOTH", +"634 1324 OFFCURVE", +"666 1386 OFFCURVE", +"786 1386 CURVE SMOOTH", +"881 1386 OFFCURVE", +"988 1329 OFFCURVE", +"1056 1280 CURVE", +"1194 1576 LINE", +"1091 1655 OFFCURVE", +"898 1750 OFFCURVE", +"658 1750 CURVE SMOOTH", +"378 1750 OFFCURVE", +"218 1518 OFFCURVE", +"218 1202 CURVE SMOOTH", +"218 1024 LINE", +"58 1024 LINE", +"58 708 LINE", +"218 708 LINE", +"218 0 LINE" +); +} +); +width = 1492; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{558, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1580, 170}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{229, 195}"; +type = Stem; +}, +{ +place = "{749, 195}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"424 0 LINE", +"424 876 LINE", +"749 876 LINE", +"749 0 LINE", +"944 0 LINE", +"944 1024 LINE", +"424 1024 LINE", +"424 1358 LINE SMOOTH", +"424 1516 OFFCURVE", +"477 1580 OFFCURVE", +"593 1580 CURVE SMOOTH", +"665 1580 OFFCURVE", +"748 1536 OFFCURVE", +"787 1482 CURVE", +"868 1607 LINE", +"806 1686 OFFCURVE", +"682 1750 OFFCURVE", +"541 1750 CURVE SMOOTH", +"350 1750 OFFCURVE", +"229 1614 OFFCURVE", +"229 1357 CURVE SMOOTH", +"229 1024 LINE", +"116 1024 LINE", +"116 876 LINE", +"229 876 LINE", +"229 0 LINE" +); +} +); +width = 1102; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{428, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +place = "{236, 56}"; +type = Stem; +}, +{ +place = "{610, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"292 0 LINE", +"292 982 LINE", +"610 982 LINE", +"610 0 LINE", +"666 0 LINE", +"666 1024 LINE", +"292 1024 LINE", +"292 1464 LINE SMOOTH", +"292 1636 OFFCURVE", +"358 1702 OFFCURVE", +"472 1702 CURVE SMOOTH", +"530 1702 OFFCURVE", +"598 1666 OFFCURVE", +"618 1608 CURVE", +"664 1626 LINE", +"628 1706 OFFCURVE", +"546 1750 OFFCURVE", +"468 1750 CURVE SMOOTH", +"332 1750 OFFCURVE", +"236 1674 OFFCURVE", +"236 1454 CURVE SMOOTH", +"236 1024 LINE", +"152 1024 LINE", +"152 982 LINE", +"236 982 LINE", +"236 0 LINE" +); +} +); +width = 857; +} +); +rightKerningGroup = _A1; +unicode = FB01; +}, +{ +color = 5; +glyphname = fl; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +position = "{723, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +}, +{ +place = "{179, 416}"; +type = Stem; +}, +{ +place = "{921, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1382, 368}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"595 0 LINE", +"595 708 LINE", +"823 708 LINE", +"823 1024 LINE", +"595 1024 LINE", +"595 1188 LINE SMOOTH", +"595 1324 OFFCURVE", +"605 1382 OFFCURVE", +"691 1382 CURVE SMOOTH", +"716 1382 OFFCURVE", +"742 1377 OFFCURVE", +"769 1367 CURVE", +"859 1696 LINE", +"815 1720 OFFCURVE", +"728 1750 OFFCURVE", +"617 1750 CURVE SMOOTH", +"337 1750 OFFCURVE", +"179 1518 OFFCURVE", +"179 1202 CURVE SMOOTH", +"179 1024 LINE", +"19 1024 LINE", +"19 708 LINE", +"179 708 LINE", +"179 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1337 0 LINE", +"1337 1720 LINE", +"921 1720 LINE", +"921 0 LINE" +); +} +); +width = 1493; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{601, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{876, 148}"; +type = Stem; +}, +{ +place = "{243, 193}"; +type = Stem; +}, +{ +place = "{794, 193}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1579, 171}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"436 0 LINE", +"436 876 LINE", +"691 876 LINE", +"691 1024 LINE", +"436 1024 LINE", +"436 1358 LINE SMOOTH", +"436 1516 OFFCURVE", +"481 1579 OFFCURVE", +"584 1579 CURVE SMOOTH", +"618 1579 OFFCURVE", +"648 1572 OFFCURVE", +"674 1559 CURVE", +"724 1711 LINE", +"690 1730 OFFCURVE", +"632 1750 OFFCURVE", +"553 1750 CURVE SMOOTH", +"362 1750 OFFCURVE", +"243 1614 OFFCURVE", +"243 1357 CURVE SMOOTH", +"243 1024 LINE", +"128 1024 LINE", +"128 876 LINE", +"243 876 LINE", +"243 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"987 0 LINE", +"987 1720 LINE", +"794 1720 LINE", +"794 0 LINE" +); +} +); +width = 1220; +}, +{ +anchors = ( +{ +name = caret_1; +position = "{524, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{982, 42}"; +type = Stem; +}, +{ +place = "{283, 54}"; +type = Stem; +}, +{ +place = "{715, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"337 0 LINE", +"337 982 LINE", +"609 982 LINE", +"609 1024 LINE", +"337 1024 LINE", +"337 1464 LINE SMOOTH", +"337 1636 OFFCURVE", +"403 1702 OFFCURVE", +"517 1702 CURVE SMOOTH", +"557 1702 OFFCURVE", +"589 1694 OFFCURVE", +"615 1680 CURVE", +"639 1720 LINE", +"611 1736 OFFCURVE", +"571 1750 OFFCURVE", +"513 1750 CURVE SMOOTH", +"377 1750 OFFCURVE", +"283 1674 OFFCURVE", +"283 1454 CURVE SMOOTH", +"283 1024 LINE", +"197 1024 LINE", +"197 982 LINE", +"283 982 LINE", +"283 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"767 0 LINE", +"767 1720 LINE", +"715 1720 LINE", +"715 0 LINE" +); +} +); +width = 1048; +} +); +rightKerningGroup = _A1; +unicode = FB02; +}, +{ +color = 5; +glyphname = ordfeminine; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"526 1008 OFFCURVE", +"593 1040 OFFCURVE", +"641 1078 CURVE", +"641 1028 LINE", +"899 1028 LINE", +"899 1660 LINE", +"641 1660 LINE", +"641 1620 LINE", +"589 1660 OFFCURVE", +"524 1680 OFFCURVE", +"454 1680 CURVE SMOOTH", +"261 1680 OFFCURVE", +"137 1528 OFFCURVE", +"137 1345 CURVE SMOOTH", +"137 1154 OFFCURVE", +"272 1008 OFFCURVE", +"445 1008 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"454 1226 OFFCURVE", +"407 1276 OFFCURVE", +"407 1343 CURVE SMOOTH", +"407 1414 OFFCURVE", +"461 1462 OFFCURVE", +"527 1462 CURVE SMOOTH", +"593 1462 OFFCURVE", +"647 1414 OFFCURVE", +"647 1344 CURVE SMOOTH", +"647 1276 OFFCURVE", +"597 1226 OFFCURVE", +"526 1226 CURVE SMOOTH" +); +} +); +width = 1094; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"585 1008 OFFCURVE", +"676 1063 OFFCURVE", +"725 1147 CURVE", +"725 1028 LINE", +"846 1028 LINE", +"846 1660 LINE", +"725 1660 LINE", +"725 1545 LINE", +"674 1629 OFFCURVE", +"584 1680 OFFCURVE", +"480 1680 CURVE SMOOTH", +"295 1680 OFFCURVE", +"162 1535 OFFCURVE", +"162 1344 CURVE SMOOTH", +"162 1149 OFFCURVE", +"299 1008 OFFCURVE", +"476 1008 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"379 1110 OFFCURVE", +"287 1210 OFFCURVE", +"287 1344 CURVE SMOOTH", +"287 1480 OFFCURVE", +"382 1578 OFFCURVE", +"508 1578 CURVE SMOOTH", +"634 1578 OFFCURVE", +"728 1480 OFFCURVE", +"728 1344 CURVE SMOOTH", +"728 1210 OFFCURVE", +"636 1110 OFFCURVE", +"508 1110 CURVE SMOOTH" +); +} +); +width = 1065; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"622 1008 OFFCURVE", +"728 1078 OFFCURVE", +"778 1190 CURVE", +"778 1028 LINE", +"812 1028 LINE", +"812 1660 LINE", +"778 1660 LINE", +"778 1498 LINE", +"728 1610 OFFCURVE", +"622 1680 OFFCURVE", +"496 1680 CURVE SMOOTH", +"316 1680 OFFCURVE", +"178 1540 OFFCURVE", +"178 1344 CURVE SMOOTH", +"178 1146 OFFCURVE", +"316 1008 OFFCURVE", +"496 1008 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"332 1038 OFFCURVE", +"212 1168 OFFCURVE", +"212 1344 CURVE SMOOTH", +"212 1522 OFFCURVE", +"332 1650 OFFCURVE", +"496 1650 CURVE SMOOTH", +"660 1650 OFFCURVE", +"778 1522 OFFCURVE", +"778 1344 CURVE SMOOTH", +"778 1168 OFFCURVE", +"660 1038 OFFCURVE", +"496 1038 CURVE SMOOTH" +); +} +); +width = 1046; +} +); +rightKerningGroup = _A1; +unicode = 00AA; +}, +{ +color = 5; +glyphname = ordmasculine; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"680 1004 OFFCURVE", +"844 1144 OFFCURVE", +"844 1342 CURVE SMOOTH", +"844 1540 OFFCURVE", +"680 1680 OFFCURVE", +"466 1680 CURVE SMOOTH", +"252 1680 OFFCURVE", +"88 1540 OFFCURVE", +"88 1342 CURVE SMOOTH", +"88 1144 OFFCURVE", +"252 1004 OFFCURVE", +"466 1004 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"406 1220 OFFCURVE", +"360 1270 OFFCURVE", +"360 1342 CURVE SMOOTH", +"360 1414 OFFCURVE", +"406 1464 OFFCURVE", +"466 1464 CURVE SMOOTH", +"526 1464 OFFCURVE", +"572 1414 OFFCURVE", +"572 1342 CURVE SMOOTH", +"572 1270 OFFCURVE", +"526 1220 OFFCURVE", +"466 1220 CURVE SMOOTH" +); +} +); +width = 934; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"695 1006 OFFCURVE", +"849 1145 OFFCURVE", +"849 1343 CURVE SMOOTH", +"849 1542 OFFCURVE", +"695 1680 OFFCURVE", +"496 1680 CURVE SMOOTH", +"295 1680 OFFCURVE", +"142 1542 OFFCURVE", +"142 1343 CURVE SMOOTH", +"142 1145 OFFCURVE", +"295 1006 OFFCURVE", +"496 1006 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"364 1109 OFFCURVE", +"267 1206 OFFCURVE", +"267 1343 CURVE SMOOTH", +"267 1479 OFFCURVE", +"363 1577 OFFCURVE", +"496 1577 CURVE SMOOTH", +"627 1577 OFFCURVE", +"724 1479 OFFCURVE", +"724 1343 CURVE SMOOTH", +"724 1207 OFFCURVE", +"627 1109 OFFCURVE", +"495 1109 CURVE SMOOTH" +); +} +); +width = 992; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"704 1008 OFFCURVE", +"852 1146 OFFCURVE", +"852 1344 CURVE SMOOTH", +"852 1544 OFFCURVE", +"704 1680 OFFCURVE", +"514 1680 CURVE SMOOTH", +"322 1680 OFFCURVE", +"176 1544 OFFCURVE", +"176 1344 CURVE SMOOTH", +"176 1146 OFFCURVE", +"322 1008 OFFCURVE", +"514 1008 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"338 1040 OFFCURVE", +"208 1166 OFFCURVE", +"208 1344 CURVE SMOOTH", +"208 1520 OFFCURVE", +"336 1648 OFFCURVE", +"514 1648 CURVE SMOOTH", +"690 1648 OFFCURVE", +"820 1520 OFFCURVE", +"820 1344 CURVE SMOOTH", +"820 1168 OFFCURVE", +"690 1040 OFFCURVE", +"513 1040 CURVE SMOOTH" +); +} +); +width = 1028; +} +); +rightKerningGroup = _A1; +unicode = 00BA; +}, +{ +color = 5; +glyphname = Delta; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"605 1650 LINE", +"-41 0 LINE", +"1351 0 LINE", +"705 1650 LINE" +); +}, +{ +closed = 1; +nodes = ( +"565 1374 LINE", +"924 277 LINE", +"386 277 LINE", +"745 1374 LINE" +); +} +); +width = 1310; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"727 1650 LINE", +"81 0 LINE", +"1434 0 LINE", +"788 1650 LINE" +); +}, +{ +closed = 1; +nodes = ( +"717 1526 LINE", +"1227 133 LINE", +"288 133 LINE", +"798 1526 LINE" +); +} +); +width = 1515; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"804 1650 LINE", +"158 0 LINE", +"1486 0 LINE", +"840 1650 LINE" +); +}, +{ +closed = 1; +nodes = ( +"812 1621 LINE", +"1417 43 LINE", +"227 43 LINE", +"832 1621 LINE" +); +} +); +width = 1644; +} +); +leftMetricsKey = A; +rightMetricsKey = A; +unicode = 0394; +}, +{ +color = 5; +glyphname = Omega; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"383 1680 OFFCURVE", +"62 1359 OFFCURVE", +"62 911 CURVE SMOOTH", +"62 543 OFFCURVE", +"279 321 OFFCURVE", +"460 241 CURVE", +"112 288 LINE", +"112 0 LINE", +"797 0 LINE", +"797 160 LINE", +"781 177 LINE SMOOTH", +"629 340 OFFCURVE", +"460 602 OFFCURVE", +"460 865 CURVE SMOOTH", +"460 1046 OFFCURVE", +"540 1326 OFFCURVE", +"842 1326 CURVE SMOOTH", +"1144 1326 OFFCURVE", +"1224 1046 OFFCURVE", +"1224 865 CURVE SMOOTH", +"1224 602 OFFCURVE", +"1055 340 OFFCURVE", +"903 177 CURVE SMOOTH", +"887 160 LINE", +"887 0 LINE", +"1572 0 LINE", +"1572 288 LINE", +"1224 241 LINE", +"1405 321 OFFCURVE", +"1622 543 OFFCURVE", +"1622 911 CURVE SMOOTH", +"1622 1359 OFFCURVE", +"1301 1680 OFFCURVE", +"842 1680 CURVE SMOOTH" +); +} +); +width = 1684; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"487 1680 OFFCURVE", +"148 1334 OFFCURVE", +"148 888 CURVE SMOOTH", +"148 517 OFFCURVE", +"391 227 OFFCURVE", +"694 125 CURVE", +"233 139 LINE", +"233 0 LINE", +"887 0 LINE", +"887 102 LINE", +"862 113 LINE SMOOTH", +"576 234 OFFCURVE", +"338 544 OFFCURVE", +"338 861 CURVE SMOOTH", +"338 1191 OFFCURVE", +"568 1508 OFFCURVE", +"931 1508 CURVE SMOOTH", +"1295 1508 OFFCURVE", +"1525 1191 OFFCURVE", +"1525 861 CURVE SMOOTH", +"1525 544 OFFCURVE", +"1286 234 OFFCURVE", +"1001 113 CURVE SMOOTH", +"976 102 LINE", +"976 0 LINE", +"1629 0 LINE", +"1629 139 LINE", +"1168 125 LINE", +"1472 227 OFFCURVE", +"1715 517 OFFCURVE", +"1715 888 CURVE SMOOTH", +"1715 1334 OFFCURVE", +"1376 1680 OFFCURVE", +"931 1680 CURVE SMOOTH" +); +} +); +width = 1863; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"554 1680 OFFCURVE", +"203 1319 OFFCURVE", +"203 873 CURVE SMOOTH", +"203 501 OFFCURVE", +"463 168 OFFCURVE", +"843 53 CURVE", +"311 45 LINE", +"311 0 LINE", +"945 0 LINE", +"945 65 LINE", +"914 73 LINE SMOOTH", +"545 168 OFFCURVE", +"263 508 OFFCURVE", +"263 859 CURVE SMOOTH", +"263 1282 OFFCURVE", +"587 1622 OFFCURVE", +"989 1622 CURVE SMOOTH", +"1391 1622 OFFCURVE", +"1715 1282 OFFCURVE", +"1715 859 CURVE SMOOTH", +"1715 508 OFFCURVE", +"1433 168 OFFCURVE", +"1064 73 CURVE SMOOTH", +"1033 65 LINE", +"1033 0 LINE", +"1667 0 LINE", +"1667 45 LINE", +"1135 53 LINE", +"1515 168 OFFCURVE", +"1775 501 OFFCURVE", +"1775 873 CURVE SMOOTH", +"1775 1319 OFFCURVE", +"1424 1680 OFFCURVE", +"989 1680 CURVE SMOOTH" +); +} +); +width = 1978; +} +); +leftMetricsKey = O; +rightMetricsKey = O; +unicode = 03A9; +}, +{ +color = 5; +glyphname = mu; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"665 -320 LINE", +"665 -30 LINE", +"678 -31 OFFCURVE", +"695 -32 OFFCURVE", +"711 -32 CURVE SMOOTH", +"823 -32 OFFCURVE", +"933 26 OFFCURVE", +"1003 96 CURVE", +"1003 0 LINE", +"1419 0 LINE", +"1419 1024 LINE", +"1003 1024 LINE", +"1003 468 LINE SMOOTH", +"1003 376 OFFCURVE", +"921 290 OFFCURVE", +"819 290 CURVE SMOOTH", +"725 290 OFFCURVE", +"667 362 OFFCURVE", +"667 452 CURVE SMOOTH", +"667 1024 LINE", +"251 1024 LINE", +"251 412 LINE SMOOTH", +"251 66 OFFCURVE", +"185 -120 OFFCURVE", +"185 -320 CURVE" +); +} +); +width = 1616; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"513 -320 LINE", +"513 70 LINE", +"553 6 OFFCURVE", +"625 -32 OFFCURVE", +"737 -32 CURVE SMOOTH", +"850 -32 OFFCURVE", +"991 24 OFFCURVE", +"1051 132 CURVE", +"1051 0 LINE", +"1245 0 LINE", +"1245 1024 LINE", +"1051 1024 LINE", +"1051 378 LINE SMOOTH", +"1051 253 OFFCURVE", +"946 123 OFFCURVE", +"778 123 CURVE SMOOTH", +"600 123 OFFCURVE", +"513 237 OFFCURVE", +"513 421 CURVE SMOOTH", +"513 1024 LINE", +"319 1024 LINE", +"319 433 LINE SMOOTH", +"319 126 OFFCURVE", +"275 -24 OFFCURVE", +"275 -320 CURVE" +); +} +); +width = 1521; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"417 -320 LINE", +"417 132 LINE", +"475 30 OFFCURVE", +"581 -32 OFFCURVE", +"753 -32 CURVE SMOOTH", +"867 -32 OFFCURVE", +"1027 22 OFFCURVE", +"1081 154 CURVE", +"1081 0 LINE", +"1137 0 LINE", +"1137 1024 LINE", +"1081 1024 LINE", +"1081 322 LINE", +"1081 176 OFFCURVE", +"961 18 OFFCURVE", +"753 18 CURVE SMOOTH", +"521 18 OFFCURVE", +"417 158 OFFCURVE", +"417 402 CURVE", +"417 1024 LINE", +"361 1024 LINE", +"361 446 LINE", +"361 164 OFFCURVE", +"331 36 OFFCURVE", +"331 -320 CURVE" +); +} +); +width = 1461; +} +); +unicode = 03BC; +}, +{ +color = 5; +glyphname = pi; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"630 0 LINE", +"630 737 LINE", +"788 737 LINE", +"788 343 LINE SMOOTH", +"788 93 OFFCURVE", +"907 0 OFFCURVE", +"1225 0 CURVE", +"1225 314 LINE", +"1130 314 OFFCURVE", +"1102 338 OFFCURVE", +"1102 417 CURVE SMOOTH", +"1102 737 LINE", +"1261 737 LINE", +"1261 1024 LINE", +"157 1024 LINE", +"157 737 LINE", +"316 737 LINE", +"316 0 LINE" +); +} +); +width = 1397; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"530 0 LINE", +"530 879 LINE", +"802 879 LINE", +"802 223 LINE SMOOTH", +"802 61 OFFCURVE", +"871 0 OFFCURVE", +"1055 0 CURVE", +"1055 155 LINE", +"980 155 OFFCURVE", +"957 178 OFFCURVE", +"957 251 CURVE SMOOTH", +"957 879 LINE", +"1126 879 LINE", +"1126 1024 LINE", +"206 1024 LINE", +"206 879 LINE", +"374 879 LINE", +"374 0 LINE" +); +} +); +width = 1313; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"465 0 LINE", +"465 968 LINE", +"809 968 LINE", +"809 147 LINE SMOOTH", +"809 41 OFFCURVE", +"847 0 OFFCURVE", +"947 0 CURVE", +"947 56 LINE", +"885 56 OFFCURVE", +"865 78 OFFCURVE", +"865 147 CURVE SMOOTH", +"865 968 LINE", +"1039 968 LINE", +"1039 1024 LINE", +"235 1024 LINE", +"235 968 LINE", +"409 968 LINE", +"409 0 LINE" +); +} +); +width = 1256; +} +); +leftMetricsKey = n; +rightMetricsKey = n; +unicode = 03C0; +}, +{ +color = 5; +glyphname = zero; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1158 -32 OFFCURVE", +"1435 316 OFFCURVE", +"1435 824 CURVE SMOOTH", +"1435 1332 OFFCURVE", +"1158 1680 OFFCURVE", +"753 1680 CURVE SMOOTH", +"348 1680 OFFCURVE", +"71 1332 OFFCURVE", +"71 824 CURVE SMOOTH", +"71 316 OFFCURVE", +"348 -32 OFFCURVE", +"753 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"614 354 OFFCURVE", +"535 525 OFFCURVE", +"535 824 CURVE SMOOTH", +"535 1123 OFFCURVE", +"614 1294 OFFCURVE", +"753 1294 CURVE SMOOTH", +"892 1294 OFFCURVE", +"971 1123 OFFCURVE", +"971 824 CURVE SMOOTH", +"971 525 OFFCURVE", +"892 354 OFFCURVE", +"753 354 CURVE SMOOTH" +); +} +); +width = 1506; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1231 -32 OFFCURVE", +"1502 313 OFFCURVE", +"1502 824 CURVE SMOOTH", +"1502 1335 OFFCURVE", +"1231 1680 OFFCURVE", +"827 1680 CURVE SMOOTH", +"424 1680 OFFCURVE", +"153 1335 OFFCURVE", +"153 824 CURVE SMOOTH", +"153 313 OFFCURVE", +"424 -32 OFFCURVE", +"827 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"549 150 OFFCURVE", +"368 414 OFFCURVE", +"368 824 CURVE SMOOTH", +"368 1234 OFFCURVE", +"549 1498 OFFCURVE", +"827 1498 CURVE SMOOTH", +"1105 1498 OFFCURVE", +"1286 1234 OFFCURVE", +"1286 824 CURVE SMOOTH", +"1286 414 OFFCURVE", +"1105 150 OFFCURVE", +"827 150 CURVE SMOOTH" +); +} +); +width = 1655; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1276 -32 OFFCURVE", +"1544 311 OFFCURVE", +"1544 824 CURVE SMOOTH", +"1544 1337 OFFCURVE", +"1276 1680 OFFCURVE", +"874 1680 CURVE SMOOTH", +"472 1680 OFFCURVE", +"204 1337 OFFCURVE", +"204 824 CURVE SMOOTH", +"204 311 OFFCURVE", +"472 -32 OFFCURVE", +"874 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"509 22 OFFCURVE", +"264 344 OFFCURVE", +"264 824 CURVE SMOOTH", +"264 1304 OFFCURVE", +"509 1626 OFFCURVE", +"874 1626 CURVE SMOOTH", +"1239 1626 OFFCURVE", +"1484 1304 OFFCURVE", +"1484 824 CURVE SMOOTH", +"1484 344 OFFCURVE", +"1239 22 OFFCURVE", +"874 22 CURVE SMOOTH" +); +} +); +width = 1748; +} +); +rightKerningGroup = _A1; +unicode = 0030; +}, +{ +color = 5; +glyphname = one; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"686 0 LINE", +"686 1650 LINE", +"-10 1650 LINE", +"-10 1218 LINE", +"246 1218 LINE", +"246 0 LINE" +); +} +); +width = 874; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"476.729 0 LINE", +"476.729 1650 LINE", +"108.729 1650 LINE", +"108.729 1449 LINE", +"272.729 1449 LINE", +"272.729 0 LINE" +); +} +); +width = 722; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"345 0 LINE", +"345 1650 LINE", +"183 1650 LINE", +"183 1594 LINE", +"289 1594 LINE", +"289 0 LINE" +); +} +); +width = 627; +} +); +rightKerningGroup = _A1; +unicode = 0031; +}, +{ +color = 5; +glyphname = two; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1345 0 LINE", +"1345 386 LINE", +"805 386 LINE", +"1144 610 OFFCURVE", +"1315 855 OFFCURVE", +"1315 1120 CURVE SMOOTH", +"1315 1446 OFFCURVE", +"1057 1682 OFFCURVE", +"682 1682 CURVE SMOOTH", +"382 1682 OFFCURVE", +"176 1526 OFFCURVE", +"61 1219 CURVE", +"416 1066 LINE", +"470 1219 OFFCURVE", +"553 1294 OFFCURVE", +"654 1294 CURVE SMOOTH", +"764 1294 OFFCURVE", +"841 1206 OFFCURVE", +"841 1105 CURVE SMOOTH", +"841 923 OFFCURVE", +"594 658 OFFCURVE", +"25 230 CURVE", +"25 0 LINE" +); +} +); +width = 1448; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1304 0 LINE", +"1304 187 LINE", +"502 187 LINE", +"1097 645 OFFCURVE", +"1274 868 OFFCURVE", +"1274 1134 CURVE SMOOTH", +"1274 1447 OFFCURVE", +"1027 1681 OFFCURVE", +"705 1681 CURVE SMOOTH", +"410 1681 OFFCURVE", +"186 1476 OFFCURVE", +"140 1182 CURVE", +"315 1119 LINE", +"336 1336 OFFCURVE", +"497 1493 OFFCURVE", +"694 1493 CURVE SMOOTH", +"894 1493 OFFCURVE", +"1054 1331 OFFCURVE", +"1054 1130 CURVE SMOOTH", +"1054 903 OFFCURVE", +"839 670 OFFCURVE", +"107 100 CURVE", +"107 0 LINE" +); +} +); +width = 1452; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1279 0 LINE", +"1279 62 LINE", +"312 62 LINE", +"1068 667 OFFCURVE", +"1249 876 OFFCURVE", +"1249 1142 CURVE SMOOTH", +"1249 1447 OFFCURVE", +"1008 1680 OFFCURVE", +"719 1680 CURVE SMOOTH", +"428 1680 OFFCURVE", +"193 1444 OFFCURVE", +"189 1158 CURVE", +"251 1152 LINE", +"252 1409 OFFCURVE", +"462 1618 OFFCURVE", +"719 1618 CURVE SMOOTH", +"976 1618 OFFCURVE", +"1187 1410 OFFCURVE", +"1187 1145 CURVE SMOOTH", +"1187 891 OFFCURVE", +"993 678 OFFCURVE", +"159 18 CURVE", +"159 0 LINE" +); +} +); +width = 1454; +} +); +rightKerningGroup = _A1; +unicode = 0032; +}, +{ +color = 5; +glyphname = three; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1004 -32 OFFCURVE", +"1275 206 OFFCURVE", +"1275 530 CURVE SMOOTH", +"1275 685 OFFCURVE", +"1214 805 OFFCURVE", +"1087 898 CURVE", +"1164 978 OFFCURVE", +"1201 1070 OFFCURVE", +"1201 1186 CURVE SMOOTH", +"1201 1474 OFFCURVE", +"965 1680 OFFCURVE", +"635 1680 CURVE SMOOTH", +"371 1680 OFFCURVE", +"176 1547 OFFCURVE", +"97 1313 CURVE", +"411 1163 LINE", +"440 1264 OFFCURVE", +"526 1328 OFFCURVE", +"627 1328 CURVE SMOOTH", +"729 1328 OFFCURVE", +"803 1262 OFFCURVE", +"803 1178 CURVE SMOOTH", +"803 1092 OFFCURVE", +"729 1010 OFFCURVE", +"645 1010 CURVE SMOOTH", +"555 1010 LINE", +"555 726 LINE", +"577 735 OFFCURVE", +"606 740 OFFCURVE", +"634 740 CURVE SMOOTH", +"748 740 OFFCURVE", +"837 654 OFFCURVE", +"837 531 CURVE SMOOTH", +"837 416 OFFCURVE", +"758 344 OFFCURVE", +"636 344 CURVE SMOOTH", +"520 344 OFFCURVE", +"444 408 OFFCURVE", +"411 504 CURVE", +"37 383 LINE", +"104 127 OFFCURVE", +"337 -32 OFFCURVE", +"635 -32 CURVE SMOOTH" +); +} +); +width = 1355; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"972 -32 OFFCURVE", +"1180 174 OFFCURVE", +"1180 451 CURVE SMOOTH", +"1180 652 OFFCURVE", +"1068 801 OFFCURVE", +"914 860 CURVE", +"1053 925 OFFCURVE", +"1144 1066 OFFCURVE", +"1144 1228 CURVE SMOOTH", +"1144 1483 OFFCURVE", +"937 1680 OFFCURVE", +"663 1680 CURVE SMOOTH", +"423 1680 OFFCURVE", +"232 1523 OFFCURVE", +"195 1289 CURVE", +"351 1228 LINE", +"366 1388 OFFCURVE", +"499 1510 OFFCURVE", +"660 1510 CURVE SMOOTH", +"822 1510 OFFCURVE", +"954 1386 OFFCURVE", +"954 1224 CURVE SMOOTH", +"954 1061 OFFCURVE", +"819 920 OFFCURVE", +"646 920 CURVE SMOOTH", +"585 920 LINE", +"585 775 LINE", +"603 781 OFFCURVE", +"626 784 OFFCURVE", +"651 784 CURVE SMOOTH", +"828 784 OFFCURVE", +"972 637 OFFCURVE", +"972 449 CURVE SMOOTH", +"972 271 OFFCURVE", +"845 151 OFFCURVE", +"646 151 CURVE SMOOTH", +"449 151 OFFCURVE", +"308 267 OFFCURVE", +"294 441 CURVE", +"114 390 LINE", +"143 136 OFFCURVE", +"354 -32 OFFCURVE", +"646 -32 CURVE SMOOTH" +); +} +); +width = 1341; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"952 -32 OFFCURVE", +"1121 154 OFFCURVE", +"1121 402 CURVE SMOOTH", +"1121 632 OFFCURVE", +"976 798 OFFCURVE", +"805 836 CURVE", +"984 891 OFFCURVE", +"1109 1063 OFFCURVE", +"1109 1254 CURVE SMOOTH", +"1109 1489 OFFCURVE", +"919 1680 OFFCURVE", +"681 1680 CURVE SMOOTH", +"455 1680 OFFCURVE", +"267 1508 OFFCURVE", +"257 1274 CURVE", +"313 1268 LINE", +"319 1465 OFFCURVE", +"482 1624 OFFCURVE", +"681 1624 CURVE SMOOTH", +"880 1624 OFFCURVE", +"1049 1463 OFFCURVE", +"1049 1253 CURVE SMOOTH", +"1049 1041 OFFCURVE", +"876 864 OFFCURVE", +"647 864 CURVE SMOOTH", +"603 864 LINE", +"603 806 LINE", +"619 810 OFFCURVE", +"639 812 OFFCURVE", +"661 812 CURVE SMOOTH", +"878 812 OFFCURVE", +"1057 627 OFFCURVE", +"1057 397 CURVE SMOOTH", +"1057 180 OFFCURVE", +"899 30 OFFCURVE", +"652 30 CURVE SMOOTH", +"405 30 OFFCURVE", +"223 179 OFFCURVE", +"221 401 CURVE", +"163 395 LINE", +"167 141 OFFCURVE", +"365 -32 OFFCURVE", +"653 -32 CURVE SMOOTH" +); +} +); +width = 1333; +} +); +rightKerningGroup = _A1; +unicode = 0033; +}, +{ +color = 5; +glyphname = four; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1208 0 LINE", +"1208 292 LINE", +"1400 292 LINE", +"1400 678 LINE", +"1208 678 LINE", +"1208 1650 LINE", +"772 1650 LINE", +"-24 416 LINE", +"-24 292 LINE", +"796 292 LINE", +"796 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"796 1064 LINE", +"796 678 LINE", +"580 678 LINE" +); +} +); +width = 1463; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1065 0 LINE", +"1065 313 LINE", +"1257 313 LINE", +"1257 492 LINE", +"1065 492 LINE", +"1065 1650 LINE", +"862 1650 LINE", +"45 391 LINE", +"45 313 LINE", +"872 313 LINE", +"872 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"872 1371 LINE", +"872 492 LINE", +"317 492 LINE" +); +} +); +width = 1371; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"975 0 LINE", +"975 326 LINE", +"1167 326 LINE", +"1167 376 LINE", +"975 376 LINE", +"975 1650 LINE", +"919 1650 LINE", +"89 376 LINE", +"89 326 LINE", +"919 326 LINE", +"919 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"919 1564 LINE", +"919 376 LINE", +"152 376 LINE" +); +} +); +width = 1314; +} +); +rightKerningGroup = _A1; +unicode = 0034; +}, +{ +color = 5; +glyphname = five; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"285 1650 LINE", +"141 734 LINE", +"217 755 OFFCURVE", +"304 768 OFFCURVE", +"397 768 CURVE SMOOTH", +"648 768 OFFCURVE", +"791 680 OFFCURVE", +"791 526 CURVE SMOOTH", +"791 421 OFFCURVE", +"723 336 OFFCURVE", +"595 336 CURVE SMOOTH", +"482 336 OFFCURVE", +"392 403 OFFCURVE", +"371 496 CURVE", +"23 328 LINE", +"109 92 OFFCURVE", +"348 -32 OFFCURVE", +"608 -32 CURVE SMOOTH", +"969 -32 OFFCURVE", +"1233 204 OFFCURVE", +"1233 557 CURVE SMOOTH", +"1233 875 OFFCURVE", +"1016 1084 OFFCURVE", +"703 1084 CURVE SMOOTH", +"656 1084 OFFCURVE", +"608 1079 OFFCURVE", +"560 1068 CURVE", +"630 1046 LINE", +"663 1264 LINE", +"1127 1264 LINE", +"1127 1650 LINE" +); +} +); +width = 1315; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"335 1650 LINE", +"199 773 LINE", +"313 880 OFFCURVE", +"450 938 OFFCURVE", +"603 938 CURVE SMOOTH", +"882 938 OFFCURVE", +"1082 777 OFFCURVE", +"1082 517 CURVE SMOOTH", +"1082 288 OFFCURVE", +"926 139 OFFCURVE", +"688 139 CURVE SMOOTH", +"489 139 OFFCURVE", +"329 243 OFFCURVE", +"271 406 CURVE", +"109 327 LINE", +"193 101 OFFCURVE", +"423 -32 OFFCURVE", +"689 -32 CURVE SMOOTH", +"1014 -32 OFFCURVE", +"1283 164 OFFCURVE", +"1283 527 CURVE SMOOTH", +"1283 866 OFFCURVE", +"1048 1089 OFFCURVE", +"717 1089 CURVE SMOOTH", +"594 1089 OFFCURVE", +"487 1053 OFFCURVE", +"398 978 CURVE", +"430 970 LINE", +"508 1471 LINE", +"1177 1471 LINE", +"1177 1650 LINE" +); +} +); +width = 1427; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"367 1650 LINE", +"235 798 LINE", +"374 959 OFFCURVE", +"542 1044 OFFCURVE", +"732 1044 CURVE SMOOTH", +"1029 1044 OFFCURVE", +"1265 838 OFFCURVE", +"1265 512 CURVE SMOOTH", +"1265 204 OFFCURVE", +"1054 16 OFFCURVE", +"746 16 CURVE SMOOTH", +"494 16 OFFCURVE", +"289 142 OFFCURVE", +"209 350 CURVE", +"163 326 LINE", +"245 107 OFFCURVE", +"470 -32 OFFCURVE", +"739 -32 CURVE SMOOTH", +"1043 -32 OFFCURVE", +"1315 139 OFFCURVE", +"1315 508 CURVE SMOOTH", +"1315 860 OFFCURVE", +"1068 1092 OFFCURVE", +"725 1092 CURVE SMOOTH", +"555 1092 OFFCURVE", +"411 1036 OFFCURVE", +"296 922 CURVE", +"304 922 LINE", +"410 1600 LINE", +"1209 1600 LINE", +"1209 1650 LINE" +); +} +); +width = 1498; +} +); +rightKerningGroup = _A1; +unicode = 0035; +}, +{ +color = 5; +glyphname = six; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1093 -32 OFFCURVE", +"1340 197 OFFCURVE", +"1340 545 CURVE SMOOTH", +"1340 876 OFFCURVE", +"1129 1110 OFFCURVE", +"829 1110 CURVE SMOOTH", +"786 1110 OFFCURVE", +"751 1105 OFFCURVE", +"730 1096 CURVE", +"1198 1650 LINE", +"666 1650 LINE", +"334 1244 LINE SMOOTH", +"139 1006 OFFCURVE", +"40 779 OFFCURVE", +"40 571 CURVE SMOOTH", +"40 219 OFFCURVE", +"323 -32 OFFCURVE", +"719 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"581 332 OFFCURVE", +"498 415 OFFCURVE", +"498 531 CURVE SMOOTH", +"498 648 OFFCURVE", +"582 734 OFFCURVE", +"696 734 CURVE SMOOTH", +"811 734 OFFCURVE", +"898 647 OFFCURVE", +"898 531 CURVE SMOOTH", +"898 416 OFFCURVE", +"812 332 OFFCURVE", +"696 332 CURVE SMOOTH" +); +} +); +width = 1373; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1073 -32 OFFCURVE", +"1316 201 OFFCURVE", +"1316 534 CURVE SMOOTH", +"1316 866 OFFCURVE", +"1078 1101 OFFCURVE", +"782 1101 CURVE SMOOTH", +"708 1101 OFFCURVE", +"642 1084 OFFCURVE", +"581 1052 CURVE", +"1083 1650 LINE", +"835 1650 LINE", +"326 1040 LINE SMOOTH", +"200 889 OFFCURVE", +"125 705 OFFCURVE", +"125 534 CURVE SMOOTH", +"125 233 OFFCURVE", +"359 -32 OFFCURVE", +"728 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"486 140 OFFCURVE", +"334 314 OFFCURVE", +"334 524 CURVE SMOOTH", +"334 749 OFFCURVE", +"510 925 OFFCURVE", +"729 925 CURVE SMOOTH", +"943 925 OFFCURVE", +"1114 757 OFFCURVE", +"1114 529 CURVE SMOOTH", +"1114 304 OFFCURVE", +"947 140 OFFCURVE", +"720 140 CURVE SMOOTH" +); +} +); +width = 1439; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1061 -32 OFFCURVE", +"1301 203 OFFCURVE", +"1301 527 CURVE SMOOTH", +"1301 860 OFFCURVE", +"1046 1096 OFFCURVE", +"753 1096 CURVE SMOOTH", +"659 1096 OFFCURVE", +"573 1071 OFFCURVE", +"487 1024 CURVE", +"1011 1650 LINE", +"941 1650 LINE", +"321 912 LINE SMOOTH", +"239 815 OFFCURVE", +"179 658 OFFCURVE", +"179 511 CURVE SMOOTH", +"179 241 OFFCURVE", +"382 -32 OFFCURVE", +"734 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"427 20 OFFCURVE", +"231 251 OFFCURVE", +"231 520 CURVE SMOOTH", +"231 813 OFFCURVE", +"465 1044 OFFCURVE", +"749 1044 CURVE SMOOTH", +"1025 1044 OFFCURVE", +"1249 826 OFFCURVE", +"1249 528 CURVE SMOOTH", +"1249 234 OFFCURVE", +"1031 20 OFFCURVE", +"735 20 CURVE SMOOTH" +); +} +); +width = 1480; +} +); +rightKerningGroup = _A1; +unicode = 0036; +}, +{ +color = 5; +glyphname = seven; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1264, 386}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"526 0 LINE", +"1398 1524 LINE", +"1398 1650 LINE", +"66 1650 LINE", +"66 1264 LINE", +"746 1264 LINE", +"6 0 LINE" +); +} +); +width = 1352; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1471, 179}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"337 0 LINE", +"1209 1585 LINE", +"1209 1650 LINE", +"119 1650 LINE", +"119 1471 LINE", +"909 1471 LINE", +"96 0 LINE" +); +} +); +width = 1280; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1600, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"219 0 LINE", +"1091 1624 LINE", +"1091 1650 LINE", +"153 1650 LINE", +"153 1600 LINE", +"1011 1600 LINE", +"153 0 LINE" +); +} +); +width = 1235; +} +); +rightKerningGroup = _A1; +unicode = 0037; +}, +{ +color = 5; +glyphname = eight; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 380}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{688, 364}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1348, 332}"; +type = Stem; +}, +{ +place = "{146, 424}"; +type = Stem; +}, +{ +place = "{866, 424}"; +type = Stem; +}, +{ +place = "{74, 482}"; +type = Stem; +}, +{ +place = "{880, 482}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1073 -32 OFFCURVE", +"1362 173 OFFCURVE", +"1362 466 CURVE SMOOTH", +"1362 651 OFFCURVE", +"1249 816 OFFCURVE", +"1080 894 CURVE", +"1207 968 OFFCURVE", +"1290 1102 OFFCURVE", +"1290 1248 CURVE SMOOTH", +"1290 1537 OFFCURVE", +"974 1680 OFFCURVE", +"717 1680 CURVE SMOOTH", +"408 1680 OFFCURVE", +"146 1499 OFFCURVE", +"146 1246 CURVE SMOOTH", +"146 1108 OFFCURVE", +"223 972 OFFCURVE", +"356 894 CURVE", +"191 818 OFFCURVE", +"74 654 OFFCURVE", +"74 467 CURVE SMOOTH", +"74 172 OFFCURVE", +"363 -32 OFFCURVE", +"718 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"619 348 OFFCURVE", +"556 419 OFFCURVE", +"556 517 CURVE SMOOTH", +"556 619 OFFCURVE", +"625 688 OFFCURVE", +"718 688 CURVE SMOOTH", +"813 688 OFFCURVE", +"880 617 OFFCURVE", +"880 517 CURVE SMOOTH", +"880 420 OFFCURVE", +"818 348 OFFCURVE", +"718 348 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"633 1052 OFFCURVE", +"570 1115 OFFCURVE", +"570 1200 CURVE SMOOTH", +"570 1284 OFFCURVE", +"634 1348 OFFCURVE", +"718 1348 CURVE SMOOTH", +"802 1348 OFFCURVE", +"866 1284 OFFCURVE", +"866 1200 CURVE SMOOTH", +"866 1115 OFFCURVE", +"803 1052 OFFCURVE", +"718 1052 CURVE SMOOTH" +); +} +); +width = 1437; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 178}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{783, 175}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1522, 158}"; +type = Stem; +}, +{ +place = "{212, 198}"; +type = Stem; +}, +{ +place = "{977, 197}"; +type = Stem; +}, +{ +place = "{148, 221}"; +type = Stem; +}, +{ +place = "{1018, 221}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1004 -32 OFFCURVE", +"1239 172 OFFCURVE", +"1239 444 CURVE SMOOTH", +"1239 641 OFFCURVE", +"1119 808 OFFCURVE", +"934 880 CURVE", +"1080 950 OFFCURVE", +"1174 1093 OFFCURVE", +"1174 1257 CURVE SMOOTH", +"1174 1512 OFFCURVE", +"943 1680 OFFCURVE", +"693 1680 CURVE SMOOTH", +"423 1680 OFFCURVE", +"212 1497 OFFCURVE", +"212 1256 CURVE SMOOTH", +"212 1096 OFFCURVE", +"304 951 OFFCURVE", +"453 880 CURVE", +"269 809 OFFCURVE", +"148 642 OFFCURVE", +"148 445 CURVE SMOOTH", +"148 171 OFFCURVE", +"383 -32 OFFCURVE", +"693 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"502 146 OFFCURVE", +"369 283 OFFCURVE", +"369 464 CURVE SMOOTH", +"369 650 OFFCURVE", +"509 783 OFFCURVE", +"693 783 CURVE SMOOTH", +"880 783 OFFCURVE", +"1018 648 OFFCURVE", +"1018 464 CURVE SMOOTH", +"1018 283 OFFCURVE", +"885 146 OFFCURVE", +"693 146 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"530 958 OFFCURVE", +"410 1078 OFFCURVE", +"410 1239 CURVE SMOOTH", +"410 1400 OFFCURVE", +"531 1522 OFFCURVE", +"693 1522 CURVE SMOOTH", +"855 1522 OFFCURVE", +"977 1400 OFFCURVE", +"977 1239 CURVE SMOOTH", +"977 1078 OFFCURVE", +"856 958 OFFCURVE", +"693 958 CURVE SMOOTH" +); +} +); +width = 1387; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-32, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{842, 57}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1631, 49}"; +type = Stem; +}, +{ +place = "{254, 55}"; +type = Stem; +}, +{ +place = "{1047, 55}"; +type = Stem; +}, +{ +place = "{194, 58}"; +type = Stem; +}, +{ +place = "{1104, 58}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"961 -32 OFFCURVE", +"1162 171 OFFCURVE", +"1162 431 CURVE SMOOTH", +"1162 634 OFFCURVE", +"1038 803 OFFCURVE", +"842 872 CURVE", +"1001 938 OFFCURVE", +"1102 1088 OFFCURVE", +"1102 1263 CURVE SMOOTH", +"1102 1496 OFFCURVE", +"924 1680 OFFCURVE", +"678 1680 CURVE SMOOTH", +"432 1680 OFFCURVE", +"254 1496 OFFCURVE", +"254 1263 CURVE SMOOTH", +"254 1088 OFFCURVE", +"355 938 OFFCURVE", +"514 872 CURVE", +"318 803 OFFCURVE", +"194 634 OFFCURVE", +"194 431 CURVE SMOOTH", +"194 171 OFFCURVE", +"395 -32 OFFCURVE", +"678 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"429 20 OFFCURVE", +"252 197 OFFCURVE", +"252 431 CURVE SMOOTH", +"252 670 OFFCURVE", +"437 842 OFFCURVE", +"678 842 CURVE SMOOTH", +"922 842 OFFCURVE", +"1104 667 OFFCURVE", +"1104 430 CURVE SMOOTH", +"1104 197 OFFCURVE", +"927 20 OFFCURVE", +"678 20 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"466 899 OFFCURVE", +"309 1054 OFFCURVE", +"309 1264 CURVE SMOOTH", +"309 1473 OFFCURVE", +"467 1631 OFFCURVE", +"678 1631 CURVE SMOOTH", +"889 1631 OFFCURVE", +"1047 1473 OFFCURVE", +"1047 1264 CURVE SMOOTH", +"1047 1054 OFFCURVE", +"890 899 OFFCURVE", +"678 899 CURVE SMOOTH" +); +} +); +width = 1356; +} +); +rightKerningGroup = _A1; +unicode = 0038; +}, +{ +color = 5; +glyphname = nine; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{29, 442}"; +type = Stem; +}, +{ +place = "{871, 458}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{538, 376}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1316, 364}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"703 0 LINE", +"1035 406 LINE SMOOTH", +"1230 644 OFFCURVE", +"1329 869 OFFCURVE", +"1329 1077 CURVE SMOOTH", +"1329 1408 OFFCURVE", +"1065 1680 OFFCURVE", +"651 1680 CURVE SMOOTH", +"248 1680 OFFCURVE", +"29 1422 OFFCURVE", +"29 1109 CURVE SMOOTH", +"29 767 OFFCURVE", +"292 538 OFFCURVE", +"545 538 CURVE SMOOTH", +"582 538 OFFCURVE", +"618 543 OFFCURVE", +"639 552 CURVE", +"171 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"558 914 OFFCURVE", +"471 1001 OFFCURVE", +"471 1117 CURVE SMOOTH", +"471 1232 OFFCURVE", +"557 1316 OFFCURVE", +"673 1316 CURVE SMOOTH", +"788 1316 OFFCURVE", +"871 1233 OFFCURVE", +"871 1117 CURVE SMOOTH", +"871 1000 OFFCURVE", +"787 914 OFFCURVE", +"673 914 CURVE SMOOTH" +); +} +); +width = 1373; +}, +{ +hints = ( +{ +place = "{121, 206}"; +type = Stem; +}, +{ +place = "{1100, 212}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{548, 180}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1505, 175}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"602 0 LINE", +"1111 610 LINE", +"1242 768 OFFCURVE", +"1312 941 OFFCURVE", +"1312 1105 CURVE SMOOTH", +"1312 1431 OFFCURVE", +"1066 1680 OFFCURVE", +"708 1680 CURVE SMOOTH", +"353 1680 OFFCURVE", +"121 1436 OFFCURVE", +"121 1118 CURVE SMOOTH", +"121 787 OFFCURVE", +"373 548 OFFCURVE", +"667 548 CURVE SMOOTH", +"740 548 OFFCURVE", +"811 569 OFFCURVE", +"866 607 CURVE", +"354 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"495 728 OFFCURVE", +"327 897 OFFCURVE", +"327 1121 CURVE SMOOTH", +"327 1342 OFFCURVE", +"492 1505 OFFCURVE", +"717 1505 CURVE SMOOTH", +"939 1505 OFFCURVE", +"1100 1344 OFFCURVE", +"1100 1121 CURVE SMOOTH", +"1100 904 OFFCURVE", +"928 728 OFFCURVE", +"717 728 CURVE SMOOTH" +); +} +); +width = 1439; +}, +{ +hints = ( +{ +place = "{179, 57}"; +type = Stem; +}, +{ +place = "{1244, 57}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{554, 57}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1623, 57}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"539 0 LINE", +"1159 738 LINE SMOOTH", +"1249 846 OFFCURVE", +"1301 986 OFFCURVE", +"1301 1123 CURVE SMOOTH", +"1301 1446 OFFCURVE", +"1067 1680 OFFCURVE", +"744 1680 CURVE SMOOTH", +"419 1680 OFFCURVE", +"179 1444 OFFCURVE", +"179 1123 CURVE SMOOTH", +"179 800 OFFCURVE", +"423 554 OFFCURVE", +"744 554 CURVE SMOOTH", +"839 554 OFFCURVE", +"932 585 OFFCURVE", +"1008 642 CURVE", +"469 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"455 611 OFFCURVE", +"236 832 OFFCURVE", +"236 1123 CURVE SMOOTH", +"236 1411 OFFCURVE", +"452 1623 OFFCURVE", +"744 1623 CURVE SMOOTH", +"1034 1623 OFFCURVE", +"1244 1413 OFFCURVE", +"1244 1123 CURVE SMOOTH", +"1244 844 OFFCURVE", +"1017 611 OFFCURVE", +"744 611 CURVE SMOOTH" +); +} +); +width = 1480; +} +); +rightKerningGroup = _A1; +unicode = 0039; +}, +{ +color = 5; +glyphname = zero.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = zero; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 979; +}, +{ +components = ( +{ +alignment = -1; +name = zero; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1076; +}, +{ +components = ( +{ +alignment = -1; +name = zero; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1136; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = one.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = one; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 568; +}, +{ +components = ( +{ +alignment = -1; +name = one; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 469; +}, +{ +components = ( +{ +alignment = -1; +name = one; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 408; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = two.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = two; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 941; +}, +{ +components = ( +{ +alignment = -1; +name = two; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 944; +}, +{ +components = ( +{ +alignment = -1; +name = two; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 945; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = three.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = three; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 881; +}, +{ +components = ( +{ +alignment = -1; +name = three; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 872; +}, +{ +components = ( +{ +alignment = -1; +name = three; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 866; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = four.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = four; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 951; +}, +{ +components = ( +{ +alignment = -1; +name = four; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 891; +}, +{ +components = ( +{ +alignment = -1; +name = four; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 854; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = five.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = five; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 855; +}, +{ +components = ( +{ +alignment = -1; +name = five; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 928; +}, +{ +components = ( +{ +alignment = -1; +name = five; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 974; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = six.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = six; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 892; +}, +{ +components = ( +{ +alignment = -1; +name = six; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 935; +}, +{ +components = ( +{ +alignment = -1; +name = six; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 962; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = seven.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = seven; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +leftMetricsKey = "=seven*.65+50"; +width = 879; +}, +{ +components = ( +{ +alignment = -1; +name = seven; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +leftMetricsKey = "=seven*.65"; +width = 832; +}, +{ +components = ( +{ +alignment = -1; +name = seven; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 803; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = eight.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = eight; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 934; +}, +{ +components = ( +{ +alignment = -1; +name = eight; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 902; +}, +{ +components = ( +{ +alignment = -1; +name = eight; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 881; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = nine.dnom; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = nine; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 892; +}, +{ +components = ( +{ +alignment = -1; +name = nine; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 935; +}, +{ +components = ( +{ +alignment = -1; +name = nine; +transform = "{0.65, 0, 0, 0.65, 0, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 962; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = zero.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = zero.dnom; +transform = "{1, 0, 0, 1, 0, 578}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 979; +}, +{ +components = ( +{ +alignment = -1; +name = zero.dnom; +transform = "{1, 0, 0, 1, 0, 578}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1076; +}, +{ +components = ( +{ +alignment = -1; +name = zero.dnom; +transform = "{1, 0, 0, 1, 0, 578}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1136; +} +); +leftMetricsKey = zero.dnom; +rightKerningGroup = _A1; +rightMetricsKey = zero.dnom; +}, +{ +color = 5; +glyphname = one.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = one; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 568; +}, +{ +components = ( +{ +alignment = -1; +name = one; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 469; +}, +{ +components = ( +{ +alignment = -1; +name = one; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 408; +} +); +leftMetricsKey = one.dnom; +rightKerningGroup = _A1; +rightMetricsKey = one.dnom; +}, +{ +color = 5; +glyphname = two.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = two; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 941; +}, +{ +components = ( +{ +alignment = -1; +name = two; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 944; +}, +{ +components = ( +{ +alignment = -1; +name = two; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 945; +} +); +leftMetricsKey = two.dnom; +rightKerningGroup = _A1; +rightMetricsKey = two.dnom; +}, +{ +color = 5; +glyphname = three.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = three; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 881; +}, +{ +components = ( +{ +alignment = -1; +name = three; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 872; +}, +{ +components = ( +{ +alignment = -1; +name = three; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 866; +} +); +leftMetricsKey = three.dnom; +rightKerningGroup = _A1; +rightMetricsKey = three.dnom; +}, +{ +color = 5; +glyphname = four.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = four; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 951; +}, +{ +components = ( +{ +alignment = -1; +name = four; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 891; +}, +{ +components = ( +{ +alignment = -1; +name = four; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 854; +} +); +leftMetricsKey = four.dnom; +rightKerningGroup = _A1; +rightMetricsKey = four.dnom; +}, +{ +color = 5; +glyphname = five.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = five; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 855; +}, +{ +components = ( +{ +alignment = -1; +name = five; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 928; +}, +{ +components = ( +{ +alignment = -1; +name = five; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 974; +} +); +leftMetricsKey = five.dnom; +rightKerningGroup = _A1; +rightMetricsKey = five.dnom; +}, +{ +color = 5; +glyphname = six.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = six; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 892; +}, +{ +components = ( +{ +alignment = -1; +name = six; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 935; +}, +{ +components = ( +{ +alignment = -1; +name = six; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 962; +} +); +leftMetricsKey = six.dnom; +rightKerningGroup = _A1; +rightMetricsKey = six.dnom; +}, +{ +color = 5; +glyphname = seven.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = seven; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 879; +}, +{ +components = ( +{ +alignment = -1; +name = seven; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 832; +}, +{ +components = ( +{ +alignment = -1; +name = seven; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 803; +} +); +leftMetricsKey = seven.dnom; +rightKerningGroup = _A1; +rightMetricsKey = seven.dnom; +}, +{ +color = 5; +glyphname = eight.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = eight; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 934; +}, +{ +components = ( +{ +alignment = -1; +name = eight; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 902; +}, +{ +components = ( +{ +alignment = -1; +name = eight; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 881; +} +); +leftMetricsKey = eight.dnom; +rightKerningGroup = _A1; +rightMetricsKey = eight.dnom; +}, +{ +color = 5; +glyphname = nine.numr; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = nine; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1373; +}, +{ +components = ( +{ +alignment = -1; +name = nine; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1439; +}, +{ +components = ( +{ +alignment = -1; +name = nine; +transform = "{0.65, 0, 0, 0.65, 0, 577}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1480; +} +); +rightKerningGroup = _A1; +}, +{ +color = 5; +glyphname = onesuperior; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"345 1026 LINE", +"345 1650 LINE", +"36 1650 LINE", +"36 1469 LINE", +"161 1469 LINE", +"161 1026 LINE" +); +} +); +width = 458; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"270 1026 LINE", +"270 1650 LINE", +"95 1650 LINE", +"95 1554 LINE", +"175 1554 LINE", +"175 1026 LINE" +); +} +); +width = 421; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"223 1026 LINE", +"223 1650 LINE", +"132 1650 LINE", +"132 1608 LINE", +"183 1608 LINE", +"183 1026 LINE" +); +} +); +width = 398; +} +); +rightKerningGroup = _A1; +unicode = 00B9; +}, +{ +color = 5; +glyphname = twosuperior; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"571 1026 LINE", +"571 1192 LINE", +"383 1192 LINE", +"499 1267 OFFCURVE", +"559 1360 OFFCURVE", +"559 1458 CURVE SMOOTH", +"559 1586 OFFCURVE", +"458 1682 OFFCURVE", +"305 1682 CURVE SMOOTH", +"185 1682 OFFCURVE", +"103 1623 OFFCURVE", +"46 1501 CURVE", +"202 1420 LINE", +"243 1498 OFFCURVE", +"268 1524 OFFCURVE", +"303 1524 CURVE SMOOTH", +"335 1524 OFFCURVE", +"356 1502 OFFCURVE", +"356 1467 CURVE SMOOTH", +"356 1391 OFFCURVE", +"253 1277 OFFCURVE", +"47 1125 CURVE", +"47 1026 LINE" +); +} +); +width = 658; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"553 1026 LINE", +"553 1113 LINE", +"255 1113 LINE", +"471 1271 OFFCURVE", +"541 1361 OFFCURVE", +"541 1467 CURVE SMOOTH", +"541 1594 OFFCURVE", +"443 1681 OFFCURVE", +"314 1681 CURVE SMOOTH", +"196 1681 OFFCURVE", +"107 1604 OFFCURVE", +"82 1486 CURVE", +"167 1449 LINE", +"185 1537 OFFCURVE", +"241 1595 OFFCURVE", +"314 1595 CURVE SMOOTH", +"382 1595 OFFCURVE", +"434 1546 OFFCURVE", +"434 1474 CURVE SMOOTH", +"434 1376 OFFCURVE", +"332 1262 OFFCURVE", +"78 1081 CURVE", +"78 1026 LINE" +); +} +); +width = 660; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"541 1026 LINE", +"541 1064 LINE", +"175 1064 LINE", +"454 1274 OFFCURVE", +"529 1361 OFFCURVE", +"529 1473 CURVE SMOOTH", +"529 1599 OFFCURVE", +"433 1680 OFFCURVE", +"320 1680 CURVE SMOOTH", +"203 1680 OFFCURVE", +"109 1592 OFFCURVE", +"105 1477 CURVE", +"145 1467 LINE", +"148 1562 OFFCURVE", +"224 1640 OFFCURVE", +"321 1640 CURVE SMOOTH", +"412 1640 OFFCURVE", +"483 1573 OFFCURVE", +"483 1479 CURVE SMOOTH", +"483 1366 OFFCURVE", +"381 1253 OFFCURVE", +"97 1054 CURVE", +"97 1026 LINE" +); +} +); +width = 661; +} +); +rightKerningGroup = _A1; +unicode = 00B2; +}, +{ +color = 5; +glyphname = threesuperior; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"438 1026 OFFCURVE", +"556 1086 OFFCURVE", +"556 1224 CURVE SMOOTH", +"556 1293 OFFCURVE", +"527 1348 OFFCURVE", +"470 1385 CURVE", +"508 1431 OFFCURVE", +"525 1480 OFFCURVE", +"525 1526 CURVE SMOOTH", +"525 1633 OFFCURVE", +"433 1680 OFFCURVE", +"299 1680 CURVE SMOOTH", +"167 1680 OFFCURVE", +"100 1634 OFFCURVE", +"58 1549 CURVE", +"204 1475 LINE", +"214 1509 OFFCURVE", +"245 1533 OFFCURVE", +"281 1533 CURVE SMOOTH", +"313 1533 OFFCURVE", +"338 1514 OFFCURVE", +"338 1489 CURVE SMOOTH", +"338 1458 OFFCURVE", +"301 1431 OFFCURVE", +"269 1431 CURVE SMOOTH", +"233 1431 LINE", +"233 1312 LINE", +"244 1316 OFFCURVE", +"252 1317 OFFCURVE", +"262 1317 CURVE SMOOTH", +"315 1317 OFFCURVE", +"353 1288 OFFCURVE", +"353 1242 CURVE SMOOTH", +"353 1204 OFFCURVE", +"326 1184 OFFCURVE", +"288 1184 CURVE SMOOTH", +"240 1184 OFFCURVE", +"208 1215 OFFCURVE", +"201 1264 CURVE", +"29 1176 LINE", +"78 1077 OFFCURVE", +"168 1026 OFFCURVE", +"298 1026 CURVE SMOOTH" +); +} +); +width = 611; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"428 1026 OFFCURVE", +"515 1096 OFFCURVE", +"515 1209 CURVE SMOOTH", +"515 1282 OFFCURVE", +"477 1344 OFFCURVE", +"412 1370 CURVE", +"464 1402 OFFCURVE", +"498 1458 OFFCURVE", +"498 1518 CURVE SMOOTH", +"498 1614 OFFCURVE", +"418 1680 OFFCURVE", +"305 1680 CURVE SMOOTH", +"197 1680 OFFCURVE", +"126 1620 OFFCURVE", +"108 1532 CURVE", +"187 1498 LINE", +"192 1557 OFFCURVE", +"241 1600 OFFCURVE", +"299 1600 CURVE SMOOTH", +"355 1600 OFFCURVE", +"400 1558 OFFCURVE", +"400 1503 CURVE SMOOTH", +"400 1445 OFFCURVE", +"348 1397 OFFCURVE", +"288 1397 CURVE SMOOTH", +"262 1397 LINE", +"262 1330 LINE", +"269 1333 OFFCURVE", +"278 1334 OFFCURVE", +"287 1334 CURVE SMOOTH", +"354 1334 OFFCURVE", +"410 1283 OFFCURVE", +"410 1214 CURVE SMOOTH", +"410 1155 OFFCURVE", +"368 1112 OFFCURVE", +"295 1112 CURVE SMOOTH", +"219 1112 OFFCURVE", +"170 1159 OFFCURVE", +"167 1225 CURVE", +"76 1185 LINE", +"97 1092 OFFCURVE", +"175 1026 OFFCURVE", +"300 1026 CURVE SMOOTH" +); +} +); +width = 627; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"422 1026 OFFCURVE", +"489 1102 OFFCURVE", +"489 1200 CURVE SMOOTH", +"489 1275 OFFCURVE", +"445 1341 OFFCURVE", +"375 1361 CURVE", +"437 1383 OFFCURVE", +"481 1445 OFFCURVE", +"481 1513 CURVE SMOOTH", +"481 1602 OFFCURVE", +"408 1680 OFFCURVE", +"309 1680 CURVE SMOOTH", +"215 1680 OFFCURVE", +"143 1611 OFFCURVE", +"140 1522 CURVE", +"177 1513 LINE", +"179 1587 OFFCURVE", +"238 1642 OFFCURVE", +"310 1642 CURVE SMOOTH", +"381 1642 OFFCURVE", +"439 1586 OFFCURVE", +"439 1512 CURVE SMOOTH", +"439 1437 OFFCURVE", +"378 1376 OFFCURVE", +"300 1376 CURVE SMOOTH", +"280 1376 LINE", +"280 1342 LINE", +"284 1343 OFFCURVE", +"294 1344 OFFCURVE", +"303 1344 CURVE SMOOTH", +"378 1344 OFFCURVE", +"445 1280 OFFCURVE", +"445 1197 CURVE SMOOTH", +"445 1125 OFFCURVE", +"395 1067 OFFCURVE", +"300 1067 CURVE SMOOTH", +"206 1067 OFFCURVE", +"146 1124 OFFCURVE", +"146 1201 CURVE", +"105 1190 LINE", +"109 1101 OFFCURVE", +"180 1026 OFFCURVE", +"301 1026 CURVE SMOOTH" +); +} +); +width = 637; +} +); +rightKerningGroup = _A1; +unicode = 00B3; +}, +{ +color = 5; +glyphname = foursuperior; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"544 1040 LINE", +"544 1145 LINE", +"623 1145 LINE", +"623 1315 LINE", +"544 1315 LINE", +"544 1650 LINE", +"351 1650 LINE", +"25 1197 LINE", +"25 1145 LINE", +"362 1145 LINE", +"362 1040 LINE" +); +}, +{ +closed = 1; +nodes = ( +"362 1423 LINE", +"362 1315 LINE", +"292 1315 LINE" +); +} +); +width = 648; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"454 1040 LINE", +"454 1151 LINE", +"533 1151 LINE", +"533 1236 LINE", +"454 1236 LINE", +"454 1650 LINE", +"361 1650 LINE", +"25 1187 LINE", +"25 1151 LINE", +"363 1151 LINE", +"363 1040 LINE" +); +}, +{ +closed = 1; +nodes = ( +"363 1528 LINE", +"363 1236 LINE", +"156 1236 LINE" +); +} +); +width = 558; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"398 1040 LINE", +"398 1155 LINE", +"477 1155 LINE", +"477 1186 LINE", +"398 1186 LINE", +"398 1650 LINE", +"367 1650 LINE", +"25 1180 LINE", +"25 1155 LINE", +"364 1155 LINE", +"364 1040 LINE" +); +}, +{ +closed = 1; +nodes = ( +"364 1594 LINE", +"364 1186 LINE", +"71 1186 LINE" +); +} +); +width = 502; +} +); +unicode = 2074; +}, +{ +color = 5; +glyphname = fraction; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"-226 0 LINE", +"734 1650 LINE", +"460 1650 LINE", +"-500 0 LINE" +); +} +); +width = 234; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"-428 0 LINE", +"655 1650 LINE", +"523 1650 LINE", +"-560 0 LINE" +); +} +); +width = 95; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"-554 0 LINE", +"606 1650 LINE", +"562 1650 LINE", +"-598 0 LINE" +); +} +); +width = 8; +} +); +rightKerningGroup = _A1; +unicode = 2044; +}, +{ +color = 5; +glyphname = onefraction; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1553; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 670.08, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1484; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +transform = "{1, 0, 0, 1, 64.05, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 717, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1507; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = one.dnom; +unicode = 215F; +}, +{ +color = 5; +glyphname = onehalf; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = two.dnom; +transform = "{1, 0, 0, 1, 1170.25, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2111; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = two.dnom; +transform = "{1, 0, 0, 1, 968.103, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 670.08, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1912; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +transform = "{1, 0, 0, 1, 64.05, 0}"; +}, +{ +alignment = -1; +name = two.dnom; +transform = "{1, 0, 0, 1, 905.65, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 717, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1851; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = two.dnom; +unicode = 00BD; +}, +{ +color = 5; +glyphname = zerothird; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = zero.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 997.3, 0}"; +}, +{ +alignment = -1; +name = three.dnom; +transform = "{1, 0, 0, 1, 1377.25, -1}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2258; +}, +{ +components = ( +{ +alignment = -1; +name = zero.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1051.14, 0}"; +}, +{ +alignment = -1; +name = three.dnom; +transform = "{1, 0, 0, 1, 1367.696, -0.385}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2240; +}, +{ +components = ( +{ +alignment = -1; +name = zero.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1085.2, 0}"; +}, +{ +alignment = -1; +name = three.dnom; +transform = "{1, 0, 0, 1, 1362.25, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2228; +} +); +leftMetricsKey = zero.numr; +rightMetricsKey = three.dnom; +unicode = 2189; +}, +{ +color = 5; +glyphname = onethird; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +}, +{ +alignment = -1; +name = three.dnom; +transform = "{1, 0, 0, 1, 1077.45, -1}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1958; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 670.08, 0}"; +}, +{ +alignment = -1; +name = three.dnom; +transform = "{1, 0, 0, 1, 933.168, -0.385}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1805; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +transform = "{1, 0, 0, 1, 64.05, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 717, 0}"; +}, +{ +alignment = -1; +name = three.dnom; +transform = "{1, 0, 0, 1, 907.05, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1773; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = three.dnom; +unicode = 2153; +}, +{ +color = 5; +glyphname = twothirds; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = two.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1091.25, 0}"; +}, +{ +alignment = -1; +name = three.dnom; +transform = "{1, 0, 0, 1, 1471.2, -1}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2352; +}, +{ +components = ( +{ +alignment = -1; +name = two.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1117.248, 0}"; +}, +{ +alignment = -1; +name = three.dnom; +transform = "{1, 0, 0, 1, 1355.138, -0.385}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2227; +}, +{ +components = ( +{ +alignment = -1; +name = two.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1133.35, 0}"; +}, +{ +alignment = -1; +name = three.dnom; +transform = "{1, 0, 0, 1, 1282.4, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2148; +} +); +leftMetricsKey = two.numr; +rightMetricsKey = three.dnom; +unicode = 2154; +}, +{ +color = 5; +glyphname = onequarter; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = four.dnom; +transform = "{1, 0, 0, 1, 861.1, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1812; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = four.dnom; +transform = "{1, 0, 0, 1, 746.591, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 670.08, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1638; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +transform = "{1, 0, 0, 1, 64.05, 0}"; +}, +{ +alignment = -1; +name = four.dnom; +transform = "{1, 0, 0, 1, 739.15, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 717, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1593; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = four.dnom; +unicode = 00BC; +}, +{ +color = 5; +glyphname = threequarters; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = three.numr; +transform = "{1, 0, 0, 1, 0, 1}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 978.05, 0}"; +}, +{ +alignment = -1; +name = four.dnom; +transform = "{1, 0, 0, 1, 1141.65, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2093; +}, +{ +components = ( +{ +alignment = -1; +name = three.numr; +transform = "{1, 0, 0, 1, 0, 0.385}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 993.506, 0}"; +}, +{ +alignment = -1; +name = four.dnom; +transform = "{1, 0, 0, 1, 1070.017, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1961; +}, +{ +components = ( +{ +alignment = -1; +name = three.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1002.95, 0}"; +}, +{ +alignment = -1; +name = four.dnom; +transform = "{1, 0, 0, 1, 1025.1, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1879; +} +); +leftMetricsKey = three.numr; +rightMetricsKey = four.dnom; +unicode = 00BE; +}, +{ +color = 5; +glyphname = onefifth; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1019.55, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1875; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 929.428, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 670.08, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1857; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +transform = "{1, 0, 0, 1, 64.05, 0}"; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 937.05, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 717, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1911; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = five.dnom; +unicode = 2155; +}, +{ +color = 5; +glyphname = twofifths; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = two.numr; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1413.3, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1091.25, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2269; +}, +{ +components = ( +{ +alignment = -1; +name = two.numr; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1376.596, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1117.248, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2305; +}, +{ +components = ( +{ +alignment = -1; +name = two.numr; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1353.4, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1133.35, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2327; +} +); +leftMetricsKey = two.numr; +rightMetricsKey = five.dnom; +unicode = 2156; +}, +{ +color = 5; +glyphname = threefifths; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = three.numr; +transform = "{1, 0, 0, 1, 0, 1}"; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1300.1, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 978.05, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2156; +}, +{ +components = ( +{ +alignment = -1; +name = three.numr; +transform = "{1, 0, 0, 1, 0, 0.385}"; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1252.854, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 993.506, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2181; +}, +{ +components = ( +{ +alignment = -1; +name = three.numr; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1223, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1002.95, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2197; +} +); +leftMetricsKey = three.numr; +rightMetricsKey = five.dnom; +unicode = 2157; +}, +{ +color = 5; +glyphname = fourfifths; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = four.numr; +transform = "{1, 0, 0, 1, 0, 6}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1094.4, 0}"; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1416.45, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2272; +}, +{ +components = ( +{ +alignment = -1; +name = four.numr; +transform = "{1, 0, 0, 1, 0, 2.313}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1073.938, 0}"; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1333.285, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2261; +}, +{ +components = ( +{ +alignment = -1; +name = four.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1060.85, 0}"; +}, +{ +alignment = -1; +name = five.dnom; +transform = "{1, 0, 0, 1, 1280.9, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2255; +} +); +leftMetricsKey = four.numr; +rightMetricsKey = five.dnom; +unicode = 2158; +}, +{ +color = 5; +glyphname = onesixth; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +}, +{ +alignment = -1; +name = six.dnom; +transform = "{1, 0, 0, 1, 901.5, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1793; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 670.08, 0}"; +}, +{ +alignment = -1; +name = six.dnom; +transform = "{1, 0, 0, 1, 753.622, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1689; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +transform = "{1, 0, 0, 1, 64.05, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 717, 0}"; +}, +{ +alignment = -1; +name = six.dnom; +transform = "{1, 0, 0, 1, 725, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1687; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = six.dnom; +unicode = 2159; +}, +{ +color = 5; +glyphname = fivesixths; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = five.numr; +transform = "{1, 0, 0, 1, 0, 1}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 944.95, 0}"; +}, +{ +alignment = -1; +name = six.dnom; +transform = "{1, 0, 0, 1, 1148.95, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2041; +}, +{ +components = ( +{ +alignment = -1; +name = five.numr; +transform = "{1, 0, 0, 1, 0, 3.458}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1032.235, 0}"; +}, +{ +alignment = -1; +name = six.dnom; +transform = "{1, 0, 0, 1, 1115.777, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2051; +}, +{ +components = ( +{ +alignment = -1; +name = five.numr; +transform = "{1, 0, 0, 1, 0, 5}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1086.95, 0}"; +}, +{ +alignment = -1; +name = six.dnom; +transform = "{1, 0, 0, 1, 1094.95, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2057; +} +); +leftMetricsKey = five.numr; +rightMetricsKey = six.dnom; +unicode = 215A; +}, +{ +color = 5; +glyphname = oneseventh; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = seven.dnom; +transform = "{1, 0, 0, 1, 1114.3, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +}, +{ +alignment = -1; +name = one.numr; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1993; +}, +{ +components = ( +{ +alignment = -1; +name = seven.dnom; +transform = "{1, 0, 0, 1, 1044.149, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 670.08, 0}"; +}, +{ +alignment = -1; +name = one.numr; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1876; +}, +{ +components = ( +{ +alignment = -1; +name = seven.dnom; +transform = "{1, 0, 0, 1, 1033.55, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 717, 0}"; +}, +{ +alignment = -1; +name = one.numr; +transform = "{1, 0, 0, 1, 64.05, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1837; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = seven.dnom; +unicode = 2150; +}, +{ +color = 5; +glyphname = oneeighth; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 1010.5, -10}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +}, +{ +alignment = -1; +name = one.numr; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1945; +}, +{ +components = ( +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 872.455, -3.854}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 670.08, 0}"; +}, +{ +alignment = -1; +name = one.numr; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1775; +}, +{ +components = ( +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 850, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 717, 0}"; +}, +{ +alignment = -1; +name = one.numr; +transform = "{1, 0, 0, 1, 64.05, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1731; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = eight.dnom; +unicode = 215B; +}, +{ +color = 5; +glyphname = threeeighths; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 1288.05, -10}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 975.05, 0}"; +}, +{ +alignment = -1; +name = three.numr; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2222; +}, +{ +components = ( +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 1194.725, -3.854}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 992.35, 0}"; +}, +{ +alignment = -1; +name = three.numr; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2097; +}, +{ +components = ( +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 1135.95, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1002.95, 0}"; +}, +{ +alignment = -1; +name = three.numr; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2017; +} +); +leftMetricsKey = three.numr; +rightMetricsKey = eight.dnom; +unicode = 215C; +}, +{ +color = 5; +glyphname = fiveeighths; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = five.numr; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 899.95, 0}"; +}, +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 1212.95, -10}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2147; +}, +{ +components = ( +{ +alignment = -1; +name = five.numr; +transform = "{1, 0, 0, 1, 0, 3.073}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1014.892, 0}"; +}, +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 1217.267, -3.854}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2120; +}, +{ +components = ( +{ +alignment = -1; +name = five.numr; +transform = "{1, 0, 0, 1, 0, 5}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 1086.95, 0}"; +}, +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 1219.95, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2101; +} +); +leftMetricsKey = five.numr; +rightMetricsKey = eight.dnom; +unicode = 215D; +}, +{ +color = 5; +glyphname = seveneighths; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = seven.numr; +transform = "{1, 0, 0, 1, 0, -1}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 787.9, 0}"; +}, +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 1100.9, -10}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2035; +}, +{ +components = ( +{ +alignment = -1; +name = seven.numr; +transform = "{1, 0, 0, 1, 0, -0.385}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 662.765, 0}"; +}, +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 865.14, -3.854}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1767; +}, +{ +components = ( +{ +alignment = -1; +name = seven.numr; +transform = "{1, 0, 0, 1, 82, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.45, 0}"; +}, +{ +alignment = -1; +name = eight.dnom; +transform = "{1, 0, 0, 1, 830.45, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1712; +} +); +leftMetricsKey = seven.numr; +rightMetricsKey = eight.dnom; +unicode = 215E; +}, +{ +color = 5; +glyphname = oneninth; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = nine.dnom; +transform = "{1, 0, 0, 1, 1161.5, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +}, +{ +alignment = -1; +name = one.numr; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2053; +}, +{ +components = ( +{ +alignment = -1; +name = nine.dnom; +transform = "{1, 0, 0, 1, 930.653, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 670.08, 0}"; +}, +{ +alignment = -1; +name = one.numr; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1865; +}, +{ +components = ( +{ +alignment = -1; +name = nine.dnom; +transform = "{1, 0, 0, 1, 890, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 717, 0}"; +}, +{ +alignment = -1; +name = one.numr; +transform = "{1, 0, 0, 1, 64.05, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1852; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = nine.dnom; +unicode = 2151; +}, +{ +color = 5; +glyphname = onetenth; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = one.dnom; +transform = "{1, 0, 0, 1, 1158, 0}"; +}, +{ +alignment = -1; +name = zero.dnom; +transform = "{1, 0, 0, 1, 1740.35, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 697.5, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2719; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = one.dnom; +transform = "{1, 0, 0, 1, 1175.208, -6.146}"; +}, +{ +alignment = -1; +name = zero.dnom; +transform = "{1, 0, 0, 1, 1642.068, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 746.903, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 2718; +}, +{ +components = ( +{ +alignment = -1; +name = one.numr; +}, +{ +alignment = -1; +name = one.dnom; +transform = "{1, 0, 0, 1, 1186, -10}"; +}, +{ +alignment = -1; +name = zero.dnom; +transform = "{1, 0, 0, 1, 1580.35, 0}"; +}, +{ +alignment = -1; +name = fraction; +transform = "{1, 0, 0, 1, 777.95, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 2716; +} +); +leftMetricsKey = one.numr; +rightMetricsKey = zero.dnom; +unicode = 2152; +}, +{ +color = 5; +glyphname = period; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{158, 532}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 532}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"572 -32 OFFCURVE", +"690 86 OFFCURVE", +"690 234 CURVE SMOOTH", +"690 382 OFFCURVE", +"572 500 OFFCURVE", +"424 500 CURVE SMOOTH", +"276 500 OFFCURVE", +"158 382 OFFCURVE", +"158 234 CURVE SMOOTH", +"158 86 OFFCURVE", +"276 -32 OFFCURVE", +"424 -32 CURVE SMOOTH" +); +} +); +width = 851; +}, +{ +hints = ( +{ +place = "{257, 264}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 264}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"462 -32 OFFCURVE", +"521 27 OFFCURVE", +"521 100 CURVE SMOOTH", +"521 173 OFFCURVE", +"462 232 OFFCURVE", +"389 232 CURVE SMOOTH", +"316 232 OFFCURVE", +"257 173 OFFCURVE", +"257 100 CURVE SMOOTH", +"257 27 OFFCURVE", +"316 -32 OFFCURVE", +"389 -32 CURVE SMOOTH" +); +} +); +width = 779; +}, +{ +hints = ( +{ +place = "{319, 96}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 96}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"393 -32 OFFCURVE", +"415 -10 OFFCURVE", +"415 16 CURVE SMOOTH", +"415 42 OFFCURVE", +"393 64 OFFCURVE", +"367 64 CURVE SMOOTH", +"341 64 OFFCURVE", +"319 42 OFFCURVE", +"319 16 CURVE SMOOTH", +"319 -10 OFFCURVE", +"341 -32 OFFCURVE", +"367 -32 CURVE SMOOTH" +); +} +); +width = 734; +} +); +leftKerningGroup = _comma; +rightKerningGroup = _A1; +unicode = 002E; +}, +{ +color = 5; +glyphname = comma; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{135, 532}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"277 -414 LINE", +"525 -210 OFFCURVE", +"667 21 OFFCURVE", +"667 215 CURVE SMOOTH", +"667 386 OFFCURVE", +"557 500 OFFCURVE", +"404 500 CURVE SMOOTH", +"251 500 OFFCURVE", +"135 387 OFFCURVE", +"135 236 CURVE SMOOTH", +"135 117 OFFCURVE", +"207 25 OFFCURVE", +"331 -8 CURVE", +"312 -102 OFFCURVE", +"221 -263 OFFCURVE", +"157 -316 CURVE" +); +} +); +width = 777; +}, +{ +hints = ( +{ +place = "{238, 270}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"307 -274 LINE", +"425 -178 OFFCURVE", +"508 -36 OFFCURVE", +"508 79 CURVE SMOOTH", +"508 177 OFFCURVE", +"447 232 OFFCURVE", +"372 232 CURVE SMOOTH", +"296 232 OFFCURVE", +"238 175 OFFCURVE", +"238 102 CURVE SMOOTH", +"238 40 OFFCURVE", +"280 -10 OFFCURVE", +"343 -23 CURVE", +"336 -97 OFFCURVE", +"294 -187 OFFCURVE", +"254 -230 CURVE" +); +} +); +width = 735; +}, +{ +hints = ( +{ +place = "{303, 106}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"325 -186 LINE", +"363 -158 OFFCURVE", +"409 -71 OFFCURVE", +"409 -7 CURVE SMOOTH", +"409 42 OFFCURVE", +"381 64 OFFCURVE", +"353 64 CURVE SMOOTH", +"325 64 OFFCURVE", +"303 42 OFFCURVE", +"303 16 CURVE SMOOTH", +"303 -10 OFFCURVE", +"325 -32 OFFCURVE", +"351 -32 CURVE", +"351 -94 OFFCURVE", +"340 -139 OFFCURVE", +"315 -176 CURVE" +); +} +); +width = 709; +} +); +leftKerningGroup = _comma; +rightKerningGroup = _A1; +unicode = 002C; +}, +{ +color = 5; +glyphname = colon; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -20, 0}"; +}, +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -20, 670}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 818; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -18, 0}"; +}, +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -18, 900}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 747; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -16, 0}"; +}, +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -16, 1044}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 703; +} +); +rightKerningGroup = _A1; +unicode = 003A; +}, +{ +color = 5; +glyphname = semicolon; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -20, 670}"; +}, +{ +alignment = -1; +name = comma; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 789; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -18, 900}"; +}, +{ +alignment = -1; +name = comma; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 736; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -16, 1044}"; +}, +{ +alignment = -1; +name = comma; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 702; +} +); +rightKerningGroup = _A1; +unicode = 003B; +}, +{ +color = 5; +glyphname = ellipsis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = period; +}, +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 796, 0}"; +}, +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 1592, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 2443; +}, +{ +components = ( +{ +alignment = -1; +name = period; +}, +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 435, 0}"; +}, +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 868, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1647; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -5, 0}"; +}, +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 243, 0}"; +}, +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 494, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1223; +} +); +leftKerningGroup = _comma; +rightKerningGroup = _A1; +unicode = 2026; +}, +{ +color = 5; +glyphname = exclam; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -23, 0}"; +} +); +hints = ( +{ +place = "{195, 416}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"553 580 LINE", +"611 1720 LINE", +"195 1720 LINE", +"253 580 LINE" +); +} +); +width = 806; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -16, 0}"; +} +); +hints = ( +{ +place = "{277, 192}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"446 430 LINE", +"469 1720 LINE", +"277 1720 LINE", +"300 430 LINE" +); +} +); +width = 747; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, -12, 0}"; +} +); +hints = ( +{ +place = "{329, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"381 336 LINE", +"381 1720 LINE", +"329 1720 LINE", +"329 336 LINE" +); +} +); +width = 710; +} +); +rightKerningGroup = _A1; +unicode = 0021; +}, +{ +color = 5; +glyphname = exclamdown; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = exclam; +transform = "{-1, 0, 0, -1, 804, 1198}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 811; +}, +{ +components = ( +{ +alignment = -1; +name = exclam; +transform = "{-1, 0, 0, -1, 747, 1198}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 749; +}, +{ +components = ( +{ +alignment = -1; +name = exclam; +transform = "{-1, 0, 0, -1, 710, 1198}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 710; +} +); +rightKerningGroup = _A1; +unicode = 00A1; +}, +{ +color = 5; +glyphname = question; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 118, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1314, 366}"; +type = Stem; +}, +{ +place = "{716, 390}"; +type = Stem; +}, +{ +place = "{350, 386}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"736 574 LINE", +"736 702 LINE", +"928 758 OFFCURVE", +"1106 952 OFFCURVE", +"1106 1187 CURVE SMOOTH", +"1106 1446 OFFCURVE", +"889 1680 OFFCURVE", +"558 1680 CURVE SMOOTH", +"325 1680 OFFCURVE", +"121 1564 OFFCURVE", +"24 1380 CURVE", +"281 1160 LINE", +"341 1258 OFFCURVE", +"428 1314 OFFCURVE", +"536 1314 CURVE SMOOTH", +"642 1314 OFFCURVE", +"716 1261 OFFCURVE", +"716 1180 CURVE SMOOTH", +"716 1100 OFFCURVE", +"643 1048 OFFCURVE", +"497 1048 CURVE SMOOTH", +"440 1048 OFFCURVE", +"381 1056 OFFCURVE", +"350 1066 CURVE", +"350 574 LINE" +); +} +); +width = 1138; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 213, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1505, 175}"; +type = Stem; +}, +{ +place = "{966, 184}"; +type = Stem; +}, +{ +place = "{513, 180}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"693 449 LINE", +"693 695 LINE", +"961 716 OFFCURVE", +"1150 927 OFFCURVE", +"1150 1185 CURVE SMOOTH", +"1150 1460 OFFCURVE", +"932 1680 OFFCURVE", +"627 1680 CURVE SMOOTH", +"377 1680 OFFCURVE", +"169 1531 OFFCURVE", +"126 1267 CURVE", +"290 1230 LINE", +"316 1402 OFFCURVE", +"442 1505 OFFCURVE", +"627 1505 CURVE SMOOTH", +"830 1505 OFFCURVE", +"966 1385 OFFCURVE", +"966 1186 CURVE SMOOTH", +"966 977 OFFCURVE", +"818 859 OFFCURVE", +"604 859 CURVE SMOOTH", +"568 859 OFFCURVE", +"540 862 OFFCURVE", +"513 868 CURVE", +"513 449 LINE" +); +} +); +width = 1298; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 273, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{1624, 56}"; +type = Stem; +}, +{ +place = "{1122, 56}"; +type = Stem; +}, +{ +place = "{616, 50}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"666 370 LINE", +"666 690 LINE", +"982 690 OFFCURVE", +"1178 901 OFFCURVE", +"1178 1192 CURVE SMOOTH", +"1178 1483 OFFCURVE", +"983 1680 OFFCURVE", +"690 1680 CURVE SMOOTH", +"409 1680 OFFCURVE", +"221 1497 OFFCURVE", +"208 1217 CURVE", +"263 1212 LINE", +"274 1464 OFFCURVE", +"439 1624 OFFCURVE", +"690 1624 CURVE SMOOTH", +"941 1624 OFFCURVE", +"1122 1463 OFFCURVE", +"1122 1189 CURVE SMOOTH", +"1122 905 OFFCURVE", +"927 740 OFFCURVE", +"669 740 CURVE SMOOTH", +"649 740 OFFCURVE", +"639 741 OFFCURVE", +"616 744 CURVE", +"616 370 LINE" +); +} +); +width = 1399; +} +); +rightKerningGroup = _A1; +unicode = 003F; +}, +{ +color = 5; +glyphname = questiondown; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = question; +transform = "{-1, 0, 0, -1, 1137, 1130}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1137; +}, +{ +components = ( +{ +alignment = -1; +name = question; +transform = "{-1, 0, 0, -1, 1298, 1130}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1297; +}, +{ +components = ( +{ +alignment = -1; +name = question; +transform = "{-1, 0, 0, -1, 1399, 1130}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1398; +} +); +rightKerningGroup = _A1; +unicode = 00BF; +}, +{ +color = 5; +glyphname = periodcentered; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 0, 306}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 851; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 0, 439}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 779; +}, +{ +components = ( +{ +alignment = -1; +name = period; +transform = "{1, 0, 0, 1, 0, 522}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 734; +} +); +rightKerningGroup = _A1; +unicode = 00B7; +}, +{ +color = 5; +glyphname = bullet; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"828 256 OFFCURVE", +"1030 458 OFFCURVE", +"1030 714 CURVE SMOOTH", +"1030 970 OFFCURVE", +"828 1172 OFFCURVE", +"572 1172 CURVE SMOOTH", +"316 1172 OFFCURVE", +"114 970 OFFCURVE", +"114 714 CURVE SMOOTH", +"114 458 OFFCURVE", +"316 256 OFFCURVE", +"572 256 CURVE SMOOTH" +); +} +); +width = 1148; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"570 502 OFFCURVE", +"664 596 OFFCURVE", +"664 714 CURVE SMOOTH", +"664 832 OFFCURVE", +"570 926 OFFCURVE", +"452 926 CURVE SMOOTH", +"334 926 OFFCURVE", +"240 832 OFFCURVE", +"240 714 CURVE SMOOTH", +"240 596 OFFCURVE", +"334 502 OFFCURVE", +"452 502 CURVE SMOOTH" +); +} +); +width = 904; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"409 656 OFFCURVE", +"435 682 OFFCURVE", +"435 714 CURVE SMOOTH", +"435 746 OFFCURVE", +"409 772 OFFCURVE", +"377 772 CURVE SMOOTH", +"345 772 OFFCURVE", +"317 746 OFFCURVE", +"317 714 CURVE SMOOTH", +"317 682 OFFCURVE", +"345 656 OFFCURVE", +"377 656 CURVE SMOOTH" +); +} +); +width = 753; +} +); +rightKerningGroup = _A1; +unicode = 2022; +}, +{ +color = 5; +glyphname = asterisk; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{415, 208}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"519 1146 LINE", +"669 952 LINE", +"825 1058 LINE", +"685 1270 LINE", +"927 1358 LINE", +"867 1546 LINE", +"623 1470 LINE", +"623 1720 LINE", +"415 1720 LINE", +"415 1470 LINE", +"171 1546 LINE", +"111 1358 LINE", +"353 1270 LINE", +"213 1058 LINE", +"369 952 LINE" +); +} +); +width = 1042; +}, +{ +hints = ( +{ +place = "{422, 96}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"469 1377 LINE", +"585 1224 LINE", +"657 1274 LINE", +"547 1435 LINE", +"732 1498 LINE", +"704 1585 LINE", +"518 1527 LINE", +"518 1720 LINE", +"422 1720 LINE", +"422 1527 LINE", +"236 1585 LINE", +"207 1498 LINE", +"393 1435 LINE", +"282 1274 LINE", +"355 1224 LINE" +); +} +); +width = 941; +}, +{ +hints = ( +{ +place = "{426, 26}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"438 1522 LINE", +"532 1394 LINE", +"552 1410 LINE", +"460 1538 LINE", +"610 1586 LINE", +"602 1610 LINE", +"452 1562 LINE", +"452 1720 LINE", +"426 1720 LINE", +"426 1562 LINE", +"276 1610 LINE", +"268 1586 LINE", +"418 1538 LINE", +"326 1410 LINE", +"346 1394 LINE" +); +} +); +width = 878; +} +); +rightKerningGroup = _A1; +unicode = 002A; +}, +{ +color = 5; +glyphname = numbersign; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{442, 284}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{982, 284}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"558 0 LINE", +"608 442 LINE", +"934 442 LINE", +"884 0 LINE", +"1166 0 LINE", +"1216 442 LINE", +"1524 442 LINE", +"1524 726 LINE", +"1252 726 LINE", +"1282 982 LINE", +"1524 982 LINE", +"1524 1266 LINE", +"1314 1266 LINE", +"1368 1706 LINE", +"1084 1706 LINE", +"1032 1266 LINE", +"706 1266 LINE", +"760 1706 LINE", +"476 1706 LINE", +"424 1266 LINE", +"122 1266 LINE", +"122 982 LINE", +"390 982 LINE", +"360 726 LINE", +"122 726 LINE", +"122 442 LINE", +"326 442 LINE", +"276 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"674 982 LINE", +"1000 982 LINE", +"968 726 LINE", +"644 726 LINE" +); +} +); +width = 1645; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{425, 133}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{940, 133}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"447 0 LINE", +"502 425 LINE", +"890 425 LINE", +"835 0 LINE", +"967 0 LINE", +"1022 425 LINE", +"1297 425 LINE", +"1297 558 LINE", +"1038 558 LINE", +"1090 940 LINE", +"1297 940 LINE", +"1297 1073 LINE", +"1106 1073 LINE", +"1163 1498 LINE", +"1030 1498 LINE", +"974 1073 LINE", +"587 1073 LINE", +"643 1498 LINE", +"510 1498 LINE", +"455 1073 LINE", +"182 1073 LINE", +"182 940 LINE", +"439 940 LINE", +"387 558 LINE", +"182 558 LINE", +"182 425 LINE", +"370 425 LINE", +"315 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"571 940 LINE", +"958 940 LINE", +"907 558 LINE", +"519 558 LINE" +); +} +); +width = 1478; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{414, 38}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{914, 38}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"378 0 LINE", +"436 414 LINE", +"862 414 LINE", +"804 0 LINE", +"842 0 LINE", +"900 414 LINE", +"1154 414 LINE", +"1154 452 LINE", +"904 452 LINE", +"970 914 LINE", +"1154 914 LINE", +"1154 952 LINE", +"976 952 LINE", +"1034 1368 LINE", +"996 1368 LINE", +"938 952 LINE", +"512 952 LINE", +"570 1368 LINE", +"532 1368 LINE", +"474 952 LINE", +"220 952 LINE", +"220 914 LINE", +"470 914 LINE", +"404 452 LINE", +"220 452 LINE", +"220 414 LINE", +"398 414 LINE", +"340 0 LINE" +); +}, +{ +closed = 1; +nodes = ( +"506 914 LINE", +"932 914 LINE", +"868 452 LINE", +"440 452 LINE" +); +} +); +width = 1374; +} +); +rightKerningGroup = _A1; +unicode = 0023; +}, +{ +color = 5; +glyphname = slash; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"265 -240 LINE", +"1089 1720 LINE", +"731 1720 LINE", +"-93 -240 LINE" +); +} +); +width = 996; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"186 -240 LINE", +"1010 1720 LINE", +"847 1720 LINE", +"23 -240 LINE" +); +} +); +width = 1033; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"136 -240 LINE", +"960 1720 LINE", +"920 1720 LINE", +"96 -240 LINE" +); +} +); +width = 1056; +} +); +rightKerningGroup = _A1; +unicode = 002F; +}, +{ +color = 5; +glyphname = backslash; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1089 0 LINE", +"265 1720 LINE", +"-93 1720 LINE", +"731 0 LINE" +); +} +); +width = 996; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1010 0 LINE", +"186 1720 LINE", +"23 1720 LINE", +"847 0 LINE" +); +} +); +width = 1033; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"960 0 LINE", +"136 1720 LINE", +"96 1720 LINE", +"920 0 LINE" +); +} +); +width = 1056; +} +); +rightKerningGroup = _A1; +unicode = 005C; +}, +{ +color = 5; +glyphname = parenleft; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{80, 377}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"675 -378 LINE", +"584 -230 OFFCURVE", +"457 129 OFFCURVE", +"457 615 CURVE SMOOTH", +"457 1101 OFFCURVE", +"584 1460 OFFCURVE", +"675 1608 CURVE", +"425 1750 LINE", +"277 1552 OFFCURVE", +"80 1132 OFFCURVE", +"80 614 CURVE SMOOTH", +"80 99 OFFCURVE", +"275 -320 OFFCURVE", +"425 -520 CURVE" +); +} +); +width = 727; +}, +{ +hints = ( +{ +place = "{151, 186}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"643 -466 LINE", +"501 -255 OFFCURVE", +"337 130 OFFCURVE", +"337 614 CURVE SMOOTH", +"337 1109 OFFCURVE", +"504 1492 OFFCURVE", +"643 1696 CURVE", +"517 1750 LINE", +"356 1545 OFFCURVE", +"151 1132 OFFCURVE", +"151 614 CURVE SMOOTH", +"151 97 OFFCURVE", +"356 -314 OFFCURVE", +"517 -520 CURVE" +); +} +); +width = 747; +}, +{ +hints = ( +{ +place = "{196, 66}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"612 -504 LINE", +"454 -269 OFFCURVE", +"262 120 OFFCURVE", +"262 614 CURVE SMOOTH", +"262 1093 OFFCURVE", +"443 1482 OFFCURVE", +"612 1734 CURVE", +"574 1750 LINE", +"406 1540 OFFCURVE", +"196 1132 OFFCURVE", +"196 614 CURVE SMOOTH", +"196 96 OFFCURVE", +"406 -311 OFFCURVE", +"574 -520 CURVE" +); +} +); +width = 760; +} +); +rightKerningGroup = _A1; +unicode = 0028; +}, +{ +color = 5; +glyphname = parenright; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = parenleft; +transform = "{-1, 0, 0, 1, 724, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 726; +}, +{ +components = ( +{ +alignment = -1; +name = parenleft; +transform = "{-1, 0, 0, 1, 744, 1}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 747; +}, +{ +components = ( +{ +alignment = -1; +name = parenleft; +transform = "{-1, 0, 0, 1, 757, 1}"; +} +); +guideLines = ( +{ +position = "{0, -11}"; +}, +{ +position = "{0, -41}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 760; +} +); +rightKerningGroup = _A1; +unicode = 0029; +}, +{ +color = 5; +glyphname = braceleft; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{492, 216}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1424, 296}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-520, 296}"; +type = Stem; +}, +{ +place = "{197, 356}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"741 -520 LINE", +"741 -224 LINE", +"651 -224 LINE SMOOTH", +"603 -224 OFFCURVE", +"553 -178 OFFCURVE", +"553 -122 CURVE SMOOTH", +"553 358 LINE SMOOTH", +"553 484 OFFCURVE", +"489 560 OFFCURVE", +"411 600 CURVE", +"489 640 OFFCURVE", +"553 712 OFFCURVE", +"553 842 CURVE SMOOTH", +"553 1322 LINE SMOOTH", +"553 1378 OFFCURVE", +"603 1424 OFFCURVE", +"651 1424 CURVE SMOOTH", +"741 1424 LINE", +"741 1720 LINE", +"515 1720 LINE SMOOTH", +"259 1720 OFFCURVE", +"197 1524 OFFCURVE", +"197 1358 CURVE SMOOTH", +"197 846 LINE SMOOTH", +"197 748 OFFCURVE", +"135 708 OFFCURVE", +"41 708 CURVE", +"41 492 LINE", +"135 492 OFFCURVE", +"197 452 OFFCURVE", +"197 354 CURVE SMOOTH", +"197 -158 LINE SMOOTH", +"197 -324 OFFCURVE", +"259 -520 OFFCURVE", +"515 -520 CURVE SMOOTH" +); +} +); +width = 798; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{544, 112}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1572, 148}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-520, 148}"; +type = Stem; +}, +{ +place = "{243, 172}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"667 -520 LINE", +"667 -372 LINE", +"614 -372 LINE SMOOTH", +"483 -372 OFFCURVE", +"415 -286 OFFCURVE", +"415 -144 CURVE SMOOTH", +"415 460 LINE SMOOTH", +"415 533 OFFCURVE", +"385 577 OFFCURVE", +"343 600 CURVE", +"385 623 OFFCURVE", +"415 665 OFFCURVE", +"415 740 CURVE SMOOTH", +"415 1344 LINE SMOOTH", +"415 1486 OFFCURVE", +"483 1572 OFFCURVE", +"614 1572 CURVE SMOOTH", +"667 1572 LINE", +"667 1720 LINE", +"561 1720 LINE SMOOTH", +"305 1720 OFFCURVE", +"243 1524 OFFCURVE", +"243 1358 CURVE SMOOTH", +"243 762 LINE SMOOTH", +"243 687 OFFCURVE", +"207 656 OFFCURVE", +"142 656 CURVE", +"142 544 LINE", +"207 544 OFFCURVE", +"243 513 OFFCURVE", +"243 438 CURVE SMOOTH", +"243 -158 LINE SMOOTH", +"243 -324 OFFCURVE", +"305 -520 OFFCURVE", +"561 -520 CURVE SMOOTH" +); +} +); +width = 778; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{576, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1664, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-520, 56}"; +type = Stem; +}, +{ +place = "{272, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"620 -520 LINE", +"620 -464 LINE", +"590 -464 LINE SMOOTH", +"408 -464 OFFCURVE", +"328 -354 OFFCURVE", +"328 -158 CURVE SMOOTH", +"328 524 LINE SMOOTH", +"328 564 OFFCURVE", +"320 588 OFFCURVE", +"300 600 CURVE", +"320 612 OFFCURVE", +"328 636 OFFCURVE", +"328 676 CURVE SMOOTH", +"328 1358 LINE SMOOTH", +"328 1554 OFFCURVE", +"408 1664 OFFCURVE", +"590 1664 CURVE SMOOTH", +"620 1664 LINE", +"620 1720 LINE", +"590 1720 LINE SMOOTH", +"334 1720 OFFCURVE", +"272 1524 OFFCURVE", +"272 1358 CURVE SMOOTH", +"272 710 LINE SMOOTH", +"272 648 OFFCURVE", +"252 624 OFFCURVE", +"206 624 CURVE", +"206 576 LINE", +"252 576 OFFCURVE", +"272 552 OFFCURVE", +"272 490 CURVE SMOOTH", +"272 -158 LINE SMOOTH", +"272 -324 OFFCURVE", +"334 -520 OFFCURVE", +"590 -520 CURVE SMOOTH" +); +} +); +width = 766; +} +); +rightKerningGroup = _A1; +unicode = 007B; +}, +{ +color = 5; +glyphname = braceright; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = braceleft; +transform = "{-1, 0, 0, -1, 798, 1200}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 798; +}, +{ +components = ( +{ +alignment = -1; +name = braceleft; +transform = "{-1, 0, 0, -1, 778, 1200}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 778; +}, +{ +components = ( +{ +alignment = -1; +name = braceleft; +transform = "{-1, 0, 0, -1, 766, 1200}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 766; +} +); +rightKerningGroup = _A1; +unicode = 007D; +}, +{ +color = 5; +glyphname = bracketleft; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1450, 270}"; +type = Stem; +}, +{ +place = "{188, 356}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-520, 270}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"896 -520 LINE", +"896 -250 LINE", +"544 -250 LINE", +"544 1450 LINE", +"896 1450 LINE", +"896 1720 LINE", +"188 1720 LINE", +"188 -520 LINE" +); +} +); +width = 893; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1582, 138}"; +type = Stem; +}, +{ +place = "{246, 171}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-520, 138}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"718 -520 LINE", +"718 -382 LINE", +"417 -382 LINE", +"417 1582 LINE", +"718 1582 LINE", +"718 1720 LINE", +"246 1720 LINE", +"246 -520 LINE" +); +} +); +width = 806; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1664, 56}"; +type = Stem; +}, +{ +place = "{282, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-520, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"606 -520 LINE", +"606 -464 LINE", +"338 -464 LINE", +"338 1664 LINE", +"606 1664 LINE", +"606 1720 LINE", +"282 1720 LINE", +"282 -520 LINE" +); +} +); +width = 752; +} +); +rightKerningGroup = _A1; +unicode = 005B; +}, +{ +color = 5; +glyphname = bracketright; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = bracketleft; +transform = "{-1, 0, 0, -1, 893, 1200}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 893; +}, +{ +components = ( +{ +alignment = -1; +name = bracketleft; +transform = "{-1, 0, 0, -1, 806, 1200}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 806; +}, +{ +components = ( +{ +alignment = -1; +name = bracketleft; +transform = "{-1, 0, 0, -1, 752, 1200}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 752; +} +); +rightKerningGroup = _A1; +unicode = 005D; +}, +{ +color = 5; +glyphname = hyphen; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{400, 358}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"801 400 LINE", +"801 758 LINE", +"157 758 LINE", +"157 400 LINE" +); +} +); +width = 958; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{496, 167}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"849 496 LINE", +"849 663 LINE", +"205 663 LINE", +"205 496 LINE" +); +} +); +width = 1054; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{556, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"879 556 LINE", +"879 604 LINE", +"235 604 LINE", +"235 556 LINE" +); +} +); +width = 1114; +} +); +rightKerningGroup = _A1; +unicode = 002D; +}, +{ +color = 5; +glyphname = softhyphen; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{400, 358}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"801 400 LINE", +"801 758 LINE", +"157 758 LINE", +"157 400 LINE" +); +} +); +width = 958; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{496, 167}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"849 496 LINE", +"849 663 LINE", +"205 663 LINE", +"205 496 LINE" +); +} +); +width = 1054; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{556, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"879 556 LINE", +"879 604 LINE", +"235 604 LINE", +"235 556 LINE" +); +} +); +width = 1114; +} +); +unicode = 00AD; +}, +{ +color = 5; +glyphname = endash; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{400, 358}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1297 400 LINE", +"1297 758 LINE", +"157 758 LINE", +"157 400 LINE" +); +} +); +width = 1454; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{496, 166}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1121 496 LINE", +"1121 662 LINE", +"205 662 LINE", +"205 496 LINE" +); +} +); +width = 1326; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{556, 46}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1011 556 LINE", +"1011 602 LINE", +"235 602 LINE", +"235 556 LINE" +); +} +); +width = 1246; +} +); +rightKerningGroup = _A1; +unicode = 2013; +}, +{ +color = 5; +glyphname = emdash; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{400, 358}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"2449 400 LINE", +"2449 758 LINE", +"157 758 LINE", +"157 400 LINE" +); +} +); +width = 2606; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{496, 166}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"2011 496 LINE", +"2011 662 LINE", +"205 662 LINE", +"205 496 LINE" +); +} +); +width = 2216; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{556, 46}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1737 556 LINE", +"1737 602 LINE", +"235 602 LINE", +"235 556 LINE" +); +} +); +width = 1972; +} +); +rightKerningGroup = _A1; +unicode = 2014; +}, +{ +color = 5; +glyphname = underscore; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{-202, 196}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1183 -202 LINE", +"1183 -6 LINE", +"157 -6 LINE", +"157 -202 LINE" +); +} +); +width = 1340; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-201, 100}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1231 -201 LINE", +"1231 -101 LINE", +"205 -101 LINE", +"205 -201 LINE" +); +} +); +width = 1436; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-200, 40}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1261 -200 LINE", +"1261 -160 LINE", +"235 -160 LINE", +"235 -200 LINE" +); +} +); +width = 1496; +} +); +rightKerningGroup = _A1; +unicode = 005F; +}, +{ +color = 5; +glyphname = quotesinglbase; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{108, 479}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"236 -344 LINE", +"460 -160 OFFCURVE", +"587 48 OFFCURVE", +"587 223 CURVE SMOOTH", +"587 377 OFFCURVE", +"488 479 OFFCURVE", +"351 479 CURVE SMOOTH", +"213 479 OFFCURVE", +"108 377 OFFCURVE", +"108 241 CURVE SMOOTH", +"108 134 OFFCURVE", +"173 51 OFFCURVE", +"285 22 CURVE", +"268 -63 OFFCURVE", +"186 -208 OFFCURVE", +"128 -256 CURVE" +); +} +); +width = 777; +}, +{ +hints = ( +{ +place = "{196, 252}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"260 -248 LINE", +"371 -158 OFFCURVE", +"448 -26 OFFCURVE", +"448 81 CURVE SMOOTH", +"448 173 OFFCURVE", +"391 224 OFFCURVE", +"321 224 CURVE SMOOTH", +"250 224 OFFCURVE", +"196 171 OFFCURVE", +"196 103 CURVE SMOOTH", +"196 45 OFFCURVE", +"235 -2 OFFCURVE", +"294 -14 CURVE", +"287 -83 OFFCURVE", +"248 -167 OFFCURVE", +"211 -207 CURVE" +); +} +); +width = 735; +}, +{ +hints = ( +{ +place = "{253, 106}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"275 -186 LINE", +"313 -158 OFFCURVE", +"359 -71 OFFCURVE", +"359 -7 CURVE SMOOTH", +"359 42 OFFCURVE", +"331 64 OFFCURVE", +"303 64 CURVE SMOOTH", +"275 64 OFFCURVE", +"253 42 OFFCURVE", +"253 16 CURVE SMOOTH", +"253 -10 OFFCURVE", +"275 -32 OFFCURVE", +"301 -32 CURVE", +"301 -94 OFFCURVE", +"290 -139 OFFCURVE", +"265 -176 CURVE" +); +} +); +width = 709; +} +); +rightKerningGroup = _A1; +unicode = 201A; +}, +{ +color = 5; +glyphname = quotedblbase; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = quotesinglbase; +transform = "{1, 0, 0, 1, 5, 0}"; +}, +{ +alignment = -1; +name = quotesinglbase; +transform = "{1, 0, 0, 1, 586, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1262; +}, +{ +components = ( +{ +alignment = -1; +name = quotesinglbase; +transform = "{1, 0, 0, 1, -4, 0}"; +}, +{ +alignment = -1; +name = quotesinglbase; +transform = "{1, 0, 0, 1, 312, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 943; +}, +{ +components = ( +{ +alignment = -1; +name = quotesinglbase; +transform = "{1, 0, 0, 1, -11, 0}"; +}, +{ +alignment = -1; +name = quotesinglbase; +transform = "{1, 0, 0, 1, 139, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 743; +} +); +rightKerningGroup = _A1; +unicode = 201E; +}, +{ +color = 5; +glyphname = quotedblleft; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = quotedblbase; +transform = "{-1, 0, 0, -1, 1256, 1332}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1257; +}, +{ +components = ( +{ +alignment = -1; +name = quotedblbase; +transform = "{-1, 0, 0, -1, 953, 1430}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 966; +}, +{ +components = ( +{ +alignment = -1; +name = quotedblbase; +transform = "{-1, 0, 0, -1, 762, 1492}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 784; +} +); +leftKerningGroup = _quotesingle; +rightKerningGroup = _quotesingle; +unicode = 201C; +}, +{ +color = 5; +glyphname = quotedblright; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = quotedblbase; +transform = "{1, 0, 0, 1, -2, 1201}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1252; +}, +{ +components = ( +{ +alignment = -1; +name = quotedblbase; +transform = "{1, 0, 0, 1, 11, 1456}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 964; +}, +{ +components = ( +{ +alignment = -1; +name = quotedblbase; +transform = "{1, 0, 0, 1, 20, 1616}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 783; +} +); +leftKerningGroup = _quotesingle; +rightKerningGroup = _quotesingle; +unicode = 201D; +}, +{ +color = 5; +glyphname = quoteleft; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = quotesinglbase; +transform = "{-1, 0, 0, -1, 674, 1332}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 681; +}, +{ +components = ( +{ +alignment = -1; +name = quotesinglbase; +transform = "{-1, 0, 0, -1, 637, 1430}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 642; +}, +{ +components = ( +{ +alignment = -1; +name = quotesinglbase; +transform = "{-1, 0, 0, -1, 614, 1492}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 617; +} +); +leftKerningGroup = _quotesingle; +rightKerningGroup = _quotesingle; +unicode = 2018; +}, +{ +color = 5; +glyphname = quoteright; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = quotesinglbase; +transform = "{1, 0, 0, 1, 1, 1202}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 680; +}, +{ +components = ( +{ +alignment = -1; +name = quotesinglbase; +transform = "{1, 0, 0, 1, 2, 1456}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 640; +}, +{ +components = ( +{ +alignment = -1; +name = quotesinglbase; +transform = "{1, 0, 0, 1, 2, 1616}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 615; +} +); +leftKerningGroup = _quotesingle; +rightKerningGroup = _quotesingle; +unicode = 2019; +}, +{ +color = 5; +glyphname = guillemetleft; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1227 226 LINE", +"967 558 LINE", +"1227 890 LINE", +"1013 1058 LINE", +"623 558 LINE", +"1013 58 LINE" +); +}, +{ +closed = 1; +nodes = ( +"649 226 LINE", +"389 558 LINE", +"649 890 LINE", +"435 1058 LINE", +"45 558 LINE", +"435 58 LINE" +); +} +); +width = 1302; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1013 143 LINE", +"690 556 LINE", +"1013 969 LINE", +"902 1056 LINE", +"512 556 LINE", +"902 56 LINE" +); +}, +{ +closed = 1; +nodes = ( +"615 143 LINE", +"292 556 LINE", +"615 969 LINE", +"504 1056 LINE", +"114 556 LINE", +"504 56 LINE" +); +} +); +width = 1146; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"879 92 LINE", +"517 556 LINE", +"879 1020 LINE", +"833 1056 LINE", +"443 556 LINE", +"833 56 LINE" +); +}, +{ +closed = 1; +nodes = ( +"594 92 LINE", +"232 556 LINE", +"594 1020 LINE", +"548 1056 LINE", +"158 556 LINE", +"548 56 LINE" +); +} +); +width = 1048; +} +); +leftMetricsKey = guilsinglleft; +rightMetricsKey = guilsinglleft; +unicode = 00AB; +}, +{ +color = 5; +glyphname = guillemetright; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"675 558 LINE", +"285 1058 LINE", +"71 890 LINE", +"331 558 LINE", +"71 226 LINE", +"285 58 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1253 558 LINE", +"863 1058 LINE", +"649 890 LINE", +"909 558 LINE", +"649 226 LINE", +"863 58 LINE" +); +} +); +width = 1298; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"632 556 LINE", +"242 1056 LINE", +"131 969 LINE", +"454 556 LINE", +"131 143 LINE", +"242 56 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1030 556 LINE", +"640 1056 LINE", +"529 969 LINE", +"852 556 LINE", +"529 143 LINE", +"640 56 LINE" +); +} +); +width = 1144; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"605 556 LINE", +"215 1056 LINE", +"169 1020 LINE", +"531 556 LINE", +"169 92 LINE", +"215 56 LINE" +); +}, +{ +closed = 1; +nodes = ( +"890 556 LINE", +"500 1056 LINE", +"454 1020 LINE", +"816 556 LINE", +"454 92 LINE", +"500 56 LINE" +); +} +); +width = 1048; +} +); +leftMetricsKey = guilsinglright; +rightMetricsKey = guilsinglright; +unicode = 00BB; +}, +{ +color = 5; +glyphname = guilsinglleft; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"649 226 LINE", +"389 558 LINE", +"649 890 LINE", +"435 1058 LINE", +"45 558 LINE", +"435 58 LINE" +); +} +); +width = 724; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"615 144 LINE", +"293 557 LINE", +"615 970 LINE", +"504 1057 LINE", +"114 557 LINE", +"504 57 LINE" +); +} +); +width = 748; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"594 92 LINE", +"232 556 LINE", +"594 1020 LINE", +"548 1056 LINE", +"158 556 LINE", +"548 56 LINE" +); +} +); +width = 763; +} +); +rightKerningGroup = _A1; +unicode = 2039; +}, +{ +color = 5; +glyphname = guilsinglright; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"675 558 LINE", +"285 1058 LINE", +"71 890 LINE", +"331 558 LINE", +"71 226 LINE", +"285 58 LINE" +); +} +); +width = 720; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"632 557 LINE", +"242 1057 LINE", +"131 970 LINE", +"454 557 LINE", +"131 144 LINE", +"242 57 LINE" +); +} +); +width = 746; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"605 556 LINE", +"215 1056 LINE", +"169 1020 LINE", +"531 556 LINE", +"169 92 LINE", +"215 56 LINE" +); +} +); +width = 763; +} +); +rightKerningGroup = _A1; +unicode = 203A; +}, +{ +color = 5; +glyphname = quotedbl; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = quotesingle; +}, +{ +alignment = -1; +name = quotesingle; +transform = "{1, 0, 0, 1, 508, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1202; +}, +{ +components = ( +{ +alignment = -1; +name = quotesingle; +}, +{ +alignment = -1; +name = quotesingle; +transform = "{1, 0, 0, 1, 280, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 933; +}, +{ +components = ( +{ +alignment = -1; +name = quotesingle; +}, +{ +alignment = -1; +name = quotesingle; +transform = "{1, 0, 0, 1, 138, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 764; +} +); +rightKerningGroup = _A1; +unicode = 0022; +}, +{ +color = 5; +glyphname = quotesingle; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"469 900 LINE", +"543 1720 LINE", +"151 1720 LINE", +"225 900 LINE" +); +} +); +width = 694; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"388 1231 LINE", +"424 1720 LINE", +"228 1720 LINE", +"264 1231 LINE" +); +} +); +width = 652; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1720, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"338 1438 LINE", +"350 1720 LINE", +"276 1720 LINE", +"288 1438 LINE" +); +} +); +width = 626; +} +); +leftKerningGroup = _quotesingle; +rightKerningGroup = _quotesingle; +unicode = 0027; +}, +{ +color = 5; +glyphname = nbspace; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 556; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 522; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 500; +} +); +widthMetricsKey = space; +unicode = 00A0; +}, +{ +color = 5; +glyphname = cent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = c; +transform = "{1, 0, 0, 1, 25, 0}"; +} +); +hints = ( +{ +place = "{452, 250}"; +type = Stem; +}, +{ +place = "{516, 250}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"452 1272 LINE", +"452 1000 LINE", +"702 1000 LINE", +"702 1272 LINE" +); +}, +{ +closed = 1; +nodes = ( +"516 0 LINE", +"516 -258 LINE", +"766 -258 LINE", +"766 0 LINE" +); +} +); +width = 1109; +}, +{ +components = ( +{ +alignment = -1; +name = c; +transform = "{1, 0, 0, 1, 79, 0}"; +} +); +hints = ( +{ +place = "{636, 124}"; +type = Stem; +}, +{ +place = "{688, 125}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"636 1272 LINE", +"636 1012 LINE", +"760 1012 LINE", +"760 1272 LINE" +); +}, +{ +closed = 1; +nodes = ( +"688 0 LINE", +"688 -258 LINE", +"813 -258 LINE", +"813 0 LINE" +); +} +); +width = 1308; +}, +{ +components = ( +{ +alignment = -1; +name = c; +transform = "{1, 0, 0, 1, 113, 0}"; +} +); +hints = ( +{ +place = "{752, 44}"; +type = Stem; +}, +{ +place = "{796, 46}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"752 1272 LINE", +"752 1024 LINE", +"796 1024 LINE", +"796 1272 LINE" +); +}, +{ +closed = 1; +nodes = ( +"796 0 LINE", +"796 -258 LINE", +"842 -258 LINE", +"842 0 LINE" +); +} +); +width = 1433; +} +); +leftKerningGroup = _c; +rightKerningGroup = _c; +unicode = 00A2; +}, +{ +color = 5; +glyphname = currency; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{120, 350}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{730, 350}"; +type = Stem; +}, +{ +place = "{145, 342}"; +type = Stem; +}, +{ +place = "{755, 342}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"356 196 LINE", +"431 147 OFFCURVE", +"521 120 OFFCURVE", +"621 120 CURVE SMOOTH", +"720 120 OFFCURVE", +"811 147 OFFCURVE", +"886 195 CURVE", +"1027 54 LINE", +"1165 194 LINE", +"1024 335 LINE", +"1070 410 OFFCURVE", +"1097 500 OFFCURVE", +"1097 600 CURVE SMOOTH", +"1097 700 OFFCURVE", +"1070 790 OFFCURVE", +"1024 865 CURVE", +"1165 1006 LINE", +"1027 1146 LINE", +"886 1005 LINE", +"811 1053 OFFCURVE", +"720 1080 OFFCURVE", +"621 1080 CURVE SMOOTH", +"521 1080 OFFCURVE", +"431 1053 OFFCURVE", +"356 1004 CURVE", +"215 1146 LINE", +"75 1006 LINE", +"218 864 LINE", +"172 790 OFFCURVE", +"145 700 OFFCURVE", +"145 600 CURVE SMOOTH", +"145 500 OFFCURVE", +"172 410 OFFCURVE", +"218 336 CURVE", +"75 194 LINE", +"215 54 LINE" +); +}, +{ +closed = 1; +nodes = ( +"541 470 OFFCURVE", +"487 518 OFFCURVE", +"487 600 CURVE SMOOTH", +"487 682 OFFCURVE", +"541 730 OFFCURVE", +"621 730 CURVE SMOOTH", +"701 730 OFFCURVE", +"755 682 OFFCURVE", +"755 600 CURVE SMOOTH", +"755 518 OFFCURVE", +"701 470 OFFCURVE", +"621 470 CURVE SMOOTH" +); +} +); +width = 1240; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{178, 160}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{940, 160}"; +type = Stem; +}, +{ +place = "{154, 158}"; +type = Stem; +}, +{ +place = "{916, 158}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"326 279 LINE", +"404 215 OFFCURVE", +"504 178 OFFCURVE", +"614 178 CURVE SMOOTH", +"724 178 OFFCURVE", +"824 215 OFFCURVE", +"902 279 CURVE", +"1038 142 LINE", +"1111 215 LINE", +"974 351 LINE", +"1036 429 OFFCURVE", +"1074 528 OFFCURVE", +"1074 639 CURVE SMOOTH", +"1074 750 OFFCURVE", +"1036 849 OFFCURVE", +"974 927 CURVE", +"1111 1063 LINE", +"1038 1136 LINE", +"902 999 LINE", +"824 1063 OFFCURVE", +"724 1100 OFFCURVE", +"614 1100 CURVE SMOOTH", +"504 1100 OFFCURVE", +"404 1063 OFFCURVE", +"326 999 CURVE", +"190 1136 LINE", +"117 1063 LINE", +"254 927 LINE", +"192 849 OFFCURVE", +"154 750 OFFCURVE", +"154 639 CURVE SMOOTH", +"154 528 OFFCURVE", +"192 429 OFFCURVE", +"254 351 CURVE", +"117 215 LINE", +"190 142 LINE" +); +}, +{ +closed = 1; +nodes = ( +"444 338 OFFCURVE", +"312 468 OFFCURVE", +"312 639 CURVE SMOOTH", +"312 810 OFFCURVE", +"444 940 OFFCURVE", +"614 940 CURVE SMOOTH", +"784 940 OFFCURVE", +"916 810 OFFCURVE", +"916 639 CURVE SMOOTH", +"916 468 OFFCURVE", +"784 338 OFFCURVE", +"614 338 CURVE SMOOTH" +); +} +); +width = 1228; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{213, 42}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1071, 42}"; +type = Stem; +}, +{ +place = "{160, 42}"; +type = Stem; +}, +{ +place = "{1018, 42}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"307 330 LINE", +"387 257 OFFCURVE", +"493 213 OFFCURVE", +"610 213 CURVE SMOOTH", +"727 213 OFFCURVE", +"833 257 OFFCURVE", +"913 330 CURVE", +"1046 197 LINE", +"1076 227 LINE", +"943 360 LINE", +"1016 440 OFFCURVE", +"1060 546 OFFCURVE", +"1060 663 CURVE SMOOTH", +"1060 780 OFFCURVE", +"1016 886 OFFCURVE", +"943 966 CURVE", +"1076 1099 LINE", +"1046 1129 LINE", +"913 996 LINE", +"833 1069 OFFCURVE", +"727 1113 OFFCURVE", +"610 1113 CURVE SMOOTH", +"493 1113 OFFCURVE", +"387 1069 OFFCURVE", +"307 996 CURVE", +"174 1129 LINE", +"144 1099 LINE", +"277 966 LINE", +"204 886 OFFCURVE", +"160 780 OFFCURVE", +"160 663 CURVE SMOOTH", +"160 546 OFFCURVE", +"204 440 OFFCURVE", +"277 360 CURVE", +"144 227 LINE", +"174 197 LINE" +); +}, +{ +closed = 1; +nodes = ( +"384 255 OFFCURVE", +"202 437 OFFCURVE", +"202 663 CURVE SMOOTH", +"202 889 OFFCURVE", +"384 1071 OFFCURVE", +"610 1071 CURVE SMOOTH", +"836 1071 OFFCURVE", +"1018 889 OFFCURVE", +"1018 663 CURVE SMOOTH", +"1018 437 OFFCURVE", +"836 255 OFFCURVE", +"610 255 CURVE SMOOTH" +); +} +); +width = 1220; +} +); +unicode = 00A4; +}, +{ +color = 5; +glyphname = dollar; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = S; +transform = "{1, 0, 0, 1, 30, 0}"; +} +); +hints = ( +{ +place = "{609, 250}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"609 1926 LINE", +"609 1664 LINE", +"859 1664 LINE", +"859 1926 LINE" +); +}, +{ +closed = 1; +nodes = ( +"609 -10 LINE", +"609 -276 LINE", +"859 -276 LINE", +"859 -10 LINE" +); +} +); +width = 1406; +}, +{ +components = ( +{ +alignment = -1; +name = S; +transform = "{1, 0, 0, 1, 57.042, 0}"; +} +); +hints = ( +{ +place = "{703, 125}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"703 1926 LINE", +"703 1671 LINE", +"828 1671 LINE", +"828 1926 LINE" +); +}, +{ +closed = 1; +nodes = ( +"703 -21 LINE", +"703 -276 LINE", +"828 -276 LINE", +"828 -21 LINE" +); +} +); +width = 1471; +}, +{ +components = ( +{ +alignment = -1; +name = S; +transform = "{1, 0, 0, 1, 74, 0}"; +} +); +hints = ( +{ +place = "{762, 46}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"762 1926 LINE", +"762 1675 LINE", +"808 1675 LINE", +"808 1926 LINE" +); +}, +{ +closed = 1; +nodes = ( +"762 -28 LINE", +"762 -276 LINE", +"808 -276 LINE", +"808 -28 LINE" +); +} +); +width = 1512; +} +); +leftKerningGroup = _S; +rightKerningGroup = _A1; +unicode = 0024; +}, +{ +color = 5; +glyphname = euro; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = C; +transform = "{1, 0, 0, 1, 219, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{528, 250}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{868, 250}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"103 1118 LINE", +"103 868 LINE", +"1349 868 LINE", +"1349 1118 LINE" +); +}, +{ +closed = 1; +nodes = ( +"103 778 LINE", +"103 528 LINE", +"1349 528 LINE", +"1349 778 LINE" +); +} +); +width = 1778; +}, +{ +components = ( +{ +alignment = -1; +name = C; +transform = "{1, 0, 0, 1, 222, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{592, 125}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{929, 125}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"198 1054 LINE", +"198 929 LINE", +"1444 929 LINE", +"1444 1054 LINE" +); +}, +{ +closed = 1; +nodes = ( +"198 717 LINE", +"198 592 LINE", +"1444 592 LINE", +"1444 717 LINE" +); +} +); +width = 1937; +}, +{ +components = ( +{ +alignment = -1; +name = C; +transform = "{1, 0, 0, 1, 247, -2}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{632, 46}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{968, 46}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"259 1014 LINE", +"259 968 LINE", +"1503 968 LINE", +"1503 1014 LINE" +); +}, +{ +closed = 1; +nodes = ( +"257 678 LINE", +"257 632 LINE", +"1503 632 LINE", +"1503 678 LINE" +); +} +); +width = 2036; +} +); +rightKerningGroup = _A1; +unicode = 20AC; +}, +{ +color = 5; +glyphname = florin; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1382, 368}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-551, 368}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{708, 316}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"376 -551 OFFCURVE", +"567 -337 OFFCURVE", +"596 -3 CURVE SMOOTH", +"658 708 LINE", +"886 708 LINE", +"914 1024 LINE", +"686 1024 LINE", +"700 1188 LINE SMOOTH", +"712 1339 OFFCURVE", +"738 1382 OFFCURVE", +"815 1382 CURVE SMOOTH", +"848 1382 OFFCURVE", +"886 1373 OFFCURVE", +"913 1358 CURVE", +"1083 1648 LINE", +"1008 1711 OFFCURVE", +"889 1750 OFFCURVE", +"773 1750 CURVE SMOOTH", +"506 1750 OFFCURVE", +"316 1536 OFFCURVE", +"286 1202 CURVE SMOOTH", +"270 1024 LINE", +"110 1024 LINE", +"82 708 LINE", +"242 708 LINE", +"182 11 LINE SMOOTH", +"169 -140 OFFCURVE", +"144 -183 OFFCURVE", +"67 -183 CURVE SMOOTH", +"34 -183 OFFCURVE", +"-4 -174 OFFCURVE", +"-31 -159 CURVE", +"-201 -449 LINE", +"-126 -512 OFFCURVE", +"-7 -551 OFFCURVE", +"109 -551 CURVE SMOOTH" +); +} +); +width = 978; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1579, 171}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-551, 171}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{878, 147}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"255 -551 OFFCURVE", +"387 -403 OFFCURVE", +"411 -158 CURVE SMOOTH", +"514 878 LINE", +"769 878 LINE", +"782 1025 LINE", +"527 1025 LINE", +"562 1358 LINE SMOOTH", +"578 1509 OFFCURVE", +"635 1579 OFFCURVE", +"734 1579 CURVE SMOOTH", +"774 1579 OFFCURVE", +"814 1567 OFFCURVE", +"840 1548 CURVE", +"925 1682 LINE", +"874 1726 OFFCURVE", +"799 1750 OFFCURVE", +"719 1750 CURVE SMOOTH", +"523 1750 OFFCURVE", +"392 1602 OFFCURVE", +"367 1357 CURVE SMOOTH", +"333 1025 LINE", +"219 1025 LINE", +"206 878 LINE", +"319 878 LINE", +"216 -159 LINE SMOOTH", +"201 -310 OFFCURVE", +"142 -380 OFFCURVE", +"43 -380 CURVE SMOOTH", +"3 -380 OFFCURVE", +"-37 -368 OFFCURVE", +"-63 -349 CURVE", +"-148 -483 LINE", +"-97 -527 OFFCURVE", +"-21 -551 OFFCURVE", +"59 -551 CURVE SMOOTH" +); +} +); +width = 898; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-551, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{984, 42}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"179 -551 OFFCURVE", +"275 -445 OFFCURVE", +"295 -255 CURVE SMOOTH", +"424 984 LINE", +"696 984 LINE", +"700 1026 LINE", +"428 1026 LINE", +"475 1464 LINE SMOOTH", +"491 1615 OFFCURVE", +"570 1702 OFFCURVE", +"684 1702 CURVE SMOOTH", +"728 1702 OFFCURVE", +"769 1689 OFFCURVE", +"795 1667 CURVE", +"826 1704 LINE", +"790 1735 OFFCURVE", +"742 1750 OFFCURVE", +"685 1750 CURVE SMOOTH", +"533 1750 OFFCURVE", +"437 1644 OFFCURVE", +"417 1454 CURVE SMOOTH", +"372 1026 LINE", +"288 1026 LINE", +"284 984 LINE", +"368 984 LINE", +"237 -265 LINE SMOOTH", +"221 -416 OFFCURVE", +"141 -503 OFFCURVE", +"28 -503 CURVE SMOOTH", +"-16 -503 OFFCURVE", +"-57 -490 OFFCURVE", +"-83 -468 CURVE", +"-114 -505 LINE", +"-78 -536 OFFCURVE", +"-30 -551 OFFCURVE", +"27 -551 CURVE SMOOTH" +); +} +); +width = 848; +} +); +leftMetricsKey = j; +rightMetricsKey = f; +unicode = 0192; +}, +{ +color = 5; +glyphname = sterling; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{-30, 336}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{564, 226}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1316, 366}"; +type = Stem; +}, +{ +place = "{245, 414}"; +type = Stem; +}, +{ +place = "{458, 359}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1296 -30 OFFCURVE", +"1435 80 OFFCURVE", +"1471 264 CURVE", +"1151 422 LINE", +"1137 334 OFFCURVE", +"1107 306 OFFCURVE", +"1030 306 CURVE SMOOTH", +"971 306 OFFCURVE", +"851 326 OFFCURVE", +"783 348 CURVE", +"806 390 OFFCURVE", +"817 429 OFFCURVE", +"817 473 CURVE SMOOTH", +"817 503 OFFCURVE", +"812 536 OFFCURVE", +"803 564 CURVE", +"1067 564 LINE", +"1067 790 LINE", +"749 790 LINE", +"685 949 OFFCURVE", +"659 1086 OFFCURVE", +"659 1164 CURVE SMOOTH", +"659 1272 OFFCURVE", +"708 1316 OFFCURVE", +"802 1316 CURVE SMOOTH", +"913 1316 OFFCURVE", +"968 1256 OFFCURVE", +"1007 1131 CURVE", +"1363 1312 LINE", +"1305 1517 OFFCURVE", +"1117 1682 OFFCURVE", +"811 1682 CURVE SMOOTH", +"469 1682 OFFCURVE", +"245 1477 OFFCURVE", +"245 1145 CURVE SMOOTH", +"245 1018 OFFCURVE", +"278 894 OFFCURVE", +"337 790 CURVE", +"153 790 LINE", +"153 564 LINE", +"435 564 LINE", +"449 540 OFFCURVE", +"458 507 OFFCURVE", +"458 476 CURVE SMOOTH", +"458 440 OFFCURVE", +"449 404 OFFCURVE", +"435 386 CURVE", +"258 386 OFFCURVE", +"131 221 OFFCURVE", +"139 0 CURVE", +"497 0 LINE", +"497 52 OFFCURVE", +"518 72 OFFCURVE", +"574 72 CURVE SMOOTH", +"700 72 OFFCURVE", +"902 -30 OFFCURVE", +"1095 -30 CURVE SMOOTH" +); +} +); +width = 1514; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-30, 161}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{613, 116}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1513, 168}"; +type = Stem; +}, +{ +place = "{332, 191}"; +type = Stem; +}, +{ +place = "{571, 167}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1341 -30 OFFCURVE", +"1479 98 OFFCURVE", +"1510 273 CURVE", +"1354 349 LINE", +"1339 231 OFFCURVE", +"1266 131 OFFCURVE", +"1122 131 CURVE SMOOTH", +"972 131 OFFCURVE", +"837 251 OFFCURVE", +"693 260 CURVE", +"725 328 OFFCURVE", +"738 396 OFFCURVE", +"738 455 CURVE SMOOTH", +"738 518 OFFCURVE", +"723 565 OFFCURVE", +"698 613 CURVE", +"1124 613 LINE", +"1124 729 LINE", +"661 729 LINE", +"592 861 OFFCURVE", +"523 987 OFFCURVE", +"523 1148 CURVE SMOOTH", +"523 1371 OFFCURVE", +"656 1513 OFFCURVE", +"875 1513 CURVE SMOOTH", +"1103 1513 OFFCURVE", +"1217 1360 OFFCURVE", +"1253 1199 CURVE", +"1421 1275 LINE", +"1362 1525 OFFCURVE", +"1151 1681 OFFCURVE", +"876 1681 CURVE SMOOTH", +"556 1681 OFFCURVE", +"332 1470 OFFCURVE", +"332 1142 CURVE SMOOTH", +"332 969 OFFCURVE", +"397 841 OFFCURVE", +"470 729 CURVE", +"210 729 LINE", +"210 613 LINE", +"527 613 LINE", +"552 570 OFFCURVE", +"571 522 OFFCURVE", +"571 455 CURVE SMOOTH", +"571 389 OFFCURVE", +"554 320 OFFCURVE", +"533 273 CURVE", +"370 266 OFFCURVE", +"250 143 OFFCURVE", +"245 0 CURVE", +"416 0 LINE", +"426 77 OFFCURVE", +"509 124 OFFCURVE", +"604 124 CURVE SMOOTH", +"776 124 OFFCURVE", +"928 -30 OFFCURVE", +"1143 -30 CURVE SMOOTH" +); +} +); +width = 1680; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{-30, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{644, 46}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1636, 44}"; +type = Stem; +}, +{ +place = "{386, 52}"; +type = Stem; +}, +{ +place = "{642, 46}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1370 -30 OFFCURVE", +"1506 110 OFFCURVE", +"1534 278 CURVE", +"1482 304 LINE", +"1466 167 OFFCURVE", +"1366 22 OFFCURVE", +"1180 22 CURVE SMOOTH", +"973 22 OFFCURVE", +"829 204 OFFCURVE", +"637 204 CURVE", +"674 289 OFFCURVE", +"688 375 OFFCURVE", +"688 443 CURVE SMOOTH", +"688 527 OFFCURVE", +"667 583 OFFCURVE", +"632 644 CURVE", +"1160 644 LINE", +"1160 690 LINE", +"606 690 LINE", +"534 806 OFFCURVE", +"438 925 OFFCURVE", +"438 1138 CURVE SMOOTH", +"438 1433 OFFCURVE", +"624 1636 OFFCURVE", +"920 1636 CURVE SMOOTH", +"1222 1636 OFFCURVE", +"1373 1425 OFFCURVE", +"1408 1242 CURVE", +"1458 1252 LINE", +"1398 1530 OFFCURVE", +"1173 1680 OFFCURVE", +"917 1680 CURVE SMOOTH", +"610 1680 OFFCURVE", +"386 1465 OFFCURVE", +"386 1140 CURVE SMOOTH", +"386 939 OFFCURVE", +"471 808 OFFCURVE", +"554 690 CURVE", +"246 690 LINE", +"246 644 LINE", +"584 644 LINE", +"616 588 OFFCURVE", +"642 531 OFFCURVE", +"642 442 CURVE SMOOTH", +"642 357 OFFCURVE", +"620 267 OFFCURVE", +"594 202 CURVE", +"440 190 OFFCURVE", +"324 94 OFFCURVE", +"312 0 CURVE", +"365 0 LINE", +"381 92 OFFCURVE", +"504 156 OFFCURVE", +"622 156 CURVE SMOOTH", +"824 156 OFFCURVE", +"944 -30 OFFCURVE", +"1173 -30 CURVE SMOOTH" +); +} +); +width = 1784; +} +); +rightKerningGroup = _A1; +unicode = 00A3; +}, +{ +color = 5; +glyphname = yen; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = Y; +transform = "{1, 0, 0, 1, 114, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{192, 310}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{588, 310}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"230 898 LINE", +"230 588 LINE", +"1536 588 LINE", +"1536 898 LINE" +); +}, +{ +closed = 1; +nodes = ( +"230 502 LINE", +"230 192 LINE", +"1536 192 LINE", +"1536 502 LINE" +); +} +); +width = 1767; +}, +{ +components = ( +{ +alignment = -1; +name = Y; +transform = "{1, 0, 0, 1, 94, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{295, 148}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{654, 148}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"334 802 LINE", +"334 654 LINE", +"1343 654 LINE", +"1343 802 LINE" +); +}, +{ +closed = 1; +nodes = ( +"334 443 LINE", +"334 295 LINE", +"1343 295 LINE", +"1343 443 LINE" +); +} +); +width = 1678; +}, +{ +components = ( +{ +alignment = -1; +name = Y; +transform = "{1, 0, 0, 1, 80, 0}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{360, 46}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{696, 46}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"400 742 LINE", +"400 696 LINE", +"1222 696 LINE", +"1222 742 LINE" +); +}, +{ +closed = 1; +nodes = ( +"400 406 LINE", +"400 360 LINE", +"1222 360 LINE", +"1222 406 LINE" +); +} +); +width = 1622; +} +); +rightKerningGroup = _A1; +unicode = 00A5; +}, +{ +color = 5; +glyphname = plus; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{460, 360}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{650, 360}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"820 316 LINE", +"820 650 LINE", +"1154 650 LINE", +"1154 1010 LINE", +"820 1010 LINE", +"820 1344 LINE", +"460 1344 LINE", +"460 1010 LINE", +"126 1010 LINE", +"126 650 LINE", +"460 650 LINE", +"460 316 LINE" +); +} +); +width = 1280; +}, +{ +hints = ( +{ +place = "{618, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{745, 168}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"786 316 LINE", +"786 745 LINE", +"1215 745 LINE", +"1215 913 LINE", +"786 913 LINE", +"786 1342 LINE", +"618 1342 LINE", +"618 913 LINE", +"189 913 LINE", +"189 745 LINE", +"618 745 LINE", +"618 316 LINE" +); +} +); +width = 1404; +}, +{ +hints = ( +{ +place = "{717, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{804, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"765 316 LINE", +"765 804 LINE", +"1253 804 LINE", +"1253 852 LINE", +"765 852 LINE", +"765 1340 LINE", +"717 1340 LINE", +"717 852 LINE", +"229 852 LINE", +"229 804 LINE", +"717 804 LINE", +"717 316 LINE" +); +} +); +width = 1482; +} +); +rightKerningGroup = _A1; +unicode = 002B; +}, +{ +color = 5; +glyphname = minus; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{650, 360}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1263 650 LINE", +"1263 1010 LINE", +"235 1010 LINE", +"235 650 LINE" +); +} +); +width = 1498; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{745, 168}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1332 745 LINE", +"1332 913 LINE", +"307 913 LINE", +"307 745 LINE" +); +} +); +width = 1639; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{804, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1376 804 LINE", +"1376 852 LINE", +"352 852 LINE", +"352 804 LINE" +); +} +); +width = 1728; +} +); +rightKerningGroup = _A1; +unicode = 2212; +}, +{ +color = 5; +glyphname = multiply; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"638 576 LINE", +"924 292 LINE", +"1176 542 LINE", +"890 830 LINE", +"1176 1118 LINE", +"924 1368 LINE", +"638 1084 LINE", +"352 1368 LINE", +"100 1118 LINE", +"386 830 LINE", +"100 542 LINE", +"352 292 LINE" +); +} +); +width = 1276; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"656 711 LINE", +"1009 357 LINE", +"1127 474 LINE", +"773 829 LINE", +"1127 1184 LINE", +"1011 1300 LINE", +"656 946 LINE", +"302 1300 LINE", +"184 1184 LINE", +"539 829 LINE", +"184 474 LINE", +"301 357 LINE" +); +} +); +width = 1312; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"667 796 LINE", +"1063 398 LINE", +"1097 432 LINE", +"699 828 LINE", +"1097 1226 LINE", +"1065 1258 LINE", +"667 860 LINE", +"271 1258 LINE", +"237 1226 LINE", +"635 828 LINE", +"237 432 LINE", +"269 398 LINE" +); +} +); +width = 1334; +} +); +rightKerningGroup = _A1; +unicode = 00D7; +}, +{ +color = 5; +glyphname = divide; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{206, 376}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{650, 360}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1078, 376}"; +type = Stem; +}, +{ +place = "{423, 364}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1119 650 LINE", +"1119 1010 LINE", +"91 1010 LINE", +"91 650 LINE" +); +}, +{ +closed = 1; +nodes = ( +"705 206 OFFCURVE", +"787 288 OFFCURVE", +"787 394 CURVE SMOOTH", +"787 500 OFFCURVE", +"705 582 OFFCURVE", +"605 582 CURVE SMOOTH", +"505 582 OFFCURVE", +"423 500 OFFCURVE", +"423 394 CURVE SMOOTH", +"423 288 OFFCURVE", +"505 206 OFFCURVE", +"605 206 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"705 1078 OFFCURVE", +"787 1160 OFFCURVE", +"787 1266 CURVE SMOOTH", +"787 1372 OFFCURVE", +"705 1454 OFFCURVE", +"605 1454 CURVE SMOOTH", +"505 1454 OFFCURVE", +"423 1372 OFFCURVE", +"423 1266 CURVE SMOOTH", +"423 1160 OFFCURVE", +"505 1078 OFFCURVE", +"605 1078 CURVE SMOOTH" +); +} +); +width = 1210; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{249, 204}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{746, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1207, 204}"; +type = Stem; +}, +{ +place = "{577, 200}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1190 746 LINE", +"1190 914 LINE", +"164 914 LINE", +"164 746 LINE" +); +}, +{ +closed = 1; +nodes = ( +"732 249 OFFCURVE", +"777 294 OFFCURVE", +"777 351 CURVE SMOOTH", +"777 408 OFFCURVE", +"732 453 OFFCURVE", +"677 453 CURVE SMOOTH", +"622 453 OFFCURVE", +"577 408 OFFCURVE", +"577 351 CURVE SMOOTH", +"577 294 OFFCURVE", +"622 249 OFFCURVE", +"677 249 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"732 1207 OFFCURVE", +"777 1252 OFFCURVE", +"777 1309 CURVE SMOOTH", +"777 1366 OFFCURVE", +"732 1411 OFFCURVE", +"677 1411 CURVE SMOOTH", +"622 1411 OFFCURVE", +"577 1366 OFFCURVE", +"577 1309 CURVE SMOOTH", +"577 1252 OFFCURVE", +"622 1207 OFFCURVE", +"677 1207 CURVE SMOOTH" +); +} +); +width = 1388; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{276, 96}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{806, 0}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1288, 96}"; +type = Stem; +}, +{ +place = "{674, 96}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1234 806 LINE", +"1234 854 LINE", +"210 854 LINE", +"210 806 LINE" +); +}, +{ +closed = 1; +nodes = ( +"748 276 OFFCURVE", +"770 298 OFFCURVE", +"770 324 CURVE SMOOTH", +"770 350 OFFCURVE", +"748 372 OFFCURVE", +"722 372 CURVE SMOOTH", +"696 372 OFFCURVE", +"674 350 OFFCURVE", +"674 324 CURVE SMOOTH", +"674 298 OFFCURVE", +"696 276 OFFCURVE", +"722 276 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"748 1288 OFFCURVE", +"770 1310 OFFCURVE", +"770 1336 CURVE SMOOTH", +"770 1362 OFFCURVE", +"748 1384 OFFCURVE", +"722 1384 CURVE SMOOTH", +"696 1384 OFFCURVE", +"674 1362 OFFCURVE", +"674 1336 CURVE SMOOTH", +"674 1310 OFFCURVE", +"696 1288 OFFCURVE", +"722 1288 CURVE SMOOTH" +); +} +); +width = 1500; +} +); +rightKerningGroup = _A1; +unicode = 00F7; +}, +{ +color = 5; +glyphname = equal; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{398, 360}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{904, 360}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1263 904 LINE", +"1263 1264 LINE", +"235 1264 LINE", +"235 904 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1263 398 LINE", +"1263 758 LINE", +"235 758 LINE", +"235 398 LINE" +); +} +); +width = 1498; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{536, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{956, 168}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1332 956 LINE", +"1332 1124 LINE", +"307 1124 LINE", +"307 956 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1332 536 LINE", +"1332 704 LINE", +"307 704 LINE", +"307 536 LINE" +); +} +); +width = 1639; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{622, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{988, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1376 988 LINE", +"1376 1036 LINE", +"352 1036 LINE", +"352 988 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1376 622 LINE", +"1376 670 LINE", +"352 670 LINE", +"352 622 LINE" +); +} +); +width = 1728; +} +); +rightKerningGroup = _A1; +unicode = 003D; +}, +{ +color = 5; +glyphname = notequal; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = equal; +transform = "{1, 0, 0, 1, -29, 0}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"396 106 LINE", +"1230 1544 LINE", +"956 1544 LINE", +"122 106 LINE" +); +} +); +width = 1424; +}, +{ +components = ( +{ +alignment = -1; +name = equal; +transform = "{1, 0, 0, 1, -69, 0}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"419 230 LINE", +"1110 1420 LINE", +"974 1420 LINE", +"283 230 LINE" +); +} +); +width = 1495; +}, +{ +components = ( +{ +alignment = -1; +name = equal; +transform = "{1, 0, 0, 1, -103, 0}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"432 308 LINE", +"1034 1342 LINE", +"986 1342 LINE", +"384 308 LINE" +); +} +); +width = 1540; +} +); +rightKerningGroup = _A1; +unicode = 2260; +}, +{ +color = 5; +glyphname = greater; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1279 694 LINE", +"1279 970 LINE", +"187 1394 LINE", +"187 1064 LINE", +"837 832 LINE", +"187 600 LINE", +"187 270 LINE" +); +} +); +width = 1366; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1309 768 LINE", +"1309 896 LINE", +"216 1394 LINE", +"216 1234 LINE", +"1102 832 LINE", +"216 430 LINE", +"216 270 LINE" +); +} +); +width = 1481; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1328 814 LINE", +"1328 850 LINE", +"234 1394 LINE", +"234 1340 LINE", +"1268 832 LINE", +"234 324 LINE", +"234 270 LINE" +); +} +); +width = 1553; +} +); +rightKerningGroup = _A1; +unicode = 003E; +}, +{ +color = 5; +glyphname = less; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1179 600 LINE", +"529 832 LINE", +"1179 1064 LINE", +"1179 1394 LINE", +"87 970 LINE", +"87 694 LINE", +"1179 270 LINE" +); +} +); +width = 1366; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1265 430 LINE", +"379 832 LINE", +"1265 1234 LINE", +"1265 1394 LINE", +"172 896 LINE", +"172 768 LINE", +"1265 270 LINE" +); +} +); +width = 1481; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1319 324 LINE", +"285 832 LINE", +"1319 1340 LINE", +"1319 1394 LINE", +"225 850 LINE", +"225 814 LINE", +"1319 270 LINE" +); +} +); +width = 1553; +} +); +rightKerningGroup = _A1; +unicode = 003C; +}, +{ +color = 5; +glyphname = greaterequal; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{0, 360}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1299 974 LINE", +"1299 1250 LINE", +"203 1674 LINE", +"203 1342 LINE", +"855 1108 LINE", +"203 880 LINE", +"203 550 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1299 0 LINE", +"1299 360 LINE", +"203 360 LINE", +"203 0 LINE" +); +} +); +width = 1428; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{119, 168}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1327 962 LINE", +"1327 1090 LINE", +"233 1588 LINE", +"233 1432 LINE", +"1124 1024 LINE", +"233 619 LINE", +"233 464 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1327 119 LINE", +"1327 287 LINE", +"233 287 LINE", +"233 119 LINE" +); +} +); +width = 1521; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{194, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1345 954 LINE", +"1345 990 LINE", +"251 1534 LINE", +"251 1488 LINE", +"1293 972 LINE", +"251 456 LINE", +"251 410 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1345 194 LINE", +"1345 242 LINE", +"251 242 LINE", +"251 194 LINE" +); +} +); +width = 1580; +} +); +rightKerningGroup = _A1; +unicode = 2265; +}, +{ +color = 5; +glyphname = lessequal; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{0, 360}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1225 880 LINE", +"573 1108 LINE", +"1225 1342 LINE", +"1225 1674 LINE", +"129 1250 LINE", +"129 974 LINE", +"1225 550 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1225 0 LINE", +"1225 360 LINE", +"129 360 LINE", +"129 0 LINE" +); +} +); +width = 1428; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{119, 168}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1289 619 LINE", +"397 1024 LINE", +"1289 1432 LINE", +"1289 1588 LINE", +"194 1090 LINE", +"194 962 LINE", +"1289 464 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1289 119 LINE", +"1289 287 LINE", +"194 287 LINE", +"194 119 LINE" +); +} +); +width = 1521; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{194, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1329 456 LINE", +"287 972 LINE", +"1329 1488 LINE", +"1329 1534 LINE", +"235 990 LINE", +"235 954 LINE", +"1329 410 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1329 194 LINE", +"1329 242 LINE", +"235 242 LINE", +"235 194 LINE" +); +} +); +width = 1580; +} +); +rightKerningGroup = _A1; +unicode = 2264; +}, +{ +color = 5; +glyphname = plusminus; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{0, 360}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{710, 358}"; +type = Stem; +}, +{ +place = "{518, 360}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"878 436 LINE", +"878 710 LINE", +"1212 710 LINE", +"1212 1068 LINE", +"878 1068 LINE", +"878 1342 LINE", +"518 1342 LINE", +"518 1068 LINE", +"184 1068 LINE", +"184 710 LINE", +"518 710 LINE", +"518 436 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1212 0 LINE", +"1212 360 LINE", +"184 360 LINE", +"184 0 LINE" +); +} +); +width = 1396; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{0, 168}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{768, 167}"; +type = Stem; +}, +{ +place = "{648, 169}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"817 362 LINE", +"817 768 LINE", +"1245 768 LINE", +"1245 935 LINE", +"817 935 LINE", +"817 1341 LINE", +"648 1341 LINE", +"648 935 LINE", +"220 935 LINE", +"220 768 LINE", +"648 768 LINE", +"648 362 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1245 0 LINE", +"1245 168 LINE", +"220 168 LINE", +"220 0 LINE" +); +} +); +width = 1465; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{0, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{804, 48}"; +type = Stem; +}, +{ +place = "{730, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"778 316 LINE", +"778 804 LINE", +"1266 804 LINE", +"1266 852 LINE", +"778 852 LINE", +"778 1340 LINE", +"730 1340 LINE", +"730 852 LINE", +"242 852 LINE", +"242 804 LINE", +"730 804 LINE", +"730 316 LINE" +); +}, +{ +closed = 1; +nodes = ( +"1266 0 LINE", +"1266 48 LINE", +"242 48 LINE", +"242 0 LINE" +); +} +); +width = 1508; +} +); +rightKerningGroup = _A1; +unicode = 00B1; +}, +{ +color = 5; +glyphname = approxequal; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = tildecomb; +transform = "{1, 0, 0, 1, 235, -232}"; +}, +{ +alignment = -1; +name = tildecomb; +transform = "{1, 0, 0, 1, 235, -790}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1592; +}, +{ +components = ( +{ +alignment = -1; +name = tildecomb; +transform = "{1, 0, 0, 1, 311, -335}"; +}, +{ +alignment = -1; +name = tildecomb; +transform = "{1, 0, 0, 1, 307, -824}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1638; +}, +{ +components = ( +{ +alignment = -1; +name = tildecomb; +transform = "{1, 0, 0, 1, 352, -400}"; +}, +{ +alignment = -1; +name = tildecomb; +transform = "{1, 0, 0, 1, 352, -846}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1660; +} +); +leftMetricsKey = equal; +rightMetricsKey = equal; +unicode = 2248; +}, +{ +color = 5; +glyphname = asciitilde; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{750, 309}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{586, 309}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"375 643 LINE", +"412 715 OFFCURVE", +"460 750 OFFCURVE", +"525 750 CURVE SMOOTH", +"666 750 OFFCURVE", +"756 586 OFFCURVE", +"940 586 CURVE SMOOTH", +"1077 586 OFFCURVE", +"1196 675 OFFCURVE", +"1286 863 CURVE", +"1074 1002 LINE", +"1037 930 OFFCURVE", +"989 895 OFFCURVE", +"924 895 CURVE SMOOTH", +"783 895 OFFCURVE", +"693 1059 OFFCURVE", +"509 1059 CURVE SMOOTH", +"372 1059 OFFCURVE", +"253 970 OFFCURVE", +"163 782 CURVE" +); +} +); +width = 1449; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{841, 150}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{680, 150}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"352 709 LINE", +"396 786 OFFCURVE", +"462 841 OFFCURVE", +"554 841 CURVE SMOOTH", +"711 841 OFFCURVE", +"776 680 OFFCURVE", +"960 680 CURVE SMOOTH", +"1081 680 OFFCURVE", +"1188 750 OFFCURVE", +"1264 892 CURVE", +"1157 962 LINE", +"1108 876 OFFCURVE", +"1037 830 OFFCURVE", +"953 830 CURVE SMOOTH", +"797 830 OFFCURVE", +"733 991 OFFCURVE", +"548 991 CURVE SMOOTH", +"417 991 OFFCURVE", +"314 910 OFFCURVE", +"244 779 CURVE" +); +} +); +width = 1505; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{886, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{726, 50}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"332 738 LINE", +"381 818 OFFCURVE", +"459 886 OFFCURVE", +"568 886 CURVE SMOOTH", +"735 886 OFFCURVE", +"783 726 OFFCURVE", +"967 726 CURVE SMOOTH", +"1079 726 OFFCURVE", +"1178 785 OFFCURVE", +"1246 898 CURVE", +"1204 924 LINE", +"1147 829 OFFCURVE", +"1063 776 OFFCURVE", +"967 776 CURVE SMOOTH", +"801 776 OFFCURVE", +"753 936 OFFCURVE", +"568 936 CURVE SMOOTH", +"440 936 OFFCURVE", +"347 860 OFFCURVE", +"290 764 CURVE" +); +} +); +width = 1540; +} +); +rightKerningGroup = _A1; +unicode = 007E; +}, +{ +color = 5; +glyphname = logicalnot; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1154 316 LINE", +"1154 1010 LINE", +"126 1010 LINE", +"126 650 LINE", +"794 650 LINE", +"794 316 LINE" +); +} +); +width = 1280; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1215 316 LINE", +"1215 913 LINE", +"189 913 LINE", +"189 745 LINE", +"1047 745 LINE", +"1047 316 LINE" +); +} +); +width = 1404; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1253 316 LINE", +"1253 852 LINE", +"229 852 LINE", +"229 804 LINE", +"1205 804 LINE", +"1205 316 LINE" +); +} +); +width = 1482; +} +); +unicode = 00AC; +}, +{ +color = 5; +glyphname = asciicircum; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"418 1210 LINE", +"564 1384 LINE", +"710 1210 LINE", +"1086 1210 LINE", +"672 1682 LINE", +"456 1682 LINE", +"42 1210 LINE" +); +} +); +width = 1128; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"330 1210 LINE", +"620 1545 LINE", +"910 1210 LINE", +"1084 1210 LINE", +"670 1681 LINE", +"570 1681 LINE", +"156 1210 LINE" +); +} +); +width = 1240; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"275 1210 LINE", +"655 1646 LINE", +"1035 1210 LINE", +"1083 1210 LINE", +"669 1680 LINE", +"641 1680 LINE", +"227 1210 LINE" +); +} +); +width = 1310; +} +); +rightKerningGroup = _A1; +unicode = 005E; +}, +{ +color = 5; +glyphname = infinity; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"746 29 OFFCURVE", +"895 135 OFFCURVE", +"1043 292 CURVE", +"1190 135 OFFCURVE", +"1339 29 OFFCURVE", +"1519 29 CURVE SMOOTH", +"1776 29 OFFCURVE", +"2026 243 OFFCURVE", +"2026 545 CURVE SMOOTH", +"2026 847 OFFCURVE", +"1774 1060 OFFCURVE", +"1519 1060 CURVE SMOOTH", +"1339 1060 OFFCURVE", +"1190 954 OFFCURVE", +"1043 798 CURVE", +"895 954 OFFCURVE", +"746 1060 OFFCURVE", +"566 1060 CURVE SMOOTH", +"311 1060 OFFCURVE", +"59 847 OFFCURVE", +"59 545 CURVE SMOOTH", +"59 243 OFFCURVE", +"309 29 OFFCURVE", +"566 29 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"547 390 OFFCURVE", +"472 453 OFFCURVE", +"472 545 CURVE SMOOTH", +"472 636 OFFCURVE", +"548 699 OFFCURVE", +"623 699 CURVE SMOOTH", +"701 699 OFFCURVE", +"759 630 OFFCURVE", +"831 545 CURVE", +"758 459 OFFCURVE", +"701 390 OFFCURVE", +"623 390 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1384 390 OFFCURVE", +"1327 459 OFFCURVE", +"1254 545 CURVE", +"1326 630 OFFCURVE", +"1384 699 OFFCURVE", +"1462 699 CURVE SMOOTH", +"1537 699 OFFCURVE", +"1613 636 OFFCURVE", +"1613 545 CURVE SMOOTH", +"1613 453 OFFCURVE", +"1538 390 OFFCURVE", +"1462 390 CURVE SMOOTH" +); +} +); +width = 2085; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"757 94 OFFCURVE", +"909 235 OFFCURVE", +"1067 424 CURVE", +"1225 235 OFFCURVE", +"1376 94 OFFCURVE", +"1568 94 CURVE SMOOTH", +"1792 94 OFFCURVE", +"2011 281 OFFCURVE", +"2011 545 CURVE SMOOTH", +"2011 809 OFFCURVE", +"1791 995 OFFCURVE", +"1568 995 CURVE SMOOTH", +"1376 995 OFFCURVE", +"1225 854 OFFCURVE", +"1067 666 CURVE", +"909 854 OFFCURVE", +"757 995 OFFCURVE", +"566 995 CURVE SMOOTH", +"343 995 OFFCURVE", +"123 809 OFFCURVE", +"123 545 CURVE SMOOTH", +"123 281 OFFCURVE", +"342 94 OFFCURVE", +"566 94 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"451 264 OFFCURVE", +"313 378 OFFCURVE", +"313 545 CURVE SMOOTH", +"313 712 OFFCURVE", +"452 825 OFFCURVE", +"587 825 CURVE SMOOTH", +"730 825 OFFCURVE", +"834 700 OFFCURVE", +"967 545 CURVE", +"834 389 OFFCURVE", +"729 264 OFFCURVE", +"587 264 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1404 264 OFFCURVE", +"1300 389 OFFCURVE", +"1167 545 CURVE", +"1300 700 OFFCURVE", +"1404 825 OFFCURVE", +"1546 825 CURVE SMOOTH", +"1682 825 OFFCURVE", +"1821 712 OFFCURVE", +"1821 545 CURVE SMOOTH", +"1821 378 OFFCURVE", +"1683 264 OFFCURVE", +"1546 264 CURVE SMOOTH" +); +} +); +width = 2134; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"764 135 OFFCURVE", +"917 298 OFFCURVE", +"1082 507 CURVE", +"1247 298 OFFCURVE", +"1400 135 OFFCURVE", +"1598 135 CURVE SMOOTH", +"1802 135 OFFCURVE", +"2001 305 OFFCURVE", +"2001 545 CURVE SMOOTH", +"2001 785 OFFCURVE", +"1801 954 OFFCURVE", +"1598 954 CURVE SMOOTH", +"1400 954 OFFCURVE", +"1247 791 OFFCURVE", +"1082 583 CURVE", +"917 791 OFFCURVE", +"764 954 OFFCURVE", +"566 954 CURVE SMOOTH", +"363 954 OFFCURVE", +"163 785 OFFCURVE", +"163 545 CURVE SMOOTH", +"163 305 OFFCURVE", +"362 135 OFFCURVE", +"566 135 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"390 185 OFFCURVE", +"213 331 OFFCURVE", +"213 545 CURVE SMOOTH", +"213 759 OFFCURVE", +"391 904 OFFCURVE", +"565 904 CURVE SMOOTH", +"748 904 OFFCURVE", +"881 744 OFFCURVE", +"1052 545 CURVE", +"881 345 OFFCURVE", +"747 185 OFFCURVE", +"565 185 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1417 185 OFFCURVE", +"1283 345 OFFCURVE", +"1112 545 CURVE", +"1283 744 OFFCURVE", +"1416 904 OFFCURVE", +"1599 904 CURVE SMOOTH", +"1773 904 OFFCURVE", +"1951 759 OFFCURVE", +"1951 545 CURVE SMOOTH", +"1951 331 OFFCURVE", +"1774 185 OFFCURVE", +"1599 185 CURVE SMOOTH" +); +} +); +width = 2164; +} +); +leftMetricsKey = o; +rightMetricsKey = o; +unicode = 221E; +}, +{ +color = 5; +glyphname = emptyset; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1165 1006 LINE", +"1027 1146 LINE", +"75 194 LINE", +"215 54 LINE" +); +}, +{ +closed = 1; +nodes = ( +"888 120 OFFCURVE", +"1097 323 OFFCURVE", +"1097 600 CURVE SMOOTH", +"1097 877 OFFCURVE", +"890 1080 OFFCURVE", +"622 1080 CURVE SMOOTH", +"350 1080 OFFCURVE", +"145 870 OFFCURVE", +"145 599 CURVE SMOOTH", +"145 328 OFFCURVE", +"349 120 OFFCURVE", +"621 120 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"493 391 OFFCURVE", +"406 468 OFFCURVE", +"406 600 CURVE SMOOTH", +"406 732 OFFCURVE", +"493 809 OFFCURVE", +"621 809 CURVE SMOOTH", +"749 809 OFFCURVE", +"836 732 OFFCURVE", +"836 600 CURVE SMOOTH", +"836 468 OFFCURVE", +"749 391 OFFCURVE", +"621 391 CURVE SMOOTH" +); +} +); +width = 1200; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1110 1063 LINE", +"1039 1136 LINE", +"117 214 LINE", +"190 142 LINE" +); +}, +{ +closed = 1; +nodes = ( +"870 177 OFFCURVE", +"1074 379 OFFCURVE", +"1074 639 CURVE SMOOTH", +"1074 897 OFFCURVE", +"873 1100 OFFCURVE", +"615 1100 CURVE SMOOTH", +"356 1100 OFFCURVE", +"154 895 OFFCURVE", +"154 638 CURVE SMOOTH", +"154 381 OFFCURVE", +"356 177 OFFCURVE", +"614 177 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"426 307 OFFCURVE", +"281 449 OFFCURVE", +"281 639 CURVE SMOOTH", +"281 828 OFFCURVE", +"426 970 OFFCURVE", +"614 970 CURVE SMOOTH", +"802 970 OFFCURVE", +"948 828 OFFCURVE", +"948 639 CURVE SMOOTH", +"948 449 OFFCURVE", +"802 307 OFFCURVE", +"614 307 CURVE SMOOTH" +); +} +); +width = 1200; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1076 1099 LINE", +"1046 1129 LINE", +"144 227 LINE", +"174 197 LINE" +); +}, +{ +closed = 1; +nodes = ( +"858 213 OFFCURVE", +"1060 414 OFFCURVE", +"1060 663 CURVE SMOOTH", +"1060 909 OFFCURVE", +"862 1113 OFFCURVE", +"610 1113 CURVE SMOOTH", +"360 1113 OFFCURVE", +"160 910 OFFCURVE", +"160 662 CURVE SMOOTH", +"160 414 OFFCURVE", +"360 213 OFFCURVE", +"609 213 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"384 255 OFFCURVE", +"202 437 OFFCURVE", +"202 663 CURVE SMOOTH", +"202 889 OFFCURVE", +"384 1071 OFFCURVE", +"610 1071 CURVE SMOOTH", +"836 1071 OFFCURVE", +"1018 889 OFFCURVE", +"1018 663 CURVE SMOOTH", +"1018 437 OFFCURVE", +"836 255 OFFCURVE", +"610 255 CURVE SMOOTH" +); +} +); +width = 1200; +} +); +unicode = 2205; +}, +{ +color = 5; +glyphname = integral; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"377 -551 OFFCURVE", +"566 -337 OFFCURVE", +"596 -3 CURVE", +"700 1188 LINE", +"712 1339 OFFCURVE", +"740 1382 OFFCURVE", +"815 1382 CURVE SMOOTH", +"850 1382 OFFCURVE", +"886 1373 OFFCURVE", +"913 1358 CURVE", +"1083 1648 LINE", +"1008 1711 OFFCURVE", +"888 1750 OFFCURVE", +"773 1750 CURVE SMOOTH", +"505 1750 OFFCURVE", +"316 1536 OFFCURVE", +"286 1202 CURVE", +"182 11 LINE", +"170 -140 OFFCURVE", +"142 -183 OFFCURVE", +"67 -183 CURVE SMOOTH", +"32 -183 OFFCURVE", +"-4 -174 OFFCURVE", +"-31 -159 CURVE", +"-201 -449 LINE", +"-126 -512 OFFCURVE", +"-6 -551 OFFCURVE", +"109 -551 CURVE SMOOTH" +); +} +); +width = 978; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"260 -551 OFFCURVE", +"387 -408 OFFCURVE", +"411 -158 CURVE", +"562 1358 LINE", +"576 1509 OFFCURVE", +"632 1579 OFFCURVE", +"734 1579 CURVE SMOOTH", +"777 1579 OFFCURVE", +"818 1566 OFFCURVE", +"844 1545 CURVE", +"925 1682 LINE", +"874 1726 OFFCURVE", +"798 1750 OFFCURVE", +"716 1750 CURVE SMOOTH", +"517 1750 OFFCURVE", +"391 1607 OFFCURVE", +"367 1357 CURVE", +"216 -159 LINE SMOOTH", +"201 -310 OFFCURVE", +"145 -380 OFFCURVE", +"44 -380 CURVE SMOOTH", +"0 -380 OFFCURVE", +"-40 -367 OFFCURVE", +"-67 -346 CURVE", +"-148 -483 LINE", +"-97 -527 OFFCURVE", +"-21 -551 OFFCURVE", +"61 -551 CURVE SMOOTH" +); +} +); +width = 898; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"187 -551 OFFCURVE", +"274 -452 OFFCURVE", +"295 -255 CURVE SMOOTH", +"475 1464 LINE SMOOTH", +"491 1615 OFFCURVE", +"565 1702 OFFCURVE", +"683 1702 CURVE SMOOTH", +"732 1702 OFFCURVE", +"775 1687 OFFCURVE", +"801 1662 CURVE", +"826 1704 LINE", +"790 1735 OFFCURVE", +"742 1750 OFFCURVE", +"681 1750 CURVE SMOOTH", +"525 1750 OFFCURVE", +"438 1651 OFFCURVE", +"417 1454 CURVE SMOOTH", +"237 -265 LINE SMOOTH", +"221 -416 OFFCURVE", +"147 -503 OFFCURVE", +"29 -503 CURVE SMOOTH", +"-20 -503 OFFCURVE", +"-63 -488 OFFCURVE", +"-89 -463 CURVE", +"-114 -505 LINE", +"-78 -536 OFFCURVE", +"-30 -551 OFFCURVE", +"31 -551 CURVE SMOOTH" +); +} +); +width = 848; +} +); +leftMetricsKey = j; +rightMetricsKey = f; +unicode = 222B; +}, +{ +color = 5; +glyphname = product; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"669 0 LINE", +"669 1433 LINE", +"1087 1433 LINE", +"1087 0 LINE", +"1401 0 LINE", +"1401 1433 LINE", +"1560 1433 LINE", +"1560 1720 LINE", +"196 1720 LINE", +"196 1433 LINE", +"355 1433 LINE", +"355 0 LINE" +); +} +); +width = 1756; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"579 0 LINE", +"579 1575 LINE", +"1248 1575 LINE", +"1248 0 LINE", +"1403 0 LINE", +"1403 1575 LINE", +"1572 1575 LINE", +"1572 1720 LINE", +"256 1720 LINE", +"256 1575 LINE", +"424 1575 LINE", +"424 0 LINE" +); +} +); +width = 1828; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"523 0 LINE", +"523 1664 LINE", +"1349 1664 LINE", +"1349 0 LINE", +"1405 0 LINE", +"1405 1664 LINE", +"1579 1664 LINE", +"1579 1720 LINE", +"293 1720 LINE", +"293 1664 LINE", +"467 1664 LINE", +"467 0 LINE" +); +} +); +width = 1872; +} +); +leftMetricsKey = H; +rightMetricsKey = H; +unicode = 220F; +}, +{ +color = 5; +glyphname = summation; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1433, 287}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 287}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1417 0 LINE", +"1417 287 LINE", +"713 287 LINE", +"1119 860 LINE", +"713 1433 LINE", +"1417 1433 LINE", +"1417 1720 LINE", +"196 1720 LINE", +"805 860 LINE", +"196 0 LINE" +); +} +); +width = 1613; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1575, 145}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 145}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1341 0 LINE", +"1341 145 LINE", +"528 145 LINE", +"1006 860 LINE", +"528 1575 LINE", +"1341 1575 LINE", +"1341 1720 LINE", +"256 1720 LINE", +"834 860 LINE", +"256 0 LINE" +); +} +); +width = 1597; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1664, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 56}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1277 0 LINE", +"1277 56 LINE", +"396 56 LINE", +"919 860 LINE", +"396 1664 LINE", +"1277 1664 LINE", +"1277 1720 LINE", +"293 1720 LINE", +"852 860 LINE", +"293 0 LINE" +); +} +); +width = 1570; +} +); +leftMetricsKey = H; +rightMetricsKey = H; +unicode = 2211; +}, +{ +color = 5; +glyphname = radical; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"873 -32 LINE", +"1252 1433 LINE", +"1686 1433 LINE", +"1686 1720 LINE", +"1003 1720 LINE", +"666 289 LINE", +"510 609 LINE", +"196 609 LINE", +"489 -32 LINE" +); +} +); +width = 1882; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"688 -32 LINE", +"1082 1575 LINE", +"1457 1575 LINE", +"1457 1720 LINE", +"958 1720 LINE", +"588 151 LINE", +"412 609 LINE", +"256 609 LINE", +"506 -32 LINE" +); +} +); +width = 1713; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"572 -32 LINE", +"976 1664 LINE", +"1313 1664 LINE", +"1313 1720 LINE", +"930 1720 LINE", +"539 64 LINE", +"351 609 LINE", +"293 609 LINE", +"516 -32 LINE" +); +} +); +width = 1606; +} +); +leftMetricsKey = H; +rightMetricsKey = H; +unicode = 221A; +}, +{ +color = 5; +glyphname = partialdiff; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{40, 439}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-38, 363}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{708, 379}"; +type = Stem; +}, +{ +place = "{855, 459}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1041 -38 OFFCURVE", +"1314 175 OFFCURVE", +"1314 637 CURVE SMOOTH", +"1314 1166 OFFCURVE", +"956 1587 OFFCURVE", +"463 1853 CURVE", +"283 1551 LINE", +"502 1426 OFFCURVE", +"718 1248 OFFCURVE", +"815 1054 CURVE", +"780 1070 OFFCURVE", +"698 1087 OFFCURVE", +"615 1087 CURVE SMOOTH", +"303 1087 OFFCURVE", +"40 846 OFFCURVE", +"40 540 CURVE SMOOTH", +"40 216 OFFCURVE", +"333 -38 OFFCURVE", +"703 -38 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"568 325 OFFCURVE", +"479 399 OFFCURVE", +"479 510 CURVE SMOOTH", +"479 613 OFFCURVE", +"556 708 OFFCURVE", +"668 708 CURVE SMOOTH", +"769 708 OFFCURVE", +"855 630 OFFCURVE", +"855 520 CURVE SMOOTH", +"855 417 OFFCURVE", +"780 325 OFFCURVE", +"668 325 CURVE SMOOTH" +); +} +); +width = 1347; +}, +{ +hints = ( +{ +place = "{125, 202}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-34, 173}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{892, 179}"; +type = Stem; +}, +{ +place = "{1082, 222}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1106 -34 OFFCURVE", +"1304 237 OFFCURVE", +"1304 677 CURVE SMOOTH", +"1304 1168 OFFCURVE", +"1054 1562 OFFCURVE", +"632 1802 CURVE", +"545 1656 LINE", +"862 1473 OFFCURVE", +"1041 1197 OFFCURVE", +"1079 845 CURVE", +"1016 985 OFFCURVE", +"851 1071 OFFCURVE", +"677 1071 CURVE SMOOTH", +"358 1071 OFFCURVE", +"125 820 OFFCURVE", +"125 521 CURVE SMOOTH", +"125 202 OFFCURVE", +"388 -34 OFFCURVE", +"731 -34 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"507 139 OFFCURVE", +"327 282 OFFCURVE", +"327 509 CURVE SMOOTH", +"327 711 OFFCURVE", +"471 892 OFFCURVE", +"699 892 CURVE SMOOTH", +"902 892 OFFCURVE", +"1082 747 OFFCURVE", +"1082 521 CURVE SMOOTH", +"1082 319 OFFCURVE", +"937 139 OFFCURVE", +"710 139 CURVE SMOOTH" +); +} +); +width = 1427; +}, +{ +hints = ( +{ +place = "{179, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-31, 53}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1008, 53}"; +type = Stem; +}, +{ +place = "{1225, 73}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1147 -31 OFFCURVE", +"1298 279 OFFCURVE", +"1298 704 CURVE SMOOTH", +"1298 1172 OFFCURVE", +"1115 1546 OFFCURVE", +"738 1770 CURVE", +"709 1722 LINE", +"1088 1502 OFFCURVE", +"1244 1165 OFFCURVE", +"1244 714 CURVE", +"1164 931 OFFCURVE", +"947 1061 OFFCURVE", +"716 1061 CURVE SMOOTH", +"392 1061 OFFCURVE", +"179 803 OFFCURVE", +"179 509 CURVE SMOOTH", +"179 194 OFFCURVE", +"423 -31 OFFCURVE", +"748 -31 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"468 22 OFFCURVE", +"231 209 OFFCURVE", +"231 508 CURVE SMOOTH", +"231 773 OFFCURVE", +"418 1008 OFFCURVE", +"718 1008 CURVE SMOOTH", +"986 1008 OFFCURVE", +"1225 820 OFFCURVE", +"1225 522 CURVE SMOOTH", +"1225 257 OFFCURVE", +"1036 22 OFFCURVE", +"736 22 CURVE SMOOTH" +); +} +); +width = 1477; +} +); +leftMetricsKey = six; +rightMetricsKey = six; +unicode = 2202; +}, +{ +color = 5; +glyphname = micro; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{251, 416}"; +type = Stem; +}, +{ +place = "{1003, 416}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{-32, 322}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"665 -320 LINE", +"665 -30 LINE", +"681 -31 OFFCURVE", +"699 -32 OFFCURVE", +"711 -32 CURVE SMOOTH", +"812 -32 OFFCURVE", +"924 17 OFFCURVE", +"1003 96 CURVE", +"1003 0 LINE", +"1419 0 LINE", +"1419 1024 LINE", +"1003 1024 LINE", +"1003 468 LINE SMOOTH", +"1003 373 OFFCURVE", +"918 290 OFFCURVE", +"819 290 CURVE SMOOTH", +"730 290 OFFCURVE", +"667 357 OFFCURVE", +"667 452 CURVE SMOOTH", +"667 1024 LINE", +"251 1024 LINE", +"251 412 LINE SMOOTH", +"251 66 OFFCURVE", +"185 -120 OFFCURVE", +"185 -320 CURVE" +); +} +); +width = 1616; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{319, 194}"; +type = Stem; +}, +{ +place = "{1051, 195}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{-32, 155}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"513 -320 LINE", +"513 70 LINE", +"557 2 OFFCURVE", +"633 -32 OFFCURVE", +"737 -32 CURVE SMOOTH", +"865 -32 OFFCURVE", +"993 35 OFFCURVE", +"1051 132 CURVE", +"1051 0 LINE", +"1246 0 LINE", +"1246 1024 LINE", +"1051 1024 LINE", +"1051 378 LINE SMOOTH", +"1051 238 OFFCURVE", +"929 123 OFFCURVE", +"778 123 CURVE SMOOTH", +"607 123 OFFCURVE", +"513 228 OFFCURVE", +"513 421 CURVE SMOOTH", +"513 1024 LINE", +"319 1024 LINE", +"319 433 LINE SMOOTH", +"319 126 OFFCURVE", +"275 -24 OFFCURVE", +"275 -320 CURVE" +); +} +); +width = 1521; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1024, -20}"; +target = down; +type = TopGhost; +}, +{ +place = "{361, 56}"; +type = Stem; +}, +{ +place = "{1081, 56}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{-32, 50}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"417 -320 LINE", +"417 132 LINE", +"479 23 OFFCURVE", +"592 -32 OFFCURVE", +"753 -32 CURVE SMOOTH", +"899 -32 OFFCURVE", +"1037 46 OFFCURVE", +"1081 154 CURVE", +"1081 0 LINE", +"1137 0 LINE", +"1137 1024 LINE", +"1081 1024 LINE", +"1081 322 LINE SMOOTH", +"1081 153 OFFCURVE", +"936 18 OFFCURVE", +"753 18 CURVE SMOOTH", +"530 18 OFFCURVE", +"417 147 OFFCURVE", +"417 402 CURVE SMOOTH", +"417 1024 LINE", +"361 1024 LINE", +"361 446 LINE SMOOTH", +"361 164 OFFCURVE", +"331 36 OFFCURVE", +"331 -320 CURVE" +); +} +); +width = 1461; +} +); +unicode = 00B5; +}, +{ +color = 5; +glyphname = percent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{892, 244}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1436, 244}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 244}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{512, 244}"; +type = Stem; +}, +{ +place = "{33, 302}"; +type = Stem; +}, +{ +place = "{643, 302}"; +type = Stem; +}, +{ +place = "{1007, 302}"; +type = Stem; +}, +{ +place = "{1617, 302}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"747 892 OFFCURVE", +"945 1054 OFFCURVE", +"945 1286 CURVE SMOOTH", +"945 1518 OFFCURVE", +"747 1680 OFFCURVE", +"489 1680 CURVE SMOOTH", +"231 1680 OFFCURVE", +"33 1518 OFFCURVE", +"33 1286 CURVE SMOOTH", +"33 1054 OFFCURVE", +"231 892 OFFCURVE", +"489 892 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"407 1136 OFFCURVE", +"335 1198 OFFCURVE", +"335 1286 CURVE SMOOTH", +"335 1374 OFFCURVE", +"407 1436 OFFCURVE", +"489 1436 CURVE SMOOTH", +"571 1436 OFFCURVE", +"643 1374 OFFCURVE", +"643 1286 CURVE SMOOTH", +"643 1198 OFFCURVE", +"571 1136 OFFCURVE", +"489 1136 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1721 -32 OFFCURVE", +"1919 130 OFFCURVE", +"1919 362 CURVE SMOOTH", +"1919 594 OFFCURVE", +"1721 756 OFFCURVE", +"1463 756 CURVE SMOOTH", +"1205 756 OFFCURVE", +"1007 594 OFFCURVE", +"1007 362 CURVE SMOOTH", +"1007 130 OFFCURVE", +"1205 -32 OFFCURVE", +"1463 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1381 212 OFFCURVE", +"1309 274 OFFCURVE", +"1309 362 CURVE SMOOTH", +"1309 450 OFFCURVE", +"1381 512 OFFCURVE", +"1463 512 CURVE SMOOTH", +"1545 512 OFFCURVE", +"1617 450 OFFCURVE", +"1617 362 CURVE SMOOTH", +"1617 274 OFFCURVE", +"1545 212 OFFCURVE", +"1463 212 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"637 0 LINE", +"1597 1650 LINE", +"1323 1650 LINE", +"363 0 LINE" +); +} +); +width = 1953; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{892, 126}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1554, 126}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 126}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{630, 126}"; +type = Stem; +}, +{ +place = "{160, 152}"; +type = Stem; +}, +{ +place = "{846, 152}"; +type = Stem; +}, +{ +place = "{1150, 152}"; +type = Stem; +}, +{ +place = "{1836, 152}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"816 892 OFFCURVE", +"998 1054 OFFCURVE", +"998 1286 CURVE SMOOTH", +"998 1518 OFFCURVE", +"816 1680 OFFCURVE", +"579 1680 CURVE SMOOTH", +"342 1680 OFFCURVE", +"160 1518 OFFCURVE", +"160 1286 CURVE SMOOTH", +"160 1054 OFFCURVE", +"342 892 OFFCURVE", +"579 892 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"427 1018 OFFCURVE", +"312 1129 OFFCURVE", +"312 1286 CURVE SMOOTH", +"312 1443 OFFCURVE", +"427 1554 OFFCURVE", +"579 1554 CURVE SMOOTH", +"731 1554 OFFCURVE", +"846 1443 OFFCURVE", +"846 1286 CURVE SMOOTH", +"846 1129 OFFCURVE", +"731 1018 OFFCURVE", +"579 1018 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1806 -32 OFFCURVE", +"1988 130 OFFCURVE", +"1988 362 CURVE SMOOTH", +"1988 594 OFFCURVE", +"1806 756 OFFCURVE", +"1569 756 CURVE SMOOTH", +"1332 756 OFFCURVE", +"1150 594 OFFCURVE", +"1150 362 CURVE SMOOTH", +"1150 130 OFFCURVE", +"1332 -32 OFFCURVE", +"1569 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1417 94 OFFCURVE", +"1302 205 OFFCURVE", +"1302 362 CURVE SMOOTH", +"1302 519 OFFCURVE", +"1417 630 OFFCURVE", +"1569 630 CURVE SMOOTH", +"1721 630 OFFCURVE", +"1836 519 OFFCURVE", +"1836 362 CURVE SMOOTH", +"1836 205 OFFCURVE", +"1721 94 OFFCURVE", +"1569 94 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"663 0 LINE", +"1623 1650 LINE", +"1482 1650 LINE", +"522 0 LINE" +); +} +); +width = 2148; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{892, 53}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1627, 53}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 53}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{703, 53}"; +type = Stem; +}, +{ +place = "{239, 59}"; +type = Stem; +}, +{ +place = "{972, 57}"; +type = Stem; +}, +{ +place = "{1239, 59}"; +type = Stem; +}, +{ +place = "{1972, 59}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +}, +{ +horizontal = 1; +place = "{1650, -20}"; +target = down; +type = TopGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"857 892 OFFCURVE", +"1029 1054 OFFCURVE", +"1029 1286 CURVE SMOOTH", +"1029 1518 OFFCURVE", +"857 1680 OFFCURVE", +"635 1680 CURVE SMOOTH", +"411 1680 OFFCURVE", +"239 1518 OFFCURVE", +"239 1286 CURVE SMOOTH", +"239 1054 OFFCURVE", +"411 892 OFFCURVE", +"635 892 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"439 945 OFFCURVE", +"298 1086 OFFCURVE", +"298 1286 CURVE SMOOTH", +"298 1486 OFFCURVE", +"439 1627 OFFCURVE", +"635 1627 CURVE SMOOTH", +"829 1627 OFFCURVE", +"972 1487 OFFCURVE", +"972 1286 CURVE SMOOTH", +"972 1086 OFFCURVE", +"829 945 OFFCURVE", +"635 945 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1859 -32 OFFCURVE", +"2031 130 OFFCURVE", +"2031 362 CURVE SMOOTH", +"2031 594 OFFCURVE", +"1859 756 OFFCURVE", +"1635 756 CURVE SMOOTH", +"1413 756 OFFCURVE", +"1239 594 OFFCURVE", +"1239 362 CURVE SMOOTH", +"1239 130 OFFCURVE", +"1413 -32 OFFCURVE", +"1635 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1441 21 OFFCURVE", +"1298 162 OFFCURVE", +"1298 362 CURVE SMOOTH", +"1298 562 OFFCURVE", +"1441 703 OFFCURVE", +"1635 703 CURVE SMOOTH", +"1831 703 OFFCURVE", +"1972 562 OFFCURVE", +"1972 362 CURVE SMOOTH", +"1972 162 OFFCURVE", +"1831 21 OFFCURVE", +"1635 21 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"679 0 LINE", +"1639 1650 LINE", +"1581 1650 LINE", +"621 0 LINE" +); +} +); +width = 2270; +} +); +rightKerningGroup = _A1; +unicode = 0025; +}, +{ +color = 5; +glyphname = perthousand; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = percent; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 244}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{512, 244}"; +type = Stem; +}, +{ +place = "{1985, 302}"; +type = Stem; +}, +{ +place = "{2595, 302}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"2699 -32 OFFCURVE", +"2897 130 OFFCURVE", +"2897 362 CURVE SMOOTH", +"2897 594 OFFCURVE", +"2699 756 OFFCURVE", +"2441 756 CURVE SMOOTH", +"2183 756 OFFCURVE", +"1985 594 OFFCURVE", +"1985 362 CURVE SMOOTH", +"1985 130 OFFCURVE", +"2183 -32 OFFCURVE", +"2441 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"2359 212 OFFCURVE", +"2287 274 OFFCURVE", +"2287 362 CURVE SMOOTH", +"2287 450 OFFCURVE", +"2359 512 OFFCURVE", +"2441 512 CURVE SMOOTH", +"2523 512 OFFCURVE", +"2595 450 OFFCURVE", +"2595 362 CURVE SMOOTH", +"2595 274 OFFCURVE", +"2523 212 OFFCURVE", +"2441 212 CURVE SMOOTH" +); +} +); +width = 2931; +}, +{ +components = ( +{ +alignment = -1; +name = percent; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 126}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{630, 126}"; +type = Stem; +}, +{ +place = "{2117, 152}"; +type = Stem; +}, +{ +place = "{2803, 152}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"2773 -32 OFFCURVE", +"2955 130 OFFCURVE", +"2955 362 CURVE SMOOTH", +"2955 594 OFFCURVE", +"2773 756 OFFCURVE", +"2536 756 CURVE SMOOTH", +"2299 756 OFFCURVE", +"2117 594 OFFCURVE", +"2117 362 CURVE SMOOTH", +"2117 130 OFFCURVE", +"2299 -32 OFFCURVE", +"2536 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"2384 94 OFFCURVE", +"2269 205 OFFCURVE", +"2269 362 CURVE SMOOTH", +"2269 519 OFFCURVE", +"2384 630 OFFCURVE", +"2536 630 CURVE SMOOTH", +"2688 630 OFFCURVE", +"2803 519 OFFCURVE", +"2803 362 CURVE SMOOTH", +"2803 205 OFFCURVE", +"2688 94 OFFCURVE", +"2536 94 CURVE SMOOTH" +); +} +); +width = 3115; +}, +{ +components = ( +{ +alignment = -1; +name = percent; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 53}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{703, 53}"; +type = Stem; +}, +{ +place = "{2199, 59}"; +type = Stem; +}, +{ +place = "{2932, 59}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"2819 -32 OFFCURVE", +"2991 130 OFFCURVE", +"2991 362 CURVE SMOOTH", +"2991 594 OFFCURVE", +"2819 756 OFFCURVE", +"2595 756 CURVE SMOOTH", +"2373 756 OFFCURVE", +"2199 594 OFFCURVE", +"2199 362 CURVE SMOOTH", +"2199 130 OFFCURVE", +"2373 -32 OFFCURVE", +"2595 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"2401 21 OFFCURVE", +"2258 162 OFFCURVE", +"2258 362 CURVE SMOOTH", +"2258 562 OFFCURVE", +"2401 703 OFFCURVE", +"2595 703 CURVE SMOOTH", +"2791 703 OFFCURVE", +"2932 562 OFFCURVE", +"2932 362 CURVE SMOOTH", +"2932 162 OFFCURVE", +"2791 21 OFFCURVE", +"2595 21 CURVE SMOOTH" +); +} +); +width = 3230; +} +); +leftMetricsKey = percent; +rightKerningGroup = _A1; +rightMetricsKey = percent; +unicode = 2030; +}, +{ +color = 5; +glyphname = lozenge; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"715 -80 LINE", +"1135 795 LINE", +"715 1670 LINE", +"485 1670 LINE", +"65 795 LINE", +"485 -80 LINE" +); +}, +{ +closed = 1; +nodes = ( +"406 795 LINE", +"600 1201 LINE", +"794 795 LINE", +"600 389 LINE" +); +} +); +width = 1200; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"678 -80 LINE", +"1098 795 LINE", +"678 1670 LINE", +"522 1670 LINE", +"102 795 LINE", +"522 -80 LINE" +); +}, +{ +closed = 1; +nodes = ( +"281 795 LINE", +"600 1457 LINE", +"919 795 LINE", +"600 133 LINE" +); +} +); +width = 1200; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"655 -80 LINE", +"1075 795 LINE", +"655 1670 LINE", +"545 1670 LINE", +"125 795 LINE", +"545 -80 LINE" +); +}, +{ +closed = 1; +nodes = ( +"203 795 LINE", +"600 1618 LINE", +"997 795 LINE", +"600 -28 LINE" +); +} +); +width = 1200; +} +); +unicode = 25CA; +}, +{ +color = 5; +glyphname = at; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1320 -551 OFFCURVE", +"1514 -412 OFFCURVE", +"1595 -303 CURVE", +"1327 -123 LINE", +"1278 -165 OFFCURVE", +"1167 -221 OFFCURVE", +"1009 -221 CURVE SMOOTH", +"691 -221 OFFCURVE", +"429 7 OFFCURVE", +"429 310 CURVE SMOOTH", +"429 576 OFFCURVE", +"630 867 OFFCURVE", +"1005 867 CURVE SMOOTH", +"1271 867 OFFCURVE", +"1597 720 OFFCURVE", +"1597 369 CURVE SMOOTH", +"1597 229 OFFCURVE", +"1544 208 OFFCURVE", +"1487 208 CURVE SMOOTH", +"1382 208 OFFCURVE", +"1382 279 OFFCURVE", +"1382 308 CURVE SMOOTH", +"1382 626 LINE", +"1129 626 LINE", +"1129 593 LINE", +"1079 625 OFFCURVE", +"1010 645 OFFCURVE", +"939 645 CURVE SMOOTH", +"740 645 OFFCURVE", +"608 488 OFFCURVE", +"608 297 CURVE SMOOTH", +"608 101 OFFCURVE", +"746 -51 OFFCURVE", +"932 -51 CURVE SMOOTH", +"1032 -51 OFFCURVE", +"1099 -7 OFFCURVE", +"1147 43 CURVE", +"1225 -10 OFFCURVE", +"1319 -33 OFFCURVE", +"1433 -33 CURVE SMOOTH", +"1626 -33 OFFCURVE", +"1861 33 OFFCURVE", +"1861 385 CURVE SMOOTH", +"1861 825 OFFCURVE", +"1493 1161 OFFCURVE", +"1002 1161 CURVE SMOOTH", +"505 1161 OFFCURVE", +"91 817 OFFCURVE", +"91 309 CURVE SMOOTH", +"91 -203 OFFCURVE", +"513 -551 OFFCURVE", +"1007 -551 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"947 195 OFFCURVE", +"903 235 OFFCURVE", +"903 297 CURVE SMOOTH", +"903 364 OFFCURVE", +"955 408 OFFCURVE", +"1014 408 CURVE SMOOTH", +"1073 408 OFFCURVE", +"1127 364 OFFCURVE", +"1127 299 CURVE SMOOTH", +"1127 238 OFFCURVE", +"1079 195 OFFCURVE", +"1012 195 CURVE SMOOTH" +); +} +); +width = 1929; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1350 -413 OFFCURVE", +"1567 -282 OFFCURVE", +"1685 -119 CURVE", +"1550 -33 LINE", +"1457 -151 OFFCURVE", +"1288 -253 OFFCURVE", +"1059 -253 CURVE SMOOTH", +"654 -253 OFFCURVE", +"362 58 OFFCURVE", +"362 443 CURVE SMOOTH", +"362 833 OFFCURVE", +"657 1152 OFFCURVE", +"1070 1152 CURVE SMOOTH", +"1410 1152 OFFCURVE", +"1767 934 OFFCURVE", +"1767 473 CURVE SMOOTH", +"1767 285 OFFCURVE", +"1707 183 OFFCURVE", +"1619 183 CURVE SMOOTH", +"1536 183 OFFCURVE", +"1496 248 OFFCURVE", +"1496 339 CURVE SMOOTH", +"1496 871 LINE", +"1364 871 LINE", +"1364 697 LINE", +"1295 820 OFFCURVE", +"1164 898 OFFCURVE", +"1010 898 CURVE SMOOTH", +"755 898 OFFCURVE", +"566 699 OFFCURVE", +"566 429 CURVE SMOOTH", +"566 156 OFFCURVE", +"757 -40 OFFCURVE", +"1007 -40 CURVE SMOOTH", +"1172 -40 OFFCURVE", +"1302 47 OFFCURVE", +"1371 177 CURVE", +"1416 110 OFFCURVE", +"1497 59 OFFCURVE", +"1598 59 CURVE SMOOTH", +"1781 59 OFFCURVE", +"1900 238 OFFCURVE", +"1900 488 CURVE SMOOTH", +"1900 1003 OFFCURVE", +"1499 1299 OFFCURVE", +"1062 1299 CURVE SMOOTH", +"579 1299 OFFCURVE", +"195 934 OFFCURVE", +"195 440 CURVE SMOOTH", +"195 -46 OFFCURVE", +"568 -413 OFFCURVE", +"1057 -413 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"851 87 OFFCURVE", +"713 228 OFFCURVE", +"713 429 CURVE SMOOTH", +"713 633 OFFCURVE", +"854 775 OFFCURVE", +"1040 775 CURVE SMOOTH", +"1227 775 OFFCURVE", +"1367 633 OFFCURVE", +"1367 429 CURVE SMOOTH", +"1367 229 OFFCURVE", +"1230 87 OFFCURVE", +"1039 87 CURVE SMOOTH" +); +} +); +width = 2084; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1368 -327 OFFCURVE", +"1601 -201 OFFCURVE", +"1742 -3 CURVE", +"1690 23 LINE", +"1570 -143 OFFCURVE", +"1364 -273 OFFCURVE", +"1090 -273 CURVE SMOOTH", +"630 -273 OFFCURVE", +"320 90 OFFCURVE", +"320 527 CURVE SMOOTH", +"320 994 OFFCURVE", +"674 1331 OFFCURVE", +"1111 1331 CURVE SMOOTH", +"1497 1331 OFFCURVE", +"1874 1069 OFFCURVE", +"1874 539 CURVE SMOOTH", +"1874 320 OFFCURVE", +"1810 167 OFFCURVE", +"1702 167 CURVE SMOOTH", +"1633 167 OFFCURVE", +"1568 229 OFFCURVE", +"1568 359 CURVE SMOOTH", +"1568 1025 LINE", +"1512 1025 LINE", +"1512 763 LINE", +"1430 943 OFFCURVE", +"1260 1057 OFFCURVE", +"1054 1057 CURVE SMOOTH", +"764 1057 OFFCURVE", +"540 831 OFFCURVE", +"540 511 CURVE SMOOTH", +"540 191 OFFCURVE", +"764 -33 OFFCURVE", +"1054 -33 CURVE SMOOTH", +"1260 -33 OFFCURVE", +"1430 81 OFFCURVE", +"1512 261 CURVE", +"1535 186 OFFCURVE", +"1609 117 OFFCURVE", +"1702 117 CURVE SMOOTH", +"1878 117 OFFCURVE", +"1924 367 OFFCURVE", +"1924 553 CURVE SMOOTH", +"1924 1115 OFFCURVE", +"1502 1385 OFFCURVE", +"1100 1385 CURVE SMOOTH", +"626 1385 OFFCURVE", +"260 1008 OFFCURVE", +"260 522 CURVE SMOOTH", +"260 52 OFFCURVE", +"603 -327 OFFCURVE", +"1089 -327 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"790 19 OFFCURVE", +"594 223 OFFCURVE", +"594 511 CURVE SMOOTH", +"594 801 OFFCURVE", +"790 1005 OFFCURVE", +"1056 1005 CURVE SMOOTH", +"1324 1005 OFFCURVE", +"1518 801 OFFCURVE", +"1518 511 CURVE SMOOTH", +"1518 223 OFFCURVE", +"1324 19 OFFCURVE", +"1056 19 CURVE SMOOTH" +); +} +); +width = 2182; +} +); +rightKerningGroup = _A1; +unicode = 0040; +}, +{ +color = 5; +glyphname = ampersand; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +place = "{48, 502}"; +type = Stem; +}, +{ +place = "{302, 450}"; +type = Stem; +}, +{ +place = "{998, 386}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 420}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1374, 308}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"836 -32 OFFCURVE", +"1018 37 OFFCURVE", +"1170 150 CURVE", +"1318 0 LINE", +"1874 0 LINE", +"1502 384 LINE", +"1563 429 OFFCURVE", +"1655 510 OFFCURVE", +"1746 598 CURVE", +"1476 866 LINE", +"1408 798 OFFCURVE", +"1304 714 OFFCURVE", +"1226 664 CURVE", +"1064 826 LINE", +"1271 940 OFFCURVE", +"1384 1090 OFFCURVE", +"1384 1249 CURVE SMOOTH", +"1384 1439 OFFCURVE", +"1222 1682 OFFCURVE", +"845 1682 CURVE SMOOTH", +"547 1682 OFFCURVE", +"302 1530 OFFCURVE", +"302 1241 CURVE SMOOTH", +"302 1124 OFFCURVE", +"342 1023 OFFCURVE", +"452 872 CURVE", +"177 766 OFFCURVE", +"48 623 OFFCURVE", +"48 420 CURVE SMOOTH", +"48 156 OFFCURVE", +"266 -32 OFFCURVE", +"621 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"603 388 OFFCURVE", +"550 425 OFFCURVE", +"550 490 CURVE SMOOTH", +"550 556 OFFCURVE", +"604 623 OFFCURVE", +"674 638 CURVE", +"880 448 LINE", +"821 411 OFFCURVE", +"750 388 OFFCURVE", +"685 388 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"790 1121 OFFCURVE", +"752 1188 OFFCURVE", +"752 1254 CURVE SMOOTH", +"752 1325 OFFCURVE", +"796 1374 OFFCURVE", +"868 1374 CURVE SMOOTH", +"945 1374 OFFCURVE", +"998 1318 OFFCURVE", +"998 1252 CURVE SMOOTH", +"998 1189 OFFCURVE", +"950 1130 OFFCURVE", +"846 1064 CURVE" +); +} +); +width = 1856; +}, +{ +hints = ( +{ +place = "{168, 223}"; +type = Stem; +}, +{ +place = "{355, 203}"; +type = Stem; +}, +{ +place = "{1016, 179}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 191}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1531, 150}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"876 -32 OFFCURVE", +"1065 59 OFFCURVE", +"1225 221 CURVE", +"1429 0 LINE", +"1683 0 LINE", +"1373 335 LINE", +"1438 405 OFFCURVE", +"1522 513 OFFCURVE", +"1581 599 CURVE", +"1454 712 LINE", +"1419 666 OFFCURVE", +"1306 523 OFFCURVE", +"1246 466 CURVE", +"853 890 LINE", +"1076 1002 OFFCURVE", +"1195 1122 OFFCURVE", +"1195 1300 CURVE SMOOTH", +"1195 1502 OFFCURVE", +"1041 1681 OFFCURVE", +"777 1681 CURVE SMOOTH", +"541 1681 OFFCURVE", +"355 1534 OFFCURVE", +"355 1304 CURVE SMOOTH", +"355 1181 OFFCURVE", +"409 1079 OFFCURVE", +"565 916 CURVE", +"302 797 OFFCURVE", +"168 633 OFFCURVE", +"168 414 CURVE SMOOTH", +"168 135 OFFCURVE", +"386 -32 OFFCURVE", +"671 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"530 159 OFFCURVE", +"391 260 OFFCURVE", +"391 440 CURVE SMOOTH", +"391 593 OFFCURVE", +"492 724 OFFCURVE", +"673 804 CURVE", +"1094 360 LINE", +"972 230 OFFCURVE", +"833 159 OFFCURVE", +"695 159 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"604 1139 OFFCURVE", +"558 1214 OFFCURVE", +"558 1307 CURVE SMOOTH", +"558 1438 OFFCURVE", +"653 1531 OFFCURVE", +"785 1531 CURVE SMOOTH", +"916 1531 OFFCURVE", +"1016 1440 OFFCURVE", +"1016 1302 CURVE SMOOTH", +"1016 1167 OFFCURVE", +"919 1093 OFFCURVE", +"745 1004 CURVE" +); +} +); +width = 1807; +}, +{ +hints = ( +{ +place = "{244, 48}"; +type = Stem; +}, +{ +place = "{388, 48}"; +type = Stem; +}, +{ +place = "{1028, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{-32, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1630, 50}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{0, 21}"; +target = up; +type = BottomGhost; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"901 -32 OFFCURVE", +"1094 72 OFFCURVE", +"1260 266 CURVE", +"1498 0 LINE", +"1564 0 LINE", +"1292 304 LINE", +"1360 390 OFFCURVE", +"1438 515 OFFCURVE", +"1478 600 CURVE", +"1440 616 LINE", +"1426 584 OFFCURVE", +"1308 403 OFFCURVE", +"1258 342 CURVE", +"720 930 LINE", +"954 1041 OFFCURVE", +"1076 1142 OFFCURVE", +"1076 1332 CURVE SMOOTH", +"1076 1542 OFFCURVE", +"927 1680 OFFCURVE", +"734 1680 CURVE SMOOTH", +"537 1680 OFFCURVE", +"388 1537 OFFCURVE", +"388 1343 CURVE SMOOTH", +"388 1216 OFFCURVE", +"451 1114 OFFCURVE", +"636 944 CURVE", +"380 817 OFFCURVE", +"244 639 OFFCURVE", +"244 411 CURVE SMOOTH", +"244 122 OFFCURVE", +"462 -32 OFFCURVE", +"703 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"484 16 OFFCURVE", +"292 156 OFFCURVE", +"292 409 CURVE SMOOTH", +"292 616 OFFCURVE", +"421 787 OFFCURVE", +"672 908 CURVE", +"1228 304 LINE", +"1066 116 OFFCURVE", +"885 16 OFFCURVE", +"701 16 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"487 1150 OFFCURVE", +"436 1230 OFFCURVE", +"436 1341 CURVE SMOOTH", +"436 1509 OFFCURVE", +"564 1630 OFFCURVE", +"733 1630 CURVE SMOOTH", +"897 1630 OFFCURVE", +"1028 1516 OFFCURVE", +"1028 1334 CURVE SMOOTH", +"1028 1154 OFFCURVE", +"900 1069 OFFCURVE", +"682 966 CURVE" +); +} +); +width = 1777; +} +); +rightKerningGroup = _A1; +unicode = 0026; +}, +{ +color = 5; +glyphname = paragraph; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1016 0 LINE", +"1016 1410 LINE", +"1152 1410 LINE", +"1152 0 LINE", +"1388 0 LINE", +"1388 1650 LINE", +"588 1650 LINE SMOOTH", +"266 1650 OFFCURVE", +"62 1414 OFFCURVE", +"62 1130 CURVE SMOOTH", +"62 848 OFFCURVE", +"266 588 OFFCURVE", +"588 588 CURVE SMOOTH", +"780 588 LINE", +"780 0 LINE" +); +} +); +width = 1623; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1007 0 LINE", +"1007 1528 LINE", +"1091 1528 LINE", +"1091 0 LINE", +"1216 0 LINE", +"1216 1650 LINE", +"689 1650 LINE SMOOTH", +"367 1650 OFFCURVE", +"174 1450 OFFCURVE", +"174 1174 CURVE SMOOTH", +"174 901 OFFCURVE", +"367 679 OFFCURVE", +"689 679 CURVE SMOOTH", +"882 679 LINE", +"882 0 LINE" +); +} +); +width = 1523; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1002 0 LINE", +"1002 1602 LINE", +"1052 1602 LINE", +"1052 0 LINE", +"1108 0 LINE", +"1108 1650 LINE", +"752 1650 LINE SMOOTH", +"430 1650 OFFCURVE", +"244 1472 OFFCURVE", +"244 1202 CURVE SMOOTH", +"244 934 OFFCURVE", +"430 736 OFFCURVE", +"752 736 CURVE SMOOTH", +"946 736 LINE", +"946 0 LINE" +); +} +); +width = 1460; +} +); +rightKerningGroup = _A1; +unicode = 00B6; +}, +{ +color = 5; +glyphname = section; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"979 -550 OFFCURVE", +"1230 -413 OFFCURVE", +"1230 -126 CURVE SMOOTH", +"1230 31 OFFCURVE", +"1155 141 OFFCURVE", +"1034 224 CURVE", +"1227 305 OFFCURVE", +"1329 432 OFFCURVE", +"1338 594 CURVE SMOOTH", +"1351 826 OFFCURVE", +"1165 983 OFFCURVE", +"962 1084 CURVE SMOOTH", +"857 1136 OFFCURVE", +"672 1210 OFFCURVE", +"672 1286 CURVE SMOOTH", +"672 1314 OFFCURVE", +"698 1336 OFFCURVE", +"752 1336 CURVE SMOOTH", +"843 1336 OFFCURVE", +"874 1274 OFFCURVE", +"874 1222 CURVE", +"1250 1298 LINE", +"1217 1473 OFFCURVE", +"1099 1680 OFFCURVE", +"734 1680 CURVE SMOOTH", +"377 1680 OFFCURVE", +"214 1482 OFFCURVE", +"214 1250 CURVE SMOOTH", +"214 1096 OFFCURVE", +"286 980 OFFCURVE", +"422 896 CURVE", +"221 812 OFFCURVE", +"119 686 OFFCURVE", +"108 526 CURVE SMOOTH", +"91 278 OFFCURVE", +"302 124 OFFCURVE", +"498 22 CURVE SMOOTH", +"641 -52 OFFCURVE", +"768 -96 OFFCURVE", +"768 -150 CURVE SMOOTH", +"768 -170 OFFCURVE", +"751 -206 OFFCURVE", +"669 -206 CURVE SMOOTH", +"562 -206 OFFCURVE", +"522 -146 OFFCURVE", +"502 -86 CURVE", +"126 -164 LINE", +"164 -343 OFFCURVE", +"297 -550 OFFCURVE", +"673 -550 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"743 388 OFFCURVE", +"672 417 OFFCURVE", +"611 459 CURVE SMOOTH", +"540 508 OFFCURVE", +"510 556 OFFCURVE", +"510 599 CURVE SMOOTH", +"510 677 OFFCURVE", +"606 708 OFFCURVE", +"688 728 CURVE", +"716 716 OFFCURVE", +"740 704 OFFCURVE", +"750 698 CURVE SMOOTH", +"884 623 OFFCURVE", +"934 572 OFFCURVE", +"934 519 CURVE SMOOTH", +"934 443 OFFCURVE", +"833 400 OFFCURVE", +"768 381 CURVE" +); +} +); +width = 1427; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1011 -550 OFFCURVE", +"1235 -386 OFFCURVE", +"1235 -112 CURVE SMOOTH", +"1235 36 OFFCURVE", +"1169 148 OFFCURVE", +"1044 235 CURVE", +"1184 294 OFFCURVE", +"1269 410 OFFCURVE", +"1272 542 CURVE SMOOTH", +"1277 770 OFFCURVE", +"1027 889 OFFCURVE", +"832 972 CURVE", +"679 1034 OFFCURVE", +"492 1105 OFFCURVE", +"492 1270 CURVE SMOOTH", +"492 1404 OFFCURVE", +"598 1512 OFFCURVE", +"747 1512 CURVE SMOOTH", +"877 1512 OFFCURVE", +"978 1434 OFFCURVE", +"1007 1339 CURVE", +"1184 1383 LINE", +"1135 1534 OFFCURVE", +"995 1680 OFFCURVE", +"741 1680 CURVE SMOOTH", +"458 1680 OFFCURVE", +"280 1496 OFFCURVE", +"280 1257 CURVE SMOOTH", +"280 1114 OFFCURVE", +"344 1007 OFFCURVE", +"470 926 CURVE", +"331 870 OFFCURVE", +"246 753 OFFCURVE", +"242 619 CURVE SMOOTH", +"235 400 OFFCURVE", +"451 288 OFFCURVE", +"632 209 CURVE", +"855 118 OFFCURVE", +"1021 50 OFFCURVE", +"1021 -121 CURVE SMOOTH", +"1021 -276 OFFCURVE", +"902 -382 OFFCURVE", +"729 -382 CURVE SMOOTH", +"555 -382 OFFCURVE", +"413 -278 OFFCURVE", +"362 -137 CURVE", +"186 -181 LINE", +"230 -349 OFFCURVE", +"416 -550 OFFCURVE", +"730 -550 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"839 347 OFFCURVE", +"804 363 OFFCURVE", +"694 410 CURVE", +"525 479 OFFCURVE", +"440 534 OFFCURVE", +"440 644 CURVE SMOOTH", +"440 749 OFFCURVE", +"523 823 OFFCURVE", +"604 847 CURVE", +"661 820 OFFCURVE", +"687 808 OFFCURVE", +"731 791 CURVE SMOOTH", +"988 692 OFFCURVE", +"1074 619 OFFCURVE", +"1074 513 CURVE SMOOTH", +"1074 417 OFFCURVE", +"993 340 OFFCURVE", +"909 312 CURVE" +); +} +); +width = 1467; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1031 -550 OFFCURVE", +"1238 -369 OFFCURVE", +"1238 -104 CURVE SMOOTH", +"1238 39 OFFCURVE", +"1178 152 OFFCURVE", +"1050 242 CURVE", +"1157 287 OFFCURVE", +"1231 397 OFFCURVE", +"1231 510 CURVE SMOOTH", +"1231 735 OFFCURVE", +"940 830 OFFCURVE", +"750 901 CURVE SMOOTH", +"567 970 OFFCURVE", +"379 1039 OFFCURVE", +"379 1260 CURVE SMOOTH", +"379 1461 OFFCURVE", +"535 1623 OFFCURVE", +"744 1623 CURVE SMOOTH", +"898 1623 OFFCURVE", +"1043 1535 OFFCURVE", +"1090 1413 CURVE", +"1142 1436 LINE", +"1084 1573 OFFCURVE", +"929 1680 OFFCURVE", +"745 1680 CURVE SMOOTH", +"509 1680 OFFCURVE", +"322 1504 OFFCURVE", +"322 1261 CURVE SMOOTH", +"322 1126 OFFCURVE", +"380 1024 OFFCURVE", +"500 945 CURVE", +"400 907 OFFCURVE", +"326 795 OFFCURVE", +"326 678 CURVE SMOOTH", +"326 477 OFFCURVE", +"544 391 OFFCURVE", +"716 327 CURVE SMOOTH", +"989 225 OFFCURVE", +"1179 142 OFFCURVE", +"1179 -103 CURVE SMOOTH", +"1179 -343 OFFCURVE", +"997 -493 OFFCURVE", +"766 -493 CURVE SMOOTH", +"550 -493 OFFCURVE", +"345 -361 OFFCURVE", +"274 -169 CURVE", +"224 -192 LINE", +"272 -353 OFFCURVE", +"490 -550 OFFCURVE", +"766 -550 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"899 321 OFFCURVE", +"887 329 OFFCURVE", +"746 379 CURVE SMOOTH", +"516 461 OFFCURVE", +"396 521 OFFCURVE", +"396 673 CURVE SMOOTH", +"396 794 OFFCURVE", +"471 895 OFFCURVE", +"552 921 CURVE", +"627 885 OFFCURVE", +"653 873 OFFCURVE", +"719 850 CURVE SMOOTH", +"1053 735 OFFCURVE", +"1162 648 OFFCURVE", +"1162 510 CURVE SMOOTH", +"1162 401 OFFCURVE", +"1093 302 OFFCURVE", +"998 268 CURVE" +); +} +); +width = 1492; +} +); +rightKerningGroup = _A1; +unicode = 00A7; +}, +{ +color = 5; +glyphname = copyright; +lastChange = "2022-02-11 15:11:49 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +position = "{949.867, 463.06}"; +}, +{ +name = cedilla; +position = "{972.939, 463.06}"; +}, +{ +name = top; +position = "{949.867, 1201.364}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-30, 264}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1418, 262}"; +type = Stem; +}, +{ +place = "{91, 262}"; +type = Stem; +}, +{ +place = "{1549, 260}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{439.988, 243.698}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{980.738, 243.698}"; +type = Stem; +}, +{ +place = "{580.715, 317.24}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1421 -30 OFFCURVE", +"1809 356 OFFCURVE", +"1809 825 CURVE SMOOTH", +"1809 1295 OFFCURVE", +"1422 1680 OFFCURVE", +"949 1680 CURVE SMOOTH", +"475 1680 OFFCURVE", +"91 1293 OFFCURVE", +"91 827 CURVE SMOOTH", +"91 356 OFFCURVE", +"482 -30 OFFCURVE", +"951 -30 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"625 234 OFFCURVE", +"353 503 OFFCURVE", +"353 826 CURVE SMOOTH", +"353 1150 OFFCURVE", +"623 1418 OFFCURVE", +"949 1418 CURVE SMOOTH", +"1277 1418 OFFCURVE", +"1549 1150 OFFCURVE", +"1549 825 CURVE SMOOTH", +"1549 502 OFFCURVE", +"1277 234 OFFCURVE", +"951 234 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1103 440 OFFCURVE", +"1191 470 OFFCURVE", +"1240 506 CURVE", +"1142 708 LINE", +"1119 693 OFFCURVE", +"1085 684 OFFCURVE", +"1049 684 CURVE SMOOTH", +"961 684 OFFCURVE", +"898 746 OFFCURVE", +"898 832 CURVE SMOOTH", +"898 918 OFFCURVE", +"961 981 OFFCURVE", +"1049 981 CURVE SMOOTH", +"1085 981 OFFCURVE", +"1119 971 OFFCURVE", +"1142 956 CURVE", +"1240 1158 LINE", +"1191 1194 OFFCURVE", +"1103 1224 OFFCURVE", +"1002 1224 CURVE SMOOTH", +"762 1224 OFFCURVE", +"581 1054 OFFCURVE", +"581 832 CURVE SMOOTH", +"581 610 OFFCURVE", +"762 440 OFFCURVE", +"1002 440 CURVE SMOOTH" +); +} +); +width = 1900; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1008.281, 372.707}"; +}, +{ +name = cedilla; +position = "{1036.473, 372.707}"; +}, +{ +name = top; +position = "{1008.281, 1274.851}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-31, 135}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1546, 134}"; +type = Stem; +}, +{ +place = "{194, 138}"; +type = Stem; +}, +{ +place = "{1744, 138}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{344.515, 142.722}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1160.321, 142.722}"; +type = Stem; +}, +{ +place = "{573.948, 177.962}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"1508 -31 OFFCURVE", +"1882 346 OFFCURVE", +"1882 822 CURVE SMOOTH", +"1882 1299 OFFCURVE", +"1506 1680 OFFCURVE", +"1036 1680 CURVE SMOOTH", +"568 1680 OFFCURVE", +"194 1297 OFFCURVE", +"194 823 CURVE SMOOTH", +"194 344 OFFCURVE", +"566 -31 OFFCURVE", +"1037 -31 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"641 104 OFFCURVE", +"332 418 OFFCURVE", +"332 822 CURVE SMOOTH", +"332 1223 OFFCURVE", +"646 1546 OFFCURVE", +"1036 1546 CURVE SMOOTH", +"1429 1546 OFFCURVE", +"1744 1224 OFFCURVE", +"1744 822 CURVE SMOOTH", +"1744 420 OFFCURVE", +"1432 104 OFFCURVE", +"1037 104 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1185 345 OFFCURVE", +"1298 382 OFFCURVE", +"1372 441 CURVE", +"1295 548 LINE", +"1239 508 OFFCURVE", +"1168 487 OFFCURVE", +"1090 487 CURVE SMOOTH", +"886 487 OFFCURVE", +"752 639 OFFCURVE", +"752 824 CURVE SMOOTH", +"752 1009 OFFCURVE", +"886 1160 OFFCURVE", +"1090 1160 CURVE SMOOTH", +"1168 1160 OFFCURVE", +"1239 1139 OFFCURVE", +"1295 1100 CURVE", +"1372 1207 LINE", +"1298 1265 OFFCURVE", +"1185 1303 OFFCURVE", +"1067 1303 CURVE SMOOTH", +"787 1303 OFFCURVE", +"574 1091 OFFCURVE", +"574 824 CURVE SMOOTH", +"574 557 OFFCURVE", +"787 345 OFFCURVE", +"1067 345 CURVE SMOOTH" +); +} +); +width = 2075; +}, +{ +anchors = ( +{ +name = bottom; +position = "{1055, 310}"; +}, +{ +name = cedilla; +position = "{1087, 310}"; +}, +{ +name = top; +position = "{1055, 1334}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{-32, 54}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1626, 54}"; +type = Stem; +}, +{ +place = "{259, 60}"; +type = Stem; +}, +{ +place = "{1867, 60}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{278, 52}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1314, 52}"; +type = Stem; +}, +{ +place = "{569, 52}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"1563 -32 OFFCURVE", +"1927 339 OFFCURVE", +"1927 820 CURVE SMOOTH", +"1927 1302 OFFCURVE", +"1559 1680 OFFCURVE", +"1091 1680 CURVE SMOOTH", +"627 1680 OFFCURVE", +"259 1300 OFFCURVE", +"259 820 CURVE SMOOTH", +"259 336 OFFCURVE", +"618 -32 OFFCURVE", +"1091 -32 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"651 22 OFFCURVE", +"319 365 OFFCURVE", +"319 820 CURVE SMOOTH", +"319 1269 OFFCURVE", +"661 1626 OFFCURVE", +"1091 1626 CURVE SMOOTH", +"1525 1626 OFFCURVE", +"1867 1271 OFFCURVE", +"1867 820 CURVE SMOOTH", +"1867 369 OFFCURVE", +"1530 22 OFFCURVE", +"1091 22 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"1251 278 OFFCURVE", +"1373 322 OFFCURVE", +"1469 398 CURVE", +"1433 436 LINE", +"1347 366 OFFCURVE", +"1237 330 OFFCURVE", +"1116 330 CURVE SMOOTH", +"826 330 OFFCURVE", +"621 539 OFFCURVE", +"621 822 CURVE SMOOTH", +"621 1108 OFFCURVE", +"829 1314 OFFCURVE", +"1115 1314 CURVE SMOOTH", +"1237 1314 OFFCURVE", +"1347 1278 OFFCURVE", +"1435 1208 CURVE", +"1469 1246 LINE", +"1375 1322 OFFCURVE", +"1251 1366 OFFCURVE", +"1115 1366 CURVE SMOOTH", +"807 1366 OFFCURVE", +"569 1142 OFFCURVE", +"569 822 CURVE SMOOTH", +"569 504 OFFCURVE", +"807 278 OFFCURVE", +"1115 278 CURVE SMOOTH" +); +} +); +width = 2185; +} +); +rightKerningGroup = _A1; +unicode = 00A9; +}, +{ +color = 5; +glyphname = registered; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = R; +transform = "{0.23, 0, 0, 0.23, 412.24, 1041.989}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{780, 121}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1559, 121}"; +type = Stem; +}, +{ +place = "{147, 123}"; +type = Stem; +}, +{ +place = "{920, 123}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"845 780 OFFCURVE", +"1043 986 OFFCURVE", +"1043 1230 CURVE SMOOTH", +"1043 1474 OFFCURVE", +"845 1680 OFFCURVE", +"595 1680 CURVE SMOOTH", +"345 1680 OFFCURVE", +"147 1474 OFFCURVE", +"147 1230 CURVE SMOOTH", +"147 986 OFFCURVE", +"345 780 OFFCURVE", +"595 780 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"411 901 OFFCURVE", +"270 1054 OFFCURVE", +"270 1230 CURVE SMOOTH", +"270 1406 OFFCURVE", +"411 1559 OFFCURVE", +"595 1559 CURVE SMOOTH", +"779 1559 OFFCURVE", +"920 1406 OFFCURVE", +"920 1230 CURVE SMOOTH", +"920 1054 OFFCURVE", +"779 901 OFFCURVE", +"595 901 CURVE SMOOTH" +); +} +); +width = 1191; +}, +{ +components = ( +{ +alignment = -1; +name = R; +transform = "{0.318, 0, 0, 0.318, 433.546, 970.001}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{773, 81}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1608, 81}"; +type = Stem; +}, +{ +place = "{220, 81}"; +type = Stem; +}, +{ +place = "{1051, 81}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"927 773 OFFCURVE", +"1132 980 OFFCURVE", +"1132 1231 CURVE SMOOTH", +"1132 1482 OFFCURVE", +"927 1689 OFFCURVE", +"676 1689 CURVE SMOOTH", +"425 1689 OFFCURVE", +"220 1482 OFFCURVE", +"220 1231 CURVE SMOOTH", +"220 980 OFFCURVE", +"425 773 OFFCURVE", +"676 773 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"469 854 OFFCURVE", +"301 1024 OFFCURVE", +"301 1231 CURVE SMOOTH", +"301 1438 OFFCURVE", +"469 1608 OFFCURVE", +"676 1608 CURVE SMOOTH", +"883 1608 OFFCURVE", +"1051 1438 OFFCURVE", +"1051 1231 CURVE SMOOTH", +"1051 1024 OFFCURVE", +"883 854 OFFCURVE", +"676 854 CURVE SMOOTH" +); +} +); +width = 1353; +}, +{ +components = ( +{ +alignment = -1; +name = R; +transform = "{0.373, 0, 0, 0.373, 461.613, 923.001}"; +} +); +hints = ( +{ +horizontal = 1; +place = "{768, 30}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1664, 30}"; +type = Stem; +}, +{ +place = "{265, 30}"; +type = Stem; +}, +{ +place = "{1159, 30}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"981 768 OFFCURVE", +"1189 978 OFFCURVE", +"1189 1231 CURVE SMOOTH", +"1189 1484 OFFCURVE", +"981 1694 OFFCURVE", +"727 1694 CURVE SMOOTH", +"473 1694 OFFCURVE", +"265 1484 OFFCURVE", +"265 1231 CURVE SMOOTH", +"265 978 OFFCURVE", +"473 768 OFFCURVE", +"727 768 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"489 798 OFFCURVE", +"295 994 OFFCURVE", +"295 1231 CURVE SMOOTH", +"295 1468 OFFCURVE", +"489 1664 OFFCURVE", +"727 1664 CURVE SMOOTH", +"965 1664 OFFCURVE", +"1159 1468 OFFCURVE", +"1159 1231 CURVE SMOOTH", +"1159 994 OFFCURVE", +"965 798 OFFCURVE", +"727 798 CURVE SMOOTH" +); +} +); +width = 1454; +} +); +rightKerningGroup = _A1; +unicode = 00AE; +}, +{ +color = 5; +glyphname = trademark; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +components = ( +{ +alignment = -1; +name = T; +transform = "{0.31, 0, 0, 0.31, 199.41, 1138.16}"; +}, +{ +alignment = -1; +name = M; +transform = "{0.31, 0, 0, 0.31, 543.77, 1138.5}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1357; +}, +{ +components = ( +{ +alignment = -1; +name = T; +transform = "{0.31, 0, 0, 0.31, 228.41, 1138.5}"; +}, +{ +alignment = -1; +name = M; +transform = "{0.31, 0, 0, 0.31, 580.24, 1138.5}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1429; +}, +{ +components = ( +{ +alignment = -1; +name = T; +transform = "{0.31, 0, 0, 0.31, 245.88, 1138.5}"; +}, +{ +alignment = -1; +name = M; +transform = "{0.31, 0, 0, 0.31, 603.573, 1138.5}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 1475; +} +); +leftMetricsKey = H; +rightKerningGroup = _A1; +rightMetricsKey = H; +unicode = 2122; +}, +{ +color = 5; +glyphname = degree; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = "{1338, 130}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1620, 130}"; +type = Stem; +}, +{ +place = "{193, 166}"; +type = Stem; +}, +{ +place = "{503, 166}"; +type = Stem; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"565 1338 OFFCURVE", +"669 1422 OFFCURVE", +"669 1544 CURVE SMOOTH", +"669 1666 OFFCURVE", +"565 1750 OFFCURVE", +"431 1750 CURVE SMOOTH", +"297 1750 OFFCURVE", +"193 1666 OFFCURVE", +"193 1544 CURVE SMOOTH", +"193 1422 OFFCURVE", +"297 1338 OFFCURVE", +"431 1338 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"391 1468 OFFCURVE", +"359 1500 OFFCURVE", +"359 1544 CURVE SMOOTH", +"359 1588 OFFCURVE", +"391 1620 OFFCURVE", +"431 1620 CURVE SMOOTH", +"471 1620 OFFCURVE", +"503 1588 OFFCURVE", +"503 1544 CURVE SMOOTH", +"503 1500 OFFCURVE", +"471 1468 OFFCURVE", +"431 1468 CURVE SMOOTH" +); +} +); +width = 862; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1338, 80}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1670, 80}"; +type = Stem; +}, +{ +place = "{268, 93}"; +type = Stem; +}, +{ +place = "{607, 94}"; +type = Stem; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"609 1338 OFFCURVE", +"701 1423 OFFCURVE", +"701 1544 CURVE SMOOTH", +"701 1666 OFFCURVE", +"606 1750 OFFCURVE", +"484 1750 CURVE SMOOTH", +"363 1750 OFFCURVE", +"268 1666 OFFCURVE", +"268 1543 CURVE SMOOTH", +"268 1425 OFFCURVE", +"357 1338 OFFCURVE", +"484 1338 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"412 1418 OFFCURVE", +"361 1469 OFFCURVE", +"361 1543 CURVE SMOOTH", +"361 1618 OFFCURVE", +"414 1670 OFFCURVE", +"484 1670 CURVE SMOOTH", +"552 1670 OFFCURVE", +"607 1620 OFFCURVE", +"607 1543 CURVE SMOOTH", +"607 1470 OFFCURVE", +"557 1418 OFFCURVE", +"484 1418 CURVE SMOOTH" +); +} +); +width = 969; +}, +{ +hints = ( +{ +horizontal = 1; +place = "{1338, 48}"; +type = Stem; +}, +{ +horizontal = 1; +place = "{1702, 48}"; +type = Stem; +}, +{ +place = "{315, 48}"; +type = Stem; +}, +{ +place = "{673, 48}"; +type = Stem; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"637 1338 OFFCURVE", +"721 1424 OFFCURVE", +"721 1544 CURVE SMOOTH", +"721 1666 OFFCURVE", +"631 1750 OFFCURVE", +"517 1750 CURVE SMOOTH", +"405 1750 OFFCURVE", +"315 1666 OFFCURVE", +"315 1543 CURVE SMOOTH", +"315 1427 OFFCURVE", +"394 1338 OFFCURVE", +"517 1338 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"425 1386 OFFCURVE", +"363 1450 OFFCURVE", +"363 1542 CURVE SMOOTH", +"363 1637 OFFCURVE", +"429 1702 OFFCURVE", +"517 1702 CURVE SMOOTH", +"603 1702 OFFCURVE", +"673 1640 OFFCURVE", +"673 1543 CURVE SMOOTH", +"673 1451 OFFCURVE", +"611 1386 OFFCURVE", +"518 1386 CURVE SMOOTH" +); +} +); +width = 1036; +} +); +rightKerningGroup = _A1; +unicode = 00B0; +}, +{ +color = 5; +glyphname = bar; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"591 0 LINE", +"591 1720 LINE", +"235 1720 LINE", +"235 0 LINE" +); +} +); +width = 826; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"479 0 LINE", +"479 1720 LINE", +"307 1720 LINE", +"307 0 LINE" +); +} +); +width = 785; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"408 0 LINE", +"408 1720 LINE", +"352 1720 LINE", +"352 0 LINE" +); +} +); +width = 760; +} +); +leftKerningGroup = _I; +rightKerningGroup = _A1; +unicode = 007C; +}, +{ +color = 5; +glyphname = brokenbar; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"591 1056 LINE", +"591 1720 LINE", +"235 1720 LINE", +"235 1056 LINE" +); +}, +{ +closed = 1; +nodes = ( +"591 0 LINE", +"591 664 LINE", +"235 664 LINE", +"235 0 LINE" +); +} +); +width = 826; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"479 1056 LINE", +"479 1720 LINE", +"307 1720 LINE", +"307 1056 LINE" +); +}, +{ +closed = 1; +nodes = ( +"479 0 LINE", +"479 664 LINE", +"307 664 LINE", +"307 0 LINE" +); +} +); +width = 785; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"408 1056 LINE", +"408 1720 LINE", +"352 1720 LINE", +"352 1056 LINE" +); +}, +{ +closed = 1; +nodes = ( +"408 0 LINE", +"408 664 LINE", +"352 664 LINE", +"352 0 LINE" +); +} +); +width = 760; +} +); +rightKerningGroup = _A1; +unicode = 00A6; +}, +{ +color = 5; +glyphname = dagger; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"660 0 LINE", +"660 1006 LINE", +"884 1006 LINE", +"884 1322 LINE", +"660 1322 LINE", +"660 1720 LINE", +"304 1720 LINE", +"304 1322 LINE", +"80 1322 LINE", +"80 1006 LINE", +"304 1006 LINE", +"304 0 LINE" +); +} +); +width = 964; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"652 0 LINE", +"652 1086 LINE", +"968 1086 LINE", +"968 1242 LINE", +"652 1242 LINE", +"652 1720 LINE", +"480 1720 LINE", +"480 1242 LINE", +"164 1242 LINE", +"164 1086 LINE", +"480 1086 LINE", +"480 0 LINE" +); +} +); +width = 1132; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"647 0 LINE", +"647 1136 LINE", +"1021 1136 LINE", +"1021 1192 LINE", +"647 1192 LINE", +"647 1720 LINE", +"591 1720 LINE", +"591 1192 LINE", +"217 1192 LINE", +"217 1136 LINE", +"591 1136 LINE", +"591 0 LINE" +); +} +); +width = 1238; +} +); +rightKerningGroup = _A1; +unicode = 2020; +}, +{ +color = 5; +glyphname = daggerdbl; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"722 0 LINE", +"722 438 LINE", +"946 438 LINE", +"946 754 LINE", +"722 754 LINE", +"722 958 LINE", +"946 958 LINE", +"946 1274 LINE", +"722 1274 LINE", +"722 1720 LINE", +"366 1720 LINE", +"366 1274 LINE", +"142 1274 LINE", +"142 958 LINE", +"366 958 LINE", +"366 754 LINE", +"142 754 LINE", +"142 438 LINE", +"366 438 LINE", +"366 0 LINE" +); +} +); +width = 1088; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"687 0 LINE", +"687 518 LINE", +"1003 518 LINE", +"1003 674 LINE", +"687 674 LINE", +"687 1067 LINE", +"1003 1067 LINE", +"1003 1224 LINE", +"687 1224 LINE", +"687 1720 LINE", +"515 1720 LINE", +"515 1224 LINE", +"199 1224 LINE", +"199 1067 LINE", +"515 1067 LINE", +"515 674 LINE", +"199 674 LINE", +"199 518 LINE", +"515 518 LINE", +"515 0 LINE" +); +} +); +width = 1202; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"665 0 LINE", +"665 568 LINE", +"1039 568 LINE", +"1039 624 LINE", +"665 624 LINE", +"665 1136 LINE", +"1039 1136 LINE", +"1039 1192 LINE", +"665 1192 LINE", +"665 1720 LINE", +"609 1720 LINE", +"609 1192 LINE", +"235 1192 LINE", +"235 1136 LINE", +"609 1136 LINE", +"609 624 LINE", +"235 624 LINE", +"235 568 LINE", +"609 568 LINE", +"609 0 LINE" +); +} +); +width = 1274; +} +); +rightKerningGroup = _A1; +unicode = 2021; +}, +{ +color = 5; +glyphname = dieresiscomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{448, 1024}"; +}, +{ +name = top; +position = "{448, 1610}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"802 1186 OFFCURVE", +"896 1280 OFFCURVE", +"896 1398 CURVE SMOOTH", +"896 1516 OFFCURVE", +"802 1610 OFFCURVE", +"684 1610 CURVE SMOOTH", +"566 1610 OFFCURVE", +"472 1516 OFFCURVE", +"472 1398 CURVE SMOOTH", +"472 1280 OFFCURVE", +"566 1186 OFFCURVE", +"684 1186 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"330 1186 OFFCURVE", +"424 1280 OFFCURVE", +"424 1398 CURVE SMOOTH", +"424 1516 OFFCURVE", +"330 1610 OFFCURVE", +"212 1610 CURVE SMOOTH", +"94 1610 OFFCURVE", +"0 1516 OFFCURVE", +"0 1398 CURVE SMOOTH", +"0 1280 OFFCURVE", +"94 1186 OFFCURVE", +"212 1186 CURVE SMOOTH" +); +} +); +width = 896; +}, +{ +anchors = ( +{ +name = _top; +position = "{347, 1024}"; +}, +{ +name = top; +position = "{347, 1509}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"644 1287 OFFCURVE", +"694 1337 OFFCURVE", +"694 1398 CURVE SMOOTH", +"694 1459 OFFCURVE", +"644 1509 OFFCURVE", +"583 1509 CURVE SMOOTH", +"522 1509 OFFCURVE", +"472 1459 OFFCURVE", +"472 1398 CURVE SMOOTH", +"472 1337 OFFCURVE", +"522 1287 OFFCURVE", +"583 1287 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"172 1287 OFFCURVE", +"222 1337 OFFCURVE", +"222 1398 CURVE SMOOTH", +"222 1459 OFFCURVE", +"172 1509 OFFCURVE", +"111 1509 CURVE SMOOTH", +"50 1509 OFFCURVE", +"0 1459 OFFCURVE", +"0 1398 CURVE SMOOTH", +"0 1337 OFFCURVE", +"50 1287 OFFCURVE", +"111 1287 CURVE SMOOTH" +); +} +); +width = 694; +}, +{ +anchors = ( +{ +name = _top; +position = "{284, 1024}"; +}, +{ +name = top; +position = "{284, 1446}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"546 1350 OFFCURVE", +"568 1372 OFFCURVE", +"568 1398 CURVE SMOOTH", +"568 1424 OFFCURVE", +"546 1446 OFFCURVE", +"520 1446 CURVE SMOOTH", +"494 1446 OFFCURVE", +"472 1424 OFFCURVE", +"472 1398 CURVE SMOOTH", +"472 1372 OFFCURVE", +"494 1350 OFFCURVE", +"520 1350 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"74 1350 OFFCURVE", +"96 1372 OFFCURVE", +"96 1398 CURVE SMOOTH", +"96 1424 OFFCURVE", +"74 1446 OFFCURVE", +"48 1446 CURVE SMOOTH", +"22 1446 OFFCURVE", +"0 1424 OFFCURVE", +"0 1398 CURVE SMOOTH", +"0 1372 OFFCURVE", +"22 1350 OFFCURVE", +"48 1350 CURVE SMOOTH" +); +} +); +width = 568; +} +); +rightKerningGroup = _A1; +unicode = 0308; +}, +{ +color = 5; +glyphname = dotaccentcomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{240, 1024}"; +}, +{ +name = top; +position = "{240, 1724}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"373 1243 OFFCURVE", +"481 1352 OFFCURVE", +"481 1484 CURVE SMOOTH", +"481 1616 OFFCURVE", +"373 1724 OFFCURVE", +"241 1724 CURVE SMOOTH", +"108 1724 OFFCURVE", +"0 1616 OFFCURVE", +"0 1484 CURVE SMOOTH", +"0 1351 OFFCURVE", +"108 1243 OFFCURVE", +"241 1243 CURVE SMOOTH" +); +} +); +width = 481; +}, +{ +anchors = ( +{ +name = _top; +position = "{122, 1024}"; +}, +{ +name = top; +position = "{121, 1598}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"189 1354 OFFCURVE", +"244 1409 OFFCURVE", +"244 1476 CURVE SMOOTH", +"244 1543 OFFCURVE", +"189 1598 OFFCURVE", +"122 1598 CURVE SMOOTH", +"55 1598 OFFCURVE", +"0 1543 OFFCURVE", +"0 1476 CURVE SMOOTH", +"0 1409 OFFCURVE", +"55 1354 OFFCURVE", +"122 1354 CURVE SMOOTH" +); +} +); +width = 244; +}, +{ +anchors = ( +{ +name = _top; +position = "{48, 1024}"; +}, +{ +name = top; +position = "{48, 1520}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"74 1424 OFFCURVE", +"96 1446 OFFCURVE", +"96 1472 CURVE SMOOTH", +"96 1498 OFFCURVE", +"74 1520 OFFCURVE", +"48 1520 CURVE SMOOTH", +"22 1520 OFFCURVE", +"0 1498 OFFCURVE", +"0 1472 CURVE SMOOTH", +"0 1446 OFFCURVE", +"22 1424 OFFCURVE", +"48 1424 CURVE SMOOTH" +); +} +); +width = 95; +} +); +rightKerningGroup = _A1; +unicode = 0307; +}, +{ +color = 5; +glyphname = gravecomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{410, 1024}"; +}, +{ +name = top; +position = "{326, 1680}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"637 1299 LINE", +"189 1679 LINE", +"17 1392 LINE", +"512 1120 LINE" +); +} +); +width = 652; +}, +{ +anchors = ( +{ +name = _top; +position = "{272, 1024}"; +}, +{ +name = top; +position = "{189, 1666}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"425 1306 LINE", +"49 1559 LINE", +"-49 1414 LINE", +"361 1210 LINE" +); +} +); +width = 377; +}, +{ +anchors = ( +{ +name = _top; +position = "{103, 1024}"; +}, +{ +name = top; +position = "{103, 1657}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"292 1310 LINE", +"-38 1483 LINE", +"-69 1416 LINE", +"267 1266 LINE" +); +} +); +width = 205; +} +); +rightKerningGroup = _A1; +unicode = 0300; +}, +{ +color = 5; +glyphname = acutecomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{242, 1024}"; +}, +{ +name = top; +position = "{242, 1698}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"-34 1299 LINE", +"91 1120 LINE", +"586 1392 LINE", +"414 1679 LINE" +); +} +); +width = 603; +}, +{ +anchors = ( +{ +name = _top; +position = "{105, 1024}"; +}, +{ +name = top; +position = "{145, 1687}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"-67 1306 LINE", +"-3 1210 LINE", +"394 1407 LINE", +"309 1559 LINE" +); +} +); +width = 358; +}, +{ +anchors = ( +{ +name = _top; +position = "{34, 1024}"; +}, +{ +name = top; +position = "{34, 1680}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"-87 1310 LINE", +"-62 1266 LINE", +"274 1416 LINE", +"243 1483 LINE" +); +} +); +width = 205; +} +); +rightKerningGroup = _A1; +unicode = 0301; +}, +{ +color = 5; +glyphname = hungarumlautcomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{522, 1024}"; +}, +{ +name = top; +position = "{522, 1680}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"1243 1416 LINE", +"1005 1680 LINE", +"604 1292 LINE", +"750 1116 LINE" +); +}, +{ +closed = 1; +nodes = ( +"639 1416 LINE", +"401 1680 LINE", +"0 1292 LINE", +"148 1116 LINE" +); +} +); +width = 1243; +}, +{ +anchors = ( +{ +name = _top; +position = "{325, 1025}"; +}, +{ +name = top; +position = "{325, 1680}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"788 1540 LINE", +"656 1680 LINE", +"400 1426 LINE", +"483 1332 LINE" +); +}, +{ +closed = 1; +nodes = ( +"388 1540 LINE", +"257 1680 LINE", +"0 1426 LINE", +"83 1332 LINE" +); +} +); +width = 788; +}, +{ +anchors = ( +{ +name = _top; +position = "{202, 1024}"; +}, +{ +name = top; +position = "{202, 1680}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"503 1618 LINE", +"437 1680 LINE", +"272 1510 LINE", +"315 1468 LINE" +); +}, +{ +closed = 1; +nodes = ( +"231 1618 LINE", +"167 1680 LINE", +"0 1510 LINE", +"43 1468 LINE" +); +} +); +width = 503; +} +); +rightKerningGroup = _A1; +unicode = 030B; +}, +{ +color = 5; +glyphname = circumflexcomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{462, 1024}"; +}, +{ +name = top; +position = "{462, 1680}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"462 1354 LINE", +"768 1130 LINE", +"924 1340 LINE", +"462 1680 LINE", +"0 1340 LINE", +"156 1130 LINE" +); +} +); +width = 924; +}, +{ +anchors = ( +{ +name = _top; +position = "{385, 1024}"; +}, +{ +name = top; +position = "{385, 1680}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"385 1515 LINE", +"691 1291 LINE", +"770 1398 LINE", +"385 1680 LINE", +"0 1398 LINE", +"79 1291 LINE" +); +} +); +width = 770; +}, +{ +anchors = ( +{ +name = _top; +position = "{336, 1024}"; +}, +{ +name = top; +position = "{336, 1680}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"336 1616 LINE", +"642 1392 LINE", +"672 1434 LINE", +"336 1680 LINE", +"0 1434 LINE", +"30 1392 LINE" +); +} +); +width = 672; +} +); +rightKerningGroup = _A1; +unicode = 0302; +}, +{ +color = 5; +glyphname = caroncomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{462, 1024}"; +}, +{ +name = top; +position = "{462, 1680}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"924 1470 LINE", +"768 1680 LINE", +"462 1456 LINE", +"156 1680 LINE", +"0 1470 LINE", +"462 1130 LINE" +); +} +); +width = 924; +}, +{ +anchors = ( +{ +name = _top; +position = "{385, 1024}"; +}, +{ +name = top; +position = "{385, 1680}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"770 1487 LINE", +"691 1594 LINE", +"385 1370 LINE", +"79 1594 LINE", +"0 1487 LINE", +"385 1205 LINE" +); +} +); +width = 770; +}, +{ +anchors = ( +{ +name = _top; +position = "{336, 1024}"; +}, +{ +name = top; +position = "{336, 1680}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"672 1498 LINE", +"642 1540 LINE", +"336 1316 LINE", +"30 1540 LINE", +"0 1498 LINE", +"336 1252 LINE" +); +} +); +width = 672; +} +); +rightKerningGroup = _A1; +unicode = 030C; +}, +{ +color = 5; +glyphname = brevecomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{476, 1024}"; +}, +{ +name = top; +position = "{476, 1680}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"746 1234 OFFCURVE", +"930 1388 OFFCURVE", +"952 1608 CURVE", +"660 1680 LINE", +"655 1591 OFFCURVE", +"609 1486 OFFCURVE", +"476 1486 CURVE SMOOTH", +"343 1486 OFFCURVE", +"297 1591 OFFCURVE", +"292 1680 CURVE", +"0 1608 LINE", +"22 1388 OFFCURVE", +"206 1234 OFFCURVE", +"476 1234 CURVE SMOOTH" +); +} +); +width = 952; +}, +{ +anchors = ( +{ +name = _top; +position = "{423, 1025}"; +}, +{ +name = top; +position = "{423, 1680}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"646 1314 OFFCURVE", +"813 1448 OFFCURVE", +"846 1645 CURVE", +"703 1680 LINE", +"680 1549 OFFCURVE", +"581 1443 OFFCURVE", +"423 1443 CURVE SMOOTH", +"265 1443 OFFCURVE", +"166 1549 OFFCURVE", +"143 1680 CURVE", +"0 1645 LINE", +"33 1448 OFFCURVE", +"200 1314 OFFCURVE", +"423 1314 CURVE SMOOTH" +); +} +); +width = 846; +}, +{ +anchors = ( +{ +name = _top; +position = "{390, 1024}"; +}, +{ +name = top; +position = "{390, 1680}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"584 1364 OFFCURVE", +"740 1486 OFFCURVE", +"780 1668 CURVE", +"730 1680 LINE", +"696 1522 OFFCURVE", +"562 1416 OFFCURVE", +"390 1416 CURVE SMOOTH", +"216 1416 OFFCURVE", +"84 1522 OFFCURVE", +"50 1680 CURVE", +"0 1668 LINE", +"40 1486 OFFCURVE", +"196 1364 OFFCURVE", +"390 1364 CURVE SMOOTH" +); +} +); +width = 780; +} +); +rightKerningGroup = _A1; +unicode = 0306; +}, +{ +color = 5; +glyphname = ringcomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{348, 1024}"; +}, +{ +name = top; +position = "{348, 1772}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"542 1160 OFFCURVE", +"696 1286 OFFCURVE", +"696 1466 CURVE SMOOTH", +"696 1646 OFFCURVE", +"542 1772 OFFCURVE", +"348 1772 CURVE SMOOTH", +"154 1772 OFFCURVE", +"0 1646 OFFCURVE", +"0 1466 CURVE SMOOTH", +"0 1286 OFFCURVE", +"154 1160 OFFCURVE", +"348 1160 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"286 1342 OFFCURVE", +"230 1398 OFFCURVE", +"230 1466 CURVE SMOOTH", +"230 1534 OFFCURVE", +"286 1590 OFFCURVE", +"348 1590 CURVE SMOOTH", +"410 1590 OFFCURVE", +"466 1534 OFFCURVE", +"466 1466 CURVE SMOOTH", +"466 1398 OFFCURVE", +"410 1342 OFFCURVE", +"348 1342 CURVE SMOOTH" +); +} +); +width = 696; +}, +{ +anchors = ( +{ +name = _top; +position = "{253, 1024}"; +}, +{ +name = top; +position = "{253, 1688}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"395 1240 OFFCURVE", +"506 1333 OFFCURVE", +"506 1464 CURVE SMOOTH", +"506 1595 OFFCURVE", +"395 1688 OFFCURVE", +"253 1688 CURVE SMOOTH", +"111 1688 OFFCURVE", +"0 1595 OFFCURVE", +"0 1464 CURVE SMOOTH", +"0 1333 OFFCURVE", +"111 1240 OFFCURVE", +"253 1240 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"178 1342 OFFCURVE", +"121 1395 OFFCURVE", +"121 1464 CURVE SMOOTH", +"121 1533 OFFCURVE", +"178 1586 OFFCURVE", +"253 1586 CURVE SMOOTH", +"328 1586 OFFCURVE", +"385 1533 OFFCURVE", +"385 1464 CURVE SMOOTH", +"385 1395 OFFCURVE", +"328 1342 OFFCURVE", +"253 1342 CURVE SMOOTH" +); +} +); +width = 506; +}, +{ +anchors = ( +{ +name = _top; +position = "{194, 1026}"; +}, +{ +name = top; +position = "{194, 1636}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"302 1292 OFFCURVE", +"388 1364 OFFCURVE", +"388 1464 CURVE SMOOTH", +"388 1564 OFFCURVE", +"302 1636 OFFCURVE", +"194 1636 CURVE SMOOTH", +"86 1636 OFFCURVE", +"0 1564 OFFCURVE", +"0 1464 CURVE SMOOTH", +"0 1364 OFFCURVE", +"86 1292 OFFCURVE", +"194 1292 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"112 1344 OFFCURVE", +"52 1394 OFFCURVE", +"52 1464 CURVE SMOOTH", +"52 1534 OFFCURVE", +"112 1584 OFFCURVE", +"194 1584 CURVE SMOOTH", +"276 1584 OFFCURVE", +"336 1534 OFFCURVE", +"336 1464 CURVE SMOOTH", +"336 1394 OFFCURVE", +"276 1344 OFFCURVE", +"194 1344 CURVE SMOOTH" +); +} +); +width = 388; +} +); +rightKerningGroup = _A1; +unicode = 030A; +}, +{ +color = 5; +glyphname = tildecomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{561, 1024}"; +}, +{ +name = top; +position = "{561, 1582}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"212 1166 LINE", +"249 1238 OFFCURVE", +"297 1273 OFFCURVE", +"362 1273 CURVE SMOOTH", +"503 1273 OFFCURVE", +"592 1109 OFFCURVE", +"776 1109 CURVE SMOOTH", +"913 1109 OFFCURVE", +"1032 1198 OFFCURVE", +"1122 1386 CURVE", +"910 1525 LINE", +"873 1453 OFFCURVE", +"825 1418 OFFCURVE", +"760 1418 CURVE SMOOTH", +"619 1418 OFFCURVE", +"530 1582 OFFCURVE", +"346 1582 CURVE SMOOTH", +"209 1582 OFFCURVE", +"90 1493 OFFCURVE", +"0 1305 CURVE" +); +} +); +width = 1122; +}, +{ +anchors = ( +{ +name = _top; +position = "{510, 1025}"; +}, +{ +name = top; +position = "{510, 1550}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"108 1268 LINE", +"152 1345 OFFCURVE", +"218 1400 OFFCURVE", +"310 1400 CURVE SMOOTH", +"467 1400 OFFCURVE", +"532 1239 OFFCURVE", +"716 1239 CURVE SMOOTH", +"847 1239 OFFCURVE", +"950 1320 OFFCURVE", +"1020 1451 CURVE", +"912 1521 LINE", +"868 1444 OFFCURVE", +"802 1389 OFFCURVE", +"710 1389 CURVE SMOOTH", +"553 1389 OFFCURVE", +"488 1550 OFFCURVE", +"304 1550 CURVE SMOOTH", +"173 1550 OFFCURVE", +"70 1469 OFFCURVE", +"0 1338 CURVE" +); +} +); +width = 1020; +}, +{ +anchors = ( +{ +name = _top; +position = "{478, 1024}"; +}, +{ +name = top; +position = "{478, 1530}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"42 1332 LINE", +"91 1412 OFFCURVE", +"169 1480 OFFCURVE", +"278 1480 CURVE SMOOTH", +"445 1480 OFFCURVE", +"493 1320 OFFCURVE", +"677 1320 CURVE SMOOTH", +"789 1320 OFFCURVE", +"888 1379 OFFCURVE", +"956 1492 CURVE", +"914 1518 LINE", +"857 1423 OFFCURVE", +"773 1370 OFFCURVE", +"677 1370 CURVE SMOOTH", +"511 1370 OFFCURVE", +"463 1530 OFFCURVE", +"278 1530 CURVE SMOOTH", +"150 1530 OFFCURVE", +"57 1454 OFFCURVE", +"0 1358 CURVE" +); +} +); +width = 956; +} +); +rightKerningGroup = _A1; +unicode = 0303; +}, +{ +color = 5; +glyphname = macroncomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{408, 1024}"; +}, +{ +name = top; +position = "{408, 1528}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"816 1248 LINE", +"816 1528 LINE", +"0 1528 LINE", +"0 1248 LINE" +); +} +); +width = 816; +}, +{ +anchors = ( +{ +name = _top; +position = "{408, 1024}"; +}, +{ +name = top; +position = "{408, 1457}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"816 1321 LINE", +"816 1457 LINE", +"0 1457 LINE", +"0 1321 LINE" +); +} +); +width = 816; +}, +{ +anchors = ( +{ +name = _top; +position = "{408, 1024}"; +}, +{ +name = top; +position = "{408, 1412}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"816 1366 LINE", +"816 1412 LINE", +"0 1412 LINE", +"0 1366 LINE" +); +} +); +width = 816; +} +); +rightKerningGroup = _A1; +unicode = 0304; +}, +{ +color = 5; +glyphname = commaturnedabovecomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{385, 1024}"; +}, +{ +name = top; +position = "{385, 1747}"; +} +); +components = ( +{ +alignment = -1; +name = commaaccentcomb; +transform = "{-1, 0, 0, -1, 786, 1182.875}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 777; +}, +{ +anchors = ( +{ +name = _top; +position = "{364, 1024}"; +}, +{ +name = top; +position = "{364, 1665}"; +} +); +components = ( +{ +alignment = -1; +name = commaaccentcomb; +transform = "{-1, 0, 0, -1, 730, 1166.136}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 735; +}, +{ +anchors = ( +{ +name = _top; +position = "{352, 1024}"; +}, +{ +name = top; +position = "{352, 1614}"; +} +); +components = ( +{ +alignment = -1; +name = commaaccentcomb; +transform = "{-1, 0, 0, -1, 699.194, 1169.733}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 709; +} +); +unicode = 0312; +}, +{ +color = 5; +glyphname = commaaccentcomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +position = "{401, 0}"; +}, +{ +name = bottom; +position = "{401, -806}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"340 -547 LINE", +"461 -447 OFFCURVE", +"530 -335 OFFCURVE", +"530 -236 CURVE SMOOTH", +"530 -147 OFFCURVE", +"475 -100 OFFCURVE", +"401 -100 CURVE SMOOTH", +"323 -100 OFFCURVE", +"270 -153 OFFCURVE", +"270 -227 CURVE SMOOTH", +"270 -288 OFFCURVE", +"307 -332 OFFCURVE", +"366 -348 CURVE", +"357 -394 OFFCURVE", +"313 -473 OFFCURVE", +"281 -499 CURVE" +); +} +); +width = 777; +}, +{ +anchors = ( +{ +name = _bottom; +position = "{366, 0}"; +}, +{ +name = bottom; +position = "{366, -584}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"323 -484 LINE", +"398 -424 OFFCURVE", +"453 -315 OFFCURVE", +"453 -228 CURVE SMOOTH", +"453 -160 OFFCURVE", +"419 -122 OFFCURVE", +"366 -122 CURVE SMOOTH", +"315 -122 OFFCURVE", +"280 -158 OFFCURVE", +"280 -206 CURVE SMOOTH", +"280 -251 OFFCURVE", +"311 -284 OFFCURVE", +"353 -290 CURVE", +"350 -355 OFFCURVE", +"324 -420 OFFCURVE", +"293 -458 CURVE" +); +} +); +width = 735; +}, +{ +anchors = ( +{ +name = _bottom; +position = "{346, 0}"; +}, +{ +name = bottom; +position = "{346, -444}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"313 -444 LINE", +"359 -409 OFFCURVE", +"410 -301 OFFCURVE", +"410 -220 CURVE SMOOTH", +"410 -162 OFFCURVE", +"383 -136 OFFCURVE", +"346 -136 CURVE SMOOTH", +"310 -136 OFFCURVE", +"286 -161 OFFCURVE", +"286 -193 CURVE SMOOTH", +"286 -227 OFFCURVE", +"313 -254 OFFCURVE", +"345 -254 CURVE", +"345 -331 OFFCURVE", +"331 -386 OFFCURVE", +"300 -432 CURVE" +); +} +); +width = 709; +} +); +unicode = 0326; +}, +{ +color = 5; +glyphname = cedillacomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _cedilla; +position = "{397, 7}"; +}, +{ +name = bottom; +position = "{280, -588}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"233 7 LINE", +"158 -221 LINE", +"181 -240 LINE", +"191 -234 OFFCURVE", +"226 -229 OFFCURVE", +"259 -229 CURVE SMOOTH", +"330 -229 OFFCURVE", +"377 -256 OFFCURVE", +"377 -298 CURVE SMOOTH", +"377 -333 OFFCURVE", +"348 -357 OFFCURVE", +"304 -357 CURVE SMOOTH", +"253 -357 OFFCURVE", +"200 -328 OFFCURVE", +"154 -274 CURVE", +"0 -391 LINE", +"95 -499 OFFCURVE", +"197 -551 OFFCURVE", +"314 -551 CURVE SMOOTH", +"479 -551 OFFCURVE", +"597 -450 OFFCURVE", +"597 -308 CURVE SMOOTH", +"597 -176 OFFCURVE", +"479 -106 OFFCURVE", +"360 -106 CURVE SMOOTH", +"340 -106 OFFCURVE", +"322 -108 OFFCURVE", +"306 -113 CURVE", +"349 -138 LINE", +"397 7 LINE" +); +} +); +width = 597; +}, +{ +anchors = ( +{ +name = _cedilla; +position = "{312, 21}"; +}, +{ +name = bottom; +position = "{253, -565}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"216 21 LINE", +"134 -233 LINE", +"145 -241 LINE", +"174 -224 OFFCURVE", +"227 -211 OFFCURVE", +"270 -211 CURVE SMOOTH", +"350 -211 OFFCURVE", +"405 -255 OFFCURVE", +"405 -320 CURVE SMOOTH", +"405 -388 OFFCURVE", +"349 -434 OFFCURVE", +"265 -434 CURVE SMOOTH", +"191 -434 OFFCURVE", +"126 -398 OFFCURVE", +"85 -334 CURVE", +"0 -393 LINE", +"64 -487 OFFCURVE", +"157 -539 OFFCURVE", +"268 -539 CURVE SMOOTH", +"415 -539 OFFCURVE", +"520 -449 OFFCURVE", +"520 -323 CURVE SMOOTH", +"520 -194 OFFCURVE", +"400 -138 OFFCURVE", +"288 -138 CURVE SMOOTH", +"273 -138 OFFCURVE", +"258 -139 OFFCURVE", +"243 -142 CURVE", +"254 -154 LINE", +"312 21 LINE" +); +} +); +width = 520; +}, +{ +anchors = ( +{ +name = _cedilla; +position = "{258, 29}"; +}, +{ +name = bottom; +position = "{236, -551}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"206 29 LINE", +"119 -240 LINE", +"122 -242 LINE", +"163 -217 OFFCURVE", +"228 -199 OFFCURVE", +"277 -199 CURVE SMOOTH", +"363 -199 OFFCURVE", +"422 -254 OFFCURVE", +"422 -334 CURVE SMOOTH", +"422 -422 OFFCURVE", +"349 -482 OFFCURVE", +"241 -482 CURVE SMOOTH", +"152 -482 OFFCURVE", +"79 -442 OFFCURVE", +"41 -371 CURVE", +"0 -394 LINE", +"44 -480 OFFCURVE", +"132 -531 OFFCURVE", +"239 -531 CURVE SMOOTH", +"375 -531 OFFCURVE", +"471 -449 OFFCURVE", +"471 -333 CURVE SMOOTH", +"471 -226 OFFCURVE", +"389 -150 OFFCURVE", +"273 -150 CURVE SMOOTH", +"246 -150 OFFCURVE", +"219 -154 OFFCURVE", +"188 -163 CURVE", +"194 -167 LINE", +"258 29 LINE" +); +} +); +width = 471; +} +); +rightKerningGroup = _A1; +unicode = 0327; +}, +{ +color = 5; +glyphname = ogonekcomb; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +position = "{352, 7}"; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"359 -550 OFFCURVE", +"465 -495 OFFCURVE", +"526 -406 CURVE", +"360 -282 LINE", +"344 -311 OFFCURVE", +"315 -330 OFFCURVE", +"287 -330 CURVE SMOOTH", +"254 -330 OFFCURVE", +"236 -305 OFFCURVE", +"236 -260 CURVE SMOOTH", +"236 -188 OFFCURVE", +"283 -79 OFFCURVE", +"352 7 CURVE", +"167 7 LINE", +"59 -117 OFFCURVE", +"0 -234 OFFCURVE", +"0 -325 CURVE SMOOTH", +"0 -449 OFFCURVE", +"108 -550 OFFCURVE", +"252 -550 CURVE SMOOTH" +); +} +); +width = 526; +}, +{ +anchors = ( +{ +name = _ogonek; +position = "{281, 21}"; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"359 -538 OFFCURVE", +"465 -483 OFFCURVE", +"526 -394 CURVE", +"441 -331 LINE", +"389 -392 OFFCURVE", +"333 -421 OFFCURVE", +"268 -421 CURVE SMOOTH", +"172 -421 OFFCURVE", +"123 -361 OFFCURVE", +"123 -288 CURVE SMOOTH", +"123 -208 OFFCURVE", +"182 -90 OFFCURVE", +"281 21 CURVE", +"179 21 LINE", +"64 -104 OFFCURVE", +"0 -221 OFFCURVE", +"0 -313 CURVE SMOOTH", +"0 -437 OFFCURVE", +"105 -538 OFFCURVE", +"251 -538 CURVE SMOOTH" +); +} +); +width = 526; +}, +{ +anchors = ( +{ +name = _ogonek; +position = "{236, 29}"; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"359 -530 OFFCURVE", +"465 -475 OFFCURVE", +"526 -386 CURVE", +"492 -362 LINE", +"418 -443 OFFCURVE", +"344 -478 OFFCURVE", +"256 -478 CURVE SMOOTH", +"121 -478 OFFCURVE", +"52 -400 OFFCURVE", +"52 -303 CURVE SMOOTH", +"52 -209 OFFCURVE", +"117 -94 OFFCURVE", +"236 29 CURVE", +"186 29 LINE", +"67 -96 OFFCURVE", +"0 -206 OFFCURVE", +"0 -306 CURVE SMOOTH", +"0 -429 OFFCURVE", +"103 -530 OFFCURVE", +"250 -530 CURVE SMOOTH" +); +} +); +width = 526; +} +); +rightKerningGroup = _A1; +unicode = 0328; +}, +{ +color = 5; +glyphname = dieresis; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{448, 1024}"; +}, +{ +name = top; +position = "{448, 1610}"; +} +); +components = ( +{ +alignment = -1; +name = dieresiscomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 896; +}, +{ +anchors = ( +{ +name = _top; +position = "{347, 1024}"; +}, +{ +name = top; +position = "{347, 1509}"; +} +); +components = ( +{ +alignment = -1; +name = dieresiscomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 694; +}, +{ +anchors = ( +{ +name = _top; +position = "{284, 1024}"; +}, +{ +name = top; +position = "{284, 1446}"; +} +); +components = ( +{ +alignment = -1; +name = dieresiscomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 568; +} +); +leftMetricsKey = dieresiscomb; +rightMetricsKey = dieresiscomb; +unicode = 00A8; +}, +{ +color = 5; +glyphname = dotaccent; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{240, 1024}"; +}, +{ +name = top; +position = "{240, 1724}"; +} +); +components = ( +{ +alignment = -1; +name = dotaccentcomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 481; +}, +{ +anchors = ( +{ +name = _top; +position = "{122, 1024}"; +}, +{ +name = top; +position = "{121, 1598}"; +} +); +components = ( +{ +alignment = -1; +name = dotaccentcomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 244; +}, +{ +anchors = ( +{ +name = _top; +position = "{48, 1024}"; +}, +{ +name = top; +position = "{48, 1520}"; +} +); +components = ( +{ +alignment = -1; +name = dotaccentcomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 95; +} +); +leftMetricsKey = dotaccentcomb; +rightMetricsKey = dotaccentcomb; +unicode = 02D9; +}, +{ +color = 5; +glyphname = grave; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{410, 1024}"; +}, +{ +name = top; +position = "{326, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = gravecomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 652; +}, +{ +anchors = ( +{ +name = _top; +position = "{272, 1024}"; +}, +{ +name = top; +position = "{189, 1666}"; +} +); +components = ( +{ +alignment = -1; +name = gravecomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 377; +}, +{ +anchors = ( +{ +name = _top; +position = "{103, 1024}"; +}, +{ +name = top; +position = "{103, 1657}"; +} +); +components = ( +{ +alignment = -1; +name = gravecomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 205; +} +); +leftMetricsKey = gravecomb; +rightMetricsKey = gravecomb; +unicode = 0060; +}, +{ +color = 5; +glyphname = acute; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{242, 1024}"; +}, +{ +name = top; +position = "{242, 1698}"; +} +); +components = ( +{ +alignment = -1; +name = acutecomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 603; +}, +{ +anchors = ( +{ +name = _top; +position = "{105, 1024}"; +}, +{ +name = top; +position = "{145, 1687}"; +} +); +components = ( +{ +alignment = -1; +name = acutecomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 358; +}, +{ +anchors = ( +{ +name = _top; +position = "{34, 1024}"; +}, +{ +name = top; +position = "{34, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = acutecomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 205; +} +); +leftMetricsKey = acutecomb; +rightMetricsKey = acutecomb; +unicode = 00B4; +}, +{ +color = 5; +glyphname = hungarumlaut; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{522, 1024}"; +}, +{ +name = top; +position = "{522, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = hungarumlautcomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1243; +}, +{ +anchors = ( +{ +name = _top; +position = "{325, 1025}"; +}, +{ +name = top; +position = "{325, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = hungarumlautcomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 788; +}, +{ +anchors = ( +{ +name = _top; +position = "{202, 1024}"; +}, +{ +name = top; +position = "{202, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = hungarumlautcomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 503; +} +); +leftMetricsKey = hungarumlautcomb; +rightMetricsKey = hungarumlautcomb; +unicode = 02DD; +}, +{ +color = 5; +glyphname = circumflex; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{462, 1024}"; +}, +{ +name = top; +position = "{462, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = circumflexcomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 924; +}, +{ +anchors = ( +{ +name = _top; +position = "{385, 1024}"; +}, +{ +name = top; +position = "{385, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = circumflexcomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 770; +}, +{ +anchors = ( +{ +name = _top; +position = "{336, 1024}"; +}, +{ +name = top; +position = "{336, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = circumflexcomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 672; +} +); +leftMetricsKey = circumflexcomb; +rightMetricsKey = circumflexcomb; +unicode = 02C6; +}, +{ +color = 5; +glyphname = caron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{462, 1024}"; +}, +{ +name = top; +position = "{462, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = caroncomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 924; +}, +{ +anchors = ( +{ +name = _top; +position = "{385, 1024}"; +}, +{ +name = top; +position = "{385, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = caroncomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 770; +}, +{ +anchors = ( +{ +name = _top; +position = "{336, 1024}"; +}, +{ +name = top; +position = "{336, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = caroncomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 672; +} +); +leftMetricsKey = caroncomb; +rightMetricsKey = caroncomb; +unicode = 02C7; +}, +{ +color = 5; +glyphname = breve; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{476, 1024}"; +}, +{ +name = top; +position = "{476, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = brevecomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 952; +}, +{ +anchors = ( +{ +name = _top; +position = "{423, 1025}"; +}, +{ +name = top; +position = "{423, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = brevecomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 846; +}, +{ +anchors = ( +{ +name = _top; +position = "{390, 1024}"; +}, +{ +name = top; +position = "{390, 1680}"; +} +); +components = ( +{ +alignment = -1; +name = brevecomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 780; +} +); +leftMetricsKey = brevecomb; +rightMetricsKey = brevecomb; +unicode = 02D8; +}, +{ +color = 5; +glyphname = ring; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{348, 1024}"; +}, +{ +name = top; +position = "{348, 1772}"; +} +); +components = ( +{ +alignment = -1; +name = ringcomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 696; +}, +{ +anchors = ( +{ +name = _top; +position = "{253, 1024}"; +}, +{ +name = top; +position = "{253, 1688}"; +} +); +components = ( +{ +alignment = -1; +name = ringcomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 506; +}, +{ +anchors = ( +{ +name = _top; +position = "{194, 1026}"; +}, +{ +name = top; +position = "{194, 1636}"; +} +); +components = ( +{ +alignment = -1; +name = ringcomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 388; +} +); +leftMetricsKey = ringcomb; +rightMetricsKey = ringcomb; +unicode = 02DA; +}, +{ +color = 5; +glyphname = tilde; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{561, 1024}"; +}, +{ +name = top; +position = "{561, 1582}"; +} +); +components = ( +{ +alignment = -1; +name = tildecomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 1122; +}, +{ +anchors = ( +{ +name = _top; +position = "{510, 1025}"; +}, +{ +name = top; +position = "{510, 1550}"; +} +); +components = ( +{ +alignment = -1; +name = tildecomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 1020; +}, +{ +anchors = ( +{ +name = _top; +position = "{478, 1024}"; +}, +{ +name = top; +position = "{478, 1530}"; +} +); +components = ( +{ +alignment = -1; +name = tildecomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 956; +} +); +leftMetricsKey = tildecomb; +rightMetricsKey = tildecomb; +unicode = 02DC; +}, +{ +color = 5; +glyphname = macron; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{408, 1024}"; +}, +{ +name = top; +position = "{408, 1528}"; +} +); +components = ( +{ +alignment = -1; +name = macroncomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 816; +}, +{ +anchors = ( +{ +name = _top; +position = "{408, 1024}"; +}, +{ +name = top; +position = "{408, 1457}"; +} +); +components = ( +{ +alignment = -1; +name = macroncomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 816; +}, +{ +anchors = ( +{ +name = _top; +position = "{408, 1024}"; +}, +{ +name = top; +position = "{408, 1412}"; +} +); +components = ( +{ +alignment = -1; +name = macroncomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 816; +} +); +leftMetricsKey = macroncomb; +rightMetricsKey = macroncomb; +unicode = 00AF; +}, +{ +color = 5; +glyphname = cedilla; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _cedilla; +position = "{397, 7}"; +}, +{ +name = bottom; +position = "{280, -588}"; +} +); +components = ( +{ +alignment = -1; +name = cedillacomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 597; +}, +{ +anchors = ( +{ +name = _cedilla; +position = "{312, 21}"; +}, +{ +name = bottom; +position = "{253, -565}"; +} +); +components = ( +{ +alignment = -1; +name = cedillacomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 520; +}, +{ +anchors = ( +{ +name = _cedilla; +position = "{258, 29}"; +}, +{ +name = bottom; +position = "{236, -551}"; +} +); +components = ( +{ +alignment = -1; +name = cedillacomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 471; +} +); +leftMetricsKey = cedillacomb; +rightMetricsKey = cedillacomb; +unicode = 00B8; +}, +{ +color = 5; +glyphname = ogonek; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +position = "{352, 7}"; +} +); +components = ( +{ +alignment = -1; +name = ogonekcomb; +} +); +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +width = 526; +}, +{ +anchors = ( +{ +name = _ogonek; +position = "{281, 21}"; +} +); +components = ( +{ +alignment = -1; +name = ogonekcomb; +} +); +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +width = 526; +}, +{ +anchors = ( +{ +name = _ogonek; +position = "{236, 29}"; +} +); +components = ( +{ +alignment = -1; +name = ogonekcomb; +} +); +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +width = 526; +} +); +leftMetricsKey = ogonekcomb; +rightMetricsKey = ogonekcomb; +unicode = 02DB; +}, +{ +color = 5; +glyphname = DivisionSlash; +lastChange = "2020-02-27 21:29:52 +0000"; +layers = ( +{ +layerId = "e62399bb-6e96-4ffb-a9ce-09aa31d52a36"; +paths = ( +{ +closed = 1; +nodes = ( +"265 -240 LINE", +"1089 1720 LINE", +"731 1720 LINE", +"-93 -240 LINE" +); +} +); +width = 996; +}, +{ +layerId = "b7c3c141-dc0f-46db-926d-e180a8f83e45"; +paths = ( +{ +closed = 1; +nodes = ( +"186 -240 LINE", +"1010 1720 LINE", +"847 1720 LINE", +"23 -240 LINE" +); +} +); +width = 1033; +}, +{ +layerId = "ac360476-f880-49b3-af70-f23fb533da3d"; +paths = ( +{ +closed = 1; +nodes = ( +"136 -240 LINE", +"960 1720 LINE", +"920 1720 LINE", +"96 -240 LINE" +); +} +); +width = 1056; +} +); +unicode = 2215; +} +); +instances = ( +{ +interpolationWeight = 56; +instanceInterpolations = { +"ac360476-f880-49b3-af70-f23fb533da3d" = 1; +}; +name = Thin; +weightClass = Thin; +}, +{ +interpolationWeight = 76; +instanceInterpolations = { +"ac360476-f880-49b3-af70-f23fb533da3d" = 0.86486; +"b7c3c141-dc0f-46db-926d-e180a8f83e45" = 0.13514; +}; +name = ExtraLight; +weightClass = ExtraLight; +}, +{ +interpolationWeight = 106; +instanceInterpolations = { +"ac360476-f880-49b3-af70-f23fb533da3d" = 0.66216; +"b7c3c141-dc0f-46db-926d-e180a8f83e45" = 0.33784; +}; +name = Light; +weightClass = Light; +}, +{ +interpolationWeight = 146; +instanceInterpolations = { +"ac360476-f880-49b3-af70-f23fb533da3d" = 0.39189; +"b7c3c141-dc0f-46db-926d-e180a8f83e45" = 0.60811; +}; +name = Regular; +}, +{ +interpolationWeight = 204; +instanceInterpolations = { +"b7c3c141-dc0f-46db-926d-e180a8f83e45" = 1; +}; +name = Medium; +weightClass = Medium; +}, +{ +interpolationWeight = 250; +instanceInterpolations = { +"b7c3c141-dc0f-46db-926d-e180a8f83e45" = 0.80508; +"e62399bb-6e96-4ffb-a9ce-09aa31d52a36" = 0.19492; +}; +name = SemiBold; +weightClass = SemiBold; +}, +{ +interpolationWeight = 308; +instanceInterpolations = { +"b7c3c141-dc0f-46db-926d-e180a8f83e45" = 0.55932; +"e62399bb-6e96-4ffb-a9ce-09aa31d52a36" = 0.44068; +}; +isBold = 1; +name = Bold; +weightClass = Bold; +}, +{ +interpolationWeight = 376; +instanceInterpolations = { +"b7c3c141-dc0f-46db-926d-e180a8f83e45" = 0.27119; +"e62399bb-6e96-4ffb-a9ce-09aa31d52a36" = 0.72881; +}; +name = ExtraBold; +weightClass = ExtraBold; +}, +{ +interpolationWeight = 440; +instanceInterpolations = { +"e62399bb-6e96-4ffb-a9ce-09aa31d52a36" = 1; +}; +name = Black; +weightClass = Black; +} +); +kerning = { +"ac360476-f880-49b3-af70-f23fb533da3d" = { +"@MMK_L__A1" = { +"@MMK_R__S" = -40; +"@MMK_R__T" = -96; +"@MMK_R__V" = -170; +"@MMK_R__Y" = -180; +"@MMK_R__v" = -12; +}; +"@MMK_L__E" = { +"@MMK_R__A" = 12; +}; +"@MMK_L__L" = { +"@MMK_R__A" = 30; +"@MMK_R__T" = -104; +"@MMK_R__Y" = -156; +"@MMK_R__v" = -50; +}; +"@MMK_L__O" = { +"@MMK_R__T" = -64; +"@MMK_R__V" = -64; +}; +"@MMK_L__R" = { +"@MMK_R__T" = -80; +"@MMK_R__Y" = -180; +"@MMK_R__a" = -40; +"@MMK_R__c" = -48; +"@MMK_R__d" = -40; +"@MMK_R__t" = -50; +}; +"@MMK_L__T" = { +"@MMK_R__A" = -96; +"@MMK_R__O" = -64; +"@MMK_R__T" = 28; +"@MMK_R__a" = -156; +"@MMK_R__c" = -156; +"@MMK_R__comma" = -130; +"@MMK_R__m" = -130; +"@MMK_R__s" = -150; +"@MMK_R__u" = -140; +"@MMK_R__v" = -116; +x = -130; +}; +"@MMK_L__V" = { +"@MMK_R__A" = -182; +"@MMK_R__O" = -64; +"@MMK_R__a" = -136; +"@MMK_R__c" = -140; +"@MMK_R__comma" = -130; +"@MMK_R__m" = -80; +"@MMK_R__u" = -90; +"@MMK_R__v" = -72; +G = -64; +}; +"@MMK_L__Y" = { +"@MMK_R__A" = -180; +"@MMK_R__S" = -96; +"@MMK_R__a" = -198; +"@MMK_R__c" = -184; +"@MMK_R__comma" = -150; +"@MMK_R__d" = -70; +"@MMK_R__m" = -164; +"@MMK_R__u" = -164; +"@MMK_R__v" = -164; +colon = -96; +hyphen = -96; +}; +"@MMK_L__a" = { +"@MMK_R__s" = -8; +"@MMK_R__t" = -14; +"@MMK_R__v" = -8; +f = -10; +}; +"@MMK_L__b" = { +"@MMK_R__s" = -10; +"@MMK_R__t" = -12; +}; +"@MMK_L__c" = { +"@MMK_R__I" = -4; +"@MMK_R__a" = -10; +"@MMK_R__m" = -4; +"@MMK_R__s" = -8; +"@MMK_R__t" = -10; +"@MMK_R__v" = -10; +f = -10; +}; +"@MMK_L__g" = { +"@MMK_R__c" = -10; +"@MMK_R__comma" = 20; +"@MMK_R__s" = -8; +}; +"@MMK_L__quotesingle" = { +"@MMK_R__a" = -110; +"@MMK_R__c" = -110; +"@MMK_R__s" = -116; +}; +"@MMK_L__r" = { +"@MMK_R__a" = -16; +"@MMK_R__c" = -12; +"@MMK_R__comma" = -110; +"@MMK_R__g" = -16; +"@MMK_R__s" = -16; +}; +"@MMK_L__s" = { +"@MMK_R__t" = -18; +}; +"@MMK_L__t" = { +"@MMK_R__a" = -4; +"@MMK_R__t" = -12; +z = 20; +}; +"@MMK_L__u" = { +"@MMK_R__s" = -8; +"@MMK_R__t" = -10; +"@MMK_R__v" = -10; +}; +"@MMK_L__v" = { +"@MMK_R__a" = -14; +"@MMK_R__c" = -6; +"@MMK_R__comma" = -90; +"@MMK_R__quotesingle" = 36; +"@MMK_R__s" = -56; +}; +F = { +"@MMK_R__A" = -70; +"@MMK_R__a" = -64; +"@MMK_R__c" = -64; +"@MMK_R__comma" = -100; +cent = -64; +e = -64; +ellipsis = -100; +o = -64; +oe = -64; +period = -100; +}; +K = { +"@MMK_R__a" = -60; +"@MMK_R__c" = -70; +"@MMK_R__v" = -104; +cent = -70; +e = -70; +o = -70; +oe = -70; +w = -104; +y = -104; +}; +P = { +"@MMK_R__A" = -128; +"@MMK_R__a" = -80; +"@MMK_R__c" = -96; +"@MMK_R__d" = -80; +"@MMK_R__m" = -50; +cent = -96; +e = -96; +n = -50; +o = -96; +oe = -96; +p = -50; +q = -80; +r = -50; +}; +cent = { +f = -10; +}; +e = { +f = -10; +}; +eight = { +two = -16; +}; +f = { +"@MMK_R__a" = -4; +"@MMK_R__quotesingle" = 130; +f = -12; +quotedblleft = 130; +quotedblright = 130; +quoteleft = 130; +quoteright = 130; +}; +four = { +eight = 16; +nine = 4; +three = 20; +}; +hyphen = { +seven = -40; +}; +k = { +"@MMK_R__a" = -50; +"@MMK_R__c" = -50; +cent = -50; +e = -50; +o = -50; +oe = -50; +}; +o = { +f = -10; +}; +oe = { +f = -10; +}; +seven = { +four = -50; +one = 10; +two = -40; +}; +three = { +seven = -4; +}; +}; +"b7c3c141-dc0f-46db-926d-e180a8f83e45" = { +"@MMK_L__A1" = { +"@MMK_R__S" = -40; +"@MMK_R__T" = -96; +"@MMK_R__V" = -170; +"@MMK_R__Y" = -180; +"@MMK_R__v" = -12; +}; +"@MMK_L__E" = { +"@MMK_R__A" = 12; +}; +"@MMK_L__L" = { +"@MMK_R__A" = 30; +"@MMK_R__T" = -104; +"@MMK_R__Y" = -156; +"@MMK_R__v" = -50; +}; +"@MMK_L__O" = { +"@MMK_R__T" = -64; +"@MMK_R__V" = -64; +}; +"@MMK_L__R" = { +"@MMK_R__T" = -80; +"@MMK_R__Y" = -180; +"@MMK_R__a" = -40; +"@MMK_R__c" = -48; +"@MMK_R__d" = -40; +"@MMK_R__t" = -50; +}; +"@MMK_L__T" = { +"@MMK_R__A" = -96; +"@MMK_R__O" = -64; +"@MMK_R__T" = 28; +"@MMK_R__a" = -156; +"@MMK_R__c" = -156; +"@MMK_R__comma" = -130; +"@MMK_R__m" = -130; +"@MMK_R__s" = -150; +"@MMK_R__u" = -140; +"@MMK_R__v" = -116; +x = -130; +}; +"@MMK_L__V" = { +"@MMK_R__A" = -182; +"@MMK_R__O" = -64; +"@MMK_R__a" = -136; +"@MMK_R__c" = -140; +"@MMK_R__comma" = -130; +"@MMK_R__m" = -80; +"@MMK_R__u" = -90; +"@MMK_R__v" = -72; +G = -64; +}; +"@MMK_L__Y" = { +"@MMK_R__A" = -180; +"@MMK_R__S" = -96; +"@MMK_R__a" = -198; +"@MMK_R__c" = -184; +"@MMK_R__comma" = -150; +"@MMK_R__d" = -70; +"@MMK_R__m" = -164; +"@MMK_R__u" = -164; +"@MMK_R__v" = -164; +colon = -96; +hyphen = -96; +}; +"@MMK_L__a" = { +"@MMK_R__s" = -8; +"@MMK_R__t" = -14; +"@MMK_R__v" = -8; +f = -10; +}; +"@MMK_L__b" = { +"@MMK_R__s" = -10; +"@MMK_R__t" = -12; +}; +"@MMK_L__c" = { +"@MMK_R__I" = -4; +"@MMK_R__a" = -10; +"@MMK_R__m" = -4; +"@MMK_R__s" = -8; +"@MMK_R__t" = -10; +"@MMK_R__v" = -10; +f = -10; +}; +"@MMK_L__g" = { +"@MMK_R__c" = -10; +"@MMK_R__comma" = 20; +"@MMK_R__s" = -8; +}; +"@MMK_L__quotesingle" = { +"@MMK_R__a" = -110; +"@MMK_R__c" = -110; +"@MMK_R__s" = -116; +}; +"@MMK_L__r" = { +"@MMK_R__a" = -16; +"@MMK_R__c" = -12; +"@MMK_R__comma" = -110; +"@MMK_R__g" = -16; +"@MMK_R__s" = -16; +}; +"@MMK_L__s" = { +"@MMK_R__t" = -18; +}; +"@MMK_L__t" = { +"@MMK_R__a" = -4; +"@MMK_R__t" = -12; +z = 20; +}; +"@MMK_L__u" = { +"@MMK_R__s" = -8; +"@MMK_R__t" = -10; +"@MMK_R__v" = -10; +}; +"@MMK_L__v" = { +"@MMK_R__a" = -14; +"@MMK_R__c" = -6; +"@MMK_R__comma" = -90; +"@MMK_R__quotesingle" = 36; +"@MMK_R__s" = -56; +}; +F = { +"@MMK_R__A" = -70; +"@MMK_R__a" = -64; +"@MMK_R__c" = -64; +"@MMK_R__comma" = -100; +cent = -64; +e = -64; +ellipsis = -100; +guilsinglleft = -38; +o = -64; +oe = -64; +period = -100; +}; +K = { +"@MMK_R__a" = -60; +"@MMK_R__c" = -70; +"@MMK_R__v" = -104; +cent = -70; +e = -70; +o = -70; +oe = -70; +w = -104; +y = -104; +}; +P = { +"@MMK_R__A" = -128; +"@MMK_R__a" = -80; +"@MMK_R__c" = -96; +"@MMK_R__d" = -80; +"@MMK_R__m" = -50; +cent = -96; +e = -96; +n = -50; +o = -96; +oe = -96; +p = -50; +q = -80; +r = -50; +}; +cent = { +f = -10; +}; +e = { +f = -10; +}; +eight = { +two = -16; +}; +f = { +"@MMK_R__a" = -4; +"@MMK_R__quotesingle" = 130; +dagger = 50; +f = -12; +quotedblbase = 50; +quotedblleft = 130; +quotedblright = 130; +quoteleft = 130; +quoteright = 130; +quotesinglbase = 50; +}; +four = { +eight = 16; +nine = 4; +three = 20; +}; +hyphen = { +seven = -40; +}; +k = { +"@MMK_R__a" = -50; +"@MMK_R__c" = -50; +cent = -50; +e = -50; +o = -50; +oe = -50; +}; +o = { +f = -10; +}; +oe = { +f = -10; +}; +seven = { +four = -50; +one = 10; +two = -40; +}; +three = { +seven = -4; +}; +}; +"e62399bb-6e96-4ffb-a9ce-09aa31d52a36" = { +"@MMK_L__A1" = { +"@MMK_R__S" = -40; +"@MMK_R__T" = -96; +"@MMK_R__V" = -170; +"@MMK_R__Y" = -180; +"@MMK_R__v" = -12; +}; +"@MMK_L__E" = { +"@MMK_R__A" = 12; +}; +"@MMK_L__L" = { +"@MMK_R__A" = 30; +"@MMK_R__T" = -104; +"@MMK_R__Y" = -156; +"@MMK_R__v" = -50; +}; +"@MMK_L__O" = { +"@MMK_R__T" = -64; +"@MMK_R__V" = -64; +}; +"@MMK_L__R" = { +"@MMK_R__T" = -80; +"@MMK_R__Y" = -180; +"@MMK_R__a" = -40; +"@MMK_R__c" = -48; +"@MMK_R__d" = -40; +"@MMK_R__t" = -50; +}; +"@MMK_L__T" = { +"@MMK_R__A" = -96; +"@MMK_R__O" = -64; +"@MMK_R__T" = 28; +"@MMK_R__a" = -156; +"@MMK_R__c" = -156; +"@MMK_R__comma" = -130; +"@MMK_R__m" = -130; +"@MMK_R__s" = -150; +"@MMK_R__u" = -140; +"@MMK_R__v" = -116; +x = -130; +}; +"@MMK_L__V" = { +"@MMK_R__A" = -182; +"@MMK_R__O" = -64; +"@MMK_R__a" = -136; +"@MMK_R__c" = -140; +"@MMK_R__comma" = -130; +"@MMK_R__m" = -80; +"@MMK_R__u" = -90; +"@MMK_R__v" = -72; +G = -64; +}; +"@MMK_L__Y" = { +"@MMK_R__A" = -180; +"@MMK_R__S" = -96; +"@MMK_R__a" = -198; +"@MMK_R__c" = -184; +"@MMK_R__comma" = -150; +"@MMK_R__d" = -70; +"@MMK_R__m" = -164; +"@MMK_R__u" = -164; +"@MMK_R__v" = -164; +colon = -96; +hyphen = -96; +}; +"@MMK_L__a" = { +"@MMK_R__s" = -8; +"@MMK_R__t" = -14; +"@MMK_R__v" = -8; +f = -10; +}; +"@MMK_L__b" = { +"@MMK_R__s" = -10; +"@MMK_R__t" = -12; +}; +"@MMK_L__c" = { +"@MMK_R__I" = -4; +"@MMK_R__a" = -10; +"@MMK_R__m" = -4; +"@MMK_R__s" = -8; +"@MMK_R__t" = -10; +"@MMK_R__v" = -10; +f = -10; +}; +"@MMK_L__g" = { +"@MMK_R__c" = -10; +"@MMK_R__comma" = 20; +"@MMK_R__s" = -8; +}; +"@MMK_L__quotesingle" = { +"@MMK_R__a" = -110; +"@MMK_R__c" = -110; +"@MMK_R__s" = -116; +}; +"@MMK_L__r" = { +"@MMK_R__a" = -16; +"@MMK_R__c" = -12; +"@MMK_R__comma" = -110; +"@MMK_R__g" = -16; +"@MMK_R__s" = -16; +}; +"@MMK_L__s" = { +"@MMK_R__t" = -18; +}; +"@MMK_L__t" = { +"@MMK_R__a" = -4; +"@MMK_R__t" = -12; +z = 20; +}; +"@MMK_L__u" = { +"@MMK_R__s" = -8; +"@MMK_R__t" = -10; +"@MMK_R__v" = -10; +}; +"@MMK_L__v" = { +"@MMK_R__a" = -14; +"@MMK_R__c" = -6; +"@MMK_R__comma" = -90; +"@MMK_R__quotesingle" = 36; +"@MMK_R__s" = -56; +}; +F = { +"@MMK_R__A" = -70; +"@MMK_R__a" = -64; +"@MMK_R__c" = -64; +"@MMK_R__comma" = -100; +cent = -64; +e = -64; +guilsinglleft = -100; +o = -64; +oe = -64; +period = -100; +}; +K = { +"@MMK_R__a" = -60; +"@MMK_R__c" = -70; +"@MMK_R__v" = -104; +cent = -70; +e = -70; +o = -70; +oe = -70; +w = -104; +y = -104; +}; +P = { +"@MMK_R__A" = -128; +"@MMK_R__a" = -80; +"@MMK_R__c" = -96; +"@MMK_R__d" = -80; +"@MMK_R__m" = -50; +cent = -96; +e = -96; +n = -50; +o = -96; +oe = -96; +p = -50; +q = -80; +r = -50; +}; +cent = { +f = -10; +}; +e = { +f = -10; +}; +eight = { +two = -16; +}; +f = { +"@MMK_R__a" = -4; +"@MMK_R__quotesingle" = 130; +dagger = 130; +f = -12; +quotedblbase = 130; +quotedblleft = 130; +quotesinglbase = 130; +}; +four = { +eight = 16; +nine = 4; +three = 20; +}; +hyphen = { +seven = -40; +}; +k = { +"@MMK_R__a" = -50; +"@MMK_R__c" = -50; +cent = -50; +e = -50; +o = -50; +oe = -50; +}; +o = { +f = -10; +}; +oe = { +f = -10; +}; +seven = { +four = -50; +one = 10; +two = -40; +}; +three = { +seven = -4; +}; +}; +}; +manufacturer = "Matt Bailey"; +manufacturerURL = "http://mirkovelimirovic.com"; +unitsPerEm = 2000; +userData = { +GSDimensionPlugin.Dimensions = { +"ac360476-f880-49b3-af70-f23fb533da3d" = { +HH = 50; +HV = 56; +OH = 54; +OV = 60; +nV = 56; +oH = 56; +oV = 56; +tH = 42; +}; +"b7c3c141-dc0f-46db-926d-e180a8f83e45" = { +HH = 180; +HV = 204; +OH = 197; +OV = 220; +nV = 194; +oH = 170; +oV = 202; +tH = 148; +}; +"e62399bb-6e96-4ffb-a9ce-09aa31d52a36" = { +HH = 386; +HV = 440; +OH = 424; +OV = 474; +nV = 416; +oH = 352; +oV = 436; +tH = 316; +}; +}; +}; +versionMajor = 1; +versionMinor = 6; +} diff --git a/source/config.yaml b/source/config.yaml new file mode 100644 index 0000000..64ce701 --- /dev/null +++ b/source/config.yaml @@ -0,0 +1,7 @@ +sources: + - Spartan.glyphs +axisOrder: + - wght +familyName: Spartan +includeSourceFixes: true +autohintTTF: false diff --git a/spartan/DESCRIPTION.en_us.html b/spartan/DESCRIPTION.en_us.html new file mode 100644 index 0000000..d373e0a --- /dev/null +++ b/spartan/DESCRIPTION.en_us.html @@ -0,0 +1,3 @@ +
An open-source typeface based on early 20th century American geometric sans serifs. Built out of necessity. Originally designed by Matt Bailey.
+In 2020, Mirko Velimirovic converted Spartan MB to a variable font
+To contribute to development please see github.com/bghryct/Spartan-MB
\ No newline at end of file diff --git a/spartan/METADATA.pb b/spartan/METADATA.pb new file mode 100644 index 0000000..7ecba33 --- /dev/null +++ b/spartan/METADATA.pb @@ -0,0 +1,22 @@ +name: "Spartan" +designer: "Matt Bailey, Mirko Velimirovic" +license: "OFL" +category: "SANS_SERIF" +date_added: "2020-01-30" +fonts { + name: "Spartan" + style: "normal" + weight: 400 + filename: "Spartan[wght].ttf" + post_script_name: "Spartan-Thin" + full_name: "Spartan Thin" + copyright: "Copyright 2020 The Spartan Project Authors (https://github.com/bghryct/Spartan-MB)" +} +subsets: "latin" +subsets: "latin-ext" +subsets: "menu" +axes { + tag: "wght" + min_value: 100.0 + max_value: 900.0 +} diff --git a/spartan/OFL.txt b/spartan/OFL.txt new file mode 100755 index 0000000..0a78142 --- /dev/null +++ b/spartan/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2020 The Spartan Project Authors (https://github.com/bghryct/Spartan-MB) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/spartan/Spartan[wght].ttf b/spartan/Spartan[wght].ttf new file mode 100644 index 0000000..834d1fd Binary files /dev/null and b/spartan/Spartan[wght].ttf differ diff --git a/spartan/static/Spartan-Black.ttf b/spartan/static/Spartan-Black.ttf new file mode 100644 index 0000000..54b646a Binary files /dev/null and b/spartan/static/Spartan-Black.ttf differ diff --git a/spartan/static/Spartan-Bold.ttf b/spartan/static/Spartan-Bold.ttf new file mode 100644 index 0000000..9c4a695 Binary files /dev/null and b/spartan/static/Spartan-Bold.ttf differ diff --git a/spartan/static/Spartan-ExtraBold.ttf b/spartan/static/Spartan-ExtraBold.ttf new file mode 100644 index 0000000..88da780 Binary files /dev/null and b/spartan/static/Spartan-ExtraBold.ttf differ diff --git a/spartan/static/Spartan-ExtraLight.ttf b/spartan/static/Spartan-ExtraLight.ttf new file mode 100644 index 0000000..900cb85 Binary files /dev/null and b/spartan/static/Spartan-ExtraLight.ttf differ diff --git a/spartan/static/Spartan-Light.ttf b/spartan/static/Spartan-Light.ttf new file mode 100644 index 0000000..5102584 Binary files /dev/null and b/spartan/static/Spartan-Light.ttf differ diff --git a/spartan/static/Spartan-Medium.ttf b/spartan/static/Spartan-Medium.ttf new file mode 100644 index 0000000..3c9b030 Binary files /dev/null and b/spartan/static/Spartan-Medium.ttf differ diff --git a/spartan/static/Spartan-Regular.ttf b/spartan/static/Spartan-Regular.ttf new file mode 100644 index 0000000..0b7f73c Binary files /dev/null and b/spartan/static/Spartan-Regular.ttf differ diff --git a/spartan/static/Spartan-SemiBold.ttf b/spartan/static/Spartan-SemiBold.ttf new file mode 100644 index 0000000..c8b55eb Binary files /dev/null and b/spartan/static/Spartan-SemiBold.ttf differ diff --git a/spartan/static/Spartan-Thin.ttf b/spartan/static/Spartan-Thin.ttf new file mode 100644 index 0000000..2e2ecdd Binary files /dev/null and b/spartan/static/Spartan-Thin.ttf differ