├── .github └── workflows │ ├── publish-package.yml │ └── run-tests.yml ├── .gitignore ├── Lib └── extractor │ ├── __init__.py │ ├── exceptions.py │ ├── formats │ ├── __init__.py │ ├── opentype.py │ ├── ttx.py │ ├── type1.py │ ├── vfb.py │ └── woff.py │ ├── stream.py │ └── tools.py ├── License.txt ├── MANIFEST.in ├── README.rst ├── dev-requirements.txt ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── conftest.py ├── data │ ├── UVSTest.ttf │ └── ibm_plex │ │ ├── IBM Plex Serif-Text Italic.vfb │ │ ├── IBM Plex Serif-Text-FL.fpgm.ttxasm │ │ ├── IBM Plex Serif-Text-FL.fpgm.vttasm │ │ ├── IBM Plex Serif-Text-FL.otf │ │ ├── IBM Plex Serif-Text-FL.otf.ttx │ │ ├── IBM Plex Serif-Text-FL.ttf │ │ ├── IBM Plex Serif-Text-FL.ttx │ │ ├── IBM Plex Serif-Text-FL_extracted.otf.ufo │ │ ├── fontinfo.plist │ │ ├── glyphs │ │ │ ├── A_.glif │ │ │ ├── A_E_.glif │ │ │ ├── A_E_acute.glif │ │ │ ├── A_acute.glif │ │ │ ├── A_breve.glif │ │ │ ├── A_breveacute.glif │ │ │ ├── A_brevedotbelow.glif │ │ │ ├── A_brevegrave.glif │ │ │ ├── A_brevehook.glif │ │ │ ├── A_brevetilde.glif │ │ │ ├── A_circumflex.glif │ │ │ ├── A_circumflexacute.glif │ │ │ ├── A_circumflexdotbelow.glif │ │ │ ├── A_circumflexgrave.glif │ │ │ ├── A_circumflexhook.glif │ │ │ ├── A_circumflextilde.glif │ │ │ ├── A_dieresis.glif │ │ │ ├── A_dotbelow.glif │ │ │ ├── A_grave.glif │ │ │ ├── A_hook.glif │ │ │ ├── A_macron.glif │ │ │ ├── A_ogonek.glif │ │ │ ├── A_ring.glif │ │ │ ├── A_ringacute.glif │ │ │ ├── A_tilde.glif │ │ │ ├── B_.glif │ │ │ ├── C_.glif │ │ │ ├── C_R_.glif │ │ │ ├── C_acute.glif │ │ │ ├── C_caron.glif │ │ │ ├── C_cedilla.glif │ │ │ ├── C_circumflex.glif │ │ │ ├── C_dotaccent.glif │ │ │ ├── D_.glif │ │ │ ├── D_caron.glif │ │ │ ├── D_croat.glif │ │ │ ├── D_elta.glif │ │ │ ├── E_.glif │ │ │ ├── E_acute.glif │ │ │ ├── E_breve.glif │ │ │ ├── E_caron.glif │ │ │ ├── E_circumflex.glif │ │ │ ├── E_circumflexacute.glif │ │ │ ├── E_circumflexdotbelow.glif │ │ │ ├── E_circumflexgrave.glif │ │ │ ├── E_circumflexhook.glif │ │ │ ├── E_circumflextilde.glif │ │ │ ├── E_dieresis.glif │ │ │ ├── E_dotaccent.glif │ │ │ ├── E_dotbelow.glif │ │ │ ├── E_grave.glif │ │ │ ├── E_hook.glif │ │ │ ├── E_macron.glif │ │ │ ├── E_ng.glif │ │ │ ├── E_ogonek.glif │ │ │ ├── E_th.glif │ │ │ ├── E_tilde.glif │ │ │ ├── E_uro.glif │ │ │ ├── F_.glif │ │ │ ├── G_.glif │ │ │ ├── G_breve.glif │ │ │ ├── G_circumflex.glif │ │ │ ├── G_commaaccent.glif │ │ │ ├── G_dotaccent.glif │ │ │ ├── G_ermandbls.glif │ │ │ ├── H_.glif │ │ │ ├── H_bar.glif │ │ │ ├── H_circumflex.glif │ │ │ ├── I_.glif │ │ │ ├── I_J_.glif │ │ │ ├── I_J_acute.glif │ │ │ ├── I_acute.glif │ │ │ ├── I_breve.glif │ │ │ ├── I_circumflex.glif │ │ │ ├── I_dieresis.glif │ │ │ ├── I_dotaccent.glif │ │ │ ├── I_dotbelow.glif │ │ │ ├── I_grave.glif │ │ │ ├── I_hook.glif │ │ │ ├── I_macron.glif │ │ │ ├── I_ogonek.glif │ │ │ ├── I_tilde.glif │ │ │ ├── J_.glif │ │ │ ├── J_acute.glif │ │ │ ├── J_circumflex.glif │ │ │ ├── K_.glif │ │ │ ├── K_commaaccent.glif │ │ │ ├── L_.glif │ │ │ ├── L_acute.glif │ │ │ ├── L_caron.glif │ │ │ ├── L_commaaccent.glif │ │ │ ├── L_dot.glif │ │ │ ├── L_slash.glif │ │ │ ├── M_.glif │ │ │ ├── N_.glif │ │ │ ├── N_acute.glif │ │ │ ├── N_caron.glif │ │ │ ├── N_commaaccent.glif │ │ │ ├── N_tilde.glif │ │ │ ├── O_.glif │ │ │ ├── O_E_.glif │ │ │ ├── O_acute.glif │ │ │ ├── O_breve.glif │ │ │ ├── O_circumflex.glif │ │ │ ├── O_circumflexacute.glif │ │ │ ├── O_circumflexdotbelow.glif │ │ │ ├── O_circumflexgrave.glif │ │ │ ├── O_circumflexhook.glif │ │ │ ├── O_circumflextilde.glif │ │ │ ├── O_dieresis.glif │ │ │ ├── O_dotbelow.glif │ │ │ ├── O_grave.glif │ │ │ ├── O_hook.glif │ │ │ ├── O_horn.glif │ │ │ ├── O_hornacute.glif │ │ │ ├── O_horndotbelow.glif │ │ │ ├── O_horngrave.glif │ │ │ ├── O_hornhook.glif │ │ │ ├── O_horntilde.glif │ │ │ ├── O_hungarumlaut.glif │ │ │ ├── O_macron.glif │ │ │ ├── O_mega.glif │ │ │ ├── O_slash.glif │ │ │ ├── O_slashacute.glif │ │ │ ├── O_tilde.glif │ │ │ ├── P_.glif │ │ │ ├── Q_.glif │ │ │ ├── R_.glif │ │ │ ├── R_acute.glif │ │ │ ├── R_caron.glif │ │ │ ├── R_commaaccent.glif │ │ │ ├── S_.glif │ │ │ ├── S_acute.glif │ │ │ ├── S_caron.glif │ │ │ ├── S_cedilla.glif │ │ │ ├── S_chwa.glif │ │ │ ├── S_circumflex.glif │ │ │ ├── S_commaaccent.glif │ │ │ ├── T_.glif │ │ │ ├── T_bar.glif │ │ │ ├── T_caron.glif │ │ │ ├── T_cedilla.glif │ │ │ ├── T_commaaccent.glif │ │ │ ├── T_horn.glif │ │ │ ├── U_.glif │ │ │ ├── U_acute.glif │ │ │ ├── U_breve.glif │ │ │ ├── U_circumflex.glif │ │ │ ├── U_dieresis.glif │ │ │ ├── U_dotbelow.glif │ │ │ ├── U_grave.glif │ │ │ ├── U_hook.glif │ │ │ ├── U_horn.glif │ │ │ ├── U_hornacute.glif │ │ │ ├── U_horndotbelow.glif │ │ │ ├── U_horngrave.glif │ │ │ ├── U_hornhook.glif │ │ │ ├── U_horntilde.glif │ │ │ ├── U_hungarumlaut.glif │ │ │ ├── U_macron.glif │ │ │ ├── U_ogonek.glif │ │ │ ├── U_ring.glif │ │ │ ├── U_tilde.glif │ │ │ ├── V_.glif │ │ │ ├── W_.glif │ │ │ ├── W_acute.glif │ │ │ ├── W_circumflex.glif │ │ │ ├── W_dieresis.glif │ │ │ ├── W_grave.glif │ │ │ ├── X_.glif │ │ │ ├── Y_.glif │ │ │ ├── Y_acute.glif │ │ │ ├── Y_circumflex.glif │ │ │ ├── Y_dieresis.glif │ │ │ ├── Y_dotbelow.glif │ │ │ ├── Y_grave.glif │ │ │ ├── Y_hook.glif │ │ │ ├── Y_tilde.glif │ │ │ ├── Z_.glif │ │ │ ├── Z_acute.glif │ │ │ ├── Z_caron.glif │ │ │ ├── Z_dotaccent.glif │ │ │ ├── _notdef.glif │ │ │ ├── _null.glif │ │ │ ├── a.alt01.glif │ │ │ ├── a.glif │ │ │ ├── aacute.alt01.glif │ │ │ ├── aacute.glif │ │ │ ├── abreve.alt01.glif │ │ │ ├── abreve.glif │ │ │ ├── abreveacute.alt01.glif │ │ │ ├── abreveacute.glif │ │ │ ├── abrevedotbelow.alt01.glif │ │ │ ├── abrevedotbelow.glif │ │ │ ├── abrevegrave.alt01.glif │ │ │ ├── abrevegrave.glif │ │ │ ├── abrevehook.alt01.glif │ │ │ ├── abrevehook.glif │ │ │ ├── abrevetilde.alt01.glif │ │ │ ├── abrevetilde.glif │ │ │ ├── acircumflex.alt01.glif │ │ │ ├── acircumflex.glif │ │ │ ├── acircumflexacute.alt01.glif │ │ │ ├── acircumflexacute.glif │ │ │ ├── acircumflexdotbelow.alt01.glif │ │ │ ├── acircumflexdotbelow.glif │ │ │ ├── acircumflexgrave.alt01.glif │ │ │ ├── acircumflexgrave.glif │ │ │ ├── acircumflexhook.alt01.glif │ │ │ ├── acircumflexhook.glif │ │ │ ├── acircumflextilde.alt01.glif │ │ │ ├── acircumflextilde.glif │ │ │ ├── acute.case.glif │ │ │ ├── acute.glif │ │ │ ├── acutecomb.glif │ │ │ ├── adieresis.alt01.glif │ │ │ ├── adieresis.glif │ │ │ ├── adotbelow.alt01.glif │ │ │ ├── adotbelow.glif │ │ │ ├── ae.glif │ │ │ ├── aeacute.glif │ │ │ ├── agrave.alt01.glif │ │ │ ├── agrave.glif │ │ │ ├── ahook.alt01.glif │ │ │ ├── ahook.glif │ │ │ ├── amacron.alt01.glif │ │ │ ├── amacron.glif │ │ │ ├── ampersand.glif │ │ │ ├── aogonek.alt01.glif │ │ │ ├── aogonek.glif │ │ │ ├── approxequal.glif │ │ │ ├── aring.alt01.glif │ │ │ ├── aring.glif │ │ │ ├── aringacute.alt01.glif │ │ │ ├── aringacute.glif │ │ │ ├── arrowdown.glif │ │ │ ├── arrowdownclockhalf.glif │ │ │ ├── arrowdowncounterclockhalf.glif │ │ │ ├── arrowdownleft.glif │ │ │ ├── arrowdownleftcorner.glif │ │ │ ├── arrowdownright.glif │ │ │ ├── arrowdownrightcorner.glif │ │ │ ├── arrowhookleft.glif │ │ │ ├── arrowhookright.glif │ │ │ ├── arrowleft.glif │ │ │ ├── arrowleftarrowright.glif │ │ │ ├── arrowleftdowncorner.glif │ │ │ ├── arrowleftright.glif │ │ │ ├── arrowleftupcorner.glif │ │ │ ├── arrowright.glif │ │ │ ├── arrowrightarrowleft.glif │ │ │ ├── arrowrightdowncorner.glif │ │ │ ├── arrowrightupcorner.glif │ │ │ ├── arrowup.glif │ │ │ ├── arrowupdown.glif │ │ │ ├── arrowupleft.glif │ │ │ ├── arrowupleftcorner.glif │ │ │ ├── arrowupleftcounterclock.glif │ │ │ ├── arrowupright.glif │ │ │ ├── arrowuprightclock.glif │ │ │ ├── arrowuprightcorner.glif │ │ │ ├── asciicircum.glif │ │ │ ├── asciitilde.glif │ │ │ ├── asterisk.glif │ │ │ ├── at.glif │ │ │ ├── atilde.alt01.glif │ │ │ ├── atilde.glif │ │ │ ├── b.glif │ │ │ ├── backslash.glif │ │ │ ├── baht.glif │ │ │ ├── bar.glif │ │ │ ├── bitcoin.glif │ │ │ ├── braceleft.glif │ │ │ ├── braceright.glif │ │ │ ├── bracketleft.glif │ │ │ ├── bracketright.glif │ │ │ ├── breve.case.glif │ │ │ ├── breve.cyrl.glif │ │ │ ├── breve.cyrl_case.glif │ │ │ ├── breve.glif │ │ │ ├── breveacute.case.glif │ │ │ ├── breveacute.glif │ │ │ ├── brevecomb.glif │ │ │ ├── brevegrave.case.glif │ │ │ ├── brevegrave.glif │ │ │ ├── brevehook.case.glif │ │ │ ├── brevehook.glif │ │ │ ├── brevetilde.case.glif │ │ │ ├── brevetilde.glif │ │ │ ├── brokenbar.glif │ │ │ ├── bullet.glif │ │ │ ├── c.glif │ │ │ ├── cacute.glif │ │ │ ├── caron.case.glif │ │ │ ├── caron.glif │ │ │ ├── caroncomb.glif │ │ │ ├── caronslovak.glif │ │ │ ├── caronslovakcomb.glif │ │ │ ├── ccaron.glif │ │ │ ├── ccedilla.glif │ │ │ ├── ccircumflex.glif │ │ │ ├── cdotaccent.glif │ │ │ ├── cedi.glif │ │ │ ├── cedilla.glif │ │ │ ├── cedillacomb.glif │ │ │ ├── celogo.glif │ │ │ ├── cent.glif │ │ │ ├── checkmark.glif │ │ │ ├── circumflex.case.glif │ │ │ ├── circumflex.glif │ │ │ ├── circumflexacute.case.glif │ │ │ ├── circumflexacute.glif │ │ │ ├── circumflexbreve.case.glif │ │ │ ├── circumflexbreve.glif │ │ │ ├── circumflexcomb.glif │ │ │ ├── circumflexgrave.case.glif │ │ │ ├── circumflexgrave.glif │ │ │ ├── circumflexhook.case.glif │ │ │ ├── circumflexhook.glif │ │ │ ├── circumflextilde.case.glif │ │ │ ├── circumflextilde.glif │ │ │ ├── colon.glif │ │ │ ├── coloncurrency.glif │ │ │ ├── comma.glif │ │ │ ├── commabelowcomb.glif │ │ │ ├── commaturnedtop.glif │ │ │ ├── commaturnedtopcomb.glif │ │ │ ├── contents.plist │ │ │ ├── copyright.glif │ │ │ ├── crossmark.glif │ │ │ ├── currency.glif │ │ │ ├── d.glif │ │ │ ├── dagger.glif │ │ │ ├── daggerdbl.glif │ │ │ ├── dcaron.glif │ │ │ ├── dcroat.glif │ │ │ ├── degree.glif │ │ │ ├── dieresis.case.glif │ │ │ ├── dieresis.glif │ │ │ ├── dieresisacute.case.glif │ │ │ ├── dieresisacute.glif │ │ │ ├── dieresiscaron.case.glif │ │ │ ├── dieresiscaron.glif │ │ │ ├── dieresiscomb.glif │ │ │ ├── dieresisgrave.case.glif │ │ │ ├── dieresisgrave.glif │ │ │ ├── dieresismacron.case.glif │ │ │ ├── dieresismacron.glif │ │ │ ├── divide.glif │ │ │ ├── dollar.glif │ │ │ ├── dong.glif │ │ │ ├── dotaccent.case.glif │ │ │ ├── dotaccent.glif │ │ │ ├── dotaccentcomb.glif │ │ │ ├── dotbelowcomb.glif │ │ │ ├── dotlessi.glif │ │ │ ├── dotlessj.glif │ │ │ ├── e.glif │ │ │ ├── eacute.glif │ │ │ ├── ebreve.glif │ │ │ ├── ecaron.glif │ │ │ ├── ecircumflex.glif │ │ │ ├── ecircumflexacute.glif │ │ │ ├── ecircumflexdotbelow.glif │ │ │ ├── ecircumflexgrave.glif │ │ │ ├── ecircumflexhook.glif │ │ │ ├── ecircumflextilde.glif │ │ │ ├── edieresis.glif │ │ │ ├── edotaccent.glif │ │ │ ├── edotbelow.glif │ │ │ ├── egrave.glif │ │ │ ├── ehook.glif │ │ │ ├── eight.glif │ │ │ ├── eightinferior.glif │ │ │ ├── eightsuperior.glif │ │ │ ├── ellipsis.glif │ │ │ ├── emacron.glif │ │ │ ├── emdash.glif │ │ │ ├── endash.glif │ │ │ ├── eng.glif │ │ │ ├── eogonek.glif │ │ │ ├── equal.glif │ │ │ ├── estimated.glif │ │ │ ├── eth.glif │ │ │ ├── etilde.glif │ │ │ ├── exclam.glif │ │ │ ├── exclamdown.glif │ │ │ ├── f.glif │ │ │ ├── fcclogo.glif │ │ │ ├── fi.glif │ │ │ ├── five.glif │ │ │ ├── fiveinferior.glif │ │ │ ├── fivesuperior.glif │ │ │ ├── fl.glif │ │ │ ├── florin.glif │ │ │ ├── four.glif │ │ │ ├── fourinferior.glif │ │ │ ├── foursuperior.glif │ │ │ ├── fraction.glif │ │ │ ├── g.alt01.glif │ │ │ ├── g.alt02.glif │ │ │ ├── g.glif │ │ │ ├── gbreve.alt01.glif │ │ │ ├── gbreve.glif │ │ │ ├── gcircumflex.alt01.glif │ │ │ ├── gcircumflex.glif │ │ │ ├── gcommaaccent.alt01.glif │ │ │ ├── gcommaaccent.glif │ │ │ ├── gdotaccent.alt01.glif │ │ │ ├── gdotaccent.glif │ │ │ ├── germandbls.alt01.glif │ │ │ ├── germandbls.glif │ │ │ ├── grave.case.glif │ │ │ ├── grave.glif │ │ │ ├── gravecomb.glif │ │ │ ├── greater.glif │ │ │ ├── greaterequal.glif │ │ │ ├── guarani.glif │ │ │ ├── guillemotleft.glif │ │ │ ├── guillemotright.glif │ │ │ ├── guilsinglleft.glif │ │ │ ├── guilsinglright.glif │ │ │ ├── h.glif │ │ │ ├── hbar.glif │ │ │ ├── hcircumflex.glif │ │ │ ├── hookcomb.case.glif │ │ │ ├── hookcomb.glif │ │ │ ├── horncomb.glif │ │ │ ├── hryvnia.glif │ │ │ ├── hungarumlaut.case.glif │ │ │ ├── hungarumlaut.glif │ │ │ ├── hungarumlautcomb.glif │ │ │ ├── hyphen.glif │ │ │ ├── i.glif │ │ │ ├── iacute.glif │ │ │ ├── ibreve.glif │ │ │ ├── icircumflex.glif │ │ │ ├── idieresis.glif │ │ │ ├── idotbelow.glif │ │ │ ├── igrave.glif │ │ │ ├── ihook.glif │ │ │ ├── ij.glif │ │ │ ├── ijacute.glif │ │ │ ├── imacron.glif │ │ │ ├── infinity.glif │ │ │ ├── integral.glif │ │ │ ├── iogonek.glif │ │ │ ├── itilde.glif │ │ │ ├── j.glif │ │ │ ├── jacute.glif │ │ │ ├── jcircumflex.glif │ │ │ ├── k.glif │ │ │ ├── kcommaaccent.glif │ │ │ ├── kgreenlandic.glif │ │ │ ├── kip.glif │ │ │ ├── l.glif │ │ │ ├── lacute.glif │ │ │ ├── lcaron.glif │ │ │ ├── lcommaaccent.glif │ │ │ ├── ldot.glif │ │ │ ├── less.glif │ │ │ ├── lessequal.glif │ │ │ ├── lira.glif │ │ │ ├── liraturkish.glif │ │ │ ├── litre.glif │ │ │ ├── logicalnot.glif │ │ │ ├── lozenge.glif │ │ │ ├── lslash.glif │ │ │ ├── m.glif │ │ │ ├── macron.case.glif │ │ │ ├── macron.glif │ │ │ ├── macroncomb.glif │ │ │ ├── minus.glif │ │ │ ├── mu.glif │ │ │ ├── multiply.glif │ │ │ ├── n.glif │ │ │ ├── nacute.glif │ │ │ ├── naira.glif │ │ │ ├── napostrophe.glif │ │ │ ├── nbspace.glif │ │ │ ├── ncaron.glif │ │ │ ├── ncommaaccent.glif │ │ │ ├── nine.glif │ │ │ ├── nineinferior.glif │ │ │ ├── ninesuperior.glif │ │ │ ├── notequal.glif │ │ │ ├── ntilde.glif │ │ │ ├── numbersign.glif │ │ │ ├── numerosign.glif │ │ │ ├── o.glif │ │ │ ├── oacute.glif │ │ │ ├── obreve.glif │ │ │ ├── ocircumflex.glif │ │ │ ├── ocircumflexacute.glif │ │ │ ├── ocircumflexdotbelow.glif │ │ │ ├── ocircumflexgrave.glif │ │ │ ├── ocircumflexhook.glif │ │ │ ├── ocircumflextilde.glif │ │ │ ├── odieresis.glif │ │ │ ├── odotbelow.glif │ │ │ ├── oe.glif │ │ │ ├── ogonek.glif │ │ │ ├── ogonekcomb.glif │ │ │ ├── ograve.glif │ │ │ ├── ohook.glif │ │ │ ├── ohorn.glif │ │ │ ├── ohornacute.glif │ │ │ ├── ohorndotbelow.glif │ │ │ ├── ohorngrave.glif │ │ │ ├── ohornhook.glif │ │ │ ├── ohorntilde.glif │ │ │ ├── ohungarumlaut.glif │ │ │ ├── omacron.glif │ │ │ ├── one.glif │ │ │ ├── onehalf.glif │ │ │ ├── oneinferior.glif │ │ │ ├── onequarter.glif │ │ │ ├── onesuperior.glif │ │ │ ├── ordfeminine.glif │ │ │ ├── ordmasculine.glif │ │ │ ├── oslash.glif │ │ │ ├── oslashacute.glif │ │ │ ├── otilde.glif │ │ │ ├── p.glif │ │ │ ├── paragraph.glif │ │ │ ├── parenleft.glif │ │ │ ├── parenright.glif │ │ │ ├── partialdiff.glif │ │ │ ├── percent.glif │ │ │ ├── period.glif │ │ │ ├── periodcentered.glif │ │ │ ├── perthousand.glif │ │ │ ├── peso.glif │ │ │ ├── pi.glif │ │ │ ├── plus.glif │ │ │ ├── plusminus.glif │ │ │ ├── prime.glif │ │ │ ├── primedbl.glif │ │ │ ├── product.glif │ │ │ ├── q.glif │ │ │ ├── question.glif │ │ │ ├── questiondown.glif │ │ │ ├── quotedbl.glif │ │ │ ├── quotedblbase.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── quotedblright.glif │ │ │ ├── quoteleft.glif │ │ │ ├── quoteright.glif │ │ │ ├── quotesinglbase.glif │ │ │ ├── quotesingle.glif │ │ │ ├── r.glif │ │ │ ├── racute.glif │ │ │ ├── radical.glif │ │ │ ├── rcaron.glif │ │ │ ├── rcommaaccent.glif │ │ │ ├── registered.glif │ │ │ ├── ring.case.glif │ │ │ ├── ring.glif │ │ │ ├── ringacute.case.glif │ │ │ ├── ringacute.glif │ │ │ ├── ringcomb.glif │ │ │ ├── ruble.glif │ │ │ ├── rupee.glif │ │ │ ├── rupeeindian.glif │ │ │ ├── s.glif │ │ │ ├── sacute.glif │ │ │ ├── scaron.glif │ │ │ ├── scedilla.glif │ │ │ ├── schwa.glif │ │ │ ├── scircumflex.glif │ │ │ ├── scommaaccent.glif │ │ │ ├── section.glif │ │ │ ├── semicolon.glif │ │ │ ├── seven.glif │ │ │ ├── seveninferior.glif │ │ │ ├── sevensuperior.glif │ │ │ ├── sheqel.glif │ │ │ ├── six.glif │ │ │ ├── sixinferior.glif │ │ │ ├── sixsuperior.glif │ │ │ ├── slash.glif │ │ │ ├── softhyphen.glif │ │ │ ├── space.glif │ │ │ ├── sterling.glif │ │ │ ├── summation.glif │ │ │ ├── t.glif │ │ │ ├── tbar.glif │ │ │ ├── tcaron.glif │ │ │ ├── tcedilla.glif │ │ │ ├── tcommaaccent.glif │ │ │ ├── tenge.glif │ │ │ ├── thorn.glif │ │ │ ├── three.glif │ │ │ ├── threeinferior.glif │ │ │ ├── threequarters.glif │ │ │ ├── threesuperior.glif │ │ │ ├── tilde.alt01.case.glif │ │ │ ├── tilde.alt01.glif │ │ │ ├── tilde.case.glif │ │ │ ├── tilde.glif │ │ │ ├── tildecomb.glif │ │ │ ├── trademark.glif │ │ │ ├── tugrik.glif │ │ │ ├── two.glif │ │ │ ├── twoinferior.glif │ │ │ ├── twosuperior.glif │ │ │ ├── u.glif │ │ │ ├── uacute.glif │ │ │ ├── ubreve.glif │ │ │ ├── ucircumflex.glif │ │ │ ├── udieresis.glif │ │ │ ├── udotbelow.glif │ │ │ ├── ugrave.glif │ │ │ ├── uhook.glif │ │ │ ├── uhorn.glif │ │ │ ├── uhornacute.glif │ │ │ ├── uhorndotbelow.glif │ │ │ ├── uhorngrave.glif │ │ │ ├── uhornhook.glif │ │ │ ├── uhorntilde.glif │ │ │ ├── uhungarumlaut.glif │ │ │ ├── umacron.glif │ │ │ ├── underscore.glif │ │ │ ├── uni0400.glif │ │ │ ├── uni0401.glif │ │ │ ├── uni0402.glif │ │ │ ├── uni0403.glif │ │ │ ├── uni0404.glif │ │ │ ├── uni0405.glif │ │ │ ├── uni0406.glif │ │ │ ├── uni0407.glif │ │ │ ├── uni0408.glif │ │ │ ├── uni0409.glif │ │ │ ├── uni040A_.glif │ │ │ ├── uni040B_.glif │ │ │ ├── uni040C_.glif │ │ │ ├── uni040D_.glif │ │ │ ├── uni040E_.glif │ │ │ ├── uni040F_.glif │ │ │ ├── uni0410.glif │ │ │ ├── uni0411.glif │ │ │ ├── uni0412.glif │ │ │ ├── uni0413.glif │ │ │ ├── uni0414.glif │ │ │ ├── uni0415.glif │ │ │ ├── uni0416.glif │ │ │ ├── uni0417.glif │ │ │ ├── uni0418.glif │ │ │ ├── uni0419.glif │ │ │ ├── uni041A_.glif │ │ │ ├── uni041B_.glif │ │ │ ├── uni041C_.glif │ │ │ ├── uni041D_.glif │ │ │ ├── uni041E_.glif │ │ │ ├── uni041F_.glif │ │ │ ├── uni0420.glif │ │ │ ├── uni0421.glif │ │ │ ├── uni0422.glif │ │ │ ├── uni0423.glif │ │ │ ├── uni0424.glif │ │ │ ├── uni0425.glif │ │ │ ├── uni0426.glif │ │ │ ├── uni0427.glif │ │ │ ├── uni0428.glif │ │ │ ├── uni0429.glif │ │ │ ├── uni042A_.glif │ │ │ ├── uni042B_.glif │ │ │ ├── uni042C_.glif │ │ │ ├── uni042D_.glif │ │ │ ├── uni042E_.glif │ │ │ ├── uni042F_.glif │ │ │ ├── uni0430.alt01.glif │ │ │ ├── uni0430.glif │ │ │ ├── uni0431.glif │ │ │ ├── uni0432.glif │ │ │ ├── uni0433.glif │ │ │ ├── uni0434.glif │ │ │ ├── uni0435.glif │ │ │ ├── uni0436.glif │ │ │ ├── uni0437.glif │ │ │ ├── uni0438.glif │ │ │ ├── uni0439.glif │ │ │ ├── uni043A_.glif │ │ │ ├── uni043B_.glif │ │ │ ├── uni043C_.glif │ │ │ ├── uni043D_.glif │ │ │ ├── uni043E_.glif │ │ │ ├── uni043F_.glif │ │ │ ├── uni0440.glif │ │ │ ├── uni0441.glif │ │ │ ├── uni0442.glif │ │ │ ├── uni0443.glif │ │ │ ├── uni0444.glif │ │ │ ├── uni0445.glif │ │ │ ├── uni0446.glif │ │ │ ├── uni0447.glif │ │ │ ├── uni0448.glif │ │ │ ├── uni0449.glif │ │ │ ├── uni044A_.glif │ │ │ ├── uni044B_.glif │ │ │ ├── uni044C_.glif │ │ │ ├── uni044D_.glif │ │ │ ├── uni044E_.glif │ │ │ ├── uni044F_.glif │ │ │ ├── uni0450.glif │ │ │ ├── uni0451.glif │ │ │ ├── uni0452.glif │ │ │ ├── uni0453.glif │ │ │ ├── uni0454.glif │ │ │ ├── uni0455.glif │ │ │ ├── uni0456.glif │ │ │ ├── uni0457.glif │ │ │ ├── uni0458.glif │ │ │ ├── uni0459.glif │ │ │ ├── uni045A_.glif │ │ │ ├── uni045B_.glif │ │ │ ├── uni045C_.glif │ │ │ ├── uni045D_.glif │ │ │ ├── uni045E_.glif │ │ │ ├── uni045F_.glif │ │ │ ├── uni0472.glif │ │ │ ├── uni0473.glif │ │ │ ├── uni0490.glif │ │ │ ├── uni0491.glif │ │ │ ├── uni0492.glif │ │ │ ├── uni0493.glif │ │ │ ├── uni0494.glif │ │ │ ├── uni0495.glif │ │ │ ├── uni0496.glif │ │ │ ├── uni0497.glif │ │ │ ├── uni0498.glif │ │ │ ├── uni0499.glif │ │ │ ├── uni049A_.glif │ │ │ ├── uni049B_.glif │ │ │ ├── uni049C_.glif │ │ │ ├── uni049D_.glif │ │ │ ├── uni04A_0.glif │ │ │ ├── uni04A_1.glif │ │ │ ├── uni04A_2.glif │ │ │ ├── uni04A_3.glif │ │ │ ├── uni04A_4.glif │ │ │ ├── uni04A_5.glif │ │ │ ├── uni04A_A_.glif │ │ │ ├── uni04A_B_.glif │ │ │ ├── uni04A_E_.glif │ │ │ ├── uni04A_F_.glif │ │ │ ├── uni04B_0.glif │ │ │ ├── uni04B_1.glif │ │ │ ├── uni04B_2.glif │ │ │ ├── uni04B_3.glif │ │ │ ├── uni04B_6.glif │ │ │ ├── uni04B_7.glif │ │ │ ├── uni04B_8.glif │ │ │ ├── uni04B_9.glif │ │ │ ├── uni04B_A_.glif │ │ │ ├── uni04B_B_.glif │ │ │ ├── uni04C_0.glif │ │ │ ├── uni04C_1.glif │ │ │ ├── uni04C_2.glif │ │ │ ├── uni04C_F_.glif │ │ │ ├── uni04D_0.glif │ │ │ ├── uni04D_1.alt01.glif │ │ │ ├── uni04D_1.glif │ │ │ ├── uni04D_2.glif │ │ │ ├── uni04D_3.alt01.glif │ │ │ ├── uni04D_3.glif │ │ │ ├── uni04D_4.glif │ │ │ ├── uni04D_5.glif │ │ │ ├── uni04D_6.glif │ │ │ ├── uni04D_7.glif │ │ │ ├── uni04D_8.glif │ │ │ ├── uni04D_9.glif │ │ │ ├── uni04D_C_.glif │ │ │ ├── uni04D_D_.glif │ │ │ ├── uni04D_E_.glif │ │ │ ├── uni04D_F_.glif │ │ │ ├── uni04E_2.glif │ │ │ ├── uni04E_3.glif │ │ │ ├── uni04E_4.glif │ │ │ ├── uni04E_5.glif │ │ │ ├── uni04E_6.glif │ │ │ ├── uni04E_7.glif │ │ │ ├── uni04E_8.glif │ │ │ ├── uni04E_9.glif │ │ │ ├── uni04E_E_.glif │ │ │ ├── uni04E_F_.glif │ │ │ ├── uni04F_0.glif │ │ │ ├── uni04F_1.glif │ │ │ ├── uni04F_2.glif │ │ │ ├── uni04F_3.glif │ │ │ ├── uni04F_4.glif │ │ │ ├── uni04F_5.glif │ │ │ ├── uni04F_8.glif │ │ │ ├── uni04F_9.glif │ │ │ ├── uni2150.glif │ │ │ ├── uni2151.glif │ │ │ ├── uni2153.glif │ │ │ ├── uni2154.glif │ │ │ ├── uni2155.glif │ │ │ ├── uni2156.glif │ │ │ ├── uni2157.glif │ │ │ ├── uni2158.glif │ │ │ ├── uni2159.glif │ │ │ ├── uni215A_.glif │ │ │ ├── uni215B_.glif │ │ │ ├── uni215C_.glif │ │ │ ├── uni215D_.glif │ │ │ ├── uni215E_.glif │ │ │ ├── uogonek.glif │ │ │ ├── uring.glif │ │ │ ├── utilde.glif │ │ │ ├── v.glif │ │ │ ├── w.glif │ │ │ ├── wacute.glif │ │ │ ├── wcircumflex.glif │ │ │ ├── wdieresis.glif │ │ │ ├── wgrave.glif │ │ │ ├── won.glif │ │ │ ├── x.glif │ │ │ ├── y.glif │ │ │ ├── yacute.glif │ │ │ ├── ycircumflex.glif │ │ │ ├── ydieresis.glif │ │ │ ├── ydotbelow.glif │ │ │ ├── yen.glif │ │ │ ├── ygrave.glif │ │ │ ├── yhook.glif │ │ │ ├── ytilde.glif │ │ │ ├── z.glif │ │ │ ├── zacute.glif │ │ │ ├── zcaron.glif │ │ │ ├── zdotaccent.glif │ │ │ ├── zero.alt01.glif │ │ │ ├── zero.alt02.glif │ │ │ ├── zero.glif │ │ │ ├── zeroinferior.glif │ │ │ └── zerosuperior.glif │ │ ├── groups.plist │ │ ├── kerning.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ │ ├── IBM Plex Serif-Text-FL_extracted.ufo │ │ ├── fontinfo.plist │ │ ├── glyphs │ │ │ ├── A_.glif │ │ │ ├── A_E_.glif │ │ │ ├── A_E_acute.glif │ │ │ ├── A_acute.glif │ │ │ ├── A_breve.glif │ │ │ ├── A_breveacute.glif │ │ │ ├── A_brevedotbelow.glif │ │ │ ├── A_brevegrave.glif │ │ │ ├── A_brevehook.glif │ │ │ ├── A_brevetilde.glif │ │ │ ├── A_circumflex.glif │ │ │ ├── A_circumflexacute.glif │ │ │ ├── A_circumflexdotbelow.glif │ │ │ ├── A_circumflexgrave.glif │ │ │ ├── A_circumflexhook.glif │ │ │ ├── A_circumflextilde.glif │ │ │ ├── A_dieresis.glif │ │ │ ├── A_dotbelow.glif │ │ │ ├── A_grave.glif │ │ │ ├── A_hook.glif │ │ │ ├── A_macron.glif │ │ │ ├── A_ogonek.glif │ │ │ ├── A_ring.glif │ │ │ ├── A_ringacute.glif │ │ │ ├── A_tilde.glif │ │ │ ├── B_.glif │ │ │ ├── C_.glif │ │ │ ├── C_acute.glif │ │ │ ├── C_caron.glif │ │ │ ├── C_cedilla.glif │ │ │ ├── C_circumflex.glif │ │ │ ├── C_dotaccent.glif │ │ │ ├── D_.glif │ │ │ ├── D_caron.glif │ │ │ ├── D_croat.glif │ │ │ ├── D_elta.glif │ │ │ ├── E_.glif │ │ │ ├── E_acute.glif │ │ │ ├── E_breve.glif │ │ │ ├── E_caron.glif │ │ │ ├── E_circumflex.glif │ │ │ ├── E_circumflexacute.glif │ │ │ ├── E_circumflexdotbelow.glif │ │ │ ├── E_circumflexgrave.glif │ │ │ ├── E_circumflexhook.glif │ │ │ ├── E_circumflextilde.glif │ │ │ ├── E_dieresis.glif │ │ │ ├── E_dotaccent.glif │ │ │ ├── E_dotbelow.glif │ │ │ ├── E_grave.glif │ │ │ ├── E_hook.glif │ │ │ ├── E_macron.glif │ │ │ ├── E_ng.glif │ │ │ ├── E_ogonek.glif │ │ │ ├── E_th.glif │ │ │ ├── E_tilde.glif │ │ │ ├── E_uro.glif │ │ │ ├── F_.glif │ │ │ ├── G_.glif │ │ │ ├── G_breve.glif │ │ │ ├── G_circumflex.glif │ │ │ ├── G_commaaccent.glif │ │ │ ├── G_dotaccent.glif │ │ │ ├── G_ermandbls.glif │ │ │ ├── H_.glif │ │ │ ├── H_bar.glif │ │ │ ├── H_circumflex.glif │ │ │ ├── I_.glif │ │ │ ├── I_J_.glif │ │ │ ├── I_J_acute.glif │ │ │ ├── I_acute.glif │ │ │ ├── I_breve.glif │ │ │ ├── I_circumflex.glif │ │ │ ├── I_dieresis.glif │ │ │ ├── I_dotaccent.glif │ │ │ ├── I_dotbelow.glif │ │ │ ├── I_grave.glif │ │ │ ├── I_hook.glif │ │ │ ├── I_macron.glif │ │ │ ├── I_ogonek.glif │ │ │ ├── I_tilde.glif │ │ │ ├── J_.glif │ │ │ ├── J_acute.glif │ │ │ ├── J_circumflex.glif │ │ │ ├── K_.glif │ │ │ ├── K_commaaccent.glif │ │ │ ├── L_.glif │ │ │ ├── L_acute.glif │ │ │ ├── L_caron.glif │ │ │ ├── L_commaaccent.glif │ │ │ ├── L_dot.glif │ │ │ ├── L_slash.glif │ │ │ ├── M_.glif │ │ │ ├── N_.glif │ │ │ ├── N_acute.glif │ │ │ ├── N_caron.glif │ │ │ ├── N_commaaccent.glif │ │ │ ├── N_tilde.glif │ │ │ ├── O_.glif │ │ │ ├── O_E_.glif │ │ │ ├── O_acute.glif │ │ │ ├── O_breve.glif │ │ │ ├── O_circumflex.glif │ │ │ ├── O_circumflexacute.glif │ │ │ ├── O_circumflexdotbelow.glif │ │ │ ├── O_circumflexgrave.glif │ │ │ ├── O_circumflexhook.glif │ │ │ ├── O_circumflextilde.glif │ │ │ ├── O_dieresis.glif │ │ │ ├── O_dotbelow.glif │ │ │ ├── O_grave.glif │ │ │ ├── O_hook.glif │ │ │ ├── O_horn.glif │ │ │ ├── O_hornacute.glif │ │ │ ├── O_horndotbelow.glif │ │ │ ├── O_horngrave.glif │ │ │ ├── O_hornhook.glif │ │ │ ├── O_horntilde.glif │ │ │ ├── O_hungarumlaut.glif │ │ │ ├── O_macron.glif │ │ │ ├── O_mega.glif │ │ │ ├── O_slash.glif │ │ │ ├── O_slashacute.glif │ │ │ ├── O_tilde.glif │ │ │ ├── P_.glif │ │ │ ├── Q_.glif │ │ │ ├── R_.glif │ │ │ ├── R_acute.glif │ │ │ ├── R_caron.glif │ │ │ ├── R_commaaccent.glif │ │ │ ├── S_.glif │ │ │ ├── S_acute.glif │ │ │ ├── S_caron.glif │ │ │ ├── S_cedilla.glif │ │ │ ├── S_chwa.glif │ │ │ ├── S_circumflex.glif │ │ │ ├── S_commaaccent.glif │ │ │ ├── T_.glif │ │ │ ├── T_bar.glif │ │ │ ├── T_caron.glif │ │ │ ├── T_cedilla.glif │ │ │ ├── T_commaaccent.glif │ │ │ ├── T_horn.glif │ │ │ ├── U_.glif │ │ │ ├── U_acute.glif │ │ │ ├── U_breve.glif │ │ │ ├── U_circumflex.glif │ │ │ ├── U_dieresis.glif │ │ │ ├── U_dotbelow.glif │ │ │ ├── U_grave.glif │ │ │ ├── U_hook.glif │ │ │ ├── U_horn.glif │ │ │ ├── U_hornacute.glif │ │ │ ├── U_horndotbelow.glif │ │ │ ├── U_horngrave.glif │ │ │ ├── U_hornhook.glif │ │ │ ├── U_horntilde.glif │ │ │ ├── U_hungarumlaut.glif │ │ │ ├── U_macron.glif │ │ │ ├── U_ogonek.glif │ │ │ ├── U_ring.glif │ │ │ ├── U_tilde.glif │ │ │ ├── V_.glif │ │ │ ├── W_.glif │ │ │ ├── W_acute.glif │ │ │ ├── W_circumflex.glif │ │ │ ├── W_dieresis.glif │ │ │ ├── W_grave.glif │ │ │ ├── X_.glif │ │ │ ├── Y_.glif │ │ │ ├── Y_acute.glif │ │ │ ├── Y_circumflex.glif │ │ │ ├── Y_dieresis.glif │ │ │ ├── Y_dotbelow.glif │ │ │ ├── Y_grave.glif │ │ │ ├── Y_hook.glif │ │ │ ├── Y_tilde.glif │ │ │ ├── Z_.glif │ │ │ ├── Z_acute.glif │ │ │ ├── Z_caron.glif │ │ │ ├── Z_dotaccent.glif │ │ │ ├── _notdef.glif │ │ │ ├── _null.glif │ │ │ ├── a.alt01.glif │ │ │ ├── a.glif │ │ │ ├── aacute.alt01.glif │ │ │ ├── aacute.glif │ │ │ ├── abreve.alt01.glif │ │ │ ├── abreve.glif │ │ │ ├── abreveacute.alt01.glif │ │ │ ├── abreveacute.glif │ │ │ ├── abrevedotbelow.alt01.glif │ │ │ ├── abrevedotbelow.glif │ │ │ ├── abrevegrave.alt01.glif │ │ │ ├── abrevegrave.glif │ │ │ ├── abrevehook.alt01.glif │ │ │ ├── abrevehook.glif │ │ │ ├── abrevetilde.alt01.glif │ │ │ ├── abrevetilde.glif │ │ │ ├── acircumflex.alt01.glif │ │ │ ├── acircumflex.glif │ │ │ ├── acircumflexacute.alt01.glif │ │ │ ├── acircumflexacute.glif │ │ │ ├── acircumflexdotbelow.alt01.glif │ │ │ ├── acircumflexdotbelow.glif │ │ │ ├── acircumflexgrave.alt01.glif │ │ │ ├── acircumflexgrave.glif │ │ │ ├── acircumflexhook.alt01.glif │ │ │ ├── acircumflexhook.glif │ │ │ ├── acircumflextilde.alt01.glif │ │ │ ├── acircumflextilde.glif │ │ │ ├── acute.case.glif │ │ │ ├── acute.glif │ │ │ ├── acutecomb.glif │ │ │ ├── adieresis.alt01.glif │ │ │ ├── adieresis.glif │ │ │ ├── adotbelow.alt01.glif │ │ │ ├── adotbelow.glif │ │ │ ├── ae.glif │ │ │ ├── aeacute.glif │ │ │ ├── agrave.alt01.glif │ │ │ ├── agrave.glif │ │ │ ├── ahook.alt01.glif │ │ │ ├── ahook.glif │ │ │ ├── amacron.alt01.glif │ │ │ ├── amacron.glif │ │ │ ├── ampersand.glif │ │ │ ├── aogonek.alt01.glif │ │ │ ├── aogonek.glif │ │ │ ├── approxequal.glif │ │ │ ├── aring.alt01.glif │ │ │ ├── aring.glif │ │ │ ├── aringacute.alt01.glif │ │ │ ├── aringacute.glif │ │ │ ├── arrowdown.glif │ │ │ ├── arrowdownclockhalf.glif │ │ │ ├── arrowdowncounterclockhalf.glif │ │ │ ├── arrowdownleft.glif │ │ │ ├── arrowdownleftcorner.glif │ │ │ ├── arrowdownright.glif │ │ │ ├── arrowdownrightcorner.glif │ │ │ ├── arrowhookleft.glif │ │ │ ├── arrowhookright.glif │ │ │ ├── arrowleft.glif │ │ │ ├── arrowleftarrowright.glif │ │ │ ├── arrowleftdowncorner.glif │ │ │ ├── arrowleftright.glif │ │ │ ├── arrowleftupcorner.glif │ │ │ ├── arrowright.glif │ │ │ ├── arrowrightarrowleft.glif │ │ │ ├── arrowrightdowncorner.glif │ │ │ ├── arrowrightupcorner.glif │ │ │ ├── arrowup.glif │ │ │ ├── arrowupdown.glif │ │ │ ├── arrowupleft.glif │ │ │ ├── arrowupleftcorner.glif │ │ │ ├── arrowupleftcounterclock.glif │ │ │ ├── arrowupright.glif │ │ │ ├── arrowuprightclock.glif │ │ │ ├── arrowuprightcorner.glif │ │ │ ├── asciicircum.glif │ │ │ ├── asciitilde.glif │ │ │ ├── asterisk.glif │ │ │ ├── at.glif │ │ │ ├── atilde.alt01.glif │ │ │ ├── atilde.glif │ │ │ ├── b.glif │ │ │ ├── backslash.glif │ │ │ ├── baht.glif │ │ │ ├── bar.glif │ │ │ ├── bitcoin.glif │ │ │ ├── braceleft.glif │ │ │ ├── braceright.glif │ │ │ ├── bracketleft.glif │ │ │ ├── bracketright.glif │ │ │ ├── breve.case.glif │ │ │ ├── breve.cyrl.glif │ │ │ ├── breve.cyrl_case.glif │ │ │ ├── breve.glif │ │ │ ├── breveacute.case.glif │ │ │ ├── breveacute.glif │ │ │ ├── brevecomb.glif │ │ │ ├── brevegrave.case.glif │ │ │ ├── brevegrave.glif │ │ │ ├── brevehook.case.glif │ │ │ ├── brevehook.glif │ │ │ ├── brevetilde.case.glif │ │ │ ├── brevetilde.glif │ │ │ ├── brokenbar.glif │ │ │ ├── bullet.glif │ │ │ ├── c.glif │ │ │ ├── cacute.glif │ │ │ ├── caron.case.glif │ │ │ ├── caron.glif │ │ │ ├── caroncomb.glif │ │ │ ├── caronslovak.glif │ │ │ ├── caronslovakcomb.glif │ │ │ ├── ccaron.glif │ │ │ ├── ccedilla.glif │ │ │ ├── ccircumflex.glif │ │ │ ├── cdotaccent.glif │ │ │ ├── cedi.glif │ │ │ ├── cedilla.glif │ │ │ ├── cedillacomb.glif │ │ │ ├── celogo.glif │ │ │ ├── cent.glif │ │ │ ├── checkmark.glif │ │ │ ├── circumflex.case.glif │ │ │ ├── circumflex.glif │ │ │ ├── circumflexacute.case.glif │ │ │ ├── circumflexacute.glif │ │ │ ├── circumflexbreve.case.glif │ │ │ ├── circumflexbreve.glif │ │ │ ├── circumflexcomb.glif │ │ │ ├── circumflexgrave.case.glif │ │ │ ├── circumflexgrave.glif │ │ │ ├── circumflexhook.case.glif │ │ │ ├── circumflexhook.glif │ │ │ ├── circumflextilde.case.glif │ │ │ ├── circumflextilde.glif │ │ │ ├── colon.glif │ │ │ ├── coloncurrency.glif │ │ │ ├── comma.glif │ │ │ ├── commabelowcomb.glif │ │ │ ├── commaturnedtop.glif │ │ │ ├── commaturnedtopcomb.glif │ │ │ ├── contents.plist │ │ │ ├── copyright.glif │ │ │ ├── crossmark.glif │ │ │ ├── currency.glif │ │ │ ├── d.glif │ │ │ ├── dagger.glif │ │ │ ├── daggerdbl.glif │ │ │ ├── dcaron.glif │ │ │ ├── dcroat.glif │ │ │ ├── degree.glif │ │ │ ├── dieresis.case.glif │ │ │ ├── dieresis.glif │ │ │ ├── dieresisacute.case.glif │ │ │ ├── dieresisacute.glif │ │ │ ├── dieresiscaron.case.glif │ │ │ ├── dieresiscaron.glif │ │ │ ├── dieresiscomb.glif │ │ │ ├── dieresisgrave.case.glif │ │ │ ├── dieresisgrave.glif │ │ │ ├── dieresismacron.case.glif │ │ │ ├── dieresismacron.glif │ │ │ ├── divide.glif │ │ │ ├── dollar.glif │ │ │ ├── dong.glif │ │ │ ├── dotaccent.case.glif │ │ │ ├── dotaccent.glif │ │ │ ├── dotaccentcomb.glif │ │ │ ├── dotbelowcomb.glif │ │ │ ├── dotlessi.glif │ │ │ ├── dotlessj.glif │ │ │ ├── e.glif │ │ │ ├── eacute.glif │ │ │ ├── ebreve.glif │ │ │ ├── ecaron.glif │ │ │ ├── ecircumflex.glif │ │ │ ├── ecircumflexacute.glif │ │ │ ├── ecircumflexdotbelow.glif │ │ │ ├── ecircumflexgrave.glif │ │ │ ├── ecircumflexhook.glif │ │ │ ├── ecircumflextilde.glif │ │ │ ├── edieresis.glif │ │ │ ├── edotaccent.glif │ │ │ ├── edotbelow.glif │ │ │ ├── egrave.glif │ │ │ ├── ehook.glif │ │ │ ├── eight.glif │ │ │ ├── eightinferior.glif │ │ │ ├── eightsuperior.glif │ │ │ ├── ellipsis.glif │ │ │ ├── emacron.glif │ │ │ ├── emdash.glif │ │ │ ├── endash.glif │ │ │ ├── eng.glif │ │ │ ├── eogonek.glif │ │ │ ├── equal.glif │ │ │ ├── estimated.glif │ │ │ ├── eth.glif │ │ │ ├── etilde.glif │ │ │ ├── exclam.glif │ │ │ ├── exclamdown.glif │ │ │ ├── f.glif │ │ │ ├── fcclogo.glif │ │ │ ├── fi.glif │ │ │ ├── five.glif │ │ │ ├── fiveinferior.glif │ │ │ ├── fivesuperior.glif │ │ │ ├── fl.glif │ │ │ ├── florin.glif │ │ │ ├── four.glif │ │ │ ├── fourinferior.glif │ │ │ ├── foursuperior.glif │ │ │ ├── fraction.glif │ │ │ ├── g.alt01.glif │ │ │ ├── g.alt02.glif │ │ │ ├── g.glif │ │ │ ├── gbreve.alt01.glif │ │ │ ├── gbreve.glif │ │ │ ├── gcircumflex.alt01.glif │ │ │ ├── gcircumflex.glif │ │ │ ├── gcommaaccent.alt01.glif │ │ │ ├── gcommaaccent.glif │ │ │ ├── gdotaccent.alt01.glif │ │ │ ├── gdotaccent.glif │ │ │ ├── germandbls.alt01.glif │ │ │ ├── germandbls.glif │ │ │ ├── grave.case.glif │ │ │ ├── grave.glif │ │ │ ├── gravecomb.glif │ │ │ ├── greater.glif │ │ │ ├── greaterequal.glif │ │ │ ├── guarani.glif │ │ │ ├── guillemotleft.glif │ │ │ ├── guillemotright.glif │ │ │ ├── guilsinglleft.glif │ │ │ ├── guilsinglright.glif │ │ │ ├── h.glif │ │ │ ├── hbar.glif │ │ │ ├── hcircumflex.glif │ │ │ ├── hookcomb.case.glif │ │ │ ├── hookcomb.glif │ │ │ ├── horncomb.glif │ │ │ ├── hryvnia.glif │ │ │ ├── hungarumlaut.case.glif │ │ │ ├── hungarumlaut.glif │ │ │ ├── hungarumlautcomb.glif │ │ │ ├── hyphen.glif │ │ │ ├── i.glif │ │ │ ├── iacute.glif │ │ │ ├── ibreve.glif │ │ │ ├── icircumflex.glif │ │ │ ├── idieresis.glif │ │ │ ├── idotbelow.glif │ │ │ ├── igrave.glif │ │ │ ├── ihook.glif │ │ │ ├── ij.glif │ │ │ ├── ijacute.glif │ │ │ ├── imacron.glif │ │ │ ├── infinity.glif │ │ │ ├── integral.glif │ │ │ ├── iogonek.glif │ │ │ ├── itilde.glif │ │ │ ├── j.glif │ │ │ ├── jacute.glif │ │ │ ├── jcircumflex.glif │ │ │ ├── k.glif │ │ │ ├── kcommaaccent.glif │ │ │ ├── kgreenlandic.glif │ │ │ ├── kip.glif │ │ │ ├── l.glif │ │ │ ├── lacute.glif │ │ │ ├── lcaron.glif │ │ │ ├── lcommaaccent.glif │ │ │ ├── ldot.glif │ │ │ ├── less.glif │ │ │ ├── lessequal.glif │ │ │ ├── lira.glif │ │ │ ├── liraturkish.glif │ │ │ ├── litre.glif │ │ │ ├── logicalnot.glif │ │ │ ├── lozenge.glif │ │ │ ├── lslash.glif │ │ │ ├── m.glif │ │ │ ├── macron.case.glif │ │ │ ├── macron.glif │ │ │ ├── macroncomb.glif │ │ │ ├── minus.glif │ │ │ ├── mu.glif │ │ │ ├── multiply.glif │ │ │ ├── n.glif │ │ │ ├── nacute.glif │ │ │ ├── naira.glif │ │ │ ├── napostrophe.glif │ │ │ ├── ncaron.glif │ │ │ ├── ncommaaccent.glif │ │ │ ├── nine.glif │ │ │ ├── nineinferior.glif │ │ │ ├── ninesuperior.glif │ │ │ ├── nonbreakingspace.glif │ │ │ ├── nonmarkingreturn.glif │ │ │ ├── notequal.glif │ │ │ ├── ntilde.glif │ │ │ ├── numbersign.glif │ │ │ ├── numerosign.glif │ │ │ ├── o.glif │ │ │ ├── oacute.glif │ │ │ ├── obreve.glif │ │ │ ├── ocircumflex.glif │ │ │ ├── ocircumflexacute.glif │ │ │ ├── ocircumflexdotbelow.glif │ │ │ ├── ocircumflexgrave.glif │ │ │ ├── ocircumflexhook.glif │ │ │ ├── ocircumflextilde.glif │ │ │ ├── odieresis.glif │ │ │ ├── odotbelow.glif │ │ │ ├── oe.glif │ │ │ ├── ogonek.glif │ │ │ ├── ogonekcomb.glif │ │ │ ├── ograve.glif │ │ │ ├── ohook.glif │ │ │ ├── ohorn.glif │ │ │ ├── ohornacute.glif │ │ │ ├── ohorndotbelow.glif │ │ │ ├── ohorngrave.glif │ │ │ ├── ohornhook.glif │ │ │ ├── ohorntilde.glif │ │ │ ├── ohungarumlaut.glif │ │ │ ├── omacron.glif │ │ │ ├── one.glif │ │ │ ├── onehalf.glif │ │ │ ├── oneinferior.glif │ │ │ ├── onequarter.glif │ │ │ ├── onesuperior.glif │ │ │ ├── ordfeminine.glif │ │ │ ├── ordmasculine.glif │ │ │ ├── oslash.glif │ │ │ ├── oslashacute.glif │ │ │ ├── otilde.glif │ │ │ ├── p.glif │ │ │ ├── paragraph.glif │ │ │ ├── parenleft.glif │ │ │ ├── parenright.glif │ │ │ ├── partialdiff.glif │ │ │ ├── percent.glif │ │ │ ├── period.glif │ │ │ ├── periodcentered.glif │ │ │ ├── perthousand.glif │ │ │ ├── peso.glif │ │ │ ├── pi.glif │ │ │ ├── plus.glif │ │ │ ├── plusminus.glif │ │ │ ├── prime.glif │ │ │ ├── primedbl.glif │ │ │ ├── product.glif │ │ │ ├── q.glif │ │ │ ├── question.glif │ │ │ ├── questiondown.glif │ │ │ ├── quotedbl.glif │ │ │ ├── quotedblbase.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── quotedblright.glif │ │ │ ├── quoteleft.glif │ │ │ ├── quoteright.glif │ │ │ ├── quotesinglbase.glif │ │ │ ├── quotesingle.glif │ │ │ ├── r.glif │ │ │ ├── racute.glif │ │ │ ├── radical.glif │ │ │ ├── rcaron.glif │ │ │ ├── rcommaaccent.glif │ │ │ ├── registered.glif │ │ │ ├── ring.case.glif │ │ │ ├── ring.glif │ │ │ ├── ringacute.case.glif │ │ │ ├── ringacute.glif │ │ │ ├── ringcomb.glif │ │ │ ├── ruble.glif │ │ │ ├── rupee.glif │ │ │ ├── rupeeindian.glif │ │ │ ├── s.glif │ │ │ ├── sacute.glif │ │ │ ├── scaron.glif │ │ │ ├── scedilla.glif │ │ │ ├── schwa.glif │ │ │ ├── scircumflex.glif │ │ │ ├── scommaaccent.glif │ │ │ ├── section.glif │ │ │ ├── semicolon.glif │ │ │ ├── seven.glif │ │ │ ├── seveninferior.glif │ │ │ ├── sevensuperior.glif │ │ │ ├── sheqel.glif │ │ │ ├── six.glif │ │ │ ├── sixinferior.glif │ │ │ ├── sixsuperior.glif │ │ │ ├── slash.glif │ │ │ ├── softhyphen.glif │ │ │ ├── space.glif │ │ │ ├── sterling.glif │ │ │ ├── summation.glif │ │ │ ├── t.glif │ │ │ ├── tbar.glif │ │ │ ├── tcaron.glif │ │ │ ├── tcedilla.glif │ │ │ ├── tcommaaccent.glif │ │ │ ├── tenge.glif │ │ │ ├── thorn.glif │ │ │ ├── three.glif │ │ │ ├── threeinferior.glif │ │ │ ├── threequarters.glif │ │ │ ├── threesuperior.glif │ │ │ ├── tilde.alt01.case.glif │ │ │ ├── tilde.alt01.glif │ │ │ ├── tilde.case.glif │ │ │ ├── tilde.glif │ │ │ ├── tildecomb.glif │ │ │ ├── trademark.glif │ │ │ ├── tugrik.glif │ │ │ ├── two.glif │ │ │ ├── twoinferior.glif │ │ │ ├── twosuperior.glif │ │ │ ├── u.glif │ │ │ ├── uacute.glif │ │ │ ├── ubreve.glif │ │ │ ├── ucircumflex.glif │ │ │ ├── udieresis.glif │ │ │ ├── udotbelow.glif │ │ │ ├── ugrave.glif │ │ │ ├── uhook.glif │ │ │ ├── uhorn.glif │ │ │ ├── uhornacute.glif │ │ │ ├── uhorndotbelow.glif │ │ │ ├── uhorngrave.glif │ │ │ ├── uhornhook.glif │ │ │ ├── uhorntilde.glif │ │ │ ├── uhungarumlaut.glif │ │ │ ├── umacron.glif │ │ │ ├── underscore.glif │ │ │ ├── uni0400.glif │ │ │ ├── uni0401.glif │ │ │ ├── uni0402.glif │ │ │ ├── uni0403.glif │ │ │ ├── uni0404.glif │ │ │ ├── uni0405.glif │ │ │ ├── uni0406.glif │ │ │ ├── uni0407.glif │ │ │ ├── uni0408.glif │ │ │ ├── uni0409.glif │ │ │ ├── uni040A_.glif │ │ │ ├── uni040B_.glif │ │ │ ├── uni040C_.glif │ │ │ ├── uni040D_.glif │ │ │ ├── uni040E_.glif │ │ │ ├── uni040F_.glif │ │ │ ├── uni0410.glif │ │ │ ├── uni0411.glif │ │ │ ├── uni0412.glif │ │ │ ├── uni0413.glif │ │ │ ├── uni0414.glif │ │ │ ├── uni0415.glif │ │ │ ├── uni0416.glif │ │ │ ├── uni0417.glif │ │ │ ├── uni0418.glif │ │ │ ├── uni0419.glif │ │ │ ├── uni041A_.glif │ │ │ ├── uni041B_.glif │ │ │ ├── uni041C_.glif │ │ │ ├── uni041D_.glif │ │ │ ├── uni041E_.glif │ │ │ ├── uni041F_.glif │ │ │ ├── uni0420.glif │ │ │ ├── uni0421.glif │ │ │ ├── uni0422.glif │ │ │ ├── uni0423.glif │ │ │ ├── uni0424.glif │ │ │ ├── uni0425.glif │ │ │ ├── uni0426.glif │ │ │ ├── uni0427.glif │ │ │ ├── uni0428.glif │ │ │ ├── uni0429.glif │ │ │ ├── uni042A_.glif │ │ │ ├── uni042B_.glif │ │ │ ├── uni042C_.glif │ │ │ ├── uni042D_.glif │ │ │ ├── uni042E_.glif │ │ │ ├── uni042F_.glif │ │ │ ├── uni0430.alt01.glif │ │ │ ├── uni0430.glif │ │ │ ├── uni0431.glif │ │ │ ├── uni0432.glif │ │ │ ├── uni0433.glif │ │ │ ├── uni0434.glif │ │ │ ├── uni0435.glif │ │ │ ├── uni0436.glif │ │ │ ├── uni0437.glif │ │ │ ├── uni0438.glif │ │ │ ├── uni0439.glif │ │ │ ├── uni043A_.glif │ │ │ ├── uni043B_.glif │ │ │ ├── uni043C_.glif │ │ │ ├── uni043D_.glif │ │ │ ├── uni043E_.glif │ │ │ ├── uni043F_.glif │ │ │ ├── uni0440.glif │ │ │ ├── uni0441.glif │ │ │ ├── uni0442.glif │ │ │ ├── uni0443.glif │ │ │ ├── uni0444.glif │ │ │ ├── uni0445.glif │ │ │ ├── uni0446.glif │ │ │ ├── uni0447.glif │ │ │ ├── uni0448.glif │ │ │ ├── uni0449.glif │ │ │ ├── uni044A_.glif │ │ │ ├── uni044B_.glif │ │ │ ├── uni044C_.glif │ │ │ ├── uni044D_.glif │ │ │ ├── uni044E_.glif │ │ │ ├── uni044F_.glif │ │ │ ├── uni0450.glif │ │ │ ├── uni0451.glif │ │ │ ├── uni0452.glif │ │ │ ├── uni0453.glif │ │ │ ├── uni0454.glif │ │ │ ├── uni0455.glif │ │ │ ├── uni0456.glif │ │ │ ├── uni0457.glif │ │ │ ├── uni0458.glif │ │ │ ├── uni0459.glif │ │ │ ├── uni045A_.glif │ │ │ ├── uni045B_.glif │ │ │ ├── uni045C_.glif │ │ │ ├── uni045D_.glif │ │ │ ├── uni045E_.glif │ │ │ ├── uni045F_.glif │ │ │ ├── uni0472.glif │ │ │ ├── uni0473.glif │ │ │ ├── uni0490.glif │ │ │ ├── uni0491.glif │ │ │ ├── uni0492.glif │ │ │ ├── uni0493.glif │ │ │ ├── uni0494.glif │ │ │ ├── uni0495.glif │ │ │ ├── uni0496.glif │ │ │ ├── uni0497.glif │ │ │ ├── uni0498.glif │ │ │ ├── uni0499.glif │ │ │ ├── uni049A_.glif │ │ │ ├── uni049B_.glif │ │ │ ├── uni049C_.glif │ │ │ ├── uni049D_.glif │ │ │ ├── uni04A_0.glif │ │ │ ├── uni04A_1.glif │ │ │ ├── uni04A_2.glif │ │ │ ├── uni04A_3.glif │ │ │ ├── uni04A_4.glif │ │ │ ├── uni04A_5.glif │ │ │ ├── uni04A_A_.glif │ │ │ ├── uni04A_B_.glif │ │ │ ├── uni04A_E_.glif │ │ │ ├── uni04A_F_.glif │ │ │ ├── uni04B_0.glif │ │ │ ├── uni04B_1.glif │ │ │ ├── uni04B_2.glif │ │ │ ├── uni04B_3.glif │ │ │ ├── uni04B_6.glif │ │ │ ├── uni04B_7.glif │ │ │ ├── uni04B_8.glif │ │ │ ├── uni04B_9.glif │ │ │ ├── uni04B_A_.glif │ │ │ ├── uni04B_B_.glif │ │ │ ├── uni04C_0.glif │ │ │ ├── uni04C_1.glif │ │ │ ├── uni04C_2.glif │ │ │ ├── uni04C_F_.glif │ │ │ ├── uni04D_0.glif │ │ │ ├── uni04D_1.alt01.glif │ │ │ ├── uni04D_1.glif │ │ │ ├── uni04D_2.glif │ │ │ ├── uni04D_3.alt01.glif │ │ │ ├── uni04D_3.glif │ │ │ ├── uni04D_4.glif │ │ │ ├── uni04D_5.glif │ │ │ ├── uni04D_6.glif │ │ │ ├── uni04D_7.glif │ │ │ ├── uni04D_8.glif │ │ │ ├── uni04D_9.glif │ │ │ ├── uni04D_C_.glif │ │ │ ├── uni04D_D_.glif │ │ │ ├── uni04D_E_.glif │ │ │ ├── uni04D_F_.glif │ │ │ ├── uni04E_2.glif │ │ │ ├── uni04E_3.glif │ │ │ ├── uni04E_4.glif │ │ │ ├── uni04E_5.glif │ │ │ ├── uni04E_6.glif │ │ │ ├── uni04E_7.glif │ │ │ ├── uni04E_8.glif │ │ │ ├── uni04E_9.glif │ │ │ ├── uni04E_E_.glif │ │ │ ├── uni04E_F_.glif │ │ │ ├── uni04F_0.glif │ │ │ ├── uni04F_1.glif │ │ │ ├── uni04F_2.glif │ │ │ ├── uni04F_3.glif │ │ │ ├── uni04F_4.glif │ │ │ ├── uni04F_5.glif │ │ │ ├── uni04F_8.glif │ │ │ ├── uni04F_9.glif │ │ │ ├── uni2150.glif │ │ │ ├── uni2151.glif │ │ │ ├── uni2153.glif │ │ │ ├── uni2154.glif │ │ │ ├── uni2155.glif │ │ │ ├── uni2156.glif │ │ │ ├── uni2157.glif │ │ │ ├── uni2158.glif │ │ │ ├── uni2159.glif │ │ │ ├── uni215A_.glif │ │ │ ├── uni215B_.glif │ │ │ ├── uni215C_.glif │ │ │ ├── uni215D_.glif │ │ │ ├── uni215E_.glif │ │ │ ├── uogonek.glif │ │ │ ├── uring.glif │ │ │ ├── utilde.glif │ │ │ ├── v.glif │ │ │ ├── w.glif │ │ │ ├── wacute.glif │ │ │ ├── wcircumflex.glif │ │ │ ├── wdieresis.glif │ │ │ ├── wgrave.glif │ │ │ ├── won.glif │ │ │ ├── x.glif │ │ │ ├── y.glif │ │ │ ├── yacute.glif │ │ │ ├── ycircumflex.glif │ │ │ ├── ydieresis.glif │ │ │ ├── ydotbelow.glif │ │ │ ├── yen.glif │ │ │ ├── ygrave.glif │ │ │ ├── yhook.glif │ │ │ ├── ytilde.glif │ │ │ ├── z.glif │ │ │ ├── zacute.glif │ │ │ ├── zcaron.glif │ │ │ ├── zdotaccent.glif │ │ │ ├── zero.alt01.glif │ │ │ ├── zero.alt02.glif │ │ │ ├── zero.glif │ │ │ ├── zeroinferior.glif │ │ │ └── zerosuperior.glif │ │ ├── groups.plist │ │ ├── kerning.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ │ ├── IBM Plex Serif-Text-ufo2ft.otf │ │ ├── IBM Plex Serif-Text-ufo2ft.otf.ttx │ │ ├── IBM Plex Serif-Text-ufo2ft.ttf │ │ ├── IBM Plex Serif-Text-ufo2ft.ttx │ │ └── IBM Plex Serif-Text.vfb ├── extractor_test.py ├── roundtrip.py ├── roundtrip_otf.py └── stream_test.py └── tox.ini /.github/workflows/publish-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/.github/workflows/publish-package.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/.gitignore -------------------------------------------------------------------------------- /Lib/extractor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/Lib/extractor/__init__.py -------------------------------------------------------------------------------- /Lib/extractor/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/Lib/extractor/exceptions.py -------------------------------------------------------------------------------- /Lib/extractor/formats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/extractor/formats/opentype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/Lib/extractor/formats/opentype.py -------------------------------------------------------------------------------- /Lib/extractor/formats/ttx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/Lib/extractor/formats/ttx.py -------------------------------------------------------------------------------- /Lib/extractor/formats/type1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/Lib/extractor/formats/type1.py -------------------------------------------------------------------------------- /Lib/extractor/formats/vfb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/Lib/extractor/formats/vfb.py -------------------------------------------------------------------------------- /Lib/extractor/formats/woff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/Lib/extractor/formats/woff.py -------------------------------------------------------------------------------- /Lib/extractor/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/Lib/extractor/stream.py -------------------------------------------------------------------------------- /Lib/extractor/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/Lib/extractor/tools.py -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/License.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fonttools 2 | fontFeatures 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/UVSTest.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/UVSTest.ttf -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text Italic.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text Italic.vfb -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL.fpgm.ttxasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL.fpgm.ttxasm -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL.fpgm.vttasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL.fpgm.vttasm -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL.otf -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL.otf.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL.otf.ttx -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL.ttf -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL.ttx -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_E_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_ring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_ring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_R_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_R_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/D_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/D_elta.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/D_elta.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_ng.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_ng.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_th.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_th.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_uro.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_uro.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/F_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/G_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/G_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/H_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/H_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/H_bar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/H_bar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_J_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/J_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/K_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/K_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/L_dot.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/L_dot.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/M_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/M_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/N_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/N_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_E_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_horn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_horn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_mega.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_mega.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/P_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/P_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Q_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Q_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/R_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/R_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/S_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/S_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/S_chwa.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/S_chwa.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_bar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_bar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_horn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_horn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_horn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_horn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_ring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_ring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/W_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/W_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/X_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/X_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Z_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Z_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/abreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ae.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ae.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/agrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/agrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ahook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ahook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/at.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/at.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/atilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/atilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/b.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/b.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/baht.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/baht.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/bar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/breve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/bullet.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/bullet.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/c.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/c.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ccaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ccaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cedi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cedi.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/celogo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/celogo.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cent.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/colon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/colon.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/comma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/comma.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/d.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/d.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dagger.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dagger.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dcroat.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dcroat.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/degree.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/degree.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/divide.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/divide.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dollar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dollar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dong.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dong.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/e.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/e.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ebreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ebreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ecaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ecaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/egrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/egrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ehook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ehook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eight.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eight.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/emdash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/emdash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/endash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/endash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eng.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eng.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/equal.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/equal.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eth.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eth.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/etilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/etilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/exclam.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/exclam.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/f.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/fi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/fi.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/five.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/five.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/fl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/fl.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/florin.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/florin.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/four.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/four.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/g.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/g.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/gbreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/gbreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/grave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/h.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/h.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/hbar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/hbar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/hyphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/hyphen.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/iacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/iacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ibreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ibreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/igrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/igrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ihook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ihook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ij.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ij.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/itilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/itilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/j.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/j.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/jacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/jacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/k.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/k.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/kip.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/kip.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/l.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/l.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ldot.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ldot.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/less.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/less.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lira.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lira.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/litre.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/litre.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lslash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/m.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/m.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/macron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/minus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/minus.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/mu.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/mu.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/n.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/n.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/nacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/naira.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/naira.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ncaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ncaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/nine.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ntilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ntilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/obreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/obreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oe.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oe.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ograve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ograve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohorn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohorn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/one.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/one.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oslash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/otilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/otilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/p.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/p.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/period.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/period.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/peso.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/peso.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/pi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/pi.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/plus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/plus.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/prime.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/prime.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/q.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/q.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/r.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/r.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/racute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/racute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/rcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/rcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ruble.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ruble.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/rupee.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/rupee.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/s.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/s.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/sacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/scaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/scaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/schwa.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/schwa.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/seven.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/seven.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/sheqel.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/sheqel.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/six.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/six.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/slash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/t.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/t.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tbar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tbar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tenge.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tenge.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/thorn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/thorn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/three.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/three.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tugrik.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tugrik.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/two.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/two.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/u.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/u.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ubreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ubreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ugrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ugrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhorn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhorn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/utilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/utilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/wacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/wacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/wgrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/wgrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/won.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/won.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/x.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/x.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/y.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/y.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/yacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/yacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/yen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/yen.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ygrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ygrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/yhook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/yhook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ytilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ytilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/z.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/z.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zero.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/groups.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/lib.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_E_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_E_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_E_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_breve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_dieresis.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_dotbelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_dotbelow.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_grave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_macron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_ogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_ogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_ring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_ring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_tilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/B_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/B_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_cedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_cedilla.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_croat.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_croat.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_elta.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_elta.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_breve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_dieresis.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_dotbelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_dotbelow.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_grave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_macron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_ng.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_ng.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_ogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_ogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_th.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_th.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_tilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_uro.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_uro.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/F_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/F_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_breve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/H_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/H_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/H_bar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/H_bar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_J_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_J_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_J_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_breve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_dieresis.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_dotbelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_dotbelow.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_grave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_macron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_ogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_ogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_tilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/J_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/J_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/J_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/K_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/K_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_dot.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_dot.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_slash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/M_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/M_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_tilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_E_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_E_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_breve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_dieresis.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_dotbelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_dotbelow.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_grave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_horn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_horn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_hornhook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_hornhook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_macron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_mega.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_mega.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_slash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_tilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/P_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/P_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Q_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Q_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_cedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_cedilla.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_chwa.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_chwa.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_bar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_bar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_cedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_cedilla.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_horn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_horn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_breve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_dieresis.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_dotbelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_dotbelow.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_grave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_horn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_horn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_hornhook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_hornhook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_macron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_ogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_ogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_ring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_ring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_tilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/V_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/V_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_dieresis.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_grave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/X_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/X_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_dieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_dieresis.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_dotbelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_dotbelow.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_grave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_hook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_hook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_tilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/a.alt01.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/a.alt01.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/a.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/a.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abrevehook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abrevehook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acute.case.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acute.case.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acutecomb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acutecomb.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/adieresis.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/adieresis.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/adotbelow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/adotbelow.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ae.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ae.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aeacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aeacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/agrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/agrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ahook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ahook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/amacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/amacron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ampersand.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ampersand.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aringacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aringacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowdown.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowdown.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowleft.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowright.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowup.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowup.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/asciitilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/asciitilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/asterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/asterisk.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/at.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/at.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/atilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/atilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/b.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/b.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/backslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/backslash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/baht.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/baht.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bitcoin.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bitcoin.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/braceleft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/braceleft.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/braceright.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/braceright.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.case.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.case.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.cyrl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.cyrl.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breveacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breveacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevecomb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevecomb.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevegrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevegrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevehook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevehook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevetilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevetilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brokenbar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brokenbar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bullet.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bullet.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/c.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/c.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caron.case.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caron.case.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caroncomb.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caroncomb.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ccaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ccaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ccedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ccedilla.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cedi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cedi.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cedilla.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cedilla.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/celogo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/celogo.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cent.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/colon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/colon.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/comma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/comma.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/d.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/d.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dagger.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dagger.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dcroat.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dcroat.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/degree.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/degree.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/divide.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/divide.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dollar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dollar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dong.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dong.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/e.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/e.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ebreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ebreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ecaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ecaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/egrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/egrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ehook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ehook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eight.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eight.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/emacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/emacron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/emdash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/emdash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/endash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/endash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eng.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eng.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/equal.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/equal.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eth.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eth.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/etilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/etilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/exclam.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/exclam.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/f.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/f.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fcclogo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fcclogo.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fi.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/five.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/five.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fl.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fl.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/florin.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/florin.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/four.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/four.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/g.alt01.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/g.alt01.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/g.alt02.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/g.alt02.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/g.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/g.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/gbreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/gbreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/grave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/greater.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/greater.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/guarani.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/guarani.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/h.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/h.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hbar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hbar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hryvnia.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hryvnia.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hyphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hyphen.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/i.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/i.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/iacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/iacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ibreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ibreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/igrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/igrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ihook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ihook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ij.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ij.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ijacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ijacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/imacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/imacron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/iogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/iogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/itilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/itilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/j.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/j.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/jacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/jacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/k.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/k.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/kip.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/kip.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/l.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/l.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ldot.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ldot.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/less.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/less.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lira.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lira.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/litre.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/litre.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lozenge.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lozenge.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lslash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/m.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/m.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/macron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/macron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/minus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/minus.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/mu.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/mu.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/n.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/n.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/nacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/naira.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/naira.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ncaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ncaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/nine.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ntilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ntilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/o.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/o.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/obreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/obreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oe.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oe.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ograve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ograve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohorn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohorn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/omacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/omacron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/one.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/one.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/onehalf.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/onehalf.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oslash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oslash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/otilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/otilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/p.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/p.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/percent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/percent.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/period.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/period.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/peso.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/peso.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/pi.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/pi.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/plus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/plus.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/prime.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/prime.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/product.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/product.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/q.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/q.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/r.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/r.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/racute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/racute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/radical.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/radical.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/rcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/rcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ruble.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ruble.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/rupee.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/rupee.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/s.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/s.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/scaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/scaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/schwa.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/schwa.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/section.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/section.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/seven.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/seven.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sheqel.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sheqel.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/six.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/six.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/slash.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/slash.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/space.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/t.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/t.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tbar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tbar.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tenge.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tenge.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/thorn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/thorn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/three.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/three.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tugrik.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tugrik.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/two.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/two.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/u.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/u.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ubreve.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ubreve.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ugrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ugrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhorn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhorn.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/umacron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/umacron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0400.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0400.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0401.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0401.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0402.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0402.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0403.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0403.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0404.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0404.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0405.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0405.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0406.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0406.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0407.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0407.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0408.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0408.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0409.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0409.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0410.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0410.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0411.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0411.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0412.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0412.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0413.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0413.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0414.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0414.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0415.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0415.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0416.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0416.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0417.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0417.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0418.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0418.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0419.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0419.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0420.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0420.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0421.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0421.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0422.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0422.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0423.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0423.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0424.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0424.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0425.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0425.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0426.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0426.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0427.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0427.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0428.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0428.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0429.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0429.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0430.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0430.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0431.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0431.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0432.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0432.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0433.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0433.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0434.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0434.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0435.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0435.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0436.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0436.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0437.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0437.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0438.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0438.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0439.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0439.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0440.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0440.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0441.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0441.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0442.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0442.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0443.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0443.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0444.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0444.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0445.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0445.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0446.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0446.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0447.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0447.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0448.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0448.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0449.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0449.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0450.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0450.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0451.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0451.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0452.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0452.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0453.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0453.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0454.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0454.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0455.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0455.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0456.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0456.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0457.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0457.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0458.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0458.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0459.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0459.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0472.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0472.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0473.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0473.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0490.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0490.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0491.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0491.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0492.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0492.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0493.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0493.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0494.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0494.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0495.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0495.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0496.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0496.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0497.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0497.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0498.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0498.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0499.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0499.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2150.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2150.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2151.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2151.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2153.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2153.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2154.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2154.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2155.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2155.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2156.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2156.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2157.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2157.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2158.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2158.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2159.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2159.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uogonek.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uogonek.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uring.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uring.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/utilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/utilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/v.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/v.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/w.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/w.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/wacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/wacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/wgrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/wgrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/won.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/won.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/x.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/x.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/y.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/y.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/yacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/yacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/yen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/yen.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ygrave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ygrave.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/yhook.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/yhook.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ytilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ytilde.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/z.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/z.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zacute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zacute.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zcaron.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zcaron.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zero.glif -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/groups.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/lib.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.otf -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.otf.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.otf.ttx -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttf -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttx -------------------------------------------------------------------------------- /tests/data/ibm_plex/IBM Plex Serif-Text.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/data/ibm_plex/IBM Plex Serif-Text.vfb -------------------------------------------------------------------------------- /tests/extractor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/extractor_test.py -------------------------------------------------------------------------------- /tests/roundtrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/roundtrip.py -------------------------------------------------------------------------------- /tests/roundtrip_otf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/roundtrip_otf.py -------------------------------------------------------------------------------- /tests/stream_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tests/stream_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotools/extractor/HEAD/tox.ini --------------------------------------------------------------------------------